/* =========================================================
   Fashion SHEIN — Global Stylesheet
   Modern · Feminine · Elegant · Conversion-focused
   ========================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Design tokens (SHEIN black & white) ---------- */
:root {
  --pink:        #000000;
  --pink-soft:   #f5f5f5;
  --pink-deep:   #000000;
  --beige:       #f5f5f5;
  --beige-soft:  #fafafa;
  --black:       #000000;
  --gray-900:    #000000;
  --gray-700:    #333333;
  --gray-500:    #767676;
  --gray-300:    #d6d6d6;
  --gray-100:    #f3f3f3;
  --white:       #ffffff;
  --accent:      #000000;
  --gold:        #000000;

  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.08);

  --transition: all .25s cubic-bezier(.4,.0,.2,1);

  --container: 1240px;
}

/* ---------- Typography (SHEIN bold sans-serif) ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
  text-transform: none;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { color: var(--gray-700); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .72rem;
  color: var(--black);
  font-weight: 700;
  margin-bottom: .75rem;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p  { max-width: 620px; margin: 0 auto; color: var(--gray-500); }

/* ---------- Top promo bar ---------- */
.promo-bar {
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
  font-size: .8rem;
  padding: 10px 16px;
  letter-spacing: .08em;
}
.promo-bar strong { color: var(--pink); margin: 0 6px; }

/* ---------- Sticky Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
}
.logo span { color: var(--black); font-style: normal; font-weight: 400; }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-tools {
  display: flex;
  gap: 14px;
  align-items: center;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--black);
}
.icon-btn:hover { background: var(--black); color: var(--white); }
.menu-toggle { display: none; }

/* ---------- Buttons (SHEIN: sharp black & white) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 0;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
}
.btn-primary:hover { background: var(--white); color: var(--black); }
.btn-pink {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--black);
}
.btn-pink:hover { background: var(--white); color: var(--black); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .78rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: clamp(48px, 8vw, 110px) 0;
}
.hero-text h1 { margin-bottom: 18px; }
.hero-text p { font-size: 1.05rem; max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 28px;
}
.hero-meta div strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gray-900);
}
.hero-meta div span { font-size: .8rem; color: var(--gray-500); }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 0;
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.hero-tag {
  position: absolute;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 0;
  border: 1.5px solid var(--black);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero-tag.t1 { top: 24px; left: -16px; }
.hero-tag.t2 { bottom: 32px; right: -10px; background: var(--black); color: var(--white); }
.hero-tag .price { color: var(--black); display: block; font-size: 1rem; font-family: inherit; }
.hero-tag.t2 .price { color: var(--white); }

/* ---------- Categories ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: var(--transition);
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: var(--white);
}
.cat-card-info h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.cat-card-info span { font-size: .8rem; opacity: .85; }

/* ---------- Product cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--black);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 6px 12px;
  border-radius: 0;
  z-index: 2;
  text-transform: uppercase;
}
.badge.new { background: var(--white); color: var(--black); border: 1px solid var(--black); }
.badge.hot { background: var(--black); }
.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--black);
}
.wishlist:hover { background: var(--black); color: var(--white); }
.wishlist.active { background: var(--black); color: var(--white); }
.product-info { padding: 16px 6px 6px; }
.product-cat {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.product-title {
  font-size: .98rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.product-rating { font-size: .78rem; color: var(--black); margin-bottom: 8px; }
.product-rating span { color: var(--gray-500); margin-left: 6px; }
.product-price {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.price-now { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); }
.price-was { font-size: .85rem; color: var(--gray-500); text-decoration: line-through; }

/* ---------- Daily deals ---------- */
.deals-band {
  background: var(--black);
  color: var(--white);
  border-radius: 0;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.deals-band h2 { color: var(--white); }
.deals-band p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.timer { display: flex; gap: 8px; }
.timer div {
  background: var(--white);
  color: var(--black);
  padding: 14px 18px;
  border-radius: 0;
  text-align: center;
  min-width: 70px;
}
.timer strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
}
.timer span { font-size: .7rem; opacity: .8; text-transform: uppercase; color: var(--black); font-weight: 600; }

/* ---------- Collection grid ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 600px;
}
.col-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.col-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.col-card:hover img { transform: scale(1.06); }
.col-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.6) 100%);
}
.col-card-info {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2; color: var(--white);
}
.col-card-info h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }
.col-card-info span { font-size: .82rem; opacity: .85; }
.col-1 { grid-row: 1/3; grid-column: 1/2; }

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 0;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.why-card:hover h3, .why-card:hover p { color: var(--white); }
.why-card:hover .why-icon { background: var(--white); color: var(--black); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  transition: var(--transition);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: .9rem; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--black);
  color: var(--white);
  border-radius: 0;
  padding: 64px 40px;
  text-align: center;
}
.newsletter h2 { margin-bottom: 12px; color: var(--white); }
.newsletter p { max-width: 520px; margin: 0 auto 32px; color: rgba(255,255,255,.8); }
.newsletter .eyebrow { color: var(--white); }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1 1 240px;
  padding: 14px 22px;
  border: none;
  border-radius: 0;
  background: var(--white);
  font-size: .92rem;
}
.newsletter-form input:focus { outline: 2px solid var(--white); outline-offset: -2px; }

/* ---------- Instagram gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.gallery-grid a {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-sm);
}
.gallery-grid a img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  opacity: 0;
  transition: var(--transition);
}
.gallery-grid a::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 32px; height: 32px;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z'/></svg>") center/contain no-repeat;
}
.gallery-grid a:hover::before { opacity: 1; }
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a:hover img { transform: scale(1.1); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 64px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.footer-grid a, .footer-grid p { font-size: .9rem; color: var(--gray-300); margin-bottom: 10px; display: block; }
.footer-grid a:hover { color: var(--white); text-decoration: underline; }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.social-icons { display: flex; gap: 10px; margin-top: 18px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--transition);
  margin: 0;
}
.social-icons a:hover { background: var(--white); color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   SHOP PAGE
   ========================================================= */
.page-banner {
  background: var(--gray-100);
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--gray-300);
}
.breadcrumb { font-size: .82rem; color: var(--gray-500); margin-top: 10px; }
.breadcrumb a:hover { color: var(--black); text-decoration: underline; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-top: 48px;
}
.filters {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 0;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.filter-group h4 {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  margin-bottom: 8px;
  cursor: pointer;
  color: var(--gray-700);
}
.filter-group label:hover { color: var(--black); }
.filter-group input[type="checkbox"], .filter-group input[type="radio"] { accent-color: var(--black); }
.size-list, .color-list { display: flex; flex-wrap: wrap; gap: 8px; }
.size-list button {
  width: 42px; height: 42px;
  border: 1px solid var(--gray-300);
  border-radius: 0;
  font-size: .82rem;
  font-weight: 600;
  background: var(--white);
  transition: var(--transition);
}
.size-list button:hover, .size-list button.active { background: var(--black); color: var(--white); border-color: var(--black); }
.color-list button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  outline: 1px solid var(--gray-300);
  outline-offset: 1px;
}
.color-list button.active { outline-color: var(--black); outline-width: 2px; transform: scale(1.1); }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.shop-toolbar select, .shop-toolbar input {
  padding: 10px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 0;
  background: var(--white);
  font-size: .88rem;
}
.shop-search { display: flex; gap: 10px; }
.shop-toolbar .results-count { font-size: .9rem; color: var(--gray-500); }

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 0;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--gray-300);
}
.pagination a:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.pagination .current { background: var(--black); color: var(--white); border-color: var(--black); }

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.pd-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  margin-top: 40px;
}
.pd-gallery { position: sticky; top: 100px; align-self: flex-start; }
.pd-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--gray-100);
  margin-bottom: 14px;
  cursor: zoom-in;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pd-main-img.zoomed img { transform: scale(1.6); cursor: zoom-out; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pd-thumbs button {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  transition: var(--transition);
  background: var(--gray-100);
}
.pd-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs button.active { border-color: var(--black); }

.pd-cat { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--black); margin-bottom: 10px; font-weight: 700; }
.pd-title { font-size: 2rem; margin-bottom: 14px; }
.pd-rating { color: var(--black); margin-bottom: 20px; }
.pd-rating span { color: var(--gray-500); margin-left: 8px; font-size: .9rem; }
.pd-price-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.pd-price { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 800; }
.pd-price-was { font-size: 1.05rem; color: var(--gray-500); text-decoration: line-through; }
.pd-discount { background: var(--black); color: var(--white); padding: 4px 10px; border-radius: 0; font-size: .8rem; font-weight: 700; }
.pd-desc { color: var(--gray-700); margin-bottom: 24px; }

.pd-options { margin-bottom: 24px; }
.pd-options label { display: block; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.pd-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.pd-cta .btn { flex: 1 1 auto; padding: 16px 28px; }
.pd-features {
  background: var(--gray-100);
  border-radius: 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.pd-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--gray-700);
}
.pd-features li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--black);
  flex-shrink: 0;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

.pd-tabs { margin-top: 60px; }
.pd-tab-headers {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 24px;
}
.pd-tab-headers button {
  padding: 14px 0;
  font-weight: 600;
  font-size: .92rem;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.pd-tab-headers button.active { color: var(--black); border-color: var(--black); }
.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; }
.pd-spec-table { width: 100%; }
.pd-spec-table tr { border-bottom: 1px solid var(--gray-100); }
.pd-spec-table td { padding: 12px 0; font-size: .9rem; }
.pd-spec-table td:first-child { color: var(--gray-500); width: 40%; }

/* sticky buy on mobile */
.sticky-buy {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.07); }
.blog-card-body { padding: 22px 4px 0; }
.blog-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--black); font-weight: 700; }
.blog-card h3 { font-size: 1.15rem; margin: 8px 0 12px; }
.blog-meta { font-size: .82rem; color: var(--gray-500); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  margin-top: 40px;
}
.blog-article img { border-radius: var(--radius-lg); margin: 24px 0; }
.blog-article h2, .blog-article h3 { margin: 32px 0 12px; }
.blog-article p { margin-bottom: 18px; }
.blog-sidebar { position: sticky; top: 100px; align-self: flex-start; }
.blog-sidebar .widget { margin-bottom: 28px; padding: 22px; background: var(--gray-100); border-radius: 0; border: 1px solid var(--gray-300); }
.blog-sidebar h4 { margin-bottom: 14px; font-size: 1rem; }

.comment-section { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--gray-100); }
.comment {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white);
  flex-shrink: 0;
}

.share-btns { display: flex; gap: 10px; margin-top: 24px; }
.share-btns a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.share-btns a:hover { background: var(--black); color: var(--white); }

/* =========================================================
   GENERIC CONTENT PAGES (about, contact, legal)
   ========================================================= */
.content-page { padding: 60px 0; }
.content-page h2 { margin: 32px 0 14px; }
.content-page h3 { margin: 24px 0 10px; }
.content-page p, .content-page li { margin-bottom: 14px; }
.content-page ul { padding-left: 22px; list-style: disc; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
}
.about-grid img { border-radius: 0; filter: grayscale(100%); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  background: var(--gray-100);
  border-radius: 0;
  padding: 28px;
  border: 1px solid var(--gray-300);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: 0;
  background: var(--white);
  font-size: .92rem;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--black); outline-offset: -2px; }
.contact-info { background: var(--gray-100); border-radius: 0; padding: 32px; border: 1px solid var(--gray-300); }
.contact-info h3 { margin-bottom: 18px; }
.contact-info p { margin-bottom: 12px; }

.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: 0;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-weight: 700;
  font-size: .96rem;
  background: var(--white);
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  background: var(--black);
  flex-shrink: 0;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/><line x1='12' y1='5' x2='12' y2='19'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/><line x1='12' y1='5' x2='12' y2='19'/></svg>") center/contain no-repeat;
  transition: transform .25s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: all .3s ease; }
.faq-item.open .faq-a { padding: 0 22px 18px; max-height: 400px; }

/* =========================================================
   ADMIN
   ========================================================= */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-side {
  background: var(--black);
  color: var(--gray-300);
  padding: 28px 16px;
}
.admin-side .logo { color: var(--white); margin-bottom: 32px; padding: 0 12px; }
.admin-side a {
  display: block;
  padding: 12px 14px;
  border-radius: 0;
  font-size: .9rem;
  margin-bottom: 4px;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.admin-side a:hover, .admin-side a.active { background: var(--white); color: var(--black); }
.admin-main { padding: 32px 40px; background: var(--gray-100); }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px; }
.stat-card { background: var(--white); padding: 22px; border-radius: 0; border: 1px solid var(--gray-300); }
.stat-card span { font-size: .8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .12em; }
.stat-card strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 800; margin-top: 6px; }
.stat-card .delta { font-size: .82rem; color: var(--black); margin-top: 4px; display: block; font-weight: 600; }

.admin-table {
  width: 100%;
  background: var(--white);
  border-radius: 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--gray-300);
}
.admin-table th, .admin-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
}
.admin-table th { background: var(--gray-100); font-weight: 700; color: var(--black); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .row-actions button {
  margin-right: 6px;
  padding: 6px 12px;
  border-radius: 0;
  font-size: .76rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--black);
  text-transform: uppercase;
  transition: var(--transition);
}
.admin-table .row-actions button:hover { background: var(--black); color: var(--white); }

.admin-form { background: var(--white); padding: 24px; border-radius: 0; border: 1px solid var(--gray-300); margin-bottom: 24px; }
.admin-form .field { margin-bottom: 14px; }
.admin-form label { display: block; font-size: .76rem; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .1em; color: var(--black); }
.admin-form input, .admin-form textarea, .admin-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 0;
  font-size: .9rem;
}
.admin-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.tabs-row { display: flex; gap: 0; margin-bottom: 24px; flex-wrap: wrap; }
.tabs-row button {
  padding: 10px 22px;
  border-radius: 0;
  font-size: .8rem;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--black);
  margin-right: -1px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: var(--transition);
}
.tabs-row button.active, .tabs-row button:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.admin-section { display: none; }
.admin-section.active { display: block; }

/* Admin login gate */
.admin-login {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.admin-login.hidden { display: none; }
.admin-login-card {
  background: var(--white);
  padding: 48px 40px;
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--white);
}
.admin-login-card .logo { display: block; margin-bottom: 24px; text-align: center; }
.admin-login-card h2 { margin-bottom: 8px; text-align: center; }
.admin-login-card p { font-size: .85rem; text-align: center; margin-bottom: 24px; color: var(--gray-500); }
.admin-login-card input {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-300);
  margin-bottom: 12px; font-size: .9rem;
}
.admin-login-card .err { color: var(--accent); font-size: .82rem; min-height: 18px; margin-bottom: 8px; text-align: center; }
.admin-login-card .hint {
  margin-top: 14px; font-size: .75rem; color: var(--gray-500);
  text-align: center; padding-top: 14px; border-top: 1px solid var(--gray-100);
}

/* Admin section header (search + count) */
.section-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; flex-wrap: wrap; gap: 12px;
}
.section-bar h2 { margin: 0; }
.section-bar .search-input {
  padding: 9px 16px; border: 1px solid var(--gray-300); border-radius: 0;
  font-size: .88rem; min-width: 220px; background: var(--white);
}

/* Image upload grid */
.img-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 14px;
}
.img-slot {
  aspect-ratio: 1/1;
  border: 1px dashed var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
  background: var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}
.img-slot:hover { border-color: var(--black); }
.img-slot img { width: 100%; height: 100%; object-fit: cover; }
.img-slot .placeholder {
  font-size: .75rem; color: var(--gray-500);
  text-align: center; pointer-events: none;
}
.img-slot .remove-img {
  position: absolute; top: 4px; right: 4px;
  width: 24px; height: 24px;
  background: var(--black); color: var(--white);
  border-radius: 0; font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

/* Pill list editor (colors / sizes / features) */
.pill-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px; margin-bottom: 10px; min-height: 36px;
  padding: 6px; border: 1px dashed var(--gray-300);
}
.pill-list .pill {
  background: var(--gray-100);
  padding: 4px 10px;
  font-size: .82rem;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--gray-300);
}
.pill-list .pill.color-pill {
  padding: 4px 10px 4px 4px;
}
.pill-list .pill .swatch {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block; border: 1px solid var(--gray-300);
}
.pill-list .pill .x {
  cursor: pointer; opacity: .6;
  font-weight: 700;
}
.pill-list .pill .x:hover { opacity: 1; }
.pill-add-row {
  display: flex; gap: 6px;
}
.pill-add-row input {
  flex: 1;
  padding: 6px 10px !important;
  font-size: .82rem !important;
}
.pill-add-row button {
  padding: 6px 12px;
  background: var(--black); color: var(--white);
  font-weight: 600; font-size: .78rem;
  text-transform: uppercase;
  border: 1px solid var(--black);
}

/* Status badge */
.status-pill {
  font-size: .68rem; font-weight: 700; padding: 3px 8px;
  text-transform: uppercase; letter-spacing: .05em;
  border: 1px solid var(--black);
}
.status-pill.published { background: var(--black); color: var(--white); }
.status-pill.draft { background: var(--white); color: var(--black); }
.status-pill.scheduled { background: var(--gray-100); color: var(--black); }
.status-pill.active { background: var(--black); color: var(--white); }
.status-pill.expired { background: var(--white); color: var(--gray-500); border-color: var(--gray-300); }

/* Switch / toggle — high-specificity rules so .admin-form label can't override */
label.toggle,
.admin-form label.toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-900);
  margin-bottom: 0;
}
.toggle input { display: none; }
.toggle .track {
  width: 36px; height: 20px;
  background: var(--gray-300);
  position: relative;
  border-radius: 999px;
  transition: var(--transition);
}
.toggle .track::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: var(--white);
  top: 3px; left: 3px;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle input:checked + .track { background: var(--black); }
.toggle input:checked + .track::after { transform: translateX(16px); }

/* Subscribers list */
.sub-list { background: var(--white); border: 1px solid var(--gray-300); }
.sub-list .row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 16px; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid var(--gray-100);
}
.sub-list .row:last-child { border-bottom: none; }
.sub-list .row .email { font-weight: 600; font-size: .9rem; }
.sub-list .row .date { font-size: .8rem; color: var(--gray-500); }

@media (max-width: 768px) {
  .img-grid { grid-template-columns: repeat(2, 1fr); }
  .section-bar { flex-direction: column; align-items: stretch; }
  .section-bar .search-input { min-width: 0; width: 100%; }
}

/* =========================================================
   MOBILE NAV / RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .blog-layout { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-side { display: flex; flex-wrap: wrap; gap: 6px; }
  .admin-side .logo { width: 100%; margin-bottom: 14px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-tools .icon-btn:not(.menu-toggle) { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px 24px;
    border-top: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/4; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .deals-band { grid-template-columns: 1fr; padding: 28px; text-align: center; }
  .timer { justify-content: center; }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }
  .col-1 { grid-row: 1; grid-column: 1/3; aspect-ratio: 16/9; }
  .col-card { aspect-ratio: 1/1; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .pd-title { font-size: 1.5rem; }
  .pd-price { font-size: 1.5rem; }
  .sticky-buy { display: block; }
}
@media (max-width: 480px) {
  .product-card .product-info { padding: 12px 4px 4px; }
  .timer div { padding: 10px 12px; min-width: 60px; }
  .timer strong { font-size: 1.2rem; }
}

/* ---------- Animations ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: all .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- SVG Icon System ---------- */
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
  pointer-events: none;
}
.icon-btn { font-size: 20px; }
.why-icon { font-size: 26px; }
.social-icons a { font-size: 18px; }
.share-btns a { font-size: 16px; }
.wishlist { font-size: 16px; line-height: 1; }
.btn .ico { font-size: 16px; margin-right: -2px; }
.deals-band .timer + .ico { font-size: 14px; }
.admin-side a .ico,
.tabs-row button .ico { font-size: 16px; margin-right: 6px; }
.value-card h3 .ico { font-size: 18px; margin-right: 6px; vertical-align: -0.18em; }

/* =========================================================
   NEW UI ELEMENTS — popups, banners, badges, dark mode, etc.
   ========================================================= */

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 720px; margin: 0 auto;
  background: var(--black); color: var(--white);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  z-index: 90; box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transform: translateY(120%); transition: transform .4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { color: rgba(255,255,255,.85); font-size: .85rem; margin: 0; flex: 1 1 280px; }
.cookie-banner a { color: var(--white); text-decoration: underline; }
.cookie-banner .actions { display: flex; gap: 8px; }
.cookie-banner .btn { padding: 10px 18px; font-size: .78rem; }

/* ---------- Exit-intent popup ---------- */
.popup-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 150;
  display: none; align-items: center; justify-content: center;
  padding: 20px; opacity: 0;
  transition: opacity .3s ease;
}
.popup-backdrop.visible { display: flex; opacity: 1; }
.popup {
  background: var(--white);
  max-width: 460px; width: 100%;
  padding: 40px 32px; text-align: center;
  position: relative;
  transform: scale(.92);
  transition: transform .3s ease;
}
.popup-backdrop.visible .popup { transform: scale(1); }
.popup .close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: transparent; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.popup .eyebrow { color: var(--black); }
.popup h2 { margin-bottom: 12px; }
.popup p  { margin-bottom: 22px; }
.popup .code-display {
  background: var(--black); color: var(--white);
  padding: 14px 20px; margin: 16px 0;
  font-family: monospace; font-size: 1.4rem; font-weight: 700;
  letter-spacing: .2em; cursor: pointer;
  position: relative;
}
.popup .code-display::after {
  content: 'Click to copy';
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: .65rem; color: var(--gray-500); letter-spacing: .1em; font-weight: 600; font-family: 'Inter', sans-serif;
}
.popup .code-display.copied::after { content: 'Copied'; color: var(--white); }

/* ---------- Recently-sold toast ---------- */
.social-toast {
  position: fixed; bottom: 24px; left: 24px;
  background: var(--white); border: 1px solid var(--black);
  padding: 14px 18px; max-width: 320px;
  display: flex; gap: 12px; align-items: center;
  z-index: 80; transform: translateX(-120%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.social-toast.visible { transform: translateX(0); }
.social-toast img { width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; }
.social-toast .body { flex: 1; min-width: 0; }
.social-toast .body strong { font-size: .85rem; display: block; }
.social-toast .body span { font-size: .75rem; color: var(--gray-500); }
.social-toast .close-toast { background: transparent; font-size: 1rem; cursor: pointer; }

/* ---------- "Viewing now" badge ---------- */
.viewing-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-100); padding: 6px 12px;
  font-size: .78rem; font-weight: 600;
  margin-bottom: 12px;
}
.viewing-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2ecc71;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.4); opacity: .6; }
}

/* ---------- Stock urgency ---------- */
.stock-urgency {
  background: #fff3e0; color: #d97706;
  padding: 10px 14px; font-size: .82rem; font-weight: 600;
  border-left: 3px solid #d97706;
  margin: 12px 0;
}
.stock-urgency.low { background: #fee2e2; color: #b91c1c; border-color: #b91c1c; }

/* ---------- Trust badges strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 14px 0; margin: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  justify-content: space-around;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--gray-700);
}
.trust-item strong { color: var(--black); font-weight: 700; }

/* ---------- "Just dropped" banner ---------- */
.drop-banner {
  background: var(--black); color: var(--white);
  padding: 12px 0; overflow: hidden;
  position: relative; white-space: nowrap;
  border-bottom: 1px solid var(--white);
}
.drop-banner-track {
  display: inline-flex; gap: 60px;
  animation: drop-scroll 28s linear infinite;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
}
.drop-banner-track > span { display: inline-block; }
@keyframes drop-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Quick-view modal ---------- */
.qv-modal { z-index: 160; }
.qv-modal .popup {
  max-width: 880px; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  text-align: left; max-height: 90vh; overflow: auto;
}
.qv-modal .qv-img { aspect-ratio: 1/1; overflow: hidden; }
.qv-modal .qv-img img { width: 100%; height: 100%; object-fit: cover; }
.qv-modal .qv-info { padding: 32px; }
.qv-modal .qv-info h2 { margin-bottom: 10px; }
.qv-modal .price-row { display: flex; gap: 12px; align-items: baseline; margin-bottom: 16px; }
.qv-modal .price-row .price-now { font-size: 1.6rem; font-weight: 800; }
.qv-modal .price-row .price-was { font-size: 1rem; color: var(--gray-500); text-decoration: line-through; }
.qv-modal .qv-actions { display: flex; gap: 10px; margin-top: 18px; }
@media (max-width: 768px) {
  .qv-modal .popup { grid-template-columns: 1fr; max-height: 95vh; }
}

/* ---------- Product card hover quick-actions ---------- */
.product-card .quick-actions {
  position: absolute;
  inset: auto 10px 10px 10px;
  display: flex; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: var(--transition);
  z-index: 3;
}
.product-card:hover .quick-actions { opacity: 1; transform: translateY(0); }
.product-card .quick-actions button {
  flex: 1;
  background: var(--white); border: 1px solid var(--black);
  padding: 8px 10px; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
}
.product-card .quick-actions button:hover { background: var(--black); color: var(--white); }

/* ---------- Color-swatch hover preview ---------- */
.product-card .color-swatches {
  display: flex; gap: 4px; margin-top: 6px;
}
.product-card .color-swatches button {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--gray-300);
  cursor: pointer; padding: 0;
}
.product-card .color-swatches button:hover {
  outline: 2px solid var(--black); outline-offset: 1px;
}

/* ---------- Dark mode ---------- */
[data-theme="dark"] {
  --white: #0a0a0a;
  --black: #ffffff;
  --gray-100: #1a1a1a;
  --gray-300: #333333;
  --gray-500: #999999;
  --gray-700: #cccccc;
  --gray-900: #ffffff;
  --beige-soft: #1a1a1a;
  --beige: #1a1a1a;
}
[data-theme="dark"] body { background: var(--white); color: var(--black); }
[data-theme="dark"] .product-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .filters,
[data-theme="dark"] .contact-info,
[data-theme="dark"] .value-card { background: var(--gray-100); border-color: var(--gray-300); }
[data-theme="dark"] .site-header { background: rgba(10,10,10,.95); }
[data-theme="dark"] .hero { background: #111; }
[data-theme="dark"] .hero-visual img { filter: grayscale(100%) brightness(.85); }
[data-theme="dark"] .product-img img,
[data-theme="dark"] .blog-card-img img { filter: brightness(.92); }

.theme-toggle {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--black); color: var(--white);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 70; font-size: 18px;
  border: 2px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 84px;
  width: 56px; height: 56px;
  background: #25d366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 70; font-size: 26px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  text-decoration: none;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- Page transitions ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .25s; }
.page-fade-in { animation: pageFadeIn .35s ease; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Search autocomplete ---------- */
.search-wrap { position: relative; }
.search-results {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--black);
  max-height: 420px; overflow-y: auto;
  display: none; z-index: 95;
}
.search-results.visible { display: block; }
.search-results .res {
  display: flex; gap: 12px; padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  align-items: center; cursor: pointer;
}
.search-results .res:hover { background: var(--gray-100); }
.search-results .res img { width: 44px; height: 44px; object-fit: cover; flex-shrink: 0; }
.search-results .res .info strong { font-size: .85rem; display: block; }
.search-results .res .info span { font-size: .75rem; color: var(--gray-500); }
.search-results .empty { padding: 30px; text-align: center; color: var(--gray-500); font-size: .88rem; }
.search-results .head {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-500); padding: 10px 14px 4px;
  border-bottom: 1px solid var(--gray-100);
}

/* ---------- Site search bar (in header) ---------- */
.search-bar {
  position: relative;
  display: none;
}
.search-bar.open { display: block; flex: 1 1 320px; max-width: 480px; }
.search-bar input {
  width: 100%; padding: 10px 18px;
  border: 1px solid var(--black);
  font-size: .9rem;
}

/* ---------- Testimonials section ---------- */
.testimonials {
  background: var(--gray-100);
  padding: 64px 0;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white); padding: 24px;
  border: 1px solid var(--gray-300);
}
.testimonial .stars { color: var(--black); font-size: .9rem; margin-bottom: 10px; }
.testimonial p { font-size: .92rem; font-style: italic; margin-bottom: 14px; }
.testimonial .author { display: flex; align-items: center; gap: 10px; }
.testimonial .avatar { background: var(--black); color: var(--white); }

/* ---------- Press logos ---------- */
.press-strip {
  padding: 32px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
}
.press-strip h4 {
  text-align: center; font-size: .72rem;
  letter-spacing: .25em; color: var(--gray-500);
  margin-bottom: 20px; font-family: 'Inter', sans-serif; font-weight: 600;
  text-transform: uppercase;
}
.press-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; opacity: .55;
  color: var(--black);
}
.press-logos span { letter-spacing: .05em; transition: opacity .25s ease; }
.press-logos span:hover { opacity: 1; }

/* ---------- Wishlist page ---------- */
.wishlist-empty {
  text-align: center; padding: 80px 20px;
  color: var(--gray-500);
}
.wishlist-empty h2 { color: var(--black); margin-bottom: 10px; }

/* ---------- 404 ---------- */
.err-404 {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 20px;
}
.err-404 .num {
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
}

/* ---------- AdSense slot ---------- */
.ad-slot {
  background: var(--gray-100);
  border: 1px dashed var(--gray-300);
  padding: 24px; text-align: center;
  color: var(--gray-500); font-size: .8rem;
  margin: 24px 0;
}

/* ---------- Coupon copy strip ---------- */
.coupon-copy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 4px 10px; font-family: monospace; font-weight: 700;
  cursor: pointer; letter-spacing: .1em;
  position: relative;
}
.coupon-copy::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: currentColor;
  opacity: .8;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='9' y='9' width='13' height='13' rx='2'/><path d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='9' y='9' width='13' height='13' rx='2'/><path d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/></svg>") center/contain no-repeat;
}
.coupon-copy.copied::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  opacity: 1;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .press-logos { gap: 24px; font-size: 1.1rem; }
  .whatsapp-float { right: 24px; bottom: 88px; }
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hide-mobile { }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }
