/* ============================================================
   CONCEPT B — TASH GEM & JEWELLERY
   Logo palette · Light/Dark Gold · Black · Light Black
   ============================================================ */
:root {
  --bg: #fbf8f1;          /* warm cream paper */
  --paper: #ffffff;
  --blush: #f6edd6;       /* light gold tint (replaces blush) */
  --blush-2: #e8d49a;     /* mid light gold */
  --rose: #c9a14a;        /* dark gold (replaces primary accent) */
  --rose-2: #8a6a25;      /* deeper gold for hover/copy */
  --plum: #1f1c14;
  --ink: #0e0e0e;         /* pure black */
  --ink-2: #2a2a28;       /* light black */
  --mute: #8a8276;        /* warm gray */
  --line: #ece2c8;        /* soft gold-ivory line */
  --line-2: #d9c79a;
  --sale: #b03a2e;
  --display: "DM Serif Display", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, sans-serif;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 14px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: var(--display); }

/* === Top promo === */
.promo-bar {
  background: linear-gradient(90deg, var(--rose), var(--rose-2));
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.promo-bar b { font-weight: 700; }

/* === Header === */
.head {
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
}
.head .row {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
  padding: 20px 32px;
}
.head .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.head .brand .dot {
  width: 36px; height: 36px;
  background-image: url('logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  flex-shrink: 0;
}
.head .brand .brand-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: linear-gradient(180deg, var(--rose-2) 0%, var(--rose) 50%, var(--blush-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.head .brand small {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mute);
  margin-left: 6px; font-weight: 600;
  -webkit-text-fill-color: var(--mute);
}
.head .nav-c {
  display: flex; gap: 4px; justify-content: center; flex-wrap: nowrap;
  white-space: nowrap;
}
.head .nav-c a {
  padding: 9px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: all .2s;
  white-space: nowrap;
}
.head .nav-c a:hover { background: var(--blush); color: var(--rose-2); }
.head .nav-c a.on { background: var(--ink); color: #fff; }
.head .actions { display: flex; justify-content: flex-end; gap: 10px; }
.head .actions .ic {
  width: 42px; height: 42px;
  background: var(--paper);
  border-radius: var(--r-pill);
  display: grid; place-items: center;
  position: relative;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(74, 46, 58, 0.04);
  transition: all .2s;
}
.head .actions .ic:hover { background: var(--blush); transform: translateY(-1px); }
.head .actions .pip {
  position: absolute; top: -4px; right: -4px;
  background: var(--rose); color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700;
}
.head .actions .cur {
  display: flex; align-items: center; gap: 6px; padding: 0 18px;
  background: var(--paper); border-radius: var(--r-pill); height: 42px;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.head .mob-btn { display: none; }

/* === Hero === */
.hero {
  position: relative;
  background: var(--blush);
  border-radius: var(--r-lg);
  margin: 0 32px 24px;
  padding: 64px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  overflow: hidden;
  min-height: 540px;
}
.hero::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
}
.hero .copy { position: relative; z-index: 2; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(6px);
  padding: 8px 14px 8px 8px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600; color: var(--rose-2);
  margin-bottom: 28px;
}
.hero .tag .badge {
  background: var(--rose); color: #fff;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic; color: var(--rose-2);
}
.hero h1 .squiggle {
  display: inline-block; position: relative; padding: 0 6px;
}
.hero h1 .squiggle::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: rgba(226, 154, 138, 0.4);
  border-radius: 4px;
  z-index: -1;
}
.hero p {
  font-size: 16px; color: var(--ink-2); max-width: 460px; line-height: 1.7; margin-bottom: 36px;
}
.hero .cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-size: 13px; font-weight: 600;
  background: var(--ink); color: #fff;
  border-radius: var(--r-pill);
  transition: all .2s;
}
.btn:hover { background: var(--rose-2); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.rose { background: var(--rose); }
.btn.rose:hover { background: var(--rose-2); }
.hero .stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(74, 46, 58, 0.12);
}
.hero .stat .num { font-family: var(--display); font-size: 32px; line-height: 1; color: var(--rose-2); }
.hero .stat .l { font-size: 11px; color: var(--ink-2); letter-spacing: 0.06em; margin-top: 4px; }

.hero .visual {
  position: relative;
  z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero .visual .v-img {
  background-size: cover; background-position: center;
  border-radius: var(--r-md);
  aspect-ratio: 3/4;
}
.hero .visual .v1 { background-image: url('https://images.unsplash.com/photo-1611591437281-460bfbe1220a?w=800&q=85'); transform: translateY(-20px); }
.hero .visual .v2 { background-image: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?w=800&q=85'); transform: translateY(20px); }
.hero .float-tag {
  position: absolute;
  background: var(--paper);
  padding: 10px 14px;
  border-radius: var(--r-pill);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(74, 46, 58, 0.1);
  font-size: 12px; font-weight: 600;
  z-index: 3;
}
.hero .float-tag.t1 { top: 24px; left: 12px; }
.hero .float-tag.t2 { bottom: 80px; right: 6px; }
.hero .float-tag .em { color: var(--rose); font-size: 16px; }
.hero .float-tag b { color: var(--ink); }
.hero .float-tag .s { color: var(--mute); font-weight: 500; }

/* === Trust pill row === */
.trust-row {
  max-width: 1320px; margin: 0 auto;
  padding: 16px 32px 40px;
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.trust-row .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  border: 1px solid var(--line);
}
.trust-row .pill svg { color: var(--rose); }

/* === Sections === */
.section { padding: 64px 32px; }
.sec-head { margin-bottom: 40px; }
.sec-head .row {
  display: flex; justify-content: space-between; align-items: end; gap: 32px;
  flex-wrap: wrap;
}
.sec-head .lt .eye { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--rose); text-transform: uppercase; margin-bottom: 8px; }
.sec-head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink);
}
.sec-head h2 em { font-style: italic; color: var(--rose-2); }
.sec-head .rt {
  display: flex; align-items: center; gap: 8px;
}
.sec-head .rt .nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: grid; place-items: center;
}
.sec-head .rt .nav-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.sec-head .rt a {
  font-size: 13px; font-weight: 600; color: var(--rose-2);
  display: inline-flex; align-items: center; gap: 6px;
}

/* === Category bubbles === */
.bubbles {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px;
}
.bubble {
  text-align: center; padding: 0;
}
.bubble .ico {
  width: 100%; aspect-ratio: 1;
  background: var(--blush);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 12px;
  overflow: hidden;
  transition: transform .25s;
}
.bubble:hover .ico { transform: translateY(-4px) scale(1.03); }
.bubble.alt .ico { background: var(--paper); border: 1px solid var(--line); }
.bubble .ico img { width: 78%; height: 78%; object-fit: cover; border-radius: 50%; }
.bubble h4 { font-family: var(--display); font-size: 16px; font-weight: 400; color: var(--ink); margin-bottom: 2px; }
.bubble .n { font-size: 11px; color: var(--mute); }

/* === Products === */
.prods {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.prod {
  background: var(--paper);
  border-radius: var(--r-md);
  position: relative;
  padding: 12px;
  transition: all .25s;
}
.prod:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(74, 46, 58, 0.08); }
.prod .img {
  position: relative;
  aspect-ratio: 1;
  background: var(--blush);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.prod .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.prod:hover .img img { transform: scale(1.06); }
.prod .badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; }
.prod .b {
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--paper); color: var(--ink);
}
.prod .b.new { background: var(--ink); color: #fff; }
.prod .b.sale { background: var(--rose); color: #fff; }
.prod .b.feat { background: var(--blush-2); color: var(--ink); }
.prod .b.out { background: #999; color: #fff; }
.prod .heart {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  color: var(--ink-2); font-size: 16px;
  transition: all .2s;
}
.prod .heart:hover, .prod .heart.on { background: var(--rose); color: #fff; }
.prod .add-cart {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--ink); color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0; transition: all .25s;
  display: inline-flex; align-items: center; gap: 6px;
}
.prod:hover .add-cart { opacity: 1; transform: translateX(-50%) translateY(0); }
.prod .add-cart:hover { background: var(--rose); }
.prod .cat-line { font-size: 11px; color: var(--rose-2); font-weight: 600; margin-bottom: 4px; padding: 0 6px; }
.prod .name {
  font-family: var(--display); font-size: 17px; font-weight: 400;
  line-height: 1.2; color: var(--ink); margin-bottom: 10px; padding: 0 6px;
  display: block;
}
.prod .rating { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--mute); padding: 0 6px; margin-bottom: 10px; }
.prod .rating .stars { color: var(--rose); }
.prod .footer-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 6px 4px; border-top: 1px solid var(--line);
}
.prod .prices { display: flex; align-items: baseline; gap: 6px; }
.prod .price { font-family: var(--display); font-size: 18px; color: var(--ink); }
.prod .strike { text-decoration: line-through; color: var(--mute); font-size: 12px; }
.prod .swatches { display: flex; gap: 4px; }
.prod .sw { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); }
.prod .sw.on { box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--rose); }

/* === Big collage / promo === */
.collage {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; height: 460px;
}
.collage .card {
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.collage .card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
}
.collage .card > * { position: relative; z-index: 2; }
.collage .card .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.92; margin-bottom: 8px; color: var(--blush-2); }
.collage .card h3 { font-family: var(--display); font-weight: 400; font-size: 36px; line-height: 1.05; margin-bottom: 14px; }
.collage .card .arr {
  font-size: 12px; font-weight: 700; color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.collage .c1 { background-image: url('https://images.unsplash.com/photo-1602173574767-37ac01994b2a?w=1400&q=85'); grid-row: span 2; }
.collage .c2 { background-image: url('https://images.unsplash.com/photo-1611652022419-a9419f74343d?w=900&q=85'); }
.collage .c3 { background-image: url('https://images.unsplash.com/photo-1535632787350-4e68ef0ac584?w=900&q=85'); }
.collage .c4 {
  background: var(--blush); color: var(--ink);
  display: grid; place-items: center; text-align: center;
  grid-column: 2 / 4;
  padding: 24px;
}
.collage .c4::after { display: none; }
.collage .c4 h4 { font-family: var(--display); font-size: 28px; font-weight: 400; line-height: 1.1; margin-bottom: 8px; max-width: 280px; }
.collage .c4 .p { font-size: 13px; color: var(--ink-2); margin-bottom: 16px; }

/* === Editorial split === */
.split {
  max-width: 1320px; margin: 80px auto;
  padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.split .visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: url('https://images.unsplash.com/photo-1611591437281-460bfbe1220a?w=1200&q=85') center/cover;
}
.split .visual .badge-circle {
  position: absolute; top: 20px; right: 20px;
  width: 96px; height: 96px;
  background: var(--rose); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.2;
  padding: 8px;
  transform: rotate(-12deg);
}
.split .copy .eye { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--rose); text-transform: uppercase; margin-bottom: 12px; }
.split .copy h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(34px, 4vw, 60px); line-height: 1.05; color: var(--ink); margin-bottom: 20px;
}
.split .copy h2 em { font-style: italic; color: var(--rose-2); }
.split .copy p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin-bottom: 16px; }
.split .copy ul.feats {
  display: grid; gap: 12px; margin: 24px 0;
}
.split .copy ul.feats li {
  display: flex; gap: 12px; font-size: 14px; color: var(--ink); align-items: center;
}
.split .copy ul.feats li .check {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blush);
  display: grid; place-items: center; color: var(--rose-2); flex-shrink: 0;
}

/* === Reviews === */
.review-cards {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.rev-card {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid var(--line);
  transition: all .2s;
}
.rev-card:hover { transform: translateY(-4px); border-color: var(--rose-2); }
.rev-card .top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.rev-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blush);
  display: grid; place-items: center;
  font-family: var(--display); color: var(--rose-2); font-size: 18px;
}
.rev-card .who strong { display: block; font-weight: 700; font-size: 14px; color: var(--ink); }
.rev-card .who span { font-size: 11px; color: var(--mute); }
.rev-card .stars { color: var(--rose); letter-spacing: 2px; margin-left: auto; }
.rev-card blockquote { font-size: 14px; line-height: 1.65; color: var(--ink-2); }
.rev-card .meta { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11px; color: var(--mute); }

/* === IG row === */
.ig-row {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.ig-row .ig {
  aspect-ratio: 1; border-radius: var(--r-sm);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.ig-row .ig::after {
  content: "♥ 1.2K"; position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(74, 46, 58, 0.5);
  color: #fff; font-size: 13px; font-weight: 700;
  opacity: 0; transition: opacity .25s;
}
.ig-row .ig:hover::after { opacity: 1; }

/* === Newsletter === */
.news-card {
  max-width: 1320px; margin: 64px auto;
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-2) 100%);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.news-card::before, .news-card::after {
  content: ""; position: absolute; width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.news-card::before { top: -60px; left: -60px; }
.news-card::after { bottom: -60px; right: -60px; }
.news-card .inner { position: relative; z-index: 2; }
.news-card .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose-2); margin-bottom: 12px; }
.news-card h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px); line-height: 1.05; color: var(--ink); margin-bottom: 12px;
}
.news-card h2 em { font-style: italic; color: var(--rose-2); }
.news-card p { font-size: 15px; color: var(--ink-2); margin-bottom: 32px; }
.news-card form {
  display: flex; max-width: 480px; margin: 0 auto;
  background: var(--paper); padding: 6px; border-radius: var(--r-pill);
  gap: 6px;
}
.news-card input {
  flex: 1; background: transparent; border: 0; outline: none;
  padding: 12px 18px; font-size: 14px;
}
.news-card button {
  background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700;
}

/* === Footer === */
.foot {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding: 64px 32px 24px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  margin-top: 64px;
}
.foot .grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot .brand-f {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 30px; color: #fff; margin-bottom: 14px;
}
.foot .brand-f .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--rose); }
.foot .tag-f { font-size: 13px; line-height: 1.65; max-width: 320px; margin-bottom: 24px; }
.foot .social { display: flex; gap: 10px; }
.foot .social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
}
.foot .social a:hover { background: var(--rose); }
.foot h5 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); font-weight: 700; margin-bottom: 16px; }
.foot ul { display: grid; gap: 10px; }
.foot ul a { font-size: 13px; }
.foot ul a:hover { color: var(--rose); }
.foot .legal {
  max-width: 1320px; margin: 0 auto;
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: rgba(255,255,255,0.5);
}
.foot .pays { display: flex; gap: 6px; }
.foot .pays span { padding: 4px 8px; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; font-size: 10px; }

/* === Mobile tab bar === */
.tabbar {
  display: none;
  position: fixed; bottom: 12px; left: 12px; right: 12px; z-index: 60;
  background: var(--paper);
  padding: 6px;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 30px rgba(74, 46, 58, 0.15);
  grid-template-columns: repeat(5, 1fr);
}
.tabbar a {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  font-size: 9px; color: var(--mute);
  padding: 8px 4px;
  border-radius: var(--r-pill);
  position: relative;
}
.tabbar a.on { background: var(--ink); color: #fff; }
.tabbar a.on svg { color: var(--rose); }
.tabbar a .pip {
  position: absolute; top: 4px; right: 50%; margin-right: 4px;
  background: var(--rose); color: #fff;
  width: 14px; height: 14px; border-radius: 50%;
  display: grid; place-items: center; font-size: 9px; font-weight: 700;
}

/* === Listing page === */
.page-head-b {
  text-align: center;
  padding: 56px 32px 40px;
}
.page-head-b .crumbs { font-size: 12px; color: var(--mute); margin-bottom: 16px; }
.page-head-b .crumbs a { color: var(--rose-2); }
.page-head-b h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px); line-height: 1; color: var(--ink);
}
.page-head-b h1 em { font-style: italic; color: var(--rose-2); }
.page-head-b p { font-size: 15px; color: var(--ink-2); max-width: 560px; margin: 14px auto 0; }

.cat-pills {
  max-width: 1320px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  padding: 0 32px 24px;
}
.cat-pills .cp {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
}
.cat-pills .cp.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-pills .cp .n { color: var(--mute); font-size: 11px; }
.cat-pills .cp.on .n { color: rgba(255,255,255,0.6); }

.list-b {
  max-width: 1320px; margin: 0 auto; padding: 16px 32px 64px;
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
}
.sidebar-b {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 24px;
  height: fit-content;
  position: sticky; top: 96px;
  border: 1px solid var(--line);
}
.sidebar-b .f-block { padding: 16px 0; border-bottom: 1px dashed var(--line); }
.sidebar-b .f-block:first-child { padding-top: 0; }
.sidebar-b .f-block:last-child { border-bottom: 0; padding-bottom: 0; }
.sidebar-b h5 {
  font-family: var(--display); font-size: 18px;
  color: var(--ink); font-weight: 400; margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.sidebar-b ul { display: grid; gap: 10px; }
.sidebar-b ul li {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-2); cursor: pointer;
}
.sidebar-b ul li:hover { color: var(--rose-2); }
.sidebar-b ul li .ck {
  width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--line-2);
  display: inline-grid; place-items: center; margin-right: 10px;
  color: #fff; font-size: 11px;
}
.sidebar-b ul li.on .ck { background: var(--rose); border-color: var(--rose); }
.sidebar-b ul li.on .ck::after { content: "✓"; }
.sidebar-b ul li .n { font-size: 11px; color: var(--mute); background: var(--blush); padding: 2px 8px; border-radius: var(--r-pill); }
.sidebar-b .sw-row { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-b .sw-row .sw { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); cursor: pointer; }
.sidebar-b .sw-row .sw.on { box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--rose); }
.sidebar-b .size-row { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-b .size-row .sz {
  padding: 8px 14px; font-size: 12px; font-weight: 600;
  background: var(--bg); border-radius: var(--r-pill); cursor: pointer; color: var(--ink-2);
}
.sidebar-b .size-row .sz.on { background: var(--ink); color: #fff; }
.sidebar-b .price-input {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center;
}
.sidebar-b .price-input input {
  background: var(--bg); border: 0; padding: 10px 14px;
  border-radius: var(--r-pill); font-size: 12px;
}

.list-tools {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  background: var(--paper); padding: 14px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.list-tools .count { font-size: 13px; color: var(--ink-2); }
.list-tools .count strong { color: var(--ink); }
.list-tools .right { display: flex; gap: 12px; align-items: center; }
.list-tools select { background: var(--bg); border: 0; padding: 8px 14px; border-radius: var(--r-pill); font-size: 12px; }
.list-tools .views { display: flex; gap: 2px; }
.list-tools .views button {
  width: 32px; height: 32px; border-radius: var(--r-pill);
  display: grid; place-items: center; color: var(--mute);
}
.list-tools .views button.on { background: var(--ink); color: #fff; }
.list-main .prods { grid-template-columns: repeat(3, 1fr); }

.pagn-b { display: flex; justify-content: center; gap: 6px; padding-top: 32px; }
.pagn-b button {
  min-width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}
.pagn-b button.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* === PDP === */
.pdp-b {
  max-width: 1320px; margin: 0 auto;
  padding: 32px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
}
.pdp-b .gallery { display: grid; gap: 14px; }
.pdp-b .main-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--blush);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pdp-b .main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-b .main-img .b {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 14px; background: var(--rose); color: #fff;
  border-radius: var(--r-pill); font-size: 11px; font-weight: 700;
}
.pdp-b .main-img .heart-big {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.95);
  display: grid; place-items: center; color: var(--ink);
}
.pdp-b .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp-b .thumbs .t {
  aspect-ratio: 1; background: var(--blush); border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; opacity: 0.55; border: 2px solid transparent;
}
.pdp-b .thumbs .t img { width: 100%; height: 100%; object-fit: cover; }
.pdp-b .thumbs .t.on, .pdp-b .thumbs .t:hover { opacity: 1; border-color: var(--rose); }

.pdp-b .info { padding-top: 8px; }
.pdp-b .info .crumbs { font-size: 12px; color: var(--mute); margin-bottom: 12px; }
.pdp-b .info .crumbs a { color: var(--rose-2); }
.pdp-b .info .cat-line {
  display: inline-block;
  padding: 5px 12px; background: var(--blush); color: var(--rose-2);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 16px;
}
.pdp-b .info h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px); line-height: 1.05; color: var(--ink); margin-bottom: 16px;
}
.pdp-b .info .rating { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: 13px; color: var(--ink-2); flex-wrap: wrap; }
.pdp-b .info .rating .stars { color: var(--rose); letter-spacing: 2px; font-size: 16px; }
.pdp-b .info .rating .stock { color: #2a8b3f; font-weight: 600; }
.pdp-b .info .prices { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pdp-b .info .price { font-family: var(--display); font-size: 40px; color: var(--ink); }
.pdp-b .info .strike { text-decoration: line-through; color: var(--mute); font-size: 18px; }
.pdp-b .info .secondary { font-size: 13px; color: var(--ink-2); margin-bottom: 24px; }
.pdp-b .info .secondary b { color: var(--rose-2); }
.pdp-b .info .desc { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 28px; }

.opt-b { margin-bottom: 20px; }
.opt-b .l { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.opt-b .l .help { color: var(--rose-2); }
.opt-b .opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-b .sw-opt {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1); cursor: pointer;
}
.opt-b .sw-opt.on { box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--rose); }
.opt-b .sz-opt {
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-2); cursor: pointer;
}
.opt-b .sz-opt.on { background: var(--ink); color: #fff; border-color: var(--ink); }

.qty-actions-b {
  display: grid; grid-template-columns: auto 1fr; gap: 10px;
  margin: 28px 0 20px;
}
.qty-b {
  display: grid; grid-template-columns: 40px 1fr 40px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
}
.qty-b button { font-size: 18px; height: 48px; }
.qty-b input { text-align: center; border: 0; background: transparent; outline: none; font-weight: 700; }
.pdp-b .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-b .actions .btn { padding: 16px 28px; flex: 1; justify-content: center; }
.pdp-b .actions .btn.big { padding: 16px 36px; }

.pdp-b .perks-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--line);
}
.pdp-b .perks-row .p {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-2);
  padding: 12px 14px;
  background: var(--paper);
  border-radius: var(--r-sm);
}
.pdp-b .perks-row .p svg { color: var(--rose); flex-shrink: 0; }

.pdp-tabs-b {
  max-width: 1320px; margin: 64px auto;
  padding: 0 32px;
}
.pdp-tabs-b .head {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.pdp-tabs-b .head button {
  padding: 12px 22px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.pdp-tabs-b .head button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.pdp-tabs-b .body {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 40px;
  font-size: 15px; color: var(--ink-2); line-height: 1.8;
  max-width: 900px;
}
.pdp-tabs-b .body h4 { font-family: var(--display); font-size: 22px; color: var(--ink); margin: 24px 0 10px; }
.pdp-tabs-b .body ul { padding-left: 18px; list-style: disc; }
.pdp-tabs-b .body li { margin-bottom: 6px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1200px) {
  .head .nav-c { gap: 2px; }
  .head .nav-c a { padding: 8px 12px; font-size: 12px; }
  .hero { padding: 48px 40px; min-height: 480px; }
  .bubbles { grid-template-columns: repeat(6, 1fr); }
  .prods { grid-template-columns: repeat(3, 1fr); }
  .collage { grid-template-columns: 1.5fr 1fr 1fr; height: 420px; }
  .review-cards { grid-template-columns: repeat(2, 1fr); }
  .ig-row { grid-template-columns: repeat(4, 1fr); }
  .list-b { grid-template-columns: 240px 1fr; gap: 20px; }
  .list-main .prods { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .head .row { grid-template-columns: auto 1fr auto; padding: 14px 20px; }
  .head .nav-c { display: none; }
  .head .actions .cur { display: none; }
  .head .mob-btn { display: grid; }
  .hero { grid-template-columns: 1fr; padding: 40px 28px; min-height: 0; margin: 0 16px 16px; border-radius: var(--r-md); }
  .hero .visual { display: none; }
  .hero h1 { font-size: 44px; }
  .trust-row { padding: 8px 16px 24px; gap: 8px; }
  .trust-row .pill { padding: 10px 14px; font-size: 12px; }
  .section { padding: 48px 16px; }
  .sec-head h2 { font-size: 34px; }
  .bubbles { grid-template-columns: repeat(4, 1fr); }
  .prods { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .collage { grid-template-columns: 1fr; height: auto; padding: 0 16px; }
  .collage .c1 { grid-row: auto; min-height: 280px; }
  .collage .c4 { grid-column: auto; min-height: 200px; padding: 32px; }
  .collage .c2, .collage .c3 { min-height: 240px; }
  .split { grid-template-columns: 1fr; gap: 32px; padding: 0 16px; margin: 56px auto; }
  .split .visual { aspect-ratio: 4/3; }
  .review-cards { grid-template-columns: 1fr; }
  .ig-row { grid-template-columns: repeat(3, 1fr); padding: 0 16px; }
  .news-card { padding: 48px 20px; margin: 32px 16px; }
  .news-card h2 { font-size: 32px; }
  .news-card form { flex-direction: column; padding: 12px; border-radius: var(--r-md); }
  .news-card input { padding: 14px 16px; }
  .news-card button { padding: 14px; }
  .foot .grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .list-b { grid-template-columns: 1fr; padding: 16px 16px 32px; }
  .sidebar-b { display: none; }
  .list-main .prods { grid-template-columns: repeat(2, 1fr); }
  .pdp-b { grid-template-columns: 1fr; gap: 32px; padding: 20px 16px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 80px; font-size: 13px; }
  .promo-bar { font-size: 11px; padding: 8px 12px; }
  .head .row { padding: 12px 16px; gap: 12px; }
  .head .brand { font-size: 22px; }
  .head .brand small { display: none; }
  .head .actions .ic { width: 38px; height: 38px; }
  .tabbar { display: grid; }
  .hero { padding: 32px 20px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 14px; }
  .hero .stats { gap: 18px; }
  .hero .stat .num { font-size: 24px; }
  .section { padding: 36px 16px; }
  .sec-head .row { flex-direction: column; align-items: flex-start; }
  .sec-head h2 { font-size: 28px; }
  .bubbles { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .prods { grid-template-columns: 1fr 1fr; gap: 10px; }
  .prod { padding: 8px; }
  .prod .name { font-size: 14px; }
  .prod .price { font-size: 16px; }
  .prod .add-cart { display: none; }
  .collage .card h3 { font-size: 26px; }
  .split .copy h2 { font-size: 30px; }
  .split .visual .badge-circle { width: 72px; height: 72px; font-size: 12px; }
  .rev-card { padding: 22px; }
  .ig-row { grid-template-columns: repeat(2, 1fr); }
  .foot { padding: 48px 16px 20px; border-radius: var(--r-md) var(--r-md) 0 0; }
  .foot .grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
  .foot .legal { flex-direction: column; text-align: center; }
  .page-head-b { padding: 36px 16px 24px; }
  .page-head-b h1 { font-size: 38px; }
  .cat-pills { padding: 0 16px 20px; }
  .list-tools { flex-direction: column; align-items: stretch; gap: 8px; padding: 12px 16px; }
  .list-main .prods { grid-template-columns: 1fr 1fr; }
  .pdp-b .info h1 { font-size: 28px; }
  .pdp-b .info .price { font-size: 30px; }
  .pdp-b .qty-actions-b { grid-template-columns: 1fr; }
  .pdp-b .actions { flex-direction: column; }
  .pdp-b .perks-row { grid-template-columns: 1fr; }
  .pdp-tabs-b .body { padding: 24px; font-size: 14px; }
}

@media (max-width: 380px) {
  .head .brand { font-size: 19px; }
  .hero h1 { font-size: 32px; }
  .bubbles { grid-template-columns: repeat(2, 1fr); }
  .sec-head h2 { font-size: 24px; }
}

/* ── ultrawide (≥1600px): cap the full-bleed hero band so it doesn't stretch on 1920px desktops
      (content grids .wrap/.prods/.foot are already capped at 1320) ── */
@media (min-width: 1600px) {
  .hero { max-width: 1320px; margin-left: auto; margin-right: auto; }
}
