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

:root {
  --bg-deep: #050714;
  --bg-purple: #1a0f3d;
  --bg-blue: #0d1b3e;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.55);
  --gold-light: #fff3c2;
  --gold-mid: #f7d47a;
  --gold-dark: #c78b28;
  --gold-shadow: rgba(199, 139, 40, 0.35);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --section-padding: 90px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(120, 50, 220, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 90%, rgba(40, 90, 220, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(36, 20, 73, 0.6) 0%, var(--bg-deep) 70%);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--section-padding) 0;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 40%, var(--gold-dark) 100%);
  color: #1a1200;
  box-shadow: 0 8px 26px var(--gold-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px var(--gold-shadow);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-cart {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-cart:hover {
  background: rgba(247, 212, 122, 0.15);
  border-color: rgba(247, 212, 122, 0.35);
  color: var(--gold-mid);
}

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(5, 7, 20, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-container {
  width: min(1200px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 34px;
  height: 34px;
  color: var(--gold-mid);
}

.brand-logo svg {
  width: 100%;
  height: 100%;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.search-bar {
  flex: 1;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-primary);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.25s ease;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-bar input:focus {
  border-color: rgba(247, 212, 122, 0.4);
  background: rgba(0, 0, 0, 0.35);
}

.search-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.search-btn {
  position: absolute;
  right: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  background: var(--gold-mid);
  color: #1a1200;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-btn:hover {
  background: var(--gold-light);
}

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

.nav-link {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-mid);
  color: #1a1200;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-dropdown-wrapper {
  position: relative;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 260px;
  background: rgba(20, 18, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 1100;
}

.profile-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown.hidden {
  display: none;
}

.dropdown-header {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.dropdown-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.dropdown-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.dropdown-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-actions .btn {
  width: 100%;
  padding: 11px;
}

.dropdown-menu {
  list-style: none;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.dropdown-menu li a:hover {
  color: var(--gold-mid);
}

.dropdown-menu li a svg {
  width: 18px;
  height: 18px;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.logout-link {
  color: #ff6b6b !important;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ===================== Hero ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
}

.hero-content {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #d4c8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-mid);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: relative;
  width: 420px;
  height: 420px;
}

.orbit-icon {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  animation: orbitFloat 6s ease-in-out infinite;
}

.orbit-icon svg {
  width: 42px;
  height: 42px;
}

.orbit-icon.icon-netflix { color: #e50914; top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-icon.icon-spotify { color: #1db954; top: 20%; right: 0; animation-delay: 0.5s; }
.orbit-icon.icon-disney { color: #113ccf; bottom: 20%; right: 0; animation-delay: 1s; }
.orbit-icon.icon-youtube { color: #ff0000; bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.orbit-icon.icon-prime { color: #00a8e1; bottom: 20%; left: 0; animation-delay: 2s; }
.orbit-icon.icon-xbox { color: #107c10; top: 20%; left: 0; animation-delay: 2.5s; }

.orbit::before {
  content: '';
  position: absolute;
  inset: 50px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 212, 122, 0.2) 0%, transparent 70%);
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.05); }
}

/* ===================== Section Header ===================== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

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

/* ===================== Categories ===================== */
.categories {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 212, 122, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.08);
}

.category-icon svg {
  width: 28px;
  height: 28px;
}

.category-icon.streaming { color: #e50914; box-shadow: 0 0 24px rgba(229, 9, 20, 0.2); }
.category-icon.music { color: #1db954; box-shadow: 0 0 24px rgba(29, 185, 84, 0.2); }
.category-icon.gaming { color: #9b59b6; box-shadow: 0 0 24px rgba(155, 89, 182, 0.2); }
.category-icon.tools { color: #00a8e1; box-shadow: 0 0 24px rgba(0, 168, 225, 0.2); }
.category-icon.creative { color: #f47521; box-shadow: 0 0 24px rgba(244, 117, 33, 0.2); }
.category-icon.education { color: #66c0f4; box-shadow: 0 0 24px rgba(102, 192, 244, 0.2); }

.category-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===================== Products ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 212, 122, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.wishlist-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

.wishlist-btn svg {
  width: 18px;
  height: 18px;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-svg {
  width: 100px;
  height: 100px;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-mid);
}

.rating {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.section-footer {
  text-align: center;
  margin-top: 40px;
}

/* ===================== Bundles ===================== */
.bundles {
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
}

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

.bundle-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 24px;
  transition: all 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bundle-images {
  display: flex;
  justify-content: center;
  gap: -10px;
  margin-bottom: 20px;
}

.bundle-img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  border: 3px solid rgba(5, 7, 20, 0.8);
}

.bundle-img:first-child {
  margin-left: 0;
}

.bundle-img svg {
  width: 34px;
  height: 34px;
}

.netflix-bg { background: linear-gradient(135deg, #e50914, #b20710); color: #fff; }
.disney-bg { background: linear-gradient(135deg, #113ccf, #0063e5); color: #fff; }
.prime-bg { background: linear-gradient(135deg, #00a8e1, #0077c1); color: #fff; }
.xbox-bg { background: linear-gradient(135deg, #107c10, #0e5e0e); color: #fff; }
.spotify-bg { background: linear-gradient(135deg, #1ed760, #1db954); color: #fff; }
.adobe-bg { background: linear-gradient(135deg, #ff0000, #330000); color: #fff; }
.youtube-bg { background: linear-gradient(135deg, #ff0000, #cc0000); color: #fff; }

.bundle-info {
  text-align: center;
}

.bundle-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.bundle-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.bundle-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.new-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-mid);
}

.old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ===================== Seller CTA ===================== */
.seller-cta {
  padding-bottom: var(--section-padding);
}

.seller-card {
  background: linear-gradient(135deg, rgba(247, 212, 122, 0.1) 0%, rgba(26, 15, 61, 0.6) 100%);
  border: 1px solid rgba(247, 212, 122, 0.2);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.seller-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.seller-content > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 540px;
}

.seller-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.seller-features span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.seller-visual {
  display: flex;
  justify-content: center;
}

.seller-svg {
  width: 220px;
  height: 220px;
}

/* ===================== Trust ===================== */
.trust {
  padding-top: 0;
  padding-bottom: var(--section-padding);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(247, 212, 122, 0.1);
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================== Footer ===================== */
.site-footer {
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px;
}

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

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: rgba(247, 212, 122, 0.15);
  color: var(--gold-mid);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-mid);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 12px;
  font-size: 1.2rem;
}

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .orbit {
    width: 320px;
    height: 320px;
  }

  .orbit-icon {
    width: 60px;
    height: 60px;
  }

  .orbit-icon svg {
    width: 32px;
    height: 32px;
  }

  .seller-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seller-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .search-bar {
    display: none;
  }

  .nav-link {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 8, 28, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-link {
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 10px 0;
  }

  .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .category-grid,
  .product-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .seller-card {
    padding: 32px 24px;
  }
}
