/* ===========================================
   FirstGold Hair — global styles
   =========================================== */

:root {
  --bg: #faf6f0;          /* warm cream */
  --bg-2: #f1ebe1;        /* deeper cream */
  --surface: #ffffff;
  --ink: #1a0f0a;         /* near-black brown */
  --ink-2: #2b1a14;       /* primary text */
  --ink-3: #6a5b54;       /* secondary text */
  --ink-4: #a89c93;       /* muted text */
  --line: #e9e0d3;        /* soft border */
  --line-2: #d6c8b6;
  --gold: #c9a961;        /* champagne gold */
  --gold-2: #b08930;      /* deeper gold */
  --gold-3: #f3e6c4;      /* pale gold */
  --wa: #25d366;          /* WhatsApp green */
  --wa-dark: #1da851;
  --red: #b5404b;         /* sale */
  --shadow: 0 6px 24px -10px rgba(26,15,10,0.18);
  --shadow-lg: 0 24px 60px -20px rgba(26,15,10,0.30);
  --radius: 4px;
  --radius-lg: 10px;
  --container: 1320px;
  --header-h: 76px;
  --announce-h: 38px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: calc(var(--announce-h) + var(--header-h));
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); margin: 0 0 .4em; line-height: 1.15; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 720px) { .container { padding: 0 16px; } }

/* ===========================================
   Announcement bar
   =========================================== */
.announce {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--announce-h);
  background: var(--ink);
  color: #f6e9c4;
  z-index: 60;
  overflow: hidden;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.announce__track {
  display: flex; gap: 56px; align-items: center;
  white-space: nowrap;
  height: 100%;
  animation: ticker 36s linear infinite;
  padding-left: 56px;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================
   Header
   =========================================== */
.header {
  position: fixed; top: var(--announce-h); left: 0; right: 0;
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 55;
  transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: var(--shadow); }
.header__row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.header__menu {
  display: none;
  background: transparent; border: 0; color: var(--ink);
  padding: 6px;
}
.header__logo { display: inline-flex; align-items: center; }
.header__logo-img {
  height: 62px; width: auto;
  object-fit: contain;
}
.header__nav {
  display: flex; gap: 22px; justify-content: center;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.header__nav a {
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color .15s;
}
.header__nav a:hover { color: var(--gold-2); }
.header__nav-factory {
  color: var(--gold-2) !important;
  font-weight: 700 !important;
}
.header__actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  background: transparent; border: 0;
  color: var(--ink);
  padding: 10px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  transition: background .15s, color .15s;
}
.icon-btn:hover { background: var(--bg-2); }

.wa-header-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa);
  color: #fff;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .04em;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .15s, transform .15s;
}
.wa-header-btn:hover { background: var(--wa-dark); transform: translateY(-1px); }
@media (max-width: 900px) { .wa-header-btn__label { display: none; } }

@media (max-width: 1080px) {
  .header__nav { display: none; }
  .header__menu { display: inline-grid; }
  .header__row { grid-template-columns: auto 1fr auto; }
}

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--surface);
  z-index: 70;
  transform: translateX(-100%);
  transition: transform .25s ease;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__logo { height: 54px; width: auto; object-fit: contain; }
.mobile-nav__list {
  padding: 12px 8px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  flex: 1;
}
.mobile-nav__list a {
  display: block; padding: 14px 14px;
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--radius);
  transition: background .15s;
}
.mobile-nav__list a:hover { background: var(--bg-2); }
.mobile-nav__wa { margin: 12px 16px 20px; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(26,15,10,0.45);
  z-index: 65;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

/* ===========================================
   Buttons
   =========================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .18s ease;
  text-align: center;
  font-family: var(--sans);
}
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn--wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 16px 34px; font-size: 14px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.section__head { text-align: center; margin-bottom: 40px; }
.section__head h2 { font-size: 38px; font-weight: 700; }
.section__head p { color: var(--ink-3); max-width: 680px; margin: 8px auto 0; }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section__head h2 { font-size: 28px; }
}

/* ===========================================
   Hero (home) — 2-column, full product image
   =========================================== */
.hero { overflow: hidden; background: var(--bg-2); }
.hero__track { position: relative; height: clamp(480px, 68vh, 780px); }
.hero__slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: linear-gradient(120deg, #ffffff 0%, var(--bg) 60%, var(--bg-2) 100%);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__content { padding: 40px 4vw 40px 6vw; max-width: 620px; }
.hero__kicker {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.hero__sub {
  font-size: 15.5px;
  color: var(--ink-3);
  max-width: 460px;
  margin-bottom: 26px;
}
.hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.hero__cta:hover { background: var(--gold-2); }
.hero__figure {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 3vw 24px 0;
  min-width: 0;
}
.hero__figure img {
  max-height: 100%;
  max-width: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.hero__dots {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; gap: 10px; justify-content: center;
  z-index: 3;
}
.hero__dot {
  width: 30px; height: 3px;
  background: var(--line-2);
  border: 0; padding: 0;
  border-radius: 999px;
  transition: background .2s, width .2s;
}
.hero__dot.is-active { background: var(--ink); width: 48px; }

@media (max-width: 860px) {
  .hero__track { height: auto; min-height: 0; }
  .hero__slide {
    position: relative;
    grid-template-columns: 1fr;
    opacity: 1; pointer-events: auto;
    display: none;
  }
  .hero__slide.is-active { display: grid; }
  .hero__content { padding: 36px 24px 8px; }
  .hero__figure { padding: 12px 24px 48px; max-height: 420px; }
}

/* ===========================================
   Category tiles — full image, no crop
   =========================================== */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: start;
}
@media (max-width: 1024px) { .cat-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px)  { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }
.cat-tile {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-tile__imgwrap {
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
}
.cat-tile__imgwrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cat-tile__label {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}
.cat-tile__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.cat-tile__arrow {
  font-size: 15px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  display: inline-grid; place-items: center;
  color: var(--ink);
  transition: background .2s, color .2s, transform .2s;
}
.cat-tile:hover .cat-tile__arrow { background: var(--gold-2); color: #fff; transform: translateX(2px); }

/* ===========================================
   Texture tiles — full image, no crop
   =========================================== */
.texture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .texture-grid { grid-template-columns: repeat(2, 1fr); } }
.texture-tile {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.texture-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.texture-tile__imgwrap {
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
.texture-tile__imgwrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.texture-tile__label {
  padding: 11px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 600;
  text-align: center;
}

/* ===========================================
   Product card — uniform square boxes,
   image shown with object-fit: contain
   (full image visible, never cropped).
   =========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; } }

.product {
  display: flex; flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}
/* Uniform square card — every card identical in size */
.product__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
/* contain = full image visible inside the uniform box, never cropped */
.product__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  background: var(--surface);
  transition: opacity .25s;
}
.product__media img.alt { opacity: 0; }
.product:hover .product__media img.primary { opacity: 0; }
.product:hover .product__media img.alt { opacity: 1; }
.product__badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.badge {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  line-height: 1;
}
.badge--gold { background: var(--gold-2); }
.badge--red  { background: var(--red); }
.badge--green{ background: #2d6a4f; }
.badge--wa   { background: var(--wa); }

.product__quick {
  position: absolute; right: 10px; top: 10px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--wa);
  border: 0;
  display: grid; place-items: center;
  color: #fff;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .2s, transform .2s, background .15s;
  z-index: 2;
}
.product:hover .product__quick { opacity: 1; transform: translateY(0); }
.product__quick:hover { background: var(--wa-dark); }
@media (max-width: 720px) {
  .product__quick { opacity: 1; transform: none; width: 34px; height: 34px; }
}

.product__title {
  font-size: 14px; font-weight: 500;
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.product__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.product__price-now { font-weight: 700; color: var(--ink); font-size: 15px; }
.product__price-was { color: var(--ink-4); text-decoration: line-through; font-size: 13px; }
.product__price-from { color: var(--ink-3); font-size: 12px; font-weight: 500; }
.product__rating { display: flex; align-items: center; gap: 6px; color: var(--ink-3); font-size: 12px; margin-top: 4px; }
.product__stars { color: var(--gold-2); letter-spacing: 1px; }

@media (max-width: 720px) {
  .product__title { font-size: 13px; }
  .product__price-now { font-size: 14px; }
}

/* ===========================================
   Featured collection cards — full image
   =========================================== */
.featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 900px) { .featured { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .featured { grid-template-columns: 1fr; } }
.featured-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.featured-card__imgwrap {
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
}
.featured-card__imgwrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.featured-card__body { padding: 22px 24px 26px; border-top: 1px solid var(--line); }
.featured-card__kicker {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.featured-card__title {
  font-family: var(--serif);
  font-size: 26px; font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.featured-card__sub { color: var(--ink-3); margin-bottom: 14px; font-size: 14px; }
.featured-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.featured-card:hover .featured-card__cta { border-color: var(--gold-2); color: var(--gold-2); }

/* ===========================================
   Factory section
   =========================================== */
.factory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) { .factory { grid-template-columns: 1fr; } }
.factory-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.factory-card__imgwrap {
  padding: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
}
.factory-card__imgwrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.factory-card__body { padding: 16px 18px 20px; border-top: 1px solid var(--line); }
.factory-card__title { font-family: var(--serif); font-size: 18px; margin: 0 0 4px; color: var(--ink); }
.factory-card__sub { font-size: 13px; color: var(--ink-3); margin: 0; }

/* ===========================================
   Feedback section (real customer screenshots)
   =========================================== */
.feedback-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.feedback-strip::-webkit-scrollbar { height: 6px; }
.feedback-strip::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; }
.feedback-card {
  flex: 0 0 auto;
  height: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.feedback-card img {
  height: 100%; width: auto;
  max-width: 420px;
  object-fit: contain;
}
@media (max-width: 720px) { .feedback-card { height: 400px; } }

/* ===========================================
   Why-us strip
   =========================================== */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 900px) { .why-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-strip { grid-template-columns: 1fr; } }
.why-cell {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 32px 18px;
  border-right: 1px solid var(--line);
}
.why-cell:last-child { border-right: 0; }
@media (max-width: 900px) {
  .why-cell { border-right: 1px solid var(--line); }
  .why-cell:nth-child(2n) { border-right: 0; }
  .why-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .why-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .why-cell:last-child { border-bottom: 0; }
}
.why-cell__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  display: grid; place-items: center;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.why-cell__title {
  font-family: var(--serif);
  font-size: 18px; font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}
.why-cell__sub { font-size: 13px; color: var(--ink-3); margin: 0; }

/* ===========================================
   Category page
   =========================================== */
.cat-hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  background: linear-gradient(120deg, #ffffff 0%, var(--bg) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin: 0 0 36px;
  overflow: hidden;
}
@media (max-width: 780px) { .cat-hero { grid-template-columns: 1fr; } }
.cat-hero__body { padding: 44px 40px; max-width: 620px; }
.cat-hero__title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.cat-hero__sub { color: var(--ink-3); font-size: 15.5px; }
.cat-hero__tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 10px;
}
.cat-hero__figure {
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
}
/* Full image at its natural ratio — fills the column, no crop, no letterbox */
.cat-hero__figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 780px) {
  .cat-hero__body { padding: 30px 24px; }
}

.cat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
.cat-strip__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
}
.cat-strip__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cat-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cat-toolbar__count { color: var(--ink-3); font-size: 13px; }
.cat-toolbar__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 12px;
  font-size: 12px; font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s;
  color: var(--ink-2);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===========================================
   Product detail
   =========================================== */
.pdp {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  padding: 32px 0 60px;
}
@media (max-width: 960px) { .pdp { grid-template-columns: 1fr; gap: 30px; } }

.pdp-gallery { position: relative; }
.pdp-gallery__main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.pdp-gallery__main img {
  display: block;
  width: 100%;
  height: auto;          /* natural aspect ratio — no crop, no letterbox */
  object-fit: contain;
  padding: 16px;
}
.pdp-gallery__thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
@media (max-width: 540px) { .pdp-gallery__thumbs { grid-template-columns: repeat(4, 1fr); } }
.pdp-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--surface);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.pdp-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
  background: var(--surface);
}
.pdp-thumb.is-active { border-color: var(--ink); }

.pdp-info h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.pdp-rating { display: flex; align-items: center; gap: 8px; color: var(--ink-3); font-size: 13px; margin-bottom: 16px; }
.pdp-rating__stars { color: var(--gold-2); }
.pdp-price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.pdp-price__now { font-size: 28px; font-weight: 700; color: var(--ink); }
.pdp-price__was { font-size: 18px; color: var(--ink-4); text-decoration: line-through; }
.pdp-price__save {
  background: var(--red);
  color: #fff;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 3px;
}

.pdp-section { margin-bottom: 22px; }
.pdp-section h4 {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.pdp-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-chip {
  border: 1.5px solid var(--line-2);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 13px; font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .15s;
}
.pdp-chip:hover { border-color: var(--ink); }
.pdp-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.pdp-wa-note { font-size: 12.5px; color: var(--ink-3); margin: 10px 0 0; }

.pdp-actions { margin-top: 8px; }
.pdp-actions .btn { width: 100%; }

.pdp-features {
  display: flex; flex-direction: column; gap: 8px;
  margin: 20px 0;
  padding: 16px 18px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
}
.pdp-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-2);
}
.pdp-feature svg { color: var(--gold-2); flex: 0 0 18px; }

.pdp-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 8px 0 24px;
}
.pdp-specs tr { border-bottom: 1px solid var(--line); }
.pdp-specs tr:last-child { border-bottom: 0; }
.pdp-specs th {
  text-align: left; padding: 10px 0;
  color: var(--ink-3);
  font-weight: 500;
  width: 38%;
  vertical-align: top;
}
.pdp-specs td { padding: 10px 0; color: var(--ink-2); font-weight: 500; }

.pdp-desc {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
.pdp-desc h3 { font-size: 22px; margin-bottom: 16px; }
.pdp-desc p { color: var(--ink-2); line-height: 1.7; }
.pdp-desc ul.prod-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin: 24px 0 0;
}
@media (max-width: 720px) { .pdp-desc ul.prod-features { grid-template-columns: 1fr; } }
.pdp-desc ul.prod-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14px; color: var(--ink-2);
  line-height: 1.55;
}
.pdp-desc ul.prod-features li::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--gold-2);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

/* Breadcrumb */
.crumbs {
  display: flex; gap: 6px; align-items: center;
  font-size: 12.5px; color: var(--ink-3);
  margin: 24px 0 0;
  flex-wrap: wrap;
}
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink); }

/* ===========================================
   Search modal
   =========================================== */
.search-modal {
  position: fixed; inset: 0;
  background: rgba(26,15,10,0.6);
  z-index: 80;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 80px 20px 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.search-modal.is-open { opacity: 1; pointer-events: auto; }
.search-modal__inner {
  background: var(--surface);
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: 80vh;
}
.search-modal__head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.search-modal__head input {
  flex: 1; border: 0; outline: 0;
  font-size: 16px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
}
.search-modal__results { padding: 8px 0; overflow-y: auto; }
.search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.search-result:hover { background: var(--bg-2); }
.search-result__img {
  width: 50px; height: 50px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  flex: 0 0 50px;
  display: flex; align-items: center; justify-content: center;
}
.search-result__img img { width: 100%; height: 100%; object-fit: contain; padding: 2px; }
.search-result__info { flex: 1; }
.search-result__title { font-size: 14px; color: var(--ink); }
.search-result__cat { font-size: 12px; color: var(--ink-3); }
.search-result__price { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ===========================================
   Toast
   =========================================== */
.toast {
  position: fixed; bottom: 96px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 90;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.toast.is-open { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===========================================
   Floating WhatsApp button
   =========================================== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6);
  z-index: 50;
  transition: transform .2s, background .2s;
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); background: var(--wa-dark); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.35); }
  70%  { box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===========================================
   Footer
   =========================================== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.footer a { color: rgba(255,255,255,0.78); transition: color .15s; }
.footer a:hover { color: #fff; }
.footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 18px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand p { font-size: 14px; max-width: 360px; margin: 0 0 18px; }
.footer__logo { height: 72px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-grid; place-items: center;
  color: rgba(255,255,255,0.85);
  transition: background .15s, color .15s, transform .15s;
}
.social-icon:hover { background: var(--gold-2); color: #fff; transform: translateY(-2px); }
.footer__col a { display: block; padding: 4px 0; font-size: 14px; }
.footer__small { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer__trust { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.footer__trust span {
  font-size: 11px;
  background: rgba(255,255,255,0.1);
  padding: 4px 8px;
  border-radius: 3px;
  color: rgba(255,255,255,0.78);
}
.footer__bottom {
  display: flex; justify-content: space-between;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 540px) { .footer__bottom { flex-direction: column; gap: 8px; } }

/* ===========================================
   Info pages (about etc.)
   =========================================== */
.placeholder-section { padding: 80px 0; text-align: center; }
.placeholder-section h1 { font-size: 36px; margin-bottom: 12px; }
.placeholder-section p { color: var(--ink-3); }

.about-page { padding: 32px 0 60px; }
.about-page h1 { font-size: clamp(32px, 4vw, 44px); }
.about-page .lead { font-size: 17px; color: var(--ink-3); max-width: 760px; }

@media (max-width: 720px) {
  body { font-size: 14px; }
}
