/* Glassmorphism base */
:root {
  --bg: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0b1020 100%);
  --glass: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.25);
  --accent: #7c3aed;
  --accent2: #06b6d4;
  --text: #e5e7eb;
  --muted: #9ca3af;
}

/* Reset all margins/padding and prevent scrollbars */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
}
body.glass-bg {
  min-height: 100vh;
  background: var(--bg); /* fallback */
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
}
body.glass-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(124,58,237,0.18), transparent 60%),
    radial-gradient(800px 400px at 80% 30%, rgba(6,182,212,0.18), transparent 60%),
    var(--bg);
  animation: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
body.glass-bg {
  background: var(--bg);
}
.glow-field {
  display: block;
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px) saturate(1.15);
  mix-blend-mode: screen;
}
.glow-field .orb {
  position: absolute;
  width: 260px; height: 260px; border-radius: 50%;
  opacity: 0.35;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,0.9), rgba(124,58,237,0.0) 60%),
              radial-gradient(circle at 70% 70%, rgba(6,182,212,0.7), rgba(6,182,212,0.0) 60%);
  animation: floatA 16s ease-in-out infinite;
}
.glow-field .orb.o1 { left: 8%;  top: 20%; transform: translate3d(0,0,0); }
.glow-field .orb.o2 { right: 12%; top: 18%; animation: floatB 18s ease-in-out infinite; }
.glow-field .orb.o3 { left: 25%; bottom: 10%; width: 320px; height: 320px; animation: floatC 22s ease-in-out infinite; }
.glow-field .orb.o4 { right: 30%; bottom: 8%; width: 280px; height: 280px; opacity: 0.28; }
.glow-field .orb.o5 { left: 50%; top: 50%; width: 220px; height: 220px; opacity: 0.22; }
.glow-field .aurora {
  position: absolute; inset: -40%;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(124,58,237,0.22), rgba(6,182,212,0.18), rgba(255,255,255,0.12), transparent 35%,
    rgba(124,58,237,0.22), rgba(6,182,212,0.18), transparent 65%);
  filter: blur(60px);
  opacity: 0.35;
  animation: none;
}
.glow-field .aurora {
  position: absolute; inset: -40%;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(124,58,237,0.22), rgba(6,182,212,0.18), rgba(255,255,255,0.12), transparent 35%,
    rgba(124,58,237,0.22), rgba(6,182,212,0.18), transparent 65%);
  filter: blur(60px);
  opacity: 0.35;
  /* Disable spin to avoid any page rotation feel */
  animation: none;
}

/* Core layout and components restored */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.glass-card { background: var(--glass); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 16px; }

.topbar { font-size: 14px; }
.topbar .container { display: flex; justify-content: flex-end; padding: 8px 24px; }
.topbar .top-links { display: flex; gap: 12px; }
.topbar a { color: var(--text); text-decoration: none; opacity: 0.9; }

.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.brand { font-weight: 800; font-size: 20px; color: var(--text); text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 16px; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; opacity: 0.9; transition: opacity 0.2s ease; }
.nav-links a:hover { opacity: 1; }
.nav-links .dropdown { position: relative; }
.dropdown-menu { 
  position: absolute; 
  top: calc(100% + 8px); 
  left: 0; 
  min-width: 280px; 
  max-width: 320px;
  padding: 12px; 
  display: none; 
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 0.2s ease-out;
}
.dropdown-menu a { 
  display: block; 
  padding: 10px 14px; 
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}
.dropdown:hover .dropdown-menu { display: block; }

.dropdown-arrow {
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title { margin-bottom: 12px; }
.section-title h2 { font-size: 28px; letter-spacing: 0.5px; }
.section-title p { color: var(--muted); }
.intro-hero .intro-content { text-align: left; } /* keep hero text aligned */

.btn { background: linear-gradient(90deg, var(--accent), var(--accent2)); color: #fff; border: none; border-radius: 12px; padding: 10px 16px; font-weight: 600; text-decoration: none; display: inline-block; cursor: pointer; }
.btn:hover { filter: brightness(1.08); }
.btn.btn-lg { font-size: 18px; padding: 14px 22px; font-weight: 700; }

.accent-bar { width: 64px; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 999px; margin: 8px 0 14px; }
.hero-card { padding: 24px; }

.carousel { position: relative; overflow: hidden; }
.carousel .carousel-track { display: flex; gap: 16px; transition: transform 0.4s ease; }
.carousel .product-card { flex: 0 0 220px; width: 220px; }
.carousel .product-card img { width: 100%; aspect-ratio: 4 / 5; height: auto; object-fit: cover; }
@media (max-width: 480px) {
  .carousel .product-card { flex-basis: 160px; width: 160px; }
}
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--glass); border: 1px solid var(--glass-border); color: var(--text); cursor: pointer; }
.nav-btn.left { left: 8px; }
.nav-btn.right { right: 8px; }

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 8px 10px; border-bottom: 1px solid var(--glass-border); text-align: left; }
.table thead th { color: var(--muted); }

.alert { padding: 12px; border-radius: 12px; }
.alert.error { background: rgba(239,68,68,0.18); border: 1px solid rgba(239,68,68,0.5); }
.alert.success { background: rgba(34,197,94,0.18); border: 1px solid rgba(34,197,94,0.5); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 6px; font-size: 14px; color: var(--muted); }
.input, .textarea { width: 100%; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.04); color: var(--text); }
.textarea { min-height: 100px; }

/* Panels used by seasonal section */
.panel { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.panel img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; }
.panel .copy { padding: 12px; }

/* Benefits strip (marquee) — slide horizontally only */
.benefits-strip {
  padding: 12px;
  margin: 12px 0 24px 0;
  position: relative;
  overflow: hidden; /* prevent any horizontal bleed */
  /* edge fade to avoid visible split at sides */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.benefits-strip .text-slider {
  display: inline-flex;           /* treat as continuous track */
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  padding: 0 64px;                /* matches mask fade distance */
  width: max-content;             /* avoid wrapping/jumps */
  will-change: transform;
  animation: marqueeX 18s linear infinite;
}
.benefits-strip .text-slider span {
  color: #fff;
  font-weight: 700;               /* a bit bolder for premium look */
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}
@keyframes marqueeX {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); } /* seamless loop with duplicated items */
}
.benefits-strip .text-slider span {
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Product detail layout */
.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: start;
}
.product-detail .image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.product-detail .image-wrap img {
  width: 100%;
  height: 420px;            /* constrain height */
  object-fit: cover;        /* crop elegantly */
  display: block;
}
.product-detail .details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail .image-wrap img {
    height: 280px;
  }
  
  /* Mobile dropdown adjustments */
  .dropdown-menu {
    min-width: 250px;
    max-width: 90vw;
    left: 50%;
    transform: translateX(-50%);
    max-height: 60vh;
    overflow-y: auto;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .dropdown-menu {
    min-width: 200px;
    padding: 8px;
  }
  
  .dropdown-menu a {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Full-bleed utility: edge-to-edge across viewport */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

/* Hero layout: inner container keeps content aligned */
.intro-hero .hero-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2; /* keep text above premium overlays */
}
/* Premium hero background: spotlight + vignette */
.intro-hero {
  position: relative;
  overflow: hidden;
}
.intro-hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(900px 480px at 18% 35%, rgba(124,58,237,0.25), transparent 60%),
    radial-gradient(700px 380px at 72% 30%, rgba(6,182,212,0.22), transparent 62%);
  filter: blur(40px);
  opacity: 0.7;
}
.intro-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* subtle vignette to frame the hero and feel more premium */
  background: radial-gradient(closest-corner at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  mix-blend-mode: multiply;
}

.intro-hero .intro-content {
  text-align: left;
  min-height: 680px;
  padding: 140px 0 120px; /* moved text lower */
  position: relative;
  overflow: hidden;
}
.intro-hero .intro-content h1 {
  margin: 0 0 10px 0;
  font-size: 72px;      /* was 64px */
  line-height: 1.1;
  letter-spacing: 1.2px;
  font-weight: 800;
}

.intro-hero .intro-content p {
  font-size: 24px;      /* was 22px */
  color: #e5e7eb;
  margin-bottom: 24px;
}

.accent-bar {
  width: 96px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  margin: 12px 0 18px;
}

.btn.btn-lg {
  font-size: 22px;      /* was 20px */
  padding: 18px 28px;   /* was 16px 24px */
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 28px rgba(124,58,237,0.28), 0 6px 16px rgba(6,182,212,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden; /* for shine sweep */
}
.btn.btn-lg:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(124,58,237,0.38), 0 8px 22px rgba(6,182,212,0.28);
}
/* add a tasteful arrow and motion */
.btn.btn-lg::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  font-weight: 800;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn.btn-lg:hover::after {
  transform: translateX(4px);
  opacity: 1;
}
/* shimmer sweep on hover */
.btn.btn-lg::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(0);
  opacity: 0;
}
.btn.btn-lg:hover::before {
  animation: shineSweep 1s linear;
  opacity: 0.8;
}
@keyframes shineSweep {
  from { transform: translateX(0); }
  to   { transform: translateX(240%); }
}

@media (max-width: 768px) {
  .intro-hero { min-height: 600px; padding: 64px 0; }
  .intro-hero .intro-content h1 { 
    font-size: 48px;    /* was 40px */
  }
  .intro-hero .intro-content p { 
    font-size: 20px;    /* was 18px */
  }
  .btn.btn-lg { 
    font-size: 20px;    /* was 18px */
    padding: 14px 22px; /* was 12px 18px */
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 36px;
  height: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Support click-open arrow rotation */
.dropdown.open .dropdown-arrow { transform: rotate(180deg); }

/* Mobile layout */
@media (max-width: 768px) {
  .topbar { display: none; } /* hide crowded top links on phones */

  .navbar .container { padding: 8px 12px; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: 56px; /* navbar height */
    left: 0;
    right: 0;
    display: none;             /* hidden until toggled */
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: var(--glass);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    z-index: 100;
  }
  .navbar.open .nav-links { display: flex; }

  /* Dropdowns open inline on tap */
  .nav-links .dropdown { width: 100%; }
  .nav-links .dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .dropdown-menu {
    position: static;
    display: none;
    margin-top: 6px;
    padding: 8px;
    border-radius: 12px;
  }
  .dropdown.open .dropdown-menu { display: block; }
}

/* Small phones */
@media (max-width: 480px) {
  .dropdown-menu a { padding: 8px 12px; font-size: 13px; }
}

/* Navbar sits above backdrop/menu */
.navbar { position: sticky; top: 0; z-index: 200; }

/* Backdrop behind mobile menu (cover full viewport) */
.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;               /* cover from very top */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 6, 18, 0.75);  /* darker dim */
  backdrop-filter: blur(2px);
  z-index: 180;         /* below menu, above page content */
}

/* Ensure menu is above the backdrop */
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .navbar.open .nav-links { display: flex; }
  .navbar.open .nav-backdrop { display: block; }
}

/* Optional: rotate arrow when dropdown opened by tap */
.dropdown.open .dropdown-arrow { transform: rotate(180deg); }

/* Footer — Ultra Premium */
.footer {
  position: relative;
  margin-top: 48px;
  padding: 48px 0 24px;
  background:
    radial-gradient(1200px 400px at -200px -200px, rgba(255,255,255,0.06), transparent 70%),
    radial-gradient(800px 320px at 100% 0%, rgba(255, 84, 142, 0.14), transparent 60%),
    radial-gradient(800px 320px at 0% 100%, rgba(67, 103, 255, 0.14), transparent 60%);
  border: 1px solid var(--glass-border);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: -120px -120px auto auto;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(67,103,255,0.28), rgba(255,84,142,0.28));
  filter: blur(64px);
  opacity: 0.35;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) { .footer-content { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .footer-content { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .footer-content { grid-template-columns: 1fr; } }

.footer-section {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.footer-section h3 {
  position: relative;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: 0.6px;
}
.footer-section h3::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0.9;
}

.contact-info p { margin: 6px 0; color: var(--muted); }
.contact-info strong { color: var(--text); }
/* Make contact details feel premium and clickable */
.contact-info a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}
.contact-info a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--accent);
}
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link {
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.social-link:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.32); }

.footer-links, .footer-links li { list-style: none; }
.footer-links { padding: 0; margin: 0; }
.footer-links a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.85;
  position: relative;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.2s ease;
}
.footer-links a:hover { opacity: 1; }
.footer-links a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
  text-align: center;
}
.footer-bottom p { color: var(--muted); margin: 0; }

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Premium product card */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover img { transform: scale(1.03); }
.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.product-card .meta {
  padding: 12px;
}
.product-card .title {
  font-weight: 700;
  font-size: 16px;
}
.product-card .brand {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.product-card .price {
  font-weight: 800;
  font-size: 18px;
  margin-top: 8px;
}
.product-card .actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.product-card .actions .btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}
/* Grid for shop listing */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .card-grid { grid-template-columns: 1fr; } }
.product-card .meta {
  padding: 12px;
}
.product-card .title {
  font-weight: 700;
  font-size: 16px;
}
.product-card .brand {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.product-card .price {
  font-weight: 800;
  font-size: 18px;
  margin-top: 8px;
}
.product-card .actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.product-card .actions .btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}
/* Seasonal panels — premium look */
.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Seasonal section — vibrant premium vibe */
.seasonal-section {
  position: relative;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(14,18,26,0.50), rgba(14,18,26,0.28)),
    radial-gradient(700px 260px at 12% 6%, rgba(0,0,0,0.20), transparent 60%),
    radial-gradient(700px 260px at 88% 96%, rgba(0,0,0,0.18), transparent 60%);
  border-radius: 18px;
}
.seasonal-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  pointer-events: none;
  background:
    radial-gradient(520px 220px at 14% 10%, var(--accent), transparent 65%),
    radial-gradient(520px 220px at 86% 90%, var(--accent2), transparent 65%);
  opacity: 0.22;           /* soft, vibrant tint */
  filter: blur(18px);       /* glow without haze */
}

/* Premium heading + subtitle with colored underglow */
.seasonal-section .section-title h2 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: 0.6px;
  line-height: 1.15;
  text-shadow: 0 1px 10px rgba(0,0,0,0.25), 0 0 14px rgba(0,0,0,0.08);
  position: relative;
}
.seasonal-section .section-title h2::after {
  content: "";
  display: block;
  width: 160px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 28px rgba(0,0,0,0.32), 0 0 18px rgba(0,0,0,0.18);
}
.seasonal-section .section-title p {
  margin-top: 6px;
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--muted);
  text-shadow: 0 0 8px rgba(0,0,0,0.10);
  position: relative;
}
.seasonal-section .section-title p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 120px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(0,0,0,0.20));
}

/* Panel tint — remove white wash, add premium color glow */
.seasonal-panels .premium-panel {
  grid-template-columns: 58% 42%;
  backdrop-filter: saturate(1.06) blur(4px);
}
.premium-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.24)),
    radial-gradient(360px 160px at 16% 14%, var(--accent), transparent 60%),
    radial-gradient(360px 160px at 84% 86%, var(--accent2), transparent 60%);
  opacity: 0.16;           /* gentle vibrancy */
  filter: blur(14px);
}
.premium-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.panel-image-link { display: block; border-radius: 12px; overflow: hidden; }

/* Seasonal image underglow — soft, premium accent */
.seasonal-panels .premium-panel .panel-image-link {
  position: relative;
  overflow: visible; /* allow glow to show outside image edge */
  border-radius: 12px;
}
/* Ensure panel overlay sits below the glow */
.seasonal-panels .premium-panel { position: relative; }
.seasonal-panels .premium-panel::before { z-index: 0; }

/* Under-glow element (now layered above panel overlay) */
.seasonal-panels .premium-panel .panel-image-link::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;              /* sits just under the image */
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0.32;             /* tasteful glow */
  filter: blur(14px);         /* soft underglow */
  z-index: 1;                /* glow above panel ::before */
  pointer-events: none;
}

/* Image sits above the glow */
.seasonal-panels .premium-panel img {
  position: relative;         /* ensure image sits above glow */
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: saturate(1.08) contrast(1.06);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.seasonal-panels .premium-panel:hover img {
  transform: scale(1.02);
  filter: saturate(1.14) contrast(1.08);
}

/* Desktop boost: slightly larger/brighter glow so it reads clearly */
@media (min-width: 1025px) {
  .seasonal-panels .premium-panel .panel-image-link::after {
    bottom: -10px;
    height: 40px;
    opacity: 0.42;       /* a touch brighter on desktop */
    filter: blur(18px);  /* broader, softer glow */
  }
}

/* Slight variation for left/right panels for a more bespoke feel */
.seasonal-panels .premium-panel:first-child .panel-image-link::after {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}
.panel { display: grid; grid-template-columns: 60% 40%; align-items: stretch; } /* bigger image, text to the right */
.panel img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; display: block; border-radius: 12px; }
.panel .copy { padding: 12px; display: flex; align-items: center; justify-content: center; }
.panel .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.product-card .meta {
  padding: 12px;
}
.product-card .title {
  font-weight: 700;
  font-size: 16px;
}
.product-card .brand {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.product-card .price {
  font-weight: 800;
  font-size: 18px;
  margin-top: 8px;
}
.product-card .actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.product-card .actions .btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}
/* Panel typography and actions (Seasonal Collection) */
.panel .title { font-weight: 700; font-size: 16px; }
.panel .brand { color: var(--muted); text-transform: uppercase; font-size: 12px; letter-spacing: 0.8px; margin-top: 4px; }
.panel .price { font-weight: 800; font-size: 18px; margin-top: 8px; }
.panel .actions { display: flex; gap: 8px; margin-top: 10px; }
.panel .actions .btn { padding: 8px 12px; border-radius: 10px; font-size: 13px; }

/* Image: keep punchy without bleaching */
.seasonal-panels .premium-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: saturate(1.08) contrast(1.06);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.seasonal-panels .premium-panel:hover img {
  transform: scale(1.02);
  filter: saturate(1.14) contrast(1.08);
}

/* Copy block: premium typography */
.seasonal-panels .premium-panel .copy {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.seasonal-panels .premium-panel .copy h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.seasonal-panels .premium-panel .copy .subtitle {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

/* Coming soon chip — match accent vibe */
.coming-soon {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
  opacity: 0.95;
}

@media (max-width: 768px) {
  /* Stack seasonal panels on mobile for better readability */
  .split-panels { grid-template-columns: 1fr; }
  .seasonal-panels .premium-panel { grid-template-columns: 1fr; }
  .panel img { height: auto; }
  .panel .copy { padding: 14px; }
  .panel .title { font-size: 18px; }
  .panel .price { font-size: 20px; }
}
@media (max-width: 480px) {
  /* Make action buttons full-width on small phones */
  .panel .actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .panel .actions .btn { width: 100%; }
}
.product-card .actions .btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}
/* Seasonal Collection: show only section labels */
.split-panels .panel .brand,
.split-panels .panel .title,
.split-panels .panel .price,
.split-panels .panel .actions { display: none !important; }

.split-panels .panel .copy h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.product-card .actions .btn {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}

:root {
    --anim-bg-opacity: 0.85; /* tweak to taste */
}

/* Full-viewport animated background canvas */
.canvas-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: var(--anim-bg-opacity);
}

/* Scroll-in animations */
[data-animate] {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-animate].in {
    opacity: 1;
    transform: none;
}

/* Optional variants */
[data-animate="slide-up"] { transform: translateY(24px); }
[data-animate="fade-in"] { transform: none; }
[data-animate="zoom-in"] { transform: scale(0.96); }

[data-parallax] {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Reduced motion fallback: keep content snappy without movement */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Premium text animations */

/* Animated gradient text fill */
.text-gradient-anim {
  background: linear-gradient(90deg, #6E8EFB, #A777E3, #F9A8D4, #6E8EFB);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Shimmer sweep across text */
.text-shimmer { position: relative; }
.text-shimmer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -30%;
  width: 30%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  opacity: 0;
}
.text-shimmer.in::after,
.text-shimmer:hover::after {
  animation: textShimmer 2.2s ease-in-out;
}
@keyframes textShimmer {
  0%   { transform: translateX(0) skewX(-20deg); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translateX(260%) skewX(-20deg); opacity: 0; }
}

/* Subtle glow pulse (premium neon) */
.text-glow {
  text-shadow: 0 0 8px rgba(124,58,237,0.6), 0 0 18px rgba(6,182,212,0.4);
  animation: glowPulse 3.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.12); }
}

/* Underline sweep on reveal/hover */
.underline-sweep { position: relative; }
.underline-sweep::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  height: 3px; width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.underline-sweep.in::after,
.underline-sweep:hover::after { width: 100%; }

/* Split text staggering: characters/words animated in sequence */
[data-split] { display: inline-block; }
[data-split] .char,
[data-split] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* When revealed, animate in */
[data-split].in .char,
[data-split].in .word {
  opacity: 1;
  transform: none;
}

/* Stagger timing using CSS vars set by JS */
[data-split].stagger .char {
  transition-delay: calc(var(--char-index, 0) * var(--stagger-step, 40ms));
}
[data-split="words"].stagger .word {
  transition-delay: calc(var(--word-index, 0) * var(--stagger-step, 80ms));
}

/* Variants controlled via data-animate */
[data-split][data-animate="chars-up"] .char { transform: translateY(24px); }
[data-split][data-animate="chars-fade"] .char { transform: none; }
[data-split][data-animate="chars-zoom"] .char { transform: scale(0.92); }
[data-split][data-animate="words-up"] .word { transform: translateY(24px); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-split] .char,
  [data-split] .word {
    transition: none;
    opacity: 1;
    transform: none;
  }
}