/* ============================================================
   ERYA — Gifts That Speak for You
   ============================================================ */

:root {
  --lav: #D2C3F6;
  --lav-light: #EEE7FF;
  --lav-bg: #F7F1FF;
  --purple: #36255C;
  --purple2: #4A3578;
  --cream: #FFF7E8;
  --white: #FFFFFF;
  --text: #2E2350;
  --muted: #7D7398;
  --line: #ECE4FA;
  --shadow: 0 10px 30px rgba(54, 37, 92, 0.08);
  --shadow-lg: 0 20px 50px rgba(54, 37, 92, 0.12);
  --r: 18px;
  --r-lg: 26px;
  --font-p: 'Playfair Display', serif;
  --font-u: 'Urbanist', sans-serif;
  --font-d: 'Dancing Script', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-u);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { flex-shrink: 0; }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-p); color: var(--purple); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.05rem; font-weight: 700; font-family: var(--font-u); color: var(--text);}
h4 { font-size: 1rem; }
h5 { font-size: 1rem; color: #fff; }
.scr {
  font-family: var(--font-d);
  color: #9d7ad4;
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: .2px;
  display: block;
}
.scr.big { font-size: 2rem; text-align: center; margin-bottom: 10px; color: #8b6bc2; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 34px 0; max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
em { color: #B08CEB; font-style: italic; font-weight: 500; font-family: var(--font-p); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn.small { padding: 10px 22px; font-size: .85rem; }
.pbtn {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 20px rgba(54,37,92,.20);
}
.pbtn:hover {
  background: var(--purple2); transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(54,37,92,.28);
}
.gbtn {
  background: #fff;
  color: var(--purple);
  border-color: var(--lav);
}
.gbtn:hover { background: var(--lav-bg); }
.wbtn {
  background: #fff;
  color: var(--purple);
  padding: 16px 34px;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(255,255,255,.20);
}
.wbtn:hover { background: var(--lav-light); transform: translateY(-2px); }
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 2px;
}
.sec-head h3 { font-size: 1.05rem; color: var(--text); }
.vmore {
  font-size: .8rem; font-weight: 700; color: var(--muted);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  transition: all .3s;
}
.vmore:hover { color: var(--purple); border-color: var(--lav); }

/* =========== TOP NAV =========== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.topbar.sc {
  box-shadow: 0 4px 18px rgba(54,37,92,.05);
  border-bottom-color: rgba(210,195,246,.20);
}
.navwrap {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brandimg { height: 40px; width: auto; }
.brandtxt {
  display: none;
  font-family: var(--font-p);
  font-size: 1.6rem; font-weight: 700;
  color: var(--purple);
}
.brandtxt.light { color: #fff; }
.navlinks {
  display: flex; gap: 28px;
}
.navlinks a {
  font-size: .9rem; font-weight: 600;
  color: var(--muted); position: relative;
  padding: 6px 0; transition: color .3s;
}
.navlinks a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: #B08CEB;
  border-radius: 2px; transition: width .3s;
}
.navlinks a:hover, .navlinks a.active { color: var(--purple); }
.navlinks a:hover::after, .navlinks a.active::after { width: 100%; }
.wacta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  transition: all .3s;
  box-shadow: 0 6px 16px rgba(37,211,102,.28);
}
.wacta:hover { background: #1ebe5d; transform: translateY(-2px); }
.hamb { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.hamb span { width: 22px; height: 2px; background: var(--purple); border-radius: 2px; transition: all .3s; }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 60px 24px 40px;
}
.herobg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(210,195,246,.34), transparent 38%),
    radial-gradient(circle at 86% 24%, rgba(210,195,246,.22), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(255,247,232,.85), transparent 36%),
    linear-gradient(180deg, #fff 0%, #FDF9FF 60%, #FFFAF4 100%);
}
.herobg::before, .herobg::after {
  content: ''; position: absolute; border: 1px solid rgba(210,195,246,.30);
  border-radius: 50%; pointer-events: none;
}
.herobg::before { width: 280px; height: 280px; top: 30px; right: -60px; }
.herobg::after { width: 220px; height: 220px; top: 100px; left: -80px; }
.herodots { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(176,140,235,.38);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); opacity: .35; }
  50%     { transform: translateY(-24px); opacity: .85; }
}
.heroin {
  position: relative; z-index: 5;
  text-align: center;
  max-width: 780px; margin: 0 auto;
}
.heroin .scr { margin-bottom: 4px; }
.heroin h1 { margin-bottom: 18px; }
.heroin em {
  position: relative;
}
.heroin em::after {
  content: ''; position: absolute;
  bottom: 3px; left: 0; right: 0; height: 10px;
  background: rgba(210,195,246,.40);
  border-radius: 4px; z-index: -1;
}
.hersub {
  font-size: 1rem; color: var(--muted);
  max-width: 600px; margin: 0 auto 28px;
}

/* =========== FEATURED COMPACT BANNER CAROUSEL =========== */
.ftrd { padding: 0 24px 30px; max-width: 100%; margin: 0; }
.ftrd-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  min-height: clamp(210px, 23vw, 340px);
  aspect-ratio: 21 / 5;
  border-radius: 32px;
  box-shadow: 0 18px 48px rgba(54,37,92,.14);
  transition: box-shadow .35s;
}
.fslider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(210px, 23vw, 340px);
}
.fslide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 7s cubic-bezier(.22,1,.36,1);
  z-index: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 28px 56px 28px 64px;
  gap: 16px;
}
.fslide-item.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}
.fslide-item .fslide-bg {
  position: absolute; inset: 0; z-index: 0;
}
.fslide-item .fslide-bg::before { content: none !important; display: none !important; }
.fslide-item .fslide-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block; opacity: 1;
  transition: transform 7s cubic-bezier(.22,1,.36,1);
}
.fslide-item.active .fslide-bg img { transform: scale(1.06); }
.fslide-copy, .fslide-sub, .fslide-title, .fslide-desc,
.fslide-cta, .fbtn, .fslide-visual, .fimg-wrap, .fdots {
  display: none !important;
}
.fslide-item.fslide-fullimg {
  padding: 0;
  display: block;
  grid-template-columns: none;
  gap: 0;
}
.farrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff;
  color: var(--purple);
  display: grid; place-items: center;
  border: 1px solid rgba(54,37,92,.08);
  transition: all .3s;
  font-size: 14px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 10px 26px rgba(54,37,92,.12);
}
.farrow:hover { background: var(--purple); color: #fff; transform: translateY(-50%) scale(1.08); }
.farrow.fl { left: 18px; }
.farrow.fr { right: 18px; }
.fdots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.fdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(54,37,92,.22);
  cursor: pointer;
  transition: all .3s;
}
.fdot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 999px;
}

/* =========== SHOP BY OCCASION (card layout matches Gifts For Everyone; icon uses arch tombstone shape as shown) =========== */
.mgrid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
}
.mcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
  transition: all .3s;
}
.mcard:hover { transform: translateY(-3px); border-color: rgba(210,195,246,.45); box-shadow: var(--shadow); }
.mico {
  width: 46px; height: 50px;
  border-radius: 50% 50% 3% 3% / 46% 46% 3% 3%;
  background: linear-gradient(135deg, #F8F0FF, #FFF5E9);
  display: grid; place-items: center;
  margin: 0 auto 7px;
  font-size: 21px;
  overflow: hidden;
}
.mico img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mcard span {
  display: block; font-size: .72rem; font-weight: 700; color: var(--text); line-height: 1.25;
}

/* =========== SHOP BY CATEGORY =========== */
.cgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ccard {
  background: var(--lav-bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(54,37,92,.05);
  transition: all .35s;
}
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(210,195,246,.50); }
.cthumb {
  aspect-ratio: 46 / 50;
  overflow: hidden;
  border-radius: 50% 50% 3% 3% / 46% 46% 3% 3%;
  background: linear-gradient(180deg, #fff, #efe2ff);
  margin-bottom: 10px;
}
.cthumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.ccard:hover .cthumb img { transform: scale(1.06); }
.ccard h4 { font-size: .85rem; color: var(--text); font-family: var(--font-u); font-weight: 700; }

/* =========== MARQUEE =========== */
.marq {
  background: var(--purple);
  overflow: hidden;
  margin: 14px 0;
  padding: 18px 0;
  min-height: 62px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.marq::before, .marq::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marq::before {
  left: 0;
  background: linear-gradient(to right, var(--purple), rgba(54,37,92,0));
}
.marq::after {
  right: 0;
  background: linear-gradient(to left, var(--purple), rgba(54,37,92,0));
}
.marq-track {
  display: flex; gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: slide 26s linear infinite;
  color: #F2E7FF;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  line-height: 1.3;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========== NEW LAUNCHES (EXACT Best Sellers layout — 3-per-view desktop, 3→2→2 mobile) =========== */
#new.section { padding-top: 22px; padding-bottom: 18px; }
#new .sec-head { margin-bottom: 12px; }
#new .sec-head h3 { font-size: 1rem; }
.nctrls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#new .vmore { padding: 3px 8px; font-size: .72rem; }

.ncar {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1px 1px 12px;
  margin: 0 -1px;
  --ncar-w: 1200px;
  scrollbar-width: thin;
  scrollbar-color: var(--lav) transparent;
}
.ncar::-webkit-scrollbar { height: 4px; }
.ncar::-webkit-scrollbar-track { background: transparent; }
.ncar::-webkit-scrollbar-thumb { background: var(--lav); border-radius: 999px; }
.ncar::-webkit-scrollbar-thumb:hover { background: var(--lav-dark, #B8A5E8); }

.ngrid {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
  width: max-content;
  padding: 0 1px;
}

.ncard {
  flex: 0 0 auto;
  min-width: 0;
  width: calc((var(--ncar-w, 1200px) - 20px) / 3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  transition: all .35s;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.ncard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(210,195,246,.5); }
.ncard .ntop {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 7px;
  flex-shrink: 0;
}
.ncard .ntop img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ncard:hover .ntop img { transform: scale(1.05); }
.ncard h4 { font-size: .8rem; margin-bottom: 2px; font-family: var(--font-u); font-weight: 700; color: var(--text); line-height: 1.25; }
.ncard p { font-size: .68rem; color: var(--muted); margin-bottom: 5px; line-height: 1.4; }
.ncard .nlist { font-size: .65rem; color: var(--muted); margin-bottom: 7px; line-height: 1.35; padding-left: 0; list-style: none; }
.ncard .nlist li { padding: 1px 0; }
.ncard .nbadge { display: none; }
.ncard .buy,
.ncard .nbuy {
  margin-top: auto;
  padding: 6px 10px;
  background: #25D366; color: #fff;
  border-radius: 999px;
  font-weight: 700; font-size: .68rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  transition: all .3s;
  text-align: center;
  flex-shrink: 0;
  text-decoration: none;
}
.ncard .buy:hover,
.ncard .nbuy:hover { background: #1ebe5d; box-shadow: 0 4px 12px rgba(37,211,102,.3); }

/* Responsive — EXACT same counts as Best Sellers 3-per desktop, 2-per tablet/mobile */
@media (max-width: 980px) {
  .ncard { width: calc((var(--ncar-w, 980px) - 10px) / 2); }
}
@media (max-width: 640px) {
  .ncard { width: calc((var(--ncar-w, 640px) - 10px) / 2); }
  .ngrid { gap: 10px; }
  .ncar { padding: 1px 1px 10px; }
  .nl, .nr { display: none; } /* arrows hidden on mobile, swipe only */
  .ncard h4 { font-size: .78rem; }
  .ncard p { font-size: .66rem; }
  .ncard .nlist { font-size: .62rem; }
  .ncard .nlist li { padding: .5px 0; }
  .ncard .nbuy, .ncard .buy { font-size: .66rem; padding: 5.5px 9px; }
  .ncard .ntop { margin-bottom: 6px; }
  .ncard .ntop img { aspect-ratio: 1.1 / 1; }
  #new .sec-head { margin-bottom: 10px; }
  #new.section { padding-top: 18px; padding-bottom: 14px; }
}

/* =========== GIFTS FOR EVERYONE =========== */
.egrid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
}
.ecard {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
  transition: all .3s;
}
.ecard:hover { transform: translateY(-3px); border-color: rgba(210,195,246,.45); box-shadow: var(--shadow); }
.ebadge {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, #F8F0FF, #FFF5E9);
  display: grid; place-items: center;
  margin: 0 auto 7px;
  font-size: 17px;
}
.ecard span {
  display: block; font-size: .72rem; font-weight: 700; color: var(--text); line-height: 1.25;
}

/* =========== BEST SELLERS HORIZONTAL CAROUSEL (Compact) =========== */
#best.section { padding-top: 22px; padding-bottom: 18px; }
#best .sec-head { margin-bottom: 12px; }
#best .sec-head h3 { font-size: 1rem; }
.bctrls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.barr {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
  transition: all .3s;
  box-shadow: 0 3px 8px rgba(54,37,92,.06);
}
.barr:hover { background: var(--purple); color: #fff; transform: scale(1.06); }
.barr:disabled { opacity: .4; cursor: not-allowed; transform: none; background: #fff; color: var(--purple); }
#best .vmore { padding: 3px 8px; font-size: .72rem; }

.bcar {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1px 1px 12px;
  margin: 0 -1px;
  scrollbar-width: thin;
  scrollbar-color: var(--lav) transparent;
}
.bcar::-webkit-scrollbar { height: 4px; }
.bcar::-webkit-scrollbar-track { background: transparent; }
.bcar::-webkit-scrollbar-thumb { background: var(--lav); border-radius: 999px; }
.bcar::-webkit-scrollbar-thumb:hover { background: var(--lav-dark, #B8A5E8); }

.bgrid {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
  width: max-content;
  padding: 0 1px;
}

.bcard {
  flex: 0 0 auto;
  min-width: 0;
  width: calc((var(--bcar-w, 1200px) - 20px) / 3);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  transition: all .35s;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(210,195,246,.5); }
.bcard .btop {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 7px;
  flex-shrink: 0;
}
.bcard .btop img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  transition: transform .5s ease;
}
.bcard:hover .btop img { transform: scale(1.05); }
.bcard h4 { font-size: .8rem; margin-bottom: 2px; font-family: var(--font-u); font-weight: 700; color: var(--text); line-height: 1.25; }
.bcard p { font-size: .68rem; color: var(--muted); margin-bottom: 5px; line-height: 1.4; }
.bcard .blist { font-size: .65rem; color: var(--muted); margin-bottom: 7px; line-height: 1.35; }
.bcard .blist li { padding: 1px 0; }
.bcard .buy {
  margin-top: auto;
  padding: 6px 10px;
  background: #25D366; color: #fff;
  border-radius: 999px;
  font-weight: 700; font-size: .68rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  transition: all .3s;
  text-align: center;
  flex-shrink: 0;
}
.bcard .buy:hover { background: #1ebe5d; box-shadow: 0 4px 12px rgba(37,211,102,.3); }

/* Responsive card widths for carousel */
@media (max-width: 980px) {
  .bcard { width: calc((var(--bcar-w, 980px) - 10px) / 2); }
  #best.section { padding-top: 20px; padding-bottom: 16px; }
}
@media (max-width: 640px) {
  .bcard { width: calc(var(--bcar-w, 640px) * 0.74); }
  .barr { display: none; } /* rely on touch/swipe at phone size */
  .bcard h4 { font-size: .78rem; }
  .bcard p { font-size: .66rem; }
  .bcard .blist { font-size: .62rem; }
  .bcard .blist li { padding: .5px 0; }
  .bcard .buy { font-size: .66rem; padding: 5.5px 9px; }
  .bcard .btop { margin-bottom: 6px; }
  .bcard .btop img { aspect-ratio: 1.1 / 1; }
  .bgrid { gap: 9px; }
  .bcar { padding: 1px 1px 10px; }
  #best .sec-head { margin-bottom: 10px; }
  #best.section { padding-top: 18px; padding-bottom: 14px; }
}

/* =========== WHY =========== */
.why {
  padding: 60px 24px 40px;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
}
.why h2 { text-align: center; margin-bottom: 36px; }
.whygrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}
.whycard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 8px 18px rgba(54,37,92,.04);
  text-align: center;
  transition: all .3s;
}
.whycard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.whycard.accent { background: var(--lav-bg); border-color: rgba(210,195,246,.45); }
.wicon {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  color: #553D86;
  background: linear-gradient(135deg, #E9DCFF 0%, #F6EDFF 55%, #FFF1EA 100%);
  box-shadow: 0 10px 30px rgba(85,61,134,.12);
  transition: all .3s;
}
.wicon svg { width: 42px; height: 42px; stroke-width: 1.6; }
.wicon.purple {
  background: linear-gradient(135deg, #E9DCFF 0%, #F6EDFF 55%, #FFF1EA 100%);
  color: #553D86;
  box-shadow: 0 10px 30px rgba(85,61,134,.14);
}
.whycard:hover .wicon {
  background: linear-gradient(135deg, #E9DCFF 0%, #FFF1EA 100%);
  color: #553D86;
  transform: scale(1.04);
}
.whycard h4 { font-family: var(--font-p); font-size: 1.5rem; color: #201339; letter-spacing: -.2px; font-weight: 700; margin-bottom: 10px; text-align: center; }
.whycard p { font-size: 1rem; color: #6E6280; line-height: 1.55; text-align: center; }

/* =========== CTA =========== */
.cta {
  position: relative;
  margin: 20px 24px 0;
  border-radius: 32px;
  overflow: hidden;
  padding: 72px 32px;
  max-width: 1240px;
  margin-left: auto; margin-right: auto;
}
.ctabg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 14% 78%, rgba(205,174,255,.42), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(135deg, #37245F 0%, #4E3786 52%, #6A4CA8 100%);
}
.ctabg::before, .ctabg::after {
  content: ''; position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.10), rgba(255,255,255,0) 68%);
  filter: blur(14px);
  opacity: .9;
}
.ctabg::before { left: -110px; bottom: -180px; }
.ctabg::after { right: -110px; top: -180px; }
.ctain {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 820px;
  margin: 0 auto;
}
.ctain .cta-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-d);
  font-weight: 400;
  color: #D9C8FF;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: .3px;
  line-height: 1.15;
  margin: 0 auto 14px;
}
.ctain h2 {
  color: #FFFFFF;
  font-family: var(--font-p);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.25px;
  text-align: center;
  margin: 0 0 22px;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
}
.ctain h2 em {
  font-family: var(--font-p);
  font-style: italic;
  color: #D9C8FF;
  background: none;
  -webkit-text-fill-color: currentColor;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-weight: 700;
}
.ctain p {
  font-family: var(--font-u);
  font-weight: 400;
  color: #EDE5FF;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.72;
  letter-spacing: .15px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: .97;
}
.ctain .ctawhats,
.cta .btn.wbtn.ctawhats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #FFFFFF;
  color: #2C1B52;
  font-family: var(--font-u);
  font-weight: 600;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  padding: 22px 54px 22px 48px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(27, 13, 59, .28);
  border: none;
  text-decoration: none;
  transition: all .28s ease;
}
.ctain .ctawhats svg,
.cta .btn.wbtn.ctawhats svg {
  width: 26px;
  height: 26px;
  color: #2C1B52;
  flex: 0 0 auto;
}
.ctain .ctawhats:hover,
.cta .btn.wbtn.ctawhats:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(27, 13, 59, .34);
  background: #FAF5FF;
}

/* =========== FOOTER =========== */
.foot {
  margin-top: 30px;
  background: #1A0F2E;
  color: rgba(255,255,255,.70);
  padding: 50px 24px 0;
}
.footgrid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr .9fr;
  gap: 40px;
  padding-bottom: 40px;
}
.foottag {
  font-family: var(--font-d);
  color: var(--lav);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 10px 0 10px;
}
.footabout { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.fcol h5 { margin-bottom: 14px; color: #fff; font-family: var(--font-u); font-size: .95rem; }
.fcol ul li { margin-bottom: 8px; }
.fcol ul li a { font-size: .85rem; color: rgba(255,255,255,.62); transition: color .3s; }
.fcol ul li a:hover { color: var(--lav); }
.footbottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  max-width: 1240px;
  margin: 0 auto;
}

/* =========== FLOAT WA =========== */
.floatwa {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.40);
  z-index: 99;
  transition: all .3s;
  animation: wapulse 2.4s ease-in-out infinite;
}
.floatwa:hover { transform: scale(1.08) translateY(-2px); }
@keyframes wapulse {
  0%,100% { box-shadow: 0 10px 28px rgba(37,211,102,.40); }
  50% { box-shadow: 0 10px 44px rgba(37,211,102,.62); }
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1140px) {
  .mgrid, .egrid { grid-template-columns: repeat(5, 1fr); }
  .cgrid { grid-template-columns: repeat(3, 1fr); }
  .whygrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .footgrid { grid-template-columns: 1fr 1fr; }
  .farrow { width: 36px; height: 36px; font-size: 13px; }
  .farrow.fl { left: 14px; }
  .farrow.fr { right: 14px; }
  .fslide-item { padding: 22px 54px 22px 58px; }
}

@media (max-width: 900px) {
  .hero, .hero .heroin, .hero .herobg, .hero .herodots,
  .hero .scr, .hero h1, .hero .hersub, .hero .pbtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  section.hero {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .farrow.fl, .farrow.fr,
  .farrow#fl, .farrow#fr {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -99999px !important;
    left: -99999px !important;
  }
  .fslide-item.fslide-fullimg, .fslide-item {
    padding: 0 !important;
    margin: 0 !important;
    inset: 0 !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }
  .fslide-bg { display: block; }
  .fslide-bg::before { content: none !important; display: none !important; }
  .fslide-bg img { object-fit: contain !important; object-position: 50% 50% !important; transform: none !important; scale: 1 !important; }
  .fslide-item.active .fslide-bg img { transform: none !important; scale: 1 !important; }
  .fslide-copy, .fslide-sub, .fslide-title, .fslide-desc,
  .fslide-cta, .fbtn, .fslide-visual, .fimg-wrap, .fdots {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .navlinks, .wacta { display: none; }
  .hamb { display: flex; }
  .navlinks.open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid rgba(210,195,246,.20);
    box-shadow: 0 12px 20px rgba(54,37,92,.08);
  }
  .navlinks.open a { padding: 14px 24px; border-bottom: 1px solid rgba(210,195,246,.12); }
  .navwrap { position: relative; }
  .cgrid { grid-template-columns: repeat(3, 1fr); }
  .why h2, .cta h2 { font-size: 1.9rem; }
  .whygrid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .wicon { width: 80px; height: 80px; }
  .wicon svg { width: 34px; height: 34px; }
  .whycard h4 { font-size: 1.22rem; }
  .whycard p { font-size: .9rem; }
}
@media (max-width: 640px) {
  .navwrap {
    padding: 12px 18px;
    justify-content: center;
    position: relative;
  }
  .navwrap .brand {
    position: static;
    transform: none;
    margin: 0 auto;
    flex: 0 0 auto;
  }
  .navwrap .hamb {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mgrid, .egrid { grid-template-columns: repeat(4, 1fr); }
  .cgrid { grid-template-columns: repeat(2, 1fr); }
  .whygrid { grid-template-columns: 1fr; gap: 14px; }
  .whycard { padding: 22px 16px; }
  .wicon { width: 76px; height: 76px; }
  .wicon svg { width: 32px; height: 32px; }
  .whycard h4 { font-size: 1.28rem; }
  .whycard p { font-size: .92rem; line-height: 1.55; }
  .footgrid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 26px; }
  .scr { font-size: 1.45rem; }
  .scr.big { font-size: 1.6rem; }
  .hero h1 { font-size: 2.4rem; }
  .hersub { font-size: .95rem; }
  .farrow { width: 30px; height: 30px; font-size: 11px; }
  .farrow.fl { left: 10px; }
  .farrow.fr { right: 10px; }
  .fslide-item.fslide-fullimg,
  .fslide-item {
    padding: 0; display: block;
    grid-template-columns: none; gap: 0;
  }
  .fslide-bg { display: block; }
  .fslide-bg::before { content: none !important; display: none !important; }
  .fslide-bg img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .fslide-copy, .fslide-sub, .fslide-title, .fslide-desc,
  .fslide-cta, .fbtn, .fslide-visual, .fimg-wrap, .fdots {
    display: none !important;
  }
  .farrow { width: 30px; height: 30px; font-size: 11px; }
  .farrow.fl, .farrow.fr { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
  .ftrd { padding: 0 16px 22px; }
  .ftrd-inner {
    border-radius: 22px;
    min-height: 0;
    aspect-ratio: 3 / 2;
    height: auto;
    width: 100%;
    overflow: hidden;
  }
  .fslider { min-height: 0; height: 100%; width: 100%; touch-action: pan-y; }
  .fslide-item { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; margin: 0; }
  .fslide-item .fslide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: transparent;
  }
  .fslide-item .fslide-bg::before { content: none; display: none; }
  .fslide-item .fslide-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 50%;
    display: block;
    max-width: 100%;
    max-height: 100%;
    transform: none !important;
    scale: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .fslide-item.active .fslide-bg img { transform: none !important; scale: 1 !important; }
  .cta { margin: 14px 16px 0; padding: 56px 22px; }
  .ctain .cta-eyebrow { font-size: 1.3rem; margin-bottom: 10px; }
  .ctain h2 { font-size: 2.1rem; line-height: 1.1; margin: 0 0 16px; }
  .ctain p { font-size: 1rem; line-height: 1.7; margin: 0 auto 28px; }
  .ctain .ctawhats,
  .cta .btn.wbtn.ctawhats {
    padding: 18px 46px 18px 42px;
    font-size: 1.02rem;
    gap: 12px;
  }
  .ctain .ctawhats svg,
  .cta .btn.wbtn.ctawhats svg { width: 24px; height: 24px; }
  .foot { padding: 40px 20px 0; }
  .section { padding: 26px 16px; }
  .section, .ftrd, .why, .heroin { padding-left: 16px; padding-right: 16px; }
  .hero { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 480px) {
  .mgrid, .egrid { grid-template-columns: repeat(3, 1fr); }
  .pbtn, .gbtn { width: 100%; }
  .farrow.fl, .farrow.fr { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
  .ftrd-inner { aspect-ratio: 3 / 2; overflow: hidden; }
  .fslider { width: 100%; height: 100%; touch-action: pan-y; }
  .fslide-item { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; margin: 0; }
  .fslide-item .fslide-bg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; background: transparent; }
  .fslide-item .fslide-bg::before { content: none; display: none; }
  .fslide-item .fslide-bg img {
    object-fit: contain;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    transform: none !important;
    scale: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .fslide-item.active .fslide-bg img { transform: none !important; scale: 1 !important; }
}

/* =========== CATEGORY PAGE (2nd page) =========== */
.pcrumb {
  font-size: .78rem; color: var(--muted);
  padding: 12px 6px 18px 6px; letter-spacing: .1px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.pcrumb a { color: var(--purple); font-weight: 600; }
.pcrumb a:hover { color: #7a61c9; }
.pcrumb span { opacity: .55; }
.pcrumb strong { color: var(--text); font-weight: 700; }

.pcat-hero {
  background: linear-gradient(135deg, #F6EEFF 0%, #FFF7E8 100%);
  border-radius: 28px;
  padding: 48px 56px;
  text-align: center;
  margin-bottom: 12px;
  position: relative; overflow: hidden;
}
.pcat-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 10% 15%, rgba(176,140,235,.18), transparent 32%),
    radial-gradient(circle at 90% 85%, rgba(255,213,120,.22), transparent 34%);
}
.pcat-hero > * { position: relative; z-index: 1; }
.pcat-hero h1 {
  font-family: var(--font-p); font-size: 3rem; color: var(--purple);
  letter-spacing: -.5px; margin: 10px 0 10px;
}
.pcat-sub {
  font-size: 1rem; color: var(--text); max-width: 640px;
  margin: 0 auto 22px; line-height: 1.55;
}

/* ======== CATEGORY PRODUCTS — HORIZONTAL SCROLLER ======== */
.cat-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: #D2C3F6 transparent;
}
.cat-wrap::-webkit-scrollbar { height: 4px; }
.cat-wrap::-webkit-scrollbar-track { background: transparent; }
.cat-wrap::-webkit-scrollbar-thumb {
  background: #D2C3F6; border-radius: 999px;
}

.cat-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 18px;
  width: max-content;
}

.cprod {
  flex: 0 0 auto;
  width: calc((var(--cat-wrap-w, 1200px) - 3 * 18px) / 4);
  min-width: calc((var(--cat-wrap-w, 1200px) - 3 * 18px) / 4);
  max-width: calc((var(--cat-wrap-w, 1200px) - 3 * 18px) / 4);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 16px 22px;
  box-shadow: 0 10px 30px rgba(54,37,92,.06);
  transition: all .35s ease;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px;
  align-items: center;
}

@media (max-width: 1140px) {
  .cprod {
    width: calc((var(--cat-wrap-w, 1060px) - 2 * 18px) / 3);
    min-width: calc((var(--cat-wrap-w, 1060px) - 2 * 18px) / 3);
    max-width: calc((var(--cat-wrap-w, 1060px) - 2 * 18px) / 3);
  }
}
@media (max-width: 980px) {
  .cprod {
    width: calc((var(--cat-wrap-w, 900px) - 2 * 18px) / 3);
    min-width: calc((var(--cat-wrap-w, 900px) - 2 * 18px) / 3);
    max-width: calc((var(--cat-wrap-w, 900px) - 2 * 18px) / 3);
  }
}
@media (max-width: 820px) {
  .cprod {
    width: calc((var(--cat-wrap-w, 760px) - 1 * 18px) / 2);
    min-width: calc((var(--cat-wrap-w, 760px) - 1 * 18px) / 2);
    max-width: calc((var(--cat-wrap-w, 760px) - 1 * 18px) / 2);
  }
  .cprod h3 { font-size: 1.25rem; }
}
@media (max-width: 640px) {
  .cprod {
    width: calc((var(--cat-wrap-w, 600px) - 1 * 14px) / 2);
    min-width: calc((var(--cat-wrap-w, 600px) - 1 * 14px) / 2);
    max-width: calc((var(--cat-wrap-w, 600px) - 1 * 14px) / 2);
  }
  .cat-cards { gap: 14px; }
  .cprod { padding: 12px 12px 16px; border-radius: 18px; }
  .cprod h3 { font-size: 1.1rem; }
  .cprod p.cdesc { font-size: .74rem; }
  .cpills div { font-size: .66rem; padding: 5px 11px; }
  .barr.cbl, .barr.cbr { display: none; } /* arrows hidden on mobile, swipe works */
  .pcat-hero { padding: 28px 18px; border-radius: 20px; }
  .pcat-hero h1 { font-size: 1.8rem; }
  .pcat-sub { font-size: .9rem; }
}
@media (max-width: 480px) {
  .cprod {
    width: calc((var(--cat-wrap-w, 450px) - 1 * 12px) / 2);
    min-width: calc((var(--cat-wrap-w, 450px) - 1 * 12px) / 2);
    max-width: calc((var(--cat-wrap-w, 450px) - 1 * 12px) / 2);
  }
  .cat-cards { gap: 12px; }
}

.cprod:hover {
  transform: translateY(-6px);
  border-color: rgba(210,195,246,.55);
  box-shadow: 0 18px 40px rgba(54,37,92,.10);
}
.cprod .cthumb {
  aspect-ratio: 4 / 5;
  width: 100%;
  background: linear-gradient(135deg, #F8F0FF, #FFF5E9);
  margin: 0 auto 4px;
}
.cprod h3 {
  font-family: var(--font-p); font-size: 1.45rem;
  color: var(--purple); letter-spacing: -.2px;
  margin: 6px 0 4px;
}
.cprod p.cdesc {
  font-size: .82rem; color: var(--muted);
  line-height: 1.5; margin: 0 2px 8px;
}
.cpills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 6px 0 10px;
}
.cpills span {
  background: #FFF6E1;
  color: #745b1a;
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.1;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(247,210,127,.45);
  white-space: nowrap;
}
.cpills span.feat {
  background: #FFF7E8;
  color: #7e5d22;
  border-color: #F2E1B3;
  font-weight: 700;
}
.cinquire {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: .85rem;
  box-shadow: 0 6px 18px rgba(37,211,102,.22);
  margin-top: 6px;
  transition: all .25s;
}
.cinquire:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37,211,102,.32); }
.cinquire svg { display: block; }

@media (max-width: 1140px) {
  .pcat-hero { padding: 40px 36px; }
  .pcat-hero h1 { font-size: 2.4rem; }
}
@media (max-width: 980px) {
  .pcat-hero { padding: 32px 24px; border-radius: 22px; }
  .pcat-hero h1 { font-size: 2.1rem; }
  .cprod h3 { font-size: 1.3rem; }
}
@media (max-width: 820px) {
  .cprod h3 { font-size: 1.2rem; }
  .cprod p.cdesc { font-size: .76rem; }
}
