/* Bountiway Fashion — Modern Minimal E-commerce */

:root {
  --bg: #05070a;
  --bg2: #0a0e14;
  --card: rgba(15, 20, 29, 0.55);
  --text: #ffffff;
  --muted: #8e9aaf;
  --brand: #c5a358;
  --brand-hover: #e2c27d;
  --border: rgba(255, 255, 255, 0.06);
  --glass: rgba(5, 7, 10, 0.85);
  --radius: 14px;
  --nav-h: 56px;
  --bottom-nav: 60px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.header, main, footer { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { opacity: 0.8; }

.brand__logo {
  width: 34px; height: 34px;
  filter: drop-shadow(0 0 6px rgba(197,163,88,0.3));
}

.brand__name {
  font-weight: 800; letter-spacing: 3px; font-size: 15px;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #fff, #c5a358);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav { display: flex; gap: 20px; }

.nav__link {
  color: var(--muted); text-decoration: none;
  font-weight: 600; font-size: 13px;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--brand); }

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: rgba(197,163,88,0.18);
  border: 1px solid rgba(197,163,88,0.35);
  color: rgba(255,255,255,0.92);
  font-size: 11px; font-weight: 800; margin-left: 6px;
}

.header-tools { display: flex; align-items: center; gap: 10px; }

.header-search {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.header-search__input {
  width: 160px; border: 0; outline: 0;
  background: transparent; color: rgba(255,255,255,0.92);
  font-size: 13px;
}
.header-search__input::placeholder { color: rgba(142,154,175,0.8); }

.header-search__btn {
  border: 0; background: transparent;
  color: rgba(255,255,255,0.8); font-weight: 800;
  cursor: pointer; padding: 3px 5px; border-radius: 8px;
}
.header-search__btn:hover { color: var(--brand); }

.cta-wa {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 50px;
  background: var(--brand); color: #000;
  text-decoration: none; font-weight: 700; font-size: 13px;
  transition: all 0.2s;
}
.cta-wa:hover {
  background: var(--brand-hover);
  box-shadow: 0 4px 16px rgba(197,163,88,0.3);
}

/* ── HERO (slim) ── */
.hero {
  padding: 48px 0 32px;
  text-align: center;
}

.hero h1 {
  font-size: 36px; font-weight: 300; letter-spacing: -0.5px;
  margin: 0 0 20px; color: rgba(255,255,255,0.92);
}
.hero h1 strong { font-weight: 700; }

.hero-search {
  max-width: 480px; margin: 0 auto;
  display: flex; gap: 10px;
}

.hero-search input {
  flex: 1; padding: 12px 18px;
  border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04); color: var(--text);
  font-size: 14px; outline: none;
}
.hero-search input::placeholder { color: var(--muted); }
.hero-search input:focus { border-color: rgba(197,163,88,0.4); }

.hero-search button {
  padding: 12px 24px; border-radius: 999px; border: none;
  background: var(--brand); color: #000;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background 0.2s;
}
.hero-search button:hover { background: var(--brand-hover); }

/* ── HERO BANNER CAROUSEL ── */
.hero-banner {
  position: relative;
  width: 100%; max-width: 1200px;
  margin: 0 auto 8px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--bg2);
}

.hero-banner__track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}

.hero-banner__slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  text-decoration: none; color: inherit;
  overflow: hidden;
}

.hero-banner__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.hero-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,7,10,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
}

.hero-banner__brand {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--brand);
  font-weight: 700; margin-bottom: 4px;
}

.hero-banner__title {
  font-size: 24px; font-weight: 700;
  margin: 0 0 4px; line-height: 1.2;
}

.hero-banner__price {
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.hero-banner__dots {
  position: absolute; bottom: 12px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}

.hero-banner__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.2s;
}
.hero-banner__dot.is-active {
  background: var(--brand);
  width: 20px;
}

/* ── FEATURED CARD (full-width highlight) ── */
.featured-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  margin-bottom: 24px;
  text-decoration: none; color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.featured-highlight:hover {
  border-color: rgba(197,163,88,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.featured-highlight__media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #12161e, #0b0f16);
}

.featured-highlight__media::before {
  content: "";
  position: absolute; inset: -20px;
  background-image: var(--bgimg);
  background-size: cover; background-position: center;
  filter: blur(22px) saturate(1.05) brightness(0.5);
  transform: scale(1.1); opacity: 0.9;
}

.featured-highlight__media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.featured-highlight:hover .featured-highlight__media img {
  transform: scale(1.03);
}

.featured-highlight__body {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 32px 36px;
}

.featured-highlight__tag {
  display: inline-block; width: fit-content;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(197,163,88,0.12);
  color: var(--brand); font-size: 11px;
  font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid rgba(197,163,88,0.2);
  margin-bottom: 12px;
}

.featured-highlight__brand {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted);
  font-weight: 600; margin-bottom: 6px;
}

.featured-highlight__title {
  font-size: 26px; font-weight: 700;
  margin: 0 0 10px; line-height: 1.2;
  letter-spacing: -0.3px;
}

.featured-highlight__price {
  font-size: 20px; font-weight: 700;
  color: var(--brand); margin-bottom: 16px;
}

.featured-highlight__cta {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.8);
  font-weight: 600; font-size: 14px;
  gap: 6px; transition: gap 0.2s, color 0.2s;
}
.featured-highlight:hover .featured-highlight__cta {
  color: var(--brand); gap: 10px;
}

/* ── CATEGORY CARDS (with icons) ── */
.cat-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }

.cat-card {
  flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 20px 24px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  text-decoration: none; color: rgba(255,255,255,0.88);
  font-weight: 600; font-size: 13px;
  transition: all 0.2s; white-space: nowrap;
  min-width: 100px; text-align: center;
}
.cat-card:hover {
  border-color: rgba(197,163,88,0.35);
  color: var(--brand);
  background: rgba(197,163,88,0.06);
  transform: translateY(-2px);
}

.cat-card__icon {
  font-size: 28px; line-height: 1;
}

.cat-card__label {
  font-size: 13px; font-weight: 600;
}

/* Keep old .cat-pill for compat */
.cat-pill {
  flex-shrink: 0;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
  text-decoration: none; font-weight: 600; font-size: 13px;
  transition: all 0.2s; white-space: nowrap;
}
.cat-pill:hover {
  border-color: rgba(197,163,88,0.35);
  color: var(--brand);
}
.section { padding: 48px 0; }
.section--tight { padding: 32px 0; }

.section-head {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 16px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 22px; font-weight: 700;
  margin: 0; letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--muted); margin: 4px 0 0;
  font-size: 14px;
}

.section-link {
  color: var(--muted); text-decoration: none;
  font-weight: 600; font-size: 13px;
  transition: color 0.2s;
}
.section-link:hover { color: var(--brand); }

/* ── PRODUCT GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* ── PRODUCT CARD (new minimal) ── */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197,163,88,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.product-media {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #12161e, #0b0f16);
}

.product-media::before {
  content: "";
  position: absolute; inset: -20px;
  background-image: var(--bgimg);
  background-size: cover; background-position: center;
  filter: blur(22px) saturate(1.05) brightness(0.5);
  transform: scale(1.1); opacity: 0.9;
}

img.product-image {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.product-card:hover img.product-image {
  transform: scale(1.04);
}

div.product-image {
  height: 100%; display: flex;
  align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px;
  position: relative; z-index: 1;
}

.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5,7,10,0.6);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-size: 18px; cursor: pointer;
  transition: all 0.2s;
}
.wish-btn:hover { background: rgba(5,7,10,0.8); }
.wish-btn.is-active { color: var(--brand); border-color: rgba(197,163,88,0.45); }

/* Product status badge */
.product-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  padding: 3px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-badge--new { background: #2ecc71; color: #000; }
.product-badge--limited { background: var(--brand); color: #000; }
.product-badge--sold-out, .product-badge--sold { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }
.product-badge--hot { background: #e74c3c; color: #fff; }

.product-content { padding: 14px 16px 18px; }

.product-brand {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--muted);
  font-weight: 600; margin-bottom: 4px;
}

.product-name {
  font-size: 15px; font-weight: 600;
  margin: 0 0 6px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.product-price {
  font-size: 15px; font-weight: 700;
  color: var(--brand);
}

/* Legacy compat */
.product-category { display: none; }
.product-desc { display: none; }
.product-actions { display: none; }
.product-link { display: none; }

/* ── CATEGORY PILLS (horizontal scroll) ── */
.cat-scroll {
  display: flex; gap: 10px;
  overflow-x: auto; padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
  text-decoration: none; font-weight: 600; font-size: 13px;
  transition: all 0.2s; white-space: nowrap;
}
.cat-pill:hover {
  border-color: rgba(197,163,88,0.35);
  color: var(--brand);
}

/* ── BRAND WALL ── */
.brand-wall {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.brand-pill {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.85);
  text-decoration: none; font-weight: 600; font-size: 12px;
  transition: all 0.2s;
}
.brand-pill:hover { color: var(--brand); border-color: rgba(197,163,88,0.3); }

/* ── HOME SEARCH SUGGEST ── */
.home-suggest {
  margin-top: 8px; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  background: rgba(5,7,10,0.9);
  backdrop-filter: blur(16px);
}
.home-suggest.is-hidden { display: none; }

.home-suggest__item {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 10px; align-items: center;
  padding: 10px 12px; text-decoration: none; color: var(--text);
  border-top: 1px solid var(--border);
}
.home-suggest__item:first-child { border-top: none; }
.home-suggest__item:hover { background: rgba(255,255,255,0.04); }

.home-suggest__thumb {
  width: 48px; height: 48px; border-radius: 10px;
  overflow: hidden; background: var(--bg2);
}
.home-suggest__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-suggest__meta { min-width: 0; }
.home-suggest__title { font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-suggest__sub { color: var(--muted); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-suggest__price { font-weight: 700; font-size: 12px; color: var(--brand); }

/* ── FILTERS ── */
.filter-bar {
  display: flex; gap: 10px;
  flex-wrap: wrap; align-items: center;
}

.filter-input, .filter-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text); padding: 10px 14px;
  border-radius: var(--radius); outline: none;
  font-size: 13px; font-weight: 500;
}
.filter-input::placeholder { color: rgba(142,154,175,0.7); }
.filter-select { min-width: 160px; }

.filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted); padding: 10px 20px;
  border-radius: 999px; cursor: pointer;
  font-weight: 600; font-size: 13px;
  transition: all 0.2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.filter-btn.active {
  background: var(--brand); color: #000;
  border-color: var(--brand);
}

/* ── PAGER ── */
.pager {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  margin-top: 24px;
}

.pager__btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: 13px;
  border: 1px solid var(--border);
  color: var(--text); background: rgba(255,255,255,0.03);
  transition: all 0.2s;
}
.pager__btn:hover { border-color: rgba(197,163,88,0.3); }
.pager__btn.is-disabled, .pager__btn[aria-disabled="true"] {
  opacity: 0.4; pointer-events: none;
}

/* ── DETAIL PAGE ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px; align-items: start;
}

.detail-media {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}

.carousel {
  position: relative; display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
}

.carousel__viewport {
  width: 100%; aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #12161e, #0b0f16);
}

.carousel__viewport::before {
  content: ""; position: absolute; inset: -20px;
  background-image: var(--bgimg);
  background-size: cover; background-position: center;
  filter: blur(24px) saturate(1.05) brightness(0.5);
  transform: scale(1.1); opacity: 0.9;
}

.carousel__img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  user-select: none; touch-action: pan-y;
}

.carousel__btn {
  height: 100%; border: none;
  background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 24px; cursor: pointer;
  transition: background 0.2s;
}
.carousel__btn:hover { background: rgba(0,0,0,0.35); }
.carousel__btn:disabled { opacity: 0.3; cursor: default; }

.carousel__dots {
  display: flex; justify-content: center;
  gap: 6px; padding: 10px 0;
}
.carousel__dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.15);
}
.carousel__dot.is-active { background: var(--brand); }

.detail-copy {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}

.detail-price {
  font-size: 24px; font-weight: 800;
  color: var(--brand); margin: 8px 0 10px;
}

.detail-note { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.6; }

.detail-form { margin-top: 16px; }
.detail-form__row { margin-bottom: 12px; }

/* ── BUTTONS ── */
.btn {
  padding: 12px 28px; border-radius: var(--radius);
  text-decoration: none; font-weight: 700; font-size: 14px;
  transition: all 0.2s; border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.btn--primary { background: var(--brand); color: #000; }
.btn--primary:hover { background: var(--brand-hover); box-shadow: 0 4px 16px rgba(197,163,88,0.3); }

.btn--ghost {
  border-color: var(--border); color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── WISHLIST ── */
.wish-actions {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: end;
}
.wish-form { display: flex; flex-direction: column; gap: 4px; }
.wish-label { font-weight: 700; font-size: 12px; color: rgba(255,255,255,0.8); }

/* ── CONTACT ── */
.section--contact { padding: 48px 0; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-card__title { font-size: 18px; margin: 0 0 8px; }
.contact-card__number { font-size: 22px; font-weight: 800; color: var(--brand); margin: 10px 0; }
.contact-card__desc { color: var(--muted); margin: 0 0 14px; font-size: 14px; }
.contact-card__list { color: var(--muted); padding-left: 18px; line-height: 1.8; margin: 0; font-size: 14px; }

/* ── FOOTER ── */
.footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--border);
  text-align: center; color: var(--muted);
  font-size: 13px;
}

/* ── BOTTOM NAV (mobile only) ── */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
  height: var(--bottom-nav);
}

.bottom-nav__inner {
  display: flex; align-items: center;
  justify-content: space-around;
  height: 100%; max-width: 480px;
  margin: 0 auto;
}

.bottom-nav__item {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  text-decoration: none; color: var(--muted);
  font-size: 10px; font-weight: 600;
  transition: color 0.2s;
  position: relative;
  padding: 6px 12px;
}
.bottom-nav__item:hover,
.bottom-nav__item.is-active { color: var(--brand); }

.bottom-nav__icon { font-size: 20px; line-height: 1; }

.bottom-nav__badge {
  position: absolute; top: 2px; right: 4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px;
  background: var(--brand); color: #000;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ── MISC ── */
.micro { font-size: 12px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.2s ease;
}
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 8px;
}
.lightbox__close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: #fff; font-size: 28px; cursor: pointer;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.tag {
  display: inline-block; padding: 3px 12px;
  border-radius: 20px;
  background: rgba(197,163,88,0.12);
  color: var(--brand); font-size: 11px;
  font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid rgba(197,163,88,0.2);
}

/* Legacy compat: hide old elements */
.hero-points, .hero-point,
.type-grid, .type-tile, .type-tile__bg, .type-tile__meta,
.type-tile__kicker, .type-tile__title, .type-tile__cta,
.hscroll, .compact-card, .compact-media, .compact-body,
.compact-kicker, .compact-title, .compact-price,
.glass-card, .hero-card__title, .hero-card__desc, .hero-card__line,
.hero__visual, .home-search { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .carousel { grid-template-columns: 36px 1fr 36px; }
  .featured-highlight { grid-template-columns: 1fr; }
  .featured-highlight__body { padding: 24px; }
  .featured-highlight__title { font-size: 22px; }
  .hero-banner { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  /* Show bottom nav */
  .bottom-nav { display: block; }

  /* Add padding for bottom nav */
  body { padding-bottom: var(--bottom-nav); }
  .footer { padding-bottom: calc(var(--bottom-nav) + 16px); }

  /* Simplify header on mobile */
  .header__inner {
    height: auto; padding: 10px 0;
    flex-wrap: wrap; gap: 8px;
  }

  .nav { display: none; }

  .header-tools {
    order: 2; width: 100%;
    justify-content: space-between;
  }
  .header-search { flex: 1; }
  .header-search__input { width: 100%; min-width: 0; }
  .cta-wa { padding: 8px 14px; font-size: 12px; }

  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 24px 0 16px; }
  .hero h1 { font-size: 24px; margin-bottom: 14px; }
  .hero-search { flex-direction: column; }
  .hero-search input { width: 100%; }

  /* Banner */
  .hero-banner { aspect-ratio: 16 / 10; border-radius: 10px; }
  .hero-banner__overlay { padding: 16px 18px; }
  .hero-banner__title { font-size: 18px; }
  .hero-banner__price { font-size: 14px; }
  .hero-banner__brand { font-size: 10px; }

  /* Featured */
  .featured-highlight { grid-template-columns: 1fr; }
  .featured-highlight__body { padding: 18px; }
  .featured-highlight__title { font-size: 20px; }
  .featured-highlight__price { font-size: 17px; }

  /* Category cards */
  .cat-card { padding: 14px 18px 12px; min-width: 80px; }
  .cat-card__icon { font-size: 24px; }
  .cat-card__label { font-size: 12px; }

  /* Grid: 2 columns on mobile */
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .product-content { padding: 10px 12px 14px; }
  .product-name { font-size: 13px; }
  .product-brand { font-size: 10px; }
  .product-price { font-size: 13px; }
  .wish-btn { width: 32px; height: 32px; font-size: 15px; top: 8px; right: 8px; }

  /* Sections */
  .section { padding: 32px 0; }
  .section-title { font-size: 18px; }

  /* Filters */
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-input, .filter-select { width: 100%; }

  /* Detail */
  .detail-copy { padding: 18px; }
  .btn { padding: 10px 20px; font-size: 13px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 22px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-name { font-size: 12px; -webkit-line-clamp: 1; }
}