:root {
  --bg: #0b0908;
  --surface: #141110;
  --surface-2: #1e1815;
  --cream: #efe6d8;
  --text: #fff8ee;
  --muted: #c9bba7;
  --gold: #d0ad68;
  --gold-2: #f2d48b;
  --line: rgba(208, 173, 104, .22);
  --line-strong: rgba(208, 173, 104, .45);
  --dark: #1c1511;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(208,173,104,.17), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.06), transparent 25%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11,9,8,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 58px; height: 58px; border-radius: 999px; object-fit: cover; border: 1px solid var(--line);
}
.brand strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 35px;
  line-height: 1;
  color: var(--gold-2);
  letter-spacing: .03em;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a:not(.btn) { color: var(--muted); transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-2); }
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  width: 46px; height: 46px;
}
.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.small { min-height: 44px; padding: 0 18px; }
.btn-gold {
  color: #1b130d;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 14px 34px rgba(208,173,104,.22);
}
.btn-outline {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.035);
}
.btn-outline.dark { color: var(--dark); border-color: rgba(73,52,25,.22); background: rgba(255,255,255,.42); }
.hero { padding: 80px 0 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}
.overline {
  margin: 0 0 14px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 600;
}
h1 {
  font-size: clamp(48px, 7vw, 86px);
  margin-bottom: 22px;
}
h1 em, h2 { color: var(--gold-2); font-style: normal; }
.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges span {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
}
.hero-gallery { position: relative; min-height: 660px; }
.hero-main {
  position: absolute;
  inset: 0 0 auto auto;
  width: 78%;
  height: 590px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-side {
  position: absolute;
  width: 35%;
  height: 230px;
  object-fit: cover;
  border-radius: 24px;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow);
}
.side-a { left: 0; bottom: 70px; }
.side-b { left: 12%; bottom: 0; }
.quick-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid div { padding: 26px 22px; border-right: 1px solid var(--line); }
.strip-grid div:last-child { border-right: 0; }
.strip-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 7px;
}
.strip-grid strong { color: var(--gold-2); }
.section { padding: 90px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head.center {
  display: block;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-head.light p { color: #5c5044; }
.section-head h2 { font-size: clamp(38px, 5vw, 62px); margin: 0; }
.section-head p, .robes-copy p, .contact-card p {
  color: var(--muted);
  line-height: 1.75;
}
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.filter {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
}
.filter.active {
  color: #1b130d;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.product-img { aspect-ratio: 4 / 5; background: #111; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-body { padding: 22px; }
.product-top { display: flex; justify-content: space-between; gap: 14px; align-items: start; }
.product-title {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--gold-2);
  font-size: 32px;
  line-height: 1;
}
.product-code {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  padding-top: 7px;
  white-space: nowrap;
}
.product-tag {
  display: inline-flex;
  margin: 13px 0 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
}
.color-note {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1b130d;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 12px;
  font-weight: 900;
}
.color-note::before { content: "✦"; font-size: 11px; }
.product-desc {
  color: var(--muted);
  line-height: 1.65;
  min-height: 82px;
}
.product-actions { display: flex; gap: 10px; margin-top: 18px; }
.product-actions .btn { flex: 1; min-width: 0; }
.robes-section {
  background: var(--cream);
  color: var(--dark);
}
.robes-section .overline, .combinaisons-section .overline { color: #7b5d29; }
.robes-section h2, .combinaisons-section h2 { color: #5c421c; }
.robes-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.robes-copy p { color: #5c5044; font-size: 17px; }
.robes-visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.robes-visuals img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(45,30,10,.16);
}
.robes-visuals img:nth-child(2) { margin-top: 50px; }
.combinaisons-section {
  background: #f7efe3;
  color: var(--dark);
  border-top: 1px solid rgba(73,52,25,.12);
}
.combinaison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.combinaison-cards article {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 520px;
  box-shadow: 0 20px 60px rgba(45,30,10,.18);
}
.combinaison-cards img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.combinaison-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.76));
}
.combinaison-cards strong, .combinaison-cards span {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
}
.combinaison-cards strong {
  bottom: 54px;
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: .2em;
}
.combinaison-cards span {
  bottom: 22px;
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
}
.looks-section {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.look-grid { columns: 4 220px; column-gap: 18px; }
.look-grid img {
  width: 100%;
  margin: 0 0 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  break-inside: avoid;
}
.contact-section { padding-bottom: 70px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--cream);
  color: var(--dark);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.contact-card .overline { color: #7b5d29; }
.contact-card h2 { color: #5c421c; font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px; }
.contact-card p { color: #5c5044; margin-bottom: 0; }
.contact-actions { display: grid; gap: 12px; min-width: 290px; }
.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 15px 20px;
  border-radius: 999px;
  color: #1b130d;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}
.footer { padding: 32px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); }
.footer strong {
  color: var(--gold-2);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
}
@media (max-width: 980px) {
  .hero-grid, .section-head, .robes-grid, .contact-card, .strip-grid { grid-template-columns: 1fr; }
  .hero-gallery { min-height: 570px; }
  .hero-main { width: 82%; height: 500px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .combinaison-cards { grid-template-columns: 1fr; }
  .strip-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-grid div:last-child { border-bottom: 0; }
  .contact-actions { min-width: 0; }
}
@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav { min-height: 76px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 30px; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(20,17,16,.98);
  }
  .nav-links.open { display: flex; }
  .hero { padding: 42px 0 46px; }
  .hero-grid { gap: 30px; }
  .hero-gallery { order: -1; min-height: 430px; }
  .hero-main { width: 86%; height: 380px; }
  .hero-side { width: 38%; height: 160px; border-width: 4px; }
  .side-a { bottom: 48px; }
  .side-b { bottom: 0; left: 14%; }
  h1 { font-size: 46px; }
  .lead { font-size: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .robes-visuals { grid-template-columns: 1fr; }
  .robes-visuals img { height: auto; }
  .robes-visuals img:nth-child(2) { margin-top: 0; }
  .product-actions, .hero-actions { flex-direction: column; }
  .contact-card { padding: 26px; }
  .footer-grid { flex-direction: column; text-align: center; }
  .float-wa { left: 14px; right: 14px; text-align: center; }
}
@media (max-width: 420px) {
  h1 { font-size: 41px; }
  .section { padding: 64px 0; }
  .hero-main { height: 340px; }
  .hero-gallery { min-height: 392px; }
}

.nouveautes-section {
  background: linear-gradient(180deg, rgba(208,173,104,.055), rgba(255,255,255,.012));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.new-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.new-models-grid article {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
  padding-bottom: 20px;
}
.dual-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 430px;
  overflow: hidden;
}
.dual-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-models-grid strong,
.new-models-grid span {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
.new-models-grid strong {
  margin-top: 18px;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: .2em;
}
.new-models-grid span {
  margin-top: 7px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
}
@media (max-width: 980px) {
  .new-models-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .new-models-grid { grid-template-columns: 1fr; }
  .dual-view { height: 360px; }
}

.product-img-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-img-dual img {
  min-width: 0;
}

.mobile-top-actions,
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 650px) {
  :root {
    --container: calc(100% - 28px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: calc(78px + var(--safe-bottom));
    background:
      radial-gradient(circle at 15% -10%, rgba(208,173,104,.18), transparent 34%),
      radial-gradient(circle at 95% 10%, rgba(255,255,255,.05), transparent 25%),
      var(--bg);
  }

  .site-header {
    background: rgba(10,9,9,.84);
    backdrop-filter: blur(16px);
  }

  .nav {
    min-height: 68px;
    width: 100%;
    padding: 0 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand span {
    margin-top: 2px;
    font-size: 10px;
    letter-spacing: .2em;
  }

  .menu-btn,
  .nav-links {
    display: none !important;
  }

  .mobile-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-icon-btn {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: var(--text);
  }

  .mobile-icon-btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-icon-btn:last-child svg {
    fill: currentColor;
    stroke: none;
  }

  .hero {
    padding: 20px 0 10px;
  }

  .hero-grid {
    position: relative;
    display: block;
    min-height: 520px;
  }

  .hero-gallery {
    position: relative;
    min-height: 520px;
  }

  .hero-main {
    width: 100%;
    height: 520px;
    border-radius: 32px;
    isolation: isolate;
  }

  .hero-main::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.12) 34%, rgba(0,0,0,.9) 100%);
  }

  .hero-main img {
    position: absolute;
    inset: 0;
  }

  .hero-side,
  .hero-badges {
    display: none;
  }

  .hero-copy {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 20px 22px;
  }

  .hero-copy .overline {
    margin-bottom: 10px;
    font-size: 11px;
  }

  h1 {
    max-width: none;
    margin-bottom: 12px;
    font-size: 43px;
    line-height: .98;
  }

  .lead {
    margin-bottom: 18px;
    color: #eadfce;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 0 13px;
    font-size: 13px;
    text-align: center;
  }

  .quick-strip {
    padding: 14px 0 4px;
    border: 0;
    background: transparent;
  }

  .strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .strip-grid div {
    padding: 15px 14px;
    border: 1px solid var(--line) !important;
    border-radius: 20px;
    background: rgba(255,255,255,.035);
  }

  .strip-grid span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .strip-grid strong {
    font-size: 14px;
  }

  .section {
    padding: 34px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 18px;
  }

  .section-head.center {
    max-width: none;
    text-align: left;
  }

  .section-head h2,
  .combinaisons-section h2 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1;
  }

  .section-head > p,
  .section-head.center > p:last-child {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
  }

  .filters {
    flex-wrap: nowrap;
    gap: 9px;
    margin: 0 -14px 4px;
    padding: 2px 14px 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    padding: 11px 15px;
    font-size: 13px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card {
    border-radius: 28px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-img {
    height: 420px;
    aspect-ratio: auto;
  }

  .product-body {
    padding: 17px;
  }

  .product-title {
    font-size: 29px;
  }

  .product-tag {
    margin: 4px 0 8px;
    padding: 7px 10px;
  }

  .color-note {
    margin-bottom: 12px;
    padding: 8px 11px;
  }

  .product-desc {
    min-height: 0;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .product-actions {
    display: block;
    margin-top: 0;
  }

  .product-actions .btn {
    width: 100%;
  }

  .product-actions .btn-outline {
    display: none;
  }

  .robes-section {
    display: none;
  }

  .combinaisons-section {
    padding: 14px 0 34px;
    border: 0;
    background: transparent;
    color: var(--text);
  }

  .combinaison-grid {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(208,173,104,.08);
  }

  .combinaisons-section .overline,
  .combinaisons-section h2 {
    color: var(--gold-2);
  }

  .combinaisons-section .section-head {
    margin: 0;
  }

  .combinaisons-section .section-head p:last-child {
    margin-bottom: 0;
    color: var(--muted);
  }

  .combinaison-cards {
    display: none;
  }

  .nouveautes-section {
    border: 0;
    background: transparent;
  }

  .new-models-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .new-models-grid article {
    padding-bottom: 16px;
    border-radius: 26px;
  }

  .dual-view {
    height: 330px;
  }

  .new-models-grid strong,
  .new-models-grid span {
    padding-right: 16px;
    padding-left: 16px;
  }

  .new-models-grid strong {
    margin-top: 15px;
    font-size: 11px;
  }

  .new-models-grid span {
    margin-top: 5px;
    font-size: 25px;
  }

  .looks-section {
    border: 0;
    background: transparent;
  }

  .look-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    columns: auto;
  }

  .look-grid img {
    height: 260px;
    margin: 0;
    border-radius: 22px;
    object-fit: cover;
  }

  .look-grid img:nth-child(3n+1) {
    grid-row: span 2;
    height: 530px;
  }

  .contact-section {
    padding-bottom: 34px;
  }

  .contact-card {
    display: block;
    padding: 24px;
    border-radius: 30px;
  }

  .contact-card h2 {
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 1;
  }

  .contact-card p {
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .contact-actions {
    gap: 10px;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .float-wa {
    display: none;
  }

  .footer {
    padding: 18px 14px 32px;
  }

  .footer-grid {
    gap: 5px;
    font-size: 13px;
    line-height: 1.6;
  }

  .footer strong {
    font-size: 30px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 9px 12px calc(9px + var(--safe-bottom));
    border-top: 1px solid var(--line);
    background: rgba(9,8,8,.88);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav a {
    display: flex;
    min-height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 17px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-bottom-nav a.active,
  .mobile-bottom-nav a.whatsapp {
    background: rgba(208,173,104,.13);
    color: var(--gold-2);
  }

  .mobile-bottom-nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav .whatsapp svg {
    fill: currentColor;
    stroke: none;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 38px;
  }

  .hero-grid,
  .hero-gallery,
  .hero-main {
    min-height: 480px;
    height: 480px;
  }

  .lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .product-img {
    height: 385px;
  }

  .look-grid img {
    height: 220px;
  }

  .look-grid img:nth-child(3n+1) {
    height: 450px;
  }
}
