/* =====================================================
   WDP Store - Modern Storefront CSS
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =====================================================
   CSS Variables / Design Tokens
   ===================================================== */
:root {
  --primary: #0e44c1;
  --primary-dark: #0a3399;
  --primary-light: #309ff8;
  --secondary: #60d2fd;
  --accent: #fdcb6e;
  --accent-dark: #e0a800;
  --dark: #1a1a2e;
  --dark-secondary: #16213e;
  --dark-muted: #2d3748;
  --text-primary: #1a1a2e;
  --text-secondary: #636e72;
  --text-muted: #b2bec3;
  --bg-body: #f8f9fe;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-light: rgba(14, 68, 193, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 48px rgba(14, 68, 193, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-primary: linear-gradient(135deg, #0e44c1 0%, #309ff8 100%);
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0e44c1 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fe 100%);
}

/* =====================================================
   Reset & Base
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* =====================================================
   Navbar
   ===================================================== */
.store-navbar {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.store-navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.store-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-navbar .navbar-brand img {
  width: 120px;
  /* height: 36px; */
  border-radius: var(--radius-sm);
}

.store-navbar .nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.store-navbar .nav-link:hover,
.store-navbar .nav-link.active {
  color: var(--primary) !important;
  background: rgba(108, 92, 231, 0.08);
}

.store-navbar .nav-link.cart-btn:hover,
.store-navbar .nav-link.cart-btn.active {
  color: #fff !important;
  background: var(--gradient-primary);
}

.store-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.store-navbar .nav-link:hover::after,
.store-navbar .nav-link.active::after {
  width: 60%;
}

/* Cart Badge */
.cart-btn {
  position: relative;
  background: var(--gradient-primary);
  color: #fff !important;
  border: none;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.45);
  color: #fff !important;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  filter: brightness(1.1);
}

.cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
}

.cart-badge {
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50px;
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
  background: var(--gradient-hero);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.3) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 206, 201, 0.2) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #ffeaa7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.btn-hero {
  background: var(--accent);
  color: var(--dark);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(253, 203, 110, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(253, 203, 110, 0.6);
  color: var(--dark);
}

/* =====================================================
   Section Headers
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-badge {
  display: inline-block;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.section-badge.hero {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

/* =====================================================
   Product Cards
   ===================================================== */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.product-card-img-wrapper .category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.product-card-price {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.product-card-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-card-stock {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.product-card-stock i {
  color: var(--secondary);
}

.product-card-actions {
  margin-top: auto;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn-store-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.btn-store-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  color: #fff;
}

.btn-store-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-store-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-store-secondary {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-store-secondary:hover {
  background: #00b5b0;
  color: #fff;
  transform: translateY(-2px);
}

.btn-store-accent {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-store-accent:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(253, 203, 110, 0.4);
}

/* =====================================================
   Features / Benefits Section
   ===================================================== */
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  color: #fff;
}

.feature-icon.icon-primary {
  background: var(--gradient-primary);
}

.feature-icon.icon-secondary {
  background: linear-gradient(135deg, #00cec9, #00b894);
}

.feature-icon.icon-accent {
  background: linear-gradient(135deg, #fdcb6e, #f39c12);
}

.feature-icon.icon-danger {
  background: linear-gradient(135deg, #fd79a8, #e84393);
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* =====================================================
   Catalog Filter
   ===================================================== */
.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-pill {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

/* =====================================================
   Cart Page
   ===================================================== */
.cart-table {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.cart-table thead {
  background: var(--gradient-primary);
  color: #fff;
}

.cart-table thead th {
  font-weight: 600;
  padding: 1rem 1.25rem;
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-table tbody td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-light);
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

.cart-table tbody tr:hover {
  background: rgba(108, 92, 231, 0.03);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-qty-input {
  width: 70px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 6px;
  font-weight: 600;
}

.cart-qty-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.cart-summary {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.cart-summary h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-summary-row:last-of-type {
  border-bottom: none;
}

.cart-summary-total {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.btn-remove-cart {
  background: none;
  border: none;
  color: #e74c3c;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-remove-cart:hover {
  background: rgba(231, 76, 60, 0.1);
}

/* =====================================================
   Checkout / Forms
   ===================================================== */
.checkout-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.checkout-card h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-store .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-store .form-control {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg-body);
}

.form-store .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
  background: #fff;
}

/* =====================================================
   Order Status
   ===================================================== */
.order-status-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.status-icon.pending {
  background: rgba(253, 203, 110, 0.2);
  color: #f39c12;
}

.status-icon.paid {
  background: rgba(0, 206, 201, 0.2);
  color: #00cec9;
}

.status-icon.failed,
.status-icon.expired {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.pending {
  background: rgba(253, 203, 110, 0.2);
  color: #e0a800;
}

.status-badge.paid {
  background: rgba(0, 206, 201, 0.2);
  color: #00b5b0;
}

.status-badge.failed,
.status-badge.expired {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

/* =====================================================
   Page Banner (for static pages)
   ===================================================== */
.page-banner {
  background: var(--gradient-primary);
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.page-banner h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

/* =====================================================
   Static Page Content
   ===================================================== */
.content-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.content-card h3 {
  font-weight: 700;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-light);
}

.content-card h3:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--text-secondary);
  line-height: 1.8;
}

.content-card ul,
.content-card ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-card li {
  margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(108, 92, 231, 0.05);
  color: var(--primary);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-light);
}

.faq-accordion .accordion-body {
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 0 1.5rem 1.5rem;
}

/* =====================================================
   Footer
   ===================================================== */
.store-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 0;
}

.store-footer h5 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.store-footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.store-footer a:hover {
  color: var(--accent);
}

.store-footer ul {
  list-style: none;
  padding: 0;
}

.store-footer ul li {
  margin-bottom: 0.5rem;
}

.store-footer ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 150px;
  /* height: 32px; */
  border-radius: var(--radius-sm);
}

/* =====================================================
   Empty State
   ===================================================== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state i {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.empty-state h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* =====================================================
   Toast Notifications
   ===================================================== */
.store-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  min-width: 300px;
}

.store-toast .toast {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.store-toast .toast-body {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

/* =====================================================
   Detail Product Page
   ===================================================== */
.detail-img-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.detail-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.detail-info {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.detail-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  font-size: 1.1rem;
}

.qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
}

.qty-input:focus {
  outline: none;
  border-color: var(--primary);
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-section {
    min-height: 400px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-section {
    min-height: 350px;
    padding: 2rem 0;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .product-card-img {
    height: 180px;
  }

  .detail-img {
    height: 280px;
  }

  .cart-table {
    font-size: 0.85rem;
  }

  .cart-item-img {
    width: 45px;
    height: 45px;
  }

  .checkout-card {
    padding: 1.5rem;
  }

  .content-card {
    padding: 1.5rem;
  }

  .page-banner h1 {
    font-size: 1.5rem;
  }

  .store-footer {
    padding: 2rem 0 0;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .btn-hero {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .detail-price {
    font-size: 1.5rem;
  }

  .product-card-body {
    padding: 1rem;
  }

  .product-card-price {
    font-size: 1.1rem;
  }
}