* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3dfe02;
  --primary-dark: #35e502;
  --primary-light: #1a3001;
  --success: #3dfe02;
  --success-light: #1a3001;
  --warning: #f59e0b;
  --warning-light: #78350f;
  --danger: #ef4444;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --bg-primary: #111111;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #1a1a1a;
  --border: #2a2a2a;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5),
    0 4px 6px -4px rgb(0 0 0 / 0.4);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  
  /* Hover Animation Colors */
  --hover-circle-1: #35e502;
  --hover-circle-2: #1a3001;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Button Base Styles */
.btn-primary, .btn-secondary, .view-deal-btn, .submit-btn, .pay-btn, .browse-more-btn, .proceed-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary, .view-deal-btn, .submit-btn, .pay-btn, .browse-more-btn, .proceed-btn.active {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover, .view-deal-btn:hover, .submit-btn:hover, .pay-btn:hover, .browse-more-btn:hover, .proceed-btn.active:hover {
  color: #fff;
}

.btn-secondary {
  background: var(--bg-primary);
  color: #fff;
  border: 1px solid var(--border);
}

.proceed-btn.disabled {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* Hover Animation - Pseudo Elements */
.btn-primary::before, .btn-primary::after,
.view-deal-btn::before, .view-deal-btn::after,
.submit-btn::before, .submit-btn::after,
.pay-btn::before, .pay-btn::after,
.browse-more-btn::before, .browse-more-btn::after,
.proceed-btn::before, .proceed-btn::after,
.btn-secondary::before, .btn-secondary::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  z-index: 1;
}

/* Green Waves for Primary Buttons */
.btn-primary::before, .view-deal-btn::before, .submit-btn::before, .pay-btn::before, .browse-more-btn::before, .proceed-btn::before {
  background: var(--hover-circle-1);
  transition: 0.6s ease-in;
  transition-delay: .1s;
}

.btn-primary::after, .view-deal-btn::after, .submit-btn::after, .pay-btn::after, .browse-more-btn::after, .proceed-btn::after {
  background: var(--hover-circle-2);
  transition: 0.8s ease;
  transition-delay: .4s;
}

/* Subtle Waves for Secondary Button */
.btn-secondary::before {
  background: rgba(255, 255, 255, 0.05);
  transition: 0.6s ease-in;
  transition-delay: .1s;
}

.btn-secondary::after {
  background: rgba(255, 255, 255, 0.1);
  transition: 0.8s ease;
  transition-delay: .4s;
}

/* Hover Trigger */
.btn-primary:hover::before, .btn-primary:hover::after,
.view-deal-btn:hover::before, .view-deal-btn:hover::after,
.submit-btn:hover::before, .submit-btn:hover::after,
.pay-btn:hover::before, .pay-btn:hover::after,
.browse-more-btn:hover::before, .browse-more-btn:hover::after,
.proceed-btn.active:hover::before, .proceed-btn.active:hover::after,
.btn-secondary:hover::before, .btn-secondary:hover::after {
  transform: translate(-50%, -50%) scale(310);
}

/* Ensure Content stays on top */
.btn-primary span, .btn-primary i,
.view-deal-btn span, .view-deal-btn i,
.submit-btn span, .submit-btn i,
.pay-btn span, .pay-btn i,
.browse-more-btn span, .browse-more-btn i,
.proceed-btn span, .proceed-btn i,
.btn-secondary span, .btn-secondary i {
  position: relative;
  z-index: 3;
}

/* Header & Navigation */
.header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text { color: var(--text-primary); }
.logo-highlight { color: var(--primary); }

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

/* Nav Dropdown Styles */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 200px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hero Section */
.hero {
  background: var(--bg-primary);
  padding: 80px 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-secondary);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-highlight { color: var(--primary); }

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.trust-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  color: var(--text-muted);
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Featured Deals Section */
.deals-section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--success);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.product-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.product-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.product-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.price-current {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.price-original {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

.license-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Product Detail Page - FIXED SPACING */
.product-page {
  padding: 120px 0 80px; /* Further increased padding */
  background: var(--bg-secondary);
  min-height: calc(100vh - 100px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px; 
  margin-bottom: 50px; /* More room for the feature image */
  transition: all 0.2s;
}

.back-link i {
  transition: transform 0.2s;
}

.back-link:hover i {
  transform: translateX(-4px);
}

.banner-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.product-main {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.product-banner-lg {
  width: 100%;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.product-tagline-lg {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}

.product-description-lg {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.features-list h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-check {
  color: var(--success);
  flex-shrink: 0;
}

/* Sidebar Pricing Card */
.product-sidebar {
  position: sticky;
  top: 100px;
}

.pricing-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.price-display {
  text-align: center;
  margin-bottom: 24px;
}

.price-discounted {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.price-original-lg {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.license-type {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: 30px;
  margin-top: 12px;
}

.savings-banner {
  background: var(--success-light);
  color: var(--success);
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* Delivery Section */
.delivery-section {
  padding: 24px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.delivery-section h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.delivery-steps {
  list-style: none;
}

.delivery-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.delivery-steps li:last-child { border-bottom: none; }

.delivery-checkbox {
  display: flex;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--warning-light);
  border: 1px solid var(--warning);
  border-radius: var(--radius-md);
}

.checkbox-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Footer Section */
.footer {
  background: #050505;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-title {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

/* Media Queries */
@media (max-width: 1024px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════
   MOBILE-APP STYLES  (≤ 768px)
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Trust bar: hide on mobile (saves space) ─ */
  .trust-bar { display: none; }

  /* ── Header: slim, app-bar style ─────────────── */
  .header { border-radius: 0; }
  .header-content { padding: 12px 16px; gap: 10px; }
  .logo img { height: 44px; }
  .nav { display: none; }                    /* desktop nav hidden */
  .header-actions { gap: 8px; }
  .mobile-menu-btn { display: flex; }

  /* ── Hero: compact ───────────────────────────── */
  .hero { padding: 32px 0 24px; }
  .hero-title { font-size: 26px; line-height: 1.25; }
  .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; margin-bottom: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 13px 20px; }
  .trust-logos { gap: 20px; flex-wrap: wrap; font-size: 12px; }

  /* ── Deals section ───────────────────────────── */
  .deals-section { padding: 20px 0 80px; } /* 80px bottom = room for bottom nav */

  /* ── Section header: collapsible trigger style ─ */
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 14px 0 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0 !important;
  }
  .section-header .section-title { font-size: 17px; font-weight: 800; margin-bottom: 0; }
  .section-header .section-subtitle { display: none; }
  .section-header .view-all-link { display: none; }
  /* Chevron arrow added via JS */
  .section-chevron {
    color: var(--text-muted);
    transition: transform .25s;
    flex-shrink: 0;
  }
  .section-chevron.open { transform: rotate(180deg); }

  /* Collapsible products wrapper */
  .products-grid-wrap {
    overflow: hidden;
    transition: max-height .3s cubic-bezier(.4,0,.2,1);
    max-height: 0;
  }
  .products-grid-wrap.open { max-height: 9999px; }

  /* ── Products grid: horizontal scroll row ────── */
  .products-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    gap: 12px;
    padding: 14px 0 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .products-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  /* ── Product card: fixed width snap tile ─────── */
  .product-card {
    flex: 0 0 75vw;
    max-width: 280px;
    min-width: 220px;
    padding: 14px;
    border-radius: 14px;
    gap: 0;
    scroll-snap-align: start;
  }
  .product-card:hover { transform: none; }  /* no hover lift on touch */

  .discount-badge {
    top: 8px; right: 8px;
    font-size: 10px; padding: 3px 7px;
  }

  /* Banner image inside card */
  .product-banner img {
    height: 100px !important;
    border-radius: 6px !important;
    margin-bottom: 8px !important;
  }

  .product-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .product-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; line-height: 1.3; }
  .product-tagline { font-size: 11px; margin-bottom: 6px; }
  .product-description { font-size: 11px; -webkit-line-clamp: 2; margin-bottom: 10px; }
  .product-rating { font-size: 11px; gap: 4px; margin-bottom: 6px; }

  .product-pricing {
    padding-top: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 4px;
  }
  .price-current { font-size: 16px; font-weight: 900; }
  .price-original { font-size: 11px; }
  .license-badge { font-size: 10px; padding: 3px 7px; }

  .view-deal-btn {
    width: 100%;
    padding: 9px 12px;
    font-size: 12px;
    border-radius: 8px;
    justify-content: center;
  }

  /* ── View More button (end of each section) ─── */
  .section-view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0 16px;
  }
  .section-view-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 7px 20px;
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .section-view-more a:active {
    background: var(--primary);
    color: #000;
  }

  /* ── Features section ────────────────────────── */
  .features-section { padding: 30px 0 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 18px; }

  /* ── Footer ──────────────────────────────────── */
  .footer { padding: 40px 0 100px; } /* room for bottom nav */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* ── Bottom App Navigation Bar ───────────────── */
  .app-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    z-index: 500;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .app-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 0;
    transition: color .2s;
  }
  .app-bottom-nav a.active,
  .app-bottom-nav a:hover { color: var(--primary); }
  .app-bottom-nav a i { width: 22px; height: 22px; }
}

/* ── Desktop: keep bottom nav hidden ─────────── */
.app-bottom-nav { display: none; }

/* Details Page */
.details-page {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.details-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-banner {
  background: var(--success-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 32px;
}

.details-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

/* Payment Page */
.payment-page {
  padding: 80px 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
}

/* Confirmation Page */
.confirmation-page {
  padding: 100px 0;
  text-align: center;
}

.confirmation-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-primary);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success-light);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

/* Trust Bar */
.trust-bar {
  background: #000;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Cart Button Fix */
.cart-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
}


/* --- PREMIUM PRODUCT PAGE REDESIGN --- */

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.product-main-card {
    background: var(--bg-primary);
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 0;
}

.product-banner-wrapper {
    position: relative;
    width: 100%;
}

.product-banner-wrapper .banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.discount-pill {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: #000;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(61, 254, 2, 0.3);
}

.product-header-content {
    padding: 40px;
    border-bottom: 1px solid var(--border);
}

.category-tag {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.product-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.product-tagline-hero {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stars-row {
    display: flex;
    gap: 4px;
    color: #FFB300;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
}

.rating-text strong {
    color: #fff;
}

.product-description-section {
    padding: 40px;
}

.section-heading {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.description-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.features-section-lg {
    padding: 0 40px 40px;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-tertiary);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.feature-pill i {
    color: var(--primary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-pill span {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

/* Sidebar Checkout Card */
.checkout-card-hound {
    background: var(--bg-primary);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 32px;
    position: sticky;
    top: 100px;
    margin-bottom: 24px;
}

.pricing-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-stack {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.old-price {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 4px;
}

.license-tag-premium {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.savings-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    background: rgba(61, 254, 2, 0.05);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.delivery-workflow {
    margin-bottom: 32px;
}

.workflow-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
}

.step-line {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    position: relative;
}

.step-line:not(.last)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.step-icon-box {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid var(--border);
    flex-shrink: 0;
    z-index: 2;
}

.step-icon-box i {
    width: 18px;
    height: 18px;
}

.step-info strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Premium Checkbox */
.premium-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 24px;
    user-select: none;
}

.premium-checkbox input {
    display: none;
}

.check-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
    background: var(--bg-tertiary);
}

.premium-checkbox input:checked + .check-box {
    background: var(--primary);
    border-color: var(--primary);
}

.premium-checkbox input:checked + .check-box::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.proceed-btn-hound {
    width: 100%;
    height: 56px;
    border-radius: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.proceed-btn-hound.disabled {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: not-allowed;
}

.proceed-btn-hound.active {
    background: var(--primary);
    color: #000;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(61, 254, 2, 0.2);
}

.proceed-btn-hound.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(61, 254, 2, 0.3);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.guarantee-badge i {
    width: 16px;
    height: 16px;
}

.trust-features-card {
    background: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 24px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.trust-item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.trust-item i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.trust-item strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.trust-item span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1100px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-card-hound {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 32px;
    }
    
    .features-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .product-banner-wrapper .banner-img {
        height: 250px;
    }
}


/* --- PREMIUM DETAILS PAGE --- */

.details-page-premium {
    padding: 80px 0;
    background: var(--bg-secondary);
    min-height: calc(100vh - 120px);
}

.small-container {
    max-width: 800px !important;
}

/* Progress Tracker */
.order-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    gap: 12px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.progress-step span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s;
}

.progress-step.active {
    color: var(--primary);
}

.progress-step.active .step-dot {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(61, 254, 2, 0.3);
}

.progress-step.completed {
    color: var(--primary);
}

.progress-step.completed .step-dot {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.progress-line {
    flex: 1;
    max-width: 100px;
    height: 2px;
    background: var(--border);
    margin-top: -24px;
}

.progress-line.active {
    background: var(--primary);
}

/* Success Header */
.success-header-card {
    text-align: center;
    margin-bottom: 32px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(61, 254, 2, 0.05) 0%, rgba(0,0,0,0) 100%);
    border-radius: 24px;
    border: 1px solid var(--border);
}

.success-icon-animate {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.success-header-card h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.success-header-card p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Form Card */
.details-form-card {
    background: var(--bg-primary);
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.form-header {
    padding: 24px 40px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.purchase-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.premium-form {
    padding: 40px;
}

.form-group-premium {
    margin-bottom: 24px;
}

.form-group-premium label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-group-premium label i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.input-wrapper input, .input-wrapper textarea {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
}

.input-wrapper input:focus, .input-wrapper textarea:focus {
    border-color: var(--primary);
    background: rgba(61, 254, 2, 0.02);
    outline: none;
    box-shadow: 0 0 15px rgba(61, 254, 2, 0.05);
}

.input-hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.form-footer {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privacy-note {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn-premium {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(61, 254, 2, 0.2);
}

.submit-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(61, 254, 2, 0.3);
}

@media (max-width: 768px) {
    .form-footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .submit-btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .success-header-card {
        padding: 24px;
    }
    
    .premium-form {
        padding: 24px;
    }
}


/* --- PREMIUM CONFIRMATION PAGE --- */

.confirmation-page-premium {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.confirmation-hero {
    text-align: center;
    margin-bottom: 48px;
}

.conf-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid var(--primary);
}

.conf-icon-box i {
    width: 40px;
    height: 40px;
}

.confirmation-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.confirmation-hero p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Order Summary Card */
.order-summary-card {
    background: var(--bg-primary);
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 48px;
}

.summary-header {
    padding: 24px 40px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-id-box .label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.order-id-box .value {
    font-family: monospace;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.status-pill-hound {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulse-amber 1.5s infinite;
}

@keyframes pulse-amber {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.summary-body {
    padding: 32px 40px;
}

.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.prod-details h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #fff;
}

.prod-details p {
    font-size: 13px;
    color: var(--text-muted);
}

.prod-price {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.total-row strong {
    font-size: 24px;
    color: var(--primary);
}

/* Next Steps Grid */
.next-steps-premium h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

.steps-grid-hound {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.step-card-hound {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.step-card-hound:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-icon-white {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--border);
}

.step-card-hound h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.step-card-hound p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.confirmation-footer {
    text-align: center;
}

.browse-btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.support-text {
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-muted);
}

.support-text a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .steps-grid-hound {
        grid-template-columns: 1fr;
    }
    
    .summary-header {
        padding: 24px;
    }
    
    .summary-body {
        padding: 24px;
    }
}


/* --- PREMIUM PAYMENT PAGE --- */

.payment-page-premium {
    padding: 80px 0;
    min-height: calc(100vh - 120px);
}

.payment-layout-hound {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.payment-form-card {
    background: var(--bg-primary);
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.card-header-premium {
    padding: 32px 40px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-header-premium h2 {
    font-size: 20px;
    font-weight: 800;
}

.header-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.checkout-form-premium {
    padding: 40px;
}

.form-section-hound {
    margin-bottom: 24px;
}

.form-section-hound label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-section-hound label i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.premium-input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.premium-input-box input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
}

.premium-input-box input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(61, 254, 2, 0.05);
}

.card-brands {
    position: absolute;
    right: 16px;
    display: flex;
    gap: 8px;
}

.card-brands img {
    height: 20px;
    opacity: 0.8;
}

.form-row-hound {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-badges-row {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.secure-badge-hound {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.secure-badge-hound i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.submit-pay-btn {
    width: 100%;
    height: 60px;
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 16px;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 12px 32px rgba(61, 254, 2, 0.2);
    margin-bottom: 20px;
}

.submit-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(61, 254, 2, 0.3);
}

.safe-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* Sidebar Summary */
.summary-card-hound {
    background: var(--bg-primary);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 24px;
}

.summary-card-hound h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.summary-product-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.p-img-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-info-thumb strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
}

.p-info-thumb span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.calc-row.discount {
    color: var(--primary);
}

.calc-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.calc-row.total {
    color: #fff;
    font-size: 16px;
}

.calc-row.total strong {
    font-size: 20px;
}

.guarantee-sidebar-card {
    background: rgba(61, 254, 2, 0.05);
    border: 1px solid var(--primary-light);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 16px;
}

.guarantee-sidebar-card i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.guarantee-sidebar-card strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.guarantee-sidebar-card p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1000px) {
    .payment-layout-hound {
        grid-template-columns: 1fr;
    }
}


/* --- PREMIUM FOOTER REDESIGN --- */

.footer {
    background: #050505;
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(61, 254, 2, 0.2));
}

.footer-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-links h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links-list a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-links-list a:hover::before {
    width: 10px;
}

.security-section {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}

.security-section:hover {
    border-color: rgba(61, 254, 2, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.security-section h4 {
    margin-bottom: 16px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.payment-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    width: max-content;
}

.pay-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pay-card img {
    height: 18px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s;
}

.pay-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.pay-card:hover img {
    opacity: 1;
    filter: grayscale(0);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fff;
}

/* WhatsApp Redesign */
.whatsapp-btn-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn-premium:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn-premium i {
    width: 32px;
    height: 32px;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse-anim 2s infinite;
}

@keyframes whatsapp-pulse-anim {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* --- HOME PAGE SECTIONS FIX --- */

.features-section {
    padding: 100px 0;
    margin-bottom: 40px;
}

.deals-section {
    padding: 80px 0;
}

.home-page section:last-of-type {
    margin-bottom: 80px;
}


/* --- HOME PAGE FEATURES DESIGN --- */

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    border: 1px solid var(--border);
}

.feature-icon.highlight {
    background: var(--primary-light);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(61, 254, 2, 0.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .features-section .features-grid {
        grid-template-columns: 1fr;
    }
}


/* --- MOBILE HEADER & TRUST BAR FIX --- */

@media (max-width: 768px) {
    .trust-bar {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .trust-bar .container {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        gap: 24px;
        padding: 0 15px;
        scrollbar-width: none; /* Firefox */
    }
    
    .trust-bar .container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .trust-bar span {
        flex-shrink: 0;
    }

    .header-content {
        padding: 12px 16px;
    }

    .logo img {
        height: 45px;
    }

    .mobile-menu-btn {
        display: block !important;
        margin-left: 10px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid var(--border);
    }

    .nav.nav-open {
        right: 0;
        box-shadow: -20px 0 60px rgba(0,0,0,0.8);
    }

    .nav-link {
        font-size: 20px;
        font-weight: 700;
    }

    .header-actions .support-link {
        display: none;
    }
}


/* --- MOBILE MENU REFINEMENT --- */

@media (max-width: 768px) {
    .nav {
        padding-top: 100px;
        justify-content: flex-start;
    }

    .nav-link.mobile-only {
        display: block;
    }

    /* Fixed position for mobile actions to avoid wrap */
    .header-actions {
        gap: 12px;
    }

    .cart-btn {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: var(--bg-tertiary);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        z-index: 1001; /* Above nav */
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

.mobile-only {
    display: none;
}


/* --- MOBILE LAYOUT REFINEMENTS --- */

@media (max-width: 768px) {
    .container {
        padding: 0 24px; /* Slightly more padding for better breathability */
    }

    /* Hero Trust Logos */
    .trust-logos {
        gap: 24px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 -24px; /* Bleed out to edges */
        padding: 0 24px; /* But keep content aligned */
    }

    .trust-logos::-webkit-scrollbar {
        display: none;
    }

    .trust-logo {
        flex-shrink: 0;
        font-size: 13px;
    }

    /* Section Headers */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .view-all-link {
        align-self: flex-start;
    }
    
    .section-title {
        font-size: 24px;
    }
}


/* --- MOBILE SPACING & TYPOGRAPHY --- */

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px; /* Smaller title on mobile */
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-actions .btn-primary, 
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .deals-section {
        padding: 80px 0 40px; /* More space above Featured Deals */
    }
}


/* --- FOOTER MOBILE PAYMENT ICONS FIX --- */

@media (max-width: 480px) {
    .payment-methods {
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: space-between;
    }

    .pay-card {
        padding: 4px 8px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    .pay-card img {
        height: 14px;
        width: auto;
        max-width: 100%;
    }
}


/* --- WHATSAPP MOBILE BUTTON SIZE FIX --- */

@media (max-width: 768px) {
    .whatsapp-btn-premium {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn-premium i {
        width: 26px;
        height: 26px;
    }
}


/* --- MOBILE LOGO AND HEADER REFINEMENT --- */

@media (max-width: 768px) {
    .logo img {
        height: 38px !important; /* Smaller logo for mobile only */
    }

    .header-content {
        padding: 10px 16px; /* Slightly tighter vertical padding */
    }

    .trust-bar {
        padding: 4px 0; /* Tighter trust bar */
    }

    .trust-bar span i {
        width: 12px;
        height: 12px;
    }
}

