/* ============================================================
   LUX DESIRE — LUXURY THEME
   Palette: Near-black bg + gold accents
   Fonts: Cormorant Garamond (serif) + Montserrat (sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --bg:          #0d0d0d;
  --bg-2:        #111111;
  --bg-3:        #161610;
  --bg-light:    #f5f0e8;
  --gold:        #D4B456;
  --gold-light:  #E8CC72;
  --gold-dark:   #A8852E;
  --text:        #f0ebe0;
  --text-muted:  #a89880;
  --border:      rgba(212,180,86,.4);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Montserrat', Arial, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 48px;
}
.section-title h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--text);
}
.section-title p {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.section-title .rule {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}
.section-title .rule::before,
.section-title .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.section-title .rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .3s ease;
  cursor: pointer;
}
.btn-outline {
  composes: btn;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: all .3s ease;
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── Ornament circle ─────────────────────────────────────── */
.ornament-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}
.ornament-wrap svg.ornament-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ornament-wrap .ornament-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.topbar__item svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--gold); }
.topbar__sep {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ── Header ──────────────────────────────────────────────── */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 32px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.header__logo-wrap svg { width: 220px; }
.header__tagline {
  font-size: 9px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text);
  transition: color .2s;
  position: relative;
  padding: 4px;
}
.header__icon-btn:hover { color: var(--gold); }
.header__icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 22px; height: 1px; background: var(--text); transition: all .3s; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
  padding: 4px 0;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* ── Brands ──────────────────────────────────────────────── */
.brands {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.brands__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: opacity .2s;
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { opacity: .75; }
.brand-item:hover p { color: var(--gold-light); }
.brand-item p {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--bg);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  gap: 24px;
}
.hero__content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--text);
}
.hero__sub {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.9;
}
.hero__img {
  background: #0a0a0a;
  overflow: hidden;
  position: relative;
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ── Categories ──────────────────────────────────────────── */
.categories {
  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.categories__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: opacity .2s;
}
.cat-item:last-child { border-right: none; }
.cat-item:hover { opacity: .75; }
.cat-item:hover h3 { color: var(--gold-light); }
.cat-item:hover .ornament-wrap svg circle { stroke: var(--gold-light); }
.cat-item h3 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
}
.cat-item p {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-top: -10px;
}

/* ── New Arrivals ─────────────────────────────────────────── */
.arrivals {
  padding: 72px 0;
  background: var(--bg-light);
}
.arrivals .section-title h2 { color: var(--bg); }
.arrivals .section-title p { color: #6a6050; }
.arrivals .section-title .rule::before,
.arrivals .section-title .rule::after {
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}
.arrivals .section-title .rule-diamond { background: var(--gold-dark); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.product-card {
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  group: true;
}
.product-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0ebe0;
  position: relative;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s;
  cursor: pointer;
}
.product-card__wish:hover { background: var(--gold); }
.product-card__wish:hover svg { stroke: #fff; }
.product-card__wish svg { width: 14px; height: 14px; stroke: #666; fill: none; stroke-width: 1.5; }
.product-card__info {
  padding: 16px;
  background: #fff;
}
.product-card__name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--bg-2);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-card__price {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--bg);
}

/* ── Features ─────────────────────────────────────────────── */
.features {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-item .ornament-wrap { width: 72px; height: 72px; }
.feature-item__text h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-item__text p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Newsletter ───────────────────────────────────────────── */
.newsletter {
  background: var(--bg);
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.newsletter .section-title { margin-bottom: 32px; }
.newsletter .section-title h2 {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .4em;
  color: var(--gold);
}
.newsletter .section-title p { color: var(--text-muted); }
.newsletter__form {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  padding: 16px 20px;
}
.newsletter__input::placeholder { color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer__nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.footer__nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.footer__nav-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__nav-link:hover { color: var(--gold); }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social a {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__social a:hover { color: var(--gold); }

/* ── Cart drawer ─────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 200;
  transition: right .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__title {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .15em;
  font-weight: 500;
}
.cart-drawer__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .2s;
}
.cart-drawer__close:hover { color: var(--gold); }
.cart-drawer__close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 28px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 16px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: .1em;
}
.cart-empty svg { width: 40px; height: 40px; stroke: var(--text-muted); fill: none; stroke-width: 1; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-3);
}
.cart-item__details { flex: 1; }
.cart-item__name { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.cart-item__price { font-family: var(--serif); font-size: 15px; color: var(--gold); }
.cart-item__remove { font-size: 10px; color: var(--text-muted); letter-spacing: .1em; cursor: pointer; margin-top: 8px; }
.cart-item__remove:hover { color: var(--gold); }
.cart-drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total span:first-child { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); }
.cart-total span:last-child { font-family: var(--serif); font-size: 20px; color: var(--gold); }

/* ── Mobile nav drawer ───────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  z-index: 200;
  transition: left .4s cubic-bezier(.4,0,.2,1);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav.open { left: 0; }
.mobile-nav__link {
  display: block;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav__link:hover { color: var(--gold); }

/* ── Product page ────────────────────────────────────────── */
.product-page { padding: 48px 0 80px; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.product-gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.product-gallery__thumb {
  width: 72px;
  height: 90px;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .2s;
}
.product-gallery__thumb.active { border-color: var(--gold); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; gap: 24px; }
.product-brand {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .02em;
}
.product-price { font-family: var(--serif); font-size: 28px; color: var(--gold); }
.product-divider { height: 1px; background: var(--border); }
.product-description { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.product-qty {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--border);
}
.product-qty button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 18px;
  transition: background .2s;
}
.product-qty button:hover { background: var(--border); }
.product-qty span {
  width: 48px;
  text-align: center;
  font-size: 13px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 10px 0;
}
.product-actions { display: flex; gap: 12px; }
.product-actions .btn-gold { flex: 1; padding: 16px; }
.product-actions .btn-wish {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.product-actions .btn-wish:hover { border-color: var(--gold); color: var(--gold); }
.product-actions .btn-wish svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb__sep { color: var(--gold); }
.breadcrumb__current { color: var(--text); }

/* ── Catalog page ────────────────────────────────────────── */
.catalog { padding: 48px 0 80px; }
.catalog__header { margin-bottom: 48px; }
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.catalog__filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.filter-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.filter-select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .15em;
  padding: 8px 16px;
  outline: none;
  cursor: pointer;
}
.filter-select option { background: var(--bg-2); }

/* ── Page hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--bg-2);
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: .25em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Responsive ──────────────────────────────────────────── */

/* Desktop: esconde burger, mostra nav */
@media (min-width: 769px) {
  .burger { display: none; }
}

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog__grid  { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item   { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .feature-item:last-child { border-bottom: none; }
  .hero           { grid-template-columns: 1fr; min-height: auto; }
  .hero__img      { display: block; height: 320px; }
  .hero__content  { padding: 64px 48px; }
  .product-layout { gap: 40px; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  /* Tipografia */
  .container { padding: 0 16px; }

  /* Topbar — simplifica em mobile */
  .topbar__sep  { display: none; }
  .topbar__inner { gap: 12px; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 0 16px; }
  .topbar__item { flex-shrink: 0; font-size: 9px; }

  /* Header */
  .header__main { padding: 14px 16px; }
  .header__logo-wrap svg { width: 160px; }
  .header__tagline { font-size: 8px; letter-spacing: .25em; }

  /* Nav desktop → oculto; burger visível */
  .nav { display: none; }
  .burger { display: flex; }

  /* Cart drawer — largura total em mobile */
  .cart-drawer { width: 100%; right: -100%; }
  .cart-drawer.open { right: 0; }

  /* Brands — scroll horizontal */
  .brands__grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 16px;
    gap: 0;
    scrollbar-width: none;
  }
  .brands__grid::-webkit-scrollbar { display: none; }
  .brand-item { padding: 0 20px; flex-shrink: 0; }
  .ornament-wrap { width: 80px; height: 80px; }

  /* Hero */
  .hero__content { padding: 48px 20px; }
  .hero__content h1 { font-size: clamp(28px, 8vw, 44px); }
  .hero__img { height: 260px; }

  /* Categorias — scroll horizontal */
  .categories { padding: 36px 0; }
  .categories__grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 16px 8px;
    scrollbar-width: none;
  }
  .categories__grid::-webkit-scrollbar { display: none; }
  .cat-item { padding: 0 16px; flex-shrink: 0; }
  .cat-item .ornament-wrap { width: 80px; height: 80px; }

  /* New Arrivals */
  .arrivals { padding: 48px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

  /* Features — coluna única */
  .features__grid { grid-template-columns: 1fr; }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
    gap: 16px;
  }
  .feature-item:last-child { border-bottom: none; }
  .feature-item .ornament-wrap { width: 56px; height: 56px; }

  /* Newsletter */
  .newsletter { padding: 48px 0; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { width: 100%; padding: 16px; text-align: center; }
  .newsletter__form .btn-gold { width: 100%; padding: 16px; }

  /* Footer */
  .footer__nav { display: none; }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
  }
  .footer__social { justify-content: center; }

  /* Catálogo */
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .catalog__filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Página de produto */
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery__thumbs { gap: 6px; }
  .product-gallery__thumb { width: 56px; height: 70px; }
  .product-actions { flex-wrap: wrap; }
  .product-actions .btn-gold { flex: 1; min-width: 0; }
  .product-page { padding: 24px 0 56px; }

  /* Breadcrumb */
  .breadcrumb { margin-bottom: 24px; }

  /* Section titles */
  .section-title { gap: 6px; margin-bottom: 32px; }
  .section-title .rule { max-width: 240px; }
}

/* Mobile pequeno ≤ 480px */
@media (max-width: 480px) {
  /* Topbar — oculto em telas muito pequenas */
  .topbar { display: none; }

  /* Logo ainda menor */
  .header__logo-wrap svg { width: 130px; }
  .header__tagline { display: none; }

  /* Grid de produtos — mantém 2 colunas */
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog__grid  { grid-template-columns: repeat(2, 1fr); }

  /* Hero mais compacto */
  .hero__content { padding: 36px 16px; gap: 16px; }
  .hero__img { height: 220px; }

  /* Botão hero — full width */
  .btn-outline { width: 100%; justify-content: center; }

  /* Features compacto */
  .feature-item { padding: 16px; }

  /* Página produto — empilha botões */
  .product-actions { flex-direction: column; }
  .product-actions .btn-wish { width: 100%; height: 48px; }
}
