/* ===== Garments — brand palette (deliberately distinct from Flacky's blush/rose) ===== */
:root {
  --g-orange: #E8890A;
  --g-orange-dark: #BD6C00;
  --g-orange-light: #FFAB40;
  --g-blue: #12388C;
  --g-blue-light: #3E63C2;
  --g-cream: #EEF2FA;
  --g-cream-deep: #DCE6F7;
  --g-cream-deeper: #C9D8F3;
  --g-ink: #1B2333;
  --g-muted: #5B6478;
  --g-paper: #FFFFFF;

  --g-page-bg: #EEF3FB;
  --g-page-bg-deep: #DCE6F7;

  --g-rose: #C2489A;
  --g-sage: #1C9A8D;
  --g-dustyblue: #3B5BDB;
  --g-mint: #1C9A8D;
  --g-mauve: #C2489A;

  --g-radius-sm: 12px;
  --g-radius-md: 20px;
  --g-radius-lg: 32px;
  --g-shadow-soft: 0 10px 30px rgba(27, 35, 51, 0.1);
  --g-shadow-pop: 0 16px 40px rgba(59, 91, 219, 0.22);
  --g-ff-display: 'Fredoka', system-ui, sans-serif;
  --g-ff-body: 'Poppins', system-ui, sans-serif;

  /* default accent (Ladies is the active default filter, but this covers anything unthemed) */
  --g-accent: #3B5BDB;
  --g-accent-dark: #2A44B0;
  --g-accent-shadow: rgba(59, 91, 219, 0.22);
}

/* Ladies — magenta */
.g-theme-ladies {
  --g-accent: #C2489A;
  --g-accent-dark: #9E3179;
  --g-accent-shadow: rgba(194, 72, 154, 0.25);
  --g-shop-bg: #F7E3F0;
  --g-shop-bg-deep: #EFC6E1;
}
/* Gents — deep blue */
.g-theme-gents {
  --g-accent: #3B5BDB;
  --g-accent-dark: #2A44B0;
  --g-accent-shadow: rgba(59, 91, 219, 0.25);
  --g-shop-bg: #DCE3F7;
  --g-shop-bg-deep: #C3D0F2;
}
/* Kids — teal */
.g-theme-kids {
  --g-accent: #1C9A8D;
  --g-accent-dark: #137A70;
  --g-accent-shadow: rgba(28, 154, 141, 0.25);
  --g-shop-bg: #D6F2EE;
  --g-shop-bg-deep: #B7E7DF;
}
.shop { background: var(--g-shop-bg, var(--g-page-bg-deep)); transition: background-color .4s ease; border-radius: 44px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--g-ff-body);
  color: var(--g-ink);
  background: var(--g-page-bg);
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--g-ff-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--g-primary {
  background: linear-gradient(135deg, var(--g-orange), var(--g-orange-dark));
  color: #fff;
  box-shadow: var(--g-shadow-pop);
}
.btn--g-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 44px rgba(238,118,2,.32); }
.btn:active { transform: scale(.95); }
.btn--g-ghost {
  background: rgba(43,27,18,.05);
  color: var(--g-ink);
  border: 2px solid rgba(43,27,18,.12);
}
.btn--g-ghost:hover { background: rgba(43,27,18,.09); transform: translateY(-2px); }
.btn--g-block { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--g-orange-dark);
  background: rgba(238,118,2,.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ===== Inline SVG icons (replace emoji throughout) ===== */
svg.icon { flex-shrink: 0; }

.rainbow-text {
  background: linear-gradient(90deg, var(--g-orange), var(--g-mauve), var(--g-blue-light), var(--g-sage), var(--g-orange));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-shift 6s linear infinite;
}
@keyframes rainbow-shift {
  to { background-position: 300% center; }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 233, 227, .82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,27,18,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
}
.logo { display: flex; align-items: center; }
.logo__img { height: 68px; width: auto; }
.logo--text {
  font-family: var(--g-ff-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--g-accent);
}
.nav__switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: rgba(43,27,18,.06);
  color: var(--g-ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease;
}
.nav__switcher:hover { background: rgba(43,27,18,.12); }
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--g-orange);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--g-ink);
  transition: background .2s ease;
}
.icon-btn:hover { background: rgba(43,27,18,.07); }
.icon-btn.cart-bump, .floating-cart.cart-bump { animation: cart-bump .32s cubic-bezier(.34,1.56,.64,1); }
@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.14); }
}

.fly-to-cart {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  object-fit: cover;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(43,27,18,.22);
  will-change: transform, width, height, opacity;
}
.badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--g-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.hamburger { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--g-page-bg) 0%, var(--g-page-bg-deep) 100%);
}
.hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: .45;
  animation: float 12s ease-in-out infinite;
}
.blob--1 { width: 260px; height: 260px; background: var(--g-rose); top: -60px; left: -60px; }
.blob--2 { width: 200px; height: 200px; background: var(--g-mint); top: 120px; right: 6%; animation-delay: 2s; }
.blob--3 { width: 300px; height: 300px; background: var(--g-orange-light); bottom: -100px; left: 30%; animation-delay: 4s; opacity: .3; }
.blob--4 { width: 160px; height: 160px; background: var(--g-dustyblue); bottom: 10%; right: 18%; animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-24px) scale(1.06); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}
.hero__inner > * { min-width: 0; }
.hero__inner--text-only { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.hero__inner--text-only .hero__copy p { max-width: 560px; margin-left: auto; margin-right: auto; }
.hero__inner--text-only .hero__cta { justify-content: center; }
.hero__inner--text-only .hero__stats { justify-content: center; text-align: left; }
.hero__copy h1 { font-size: clamp(38px, 5.4vw, 64px); margin-bottom: 18px; }
.hero__copy p {
  font-size: 17px;
  color: var(--g-muted);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: flex; gap: 32px; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--g-ff-display); font-size: 24px; color: var(--g-orange-dark); }
.hero__stats span { font-size: 13px; color: var(--g-muted); }

.hero__art {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__circle {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(150deg, var(--g-rose), var(--g-orange-light) 45%, var(--g-mint) 100%);
  box-shadow: var(--g-shadow-pop);
  animation: circle-pulse 7s ease-in-out infinite;
}
@keyframes circle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.hero__circle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 76%;
  transform: scale(1.8);
  transform-origin: 50% 76%;
}

.hero__bubble {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--g-paper);
  box-shadow: 0 12px 26px rgba(43,27,18,.2);
  animation: bubble-float 6s ease-in-out infinite;
}
.hero__bubble--1 {
  width: 92px; height: 92px;
  top: 6%; left: -4%;
  object-position: 35% 32%;
  animation-delay: .3s;
}
.hero__bubble--2 {
  width: 74px; height: 74px;
  bottom: 10%; left: 2%;
  object-position: 46% 30%;
  animation-delay: 1.6s;
}
@keyframes bubble-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--g-paper);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  box-shadow: var(--g-shadow-soft);
  border: none;
  cursor: pointer;
  text-align: left;
  animation: card-float 6.5s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero__card:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 36px rgba(43,27,18,.22); }
.hero__card--1 { top: 10%; right: -8%; animation-delay: 0s; }
.hero__card--2 { bottom: 6%; right: -4%; animation-delay: 1.1s; }
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero__card-thumb {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--g-page-bg-deep);
}
.hero__card-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 35%; }
.hero__card--2 .hero__card-thumb img { object-position: 32% 30%; }
.hero__card-info { display: flex; flex-direction: column; line-height: 1.3; }
.hero__card-info strong { font-size: 12px; font-weight: 700; color: var(--g-ink); white-space: nowrap; }
.hero__card-info span { font-size: 11px; color: var(--g-orange-dark); font-weight: 600; }
.hero__card-add {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--g-ink);
  color: #fff;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-left: 2px;
}

.marquee {
  position: relative;
  z-index: 1;
  background: var(--g-ink);
  color: var(--g-cream);
  overflow: hidden;
  padding: 12px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee__track span {
  font-family: var(--g-ff-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  padding-right: 8px;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== TRUST BAR ===== */
.trust {
  position: relative;
  overflow: hidden;
  padding: 56px 24px;
  background: linear-gradient(180deg, var(--g-page-bg) 0%, var(--g-page-bg-deep) 100%);
  border-radius: 44px;
  margin-bottom: 28px;
}
.trust__decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.trust__circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.trust__circle--1 {
  width: 260px; height: 260px;
  top: -100px; left: -70px;
  background: radial-gradient(circle, rgba(238,118,2,.24), rgba(238,118,2,0) 70%);
}
.trust__circle--2 {
  width: 220px; height: 220px;
  bottom: -90px; right: -50px;
  background: radial-gradient(circle, rgba(214,71,126,.2), rgba(214,71,126,0) 70%);
}
.trust__dots {
  position: absolute;
  width: 96px; height: 96px;
  background-image: radial-gradient(rgba(194,94,0,.35) 1.4px, transparent 1.6px);
  background-size: 16px 16px;
}
.trust__dots--1 { top: 18px; left: 18px; -webkit-mask-image: radial-gradient(circle at top left, #000 60%, transparent 100%); mask-image: radial-gradient(circle at top left, #000 60%, transparent 100%); }
.trust__dots--2 { bottom: 18px; right: 18px; -webkit-mask-image: radial-gradient(circle at bottom right, #000 60%, transparent 100%); mask-image: radial-gradient(circle at bottom right, #000 60%, transparent 100%); }
.trust__line {
  position: absolute;
  top: 38%;
  left: 0;
  width: 100%;
  height: 130px;
}
.trust__inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.trust__inner h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.trust__inner p { color: var(--g-muted); font-size: 18px; margin-bottom: 32px; }
.trust__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust__stats div { display: flex; flex-direction: column; }
.trust__stats strong { font-family: var(--g-ff-display); font-size: 28px; color: var(--g-orange-dark); }
.trust__stats span { font-size: 15px; color: var(--g-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 40px 24px 80px; }
.testimonials__track-wrap { position: relative; max-width: 720px; margin: 0 auto; }
.testimonial-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}
.testimonial-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 calc(50% - 7px);
  scroll-snap-align: start;
  background: var(--g-page-bg);
  border-radius: var(--g-radius-sm);
  padding: 16px 16px;
  border: 1px dashed rgba(43,27,18,.18);
}
.testimonial-card__stars { display: flex; gap: 2px; color: var(--g-orange); margin-bottom: 8px; }
.testimonial-card__stars svg { width: 12px; height: 12px; }
.testimonial-card p { font-size: 12px; color: var(--g-muted); font-style: italic; line-height: 1.5; margin: 0 0 12px; }
.testimonial-card__author { display: flex; flex-direction: column; }
.testimonial-card__author strong { font-size: 12px; }
.testimonial-card__author span { font-size: 11px; }
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--g-paper);
  box-shadow: var(--g-shadow-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--g-ink);
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
}
.testimonials__nav:hover { background: var(--g-accent); color: #fff; }
.testimonials__nav--g-prev { left: -14px; }
.testimonials__nav--g-next { right: -14px; }
@media (max-width: 640px) {
  .testimonial-card { flex-basis: 84%; }
  .testimonials__nav { display: none; }
}
.testimonial-card__author strong { font-size: 14px; color: var(--g-ink); }
.testimonial-card__author span { font-size: 12px; color: var(--g-muted); }

/* ===== SHOP ===== */
.shop { padding: 56px 24px 40px; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 36px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.section-head p { color: var(--g-muted); font-size: 16px; }
.catalogue-btn { margin-top: 18px; font-size: 14px; padding: 11px 22px; }
.catalogue-btn:disabled { opacity: .8; cursor: wait; }
.btn-spinner {
  display: inline-block;
  width: 13px; height: 13px;
  border: 2px solid rgba(43,27,18,.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
  vertical-align: -2px;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(43,27,18,.12);
  font-weight: 600;
  font-size: 14px;
  color: var(--g-ink);
  transition: all .2s ease;
}
.chip:hover { border-color: var(--g-accent); }
.chip:active { transform: scale(.93); }
.chip.is-active {
  background: var(--g-accent);
  border-color: var(--g-accent);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--g-paper);
  border-radius: var(--g-radius-md);
  overflow: hidden;
  box-shadow: var(--g-shadow-soft);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  animation: pop-in .5s ease both;
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.product-card:hover {
  transform: translateY(-8px) rotate(-.6deg);
  box-shadow: 0 22px 46px rgba(43,27,18,.18);
}
.product-card:active { transform: scale(.98); }
.product-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--g-shop-bg-deep, var(--g-page-bg-deep));
  transition: background-color .3s ease;
}
.product-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.65) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  opacity: 1;
  transition: opacity .3s ease;
  pointer-events: none;
}
.product-card__media.is-loaded::before { opacity: 0; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: transform .5s ease, opacity .35s ease;
}
.product-card__media img.is-loaded { opacity: 1; }
.product-card:hover .product-card__media img { transform: scale(1.08); }
.product-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,.9);
  color: var(--g-accent-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 5px 10px;
  border-radius: 999px;
}
.product-card__quick {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s ease;
}
.product-card:hover .product-card__quick { opacity: 1; transform: translateY(0); }
.product-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card__body h3 { font-size: 16px; }
.product-card__body p { margin: 0; font-size: 13px; color: var(--g-muted); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.product-card__price { font-family: var(--g-ff-display); font-weight: 600; font-size: 17px; color: var(--g-accent-dark); }
.product-card__price small { font-family: var(--g-ff-body); font-weight: 500; font-size: 11px; color: var(--g-muted); margin-left: 2px; }
.product-card__add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--g-ink);
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.product-card__add:hover { background: var(--g-accent); transform: scale(1.1) rotate(90deg); }
.product-card__add:active { transform: scale(.9) rotate(90deg); }
.product-card__quick:active { transform: scale(.9); }

.product-card__stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--g-ink);
  border-radius: 999px;
  padding: 4px;
  animation: stepper-in .25s ease;
}
@keyframes stepper-in {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}
.product-card__stepper button {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .15s ease;
}
.product-card__stepper button:hover { background: var(--g-accent); }
.product-card__stepper button:active { transform: scale(.85); }
.product-card__stepper span {
  min-width: 18px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* ===== FEATURES ===== */
.features {
  padding: 70px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}
.feature-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(236,111,160,.55), transparent 55%),
    radial-gradient(circle at 85% 25%, rgba(34,193,195,.45), transparent 50%),
    radial-gradient(circle at 60% 100%, rgba(240,121,30,.4), transparent 55%),
    linear-gradient(160deg, #1c1220 0%, #150e18 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--g-radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 20px 46px rgba(20,10,20,.35), 0 0 40px rgba(236,111,160,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 26px 56px rgba(20,10,20,.42), 0 0 52px rgba(236,111,160,.22); }
.feature-card:active { transform: translateY(-3px) scale(.98); }
.feature-card h3 { color: #fff; }
.feature-card p { color: rgba(255,255,255,.68); }
.feature-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 10px 20px rgba(43,27,18,.18);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.feature-card__icon svg { width: 30px; height: 30px; }
.feature-card:hover .feature-card__icon { transform: scale(1.12) rotate(-8deg); }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; margin: 0; line-height: 1.5; }

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 100px 24px;
  color: var(--g-cream);
  background: url('/images/decor/about-knit-bg.jpg') center 30% / cover no-repeat;
  isolation: isolate;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(20,12,6,.92) 0%, rgba(20,12,6,.75) 45%, rgba(20,12,6,.4) 100%);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
}
.about__copy .eyebrow { background: rgba(255,255,255,.12); color: var(--g-orange-light); }
.about__copy h2 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 16px; color: #fff; }
.about__copy p { color: rgba(255,246,228,.75); font-size: 16px; margin-bottom: 20px; }
.about__list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(255,246,228,.9); }
.about__list li { display: flex; align-items: flex-start; gap: 8px; }
.about__list .icon { color: var(--g-orange-light); margin-top: 2px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  position: relative;
  padding: 90px 24px;
  background: url('/images/decor/whatsapp-bg.jpg') center / cover no-repeat;
  color: var(--g-ink);
  text-align: center;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,253,249,.55), rgba(255,253,249,.15) 70%);
}
.newsletter__inner { position: relative; z-index: 1; }
.newsletter__inner h2 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 8px; color: var(--g-ink); }
.newsletter__inner p { color: var(--g-muted); margin-bottom: 26px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter__whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 10px 26px rgba(0,0,0,.2);
}
.newsletter__whatsapp:hover { box-shadow: 0 16px 34px rgba(0,0,0,.28); }

/* ===== FOOTER ===== */
.footer { background: var(--g-page-bg-deep); padding: 60px 24px 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(43,27,18,.1);
}
.footer__brand .logo__img { height: 58px; margin-bottom: 10px; }
.footer__brand p { font-size: 13px; color: var(--g-muted); line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 14px; margin-bottom: 4px; }
.footer__col a, .footer__address { font-size: 14px; color: var(--g-muted); }
.footer__col a { position: relative; width: fit-content; transition: color .2s ease; }
.footer__col a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--g-orange-dark);
  transition: width .25s ease;
}
.footer__col a:hover { color: var(--g-orange-dark); }
.footer__col a:hover::after { width: 100%; }
.footer__social { display: flex; gap: 10px; margin-top: 6px; }
.footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(43,27,18,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover { background: var(--g-orange); color: #fff; transform: translateY(-3px) scale(1.08); }
.footer__social a:active { transform: scale(.92); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 24px;
  font-size: 12px;
  color: var(--g-muted);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(43,27,18,.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--g-paper);
  border-radius: var(--g-radius-lg);
  max-width: 760px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  max-height: 88vh;
  transform: scale(.92) translateY(20px);
  transition: transform .25s ease;
}
.modal-overlay.is-open .modal { transform: scale(1) translateY(0); }
.modal__media {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-height: 88vh;
  overflow: hidden;
}
.modal__art {
  position: relative;
  background: var(--g-shop-bg-deep, var(--g-page-bg-deep));
  min-height: 280px;
  flex: 1;
  overflow: hidden;
  transition: background-color .3s ease;
}
.modal__art img { width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; }
.modal__zoom-hint {
  position: absolute;
  right: 14px; bottom: 14px;
  background: rgba(43,27,18,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition: background .2s ease, transform .2s ease;
}
.modal__zoom-hint:hover { background: rgba(43,27,18,.9); transform: translateY(-2px); }

.modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(43,27,18,.55);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.modal__nav[hidden] { display: none; }
.modal__nav:hover { background: rgba(43,27,18,.8); }
.modal__nav--prev { left: 12px; }
.modal__nav--next { right: 12px; }

.modal__gallery {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  padding: 12px 14px;
  overflow-x: auto;
}
.modal__gallery[hidden] { display: none; }
.modal__gallery img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: .6;
  border: 2px solid transparent;
  transition: opacity .15s ease, border-color .15s ease;
  flex-shrink: 0;
}
.modal__gallery img:hover { opacity: .9; }
.modal__gallery img.is-active { opacity: 1; border-color: var(--g-accent); }

/* ===== LIGHTBOX (image zoom) ===== */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 12, 6, .95);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox-overlay.is-open { opacity: 1; pointer-events: auto; }
.lightbox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;
  /* Our own JS owns pinch/pan gestures here instead of the browser's page zoom/scroll. */
  touch-action: none;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  border-radius: 8px;
  transform-origin: center center;
}
.lightbox.is-zoomed img { cursor: grab; }
.lightbox.is-zoomed img:active { cursor: grabbing; }
.lightbox__close {
  position: fixed;
  top: 22px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  z-index: 401;
  transition: background .2s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,.24); }
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 401;
  transition: background .2s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__hint {
  position: fixed;
  top: 26px; left: 24px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 500;
  z-index: 401;
}
@media (max-width: 640px) {
  .lightbox__hint { display: none; }
}
.modal__info { padding: 34px 30px; display: flex; flex-direction: column; }
.modal__tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  color: var(--g-orange-dark);
  background: rgba(238,118,2,.1);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 12px;
}
.modal__info h3 { font-size: 24px; margin-bottom: 10px; }
.modal__info p { color: var(--g-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.modal__price { font-family: var(--g-ff-display); font-size: 26px; color: var(--g-orange-dark); margin-bottom: 18px; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(43,27,18,.72);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background .2s ease, transform .2s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.modal__close:hover { background: rgba(43,27,18,.9); transform: scale(1.08); }
.qty {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.qty button {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(43,27,18,.08);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.qty button:hover { background: var(--g-orange); color: #fff; }
.qty span { font-weight: 700; min-width: 20px; text-align: center; }

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(43,27,18,.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(400px, 92vw);
  background: var(--g-paper);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -10px 0 30px rgba(0,0,0,.15);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(43,27,18,.08);
}
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-empty { color: var(--g-muted); font-size: 14px; text-align: center; margin-top: 40px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(43,27,18,.06);
}
.cart-item img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; }
.cart-item h4 { font-size: 14px; margin: 0 0 4px; }
.cart-item .cart-item__price { font-size: 13px; color: var(--g-orange-dark); font-weight: 600; }
.cart-item__article, .cart-item__meta { font-size: 12px; color: var(--g-muted); margin: 0 0 2px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item__qty button {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(43,27,18,.08); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item__remove {
  font-size: 12px;
  color: var(--g-muted);
  text-decoration: underline;
  justify-self: end;
  align-self: start;
}
.cart-drawer__footer { padding: 18px 22px 24px; border-top: 1px solid rgba(43,27,18,.08); }
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 15px; }
#checkoutBtn { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 10px 26px rgba(37,211,102,.32); }
#checkoutBtn:hover { box-shadow: 0 16px 34px rgba(37,211,102,.4); }

/* ===== CHECKOUT (WhatsApp order) ===== */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(43,27,18,.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.checkout-overlay.is-open { opacity: 1; pointer-events: auto; }
.checkout-modal {
  background: var(--g-paper);
  border-radius: var(--g-radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  position: relative;
  transform: scale(.92) translateY(20px);
  transition: transform .25s ease;
}
.checkout-overlay.is-open .checkout-modal { transform: scale(1) translateY(0); }
.checkout-modal h3 { font-size: 22px; margin-bottom: 8px; padding-right: 30px; }
.checkout-modal__subtitle { font-size: 13px; color: var(--g-muted); line-height: 1.6; margin: 0 0 20px; }
.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--g-cream);
  border-radius: var(--g-radius-sm);
  padding: 14px 16px;
  margin-bottom: 4px;
  max-height: 220px;
  overflow-y: auto;
}
.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.checkout-summary__row .name { color: var(--g-ink); font-weight: 500; }
.checkout-summary__row .qty { color: var(--g-muted); }
.checkout-summary__row .price { font-weight: 600; color: var(--g-orange-dark); white-space: nowrap; }
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px 22px;
  font-size: 16px;
  border-bottom: 1px solid rgba(43,27,18,.08);
  margin-bottom: 20px;
}
.checkout-summary__total strong { font-family: var(--g-ff-display); font-size: 20px; color: var(--g-orange-dark); }
.checkout-form__submit {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 10px 26px rgba(37,211,102,.32);
}
.checkout-form__submit:hover { box-shadow: 0 16px 34px rgba(37,211,102,.4); }

/* ===== FLOATING CART ===== */
.floating-cart {
  position: fixed;
  bottom: 22px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--g-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(43,27,18,.32);
  z-index: 150;
  opacity: 0;
  transform: translateY(16px) scale(.85);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.floating-cart.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cart:hover { background: var(--g-accent); }
.floating-cart:active { transform: scale(.9); }
.floating-cart .badge {
  top: -2px;
  right: -2px;
  background: var(--g-accent);
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 600;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 20px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--g-ink);
  color: var(--g-cream);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 320px; order: -1; }
  .hero__circle { width: 260px; height: 260px; }
  .hero__card { transform: scale(.88); }
  .hero__card--1 { right: -2%; }
  .hero__card--2 { right: 2%; }
  .about { padding: 70px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .modal { grid-template-columns: 1fr; overflow-y: auto; }
  .modal__art { min-height: 220px; }
}
@media (max-width: 640px) {
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--g-cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    transform: translateY(-130%);
    opacity: 0;
    transition: all .3s ease;
    box-shadow: 0 12px 20px rgba(0,0,0,.06);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid rgba(43,27,18,.06); }
  .hamburger { display: flex; }
  .nav__switcher { width: 42px; height: 42px; padding: 0; justify-content: center; border-radius: 50%; }
  .nav__switcher__label { display: none; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .hero__art { height: 280px; }
  .hero__circle { width: 220px; height: 220px; }
  .hero__card { display: none; }
  .hero__bubble--1 { width: 64px; height: 64px; }
  .hero__bubble--2 { width: 52px; height: 52px; }
  .features {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 32px 24px;
    scrollbar-width: none;
  }
  .features::-webkit-scrollbar { display: none; }
  .feature-card {
    flex: 0 0 74%;
    scroll-snap-align: start;
    padding: 18px 16px;
  }
  .feature-card__icon { width: 42px; height: 42px; margin-bottom: 10px; }
  .feature-card__icon svg { width: 20px; height: 20px; }
  .feature-card h3 { font-size: 15px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 10px 12px 14px; gap: 4px; }
  .product-card__body h3 { font-size: 13px; line-height: 1.25; }
  .product-card__body p { font-size: 11px; }
  .product-card__price { font-size: 14px; }
  .product-card__add { width: 30px; height: 30px; font-size: 16px; }
  .product-card__tag { font-size: 9px; padding: 4px 8px; top: 8px; left: 8px; }
  .product-card__quick { width: 32px; height: 32px; font-size: 15px; right: 8px; bottom: 8px; }
  .trust__stats { gap: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
}
