:root {
  --ink: #111317;
  --muted: #646b76;
  --line: #e4e7e1;
  --paper: #f8faf5;
  --panel: #ffffff;
  --accent: #0f8f58;
  --accent-dark: #087044;
  --green-soft: #eaf7ee;
  --blue: #315d9a;
  --coral: #c95f4b;
  --hero-lifestyle-image: url("assets/panda-urban-hero.png");
  --shadow: 0 18px 45px rgba(18, 22, 28, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  cursor: pointer;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(3, 8, 6, 0.82), rgba(3, 8, 6, 0.34));
  backdrop-filter: blur(20px);
}

.brand,
.nav-links a,
.admin-link {
  color: #fff;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  width: 50px;
  height: 40px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(15, 143, 88, 0.16);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.language-select {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  min-height: 100vh;
  padding: clamp(118px, 11vw, 156px) clamp(18px, 5vw, 72px) clamp(44px, 6vw, 74px);
  color: #fff;
  background-image:
    radial-gradient(circle at 72% 36%, rgba(16, 151, 93, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(2, 7, 5, 0.95) 0%, rgba(4, 13, 9, 0.78) 34%, rgba(4, 12, 9, 0.38) 68%, rgba(4, 12, 9, 0.58) 100%),
    var(--hero-lifestyle-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  opacity: 0.42;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(3, 8, 6, 0.9), transparent);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.15;
}

.hero-text {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.social-button,
.primary-button,
.product-card button,
.floating-whatsapp {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, #17a865, #0b7b4c);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.social-button.instagram {
  background: linear-gradient(135deg, #b72e74, #f06a3b);
}

.social-button.telegram {
  background: linear-gradient(135deg, #235e9f, #204a7d);
}

.social-button.tiktok {
  background: linear-gradient(135deg, #25282f, #111317);
}

.social-button.website {
  background: linear-gradient(135deg, #0c756f, #07514f);
}

.social-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.18);
}

.social-icon svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.social-button span:last-child,
.floating-whatsapp span:last-child {
  display: grid;
  gap: 2px;
  text-align: left;
}

.social-button small,
.floating-whatsapp small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 14, 11, 0.5);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.trust-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 143, 88, 0.16);
}

.hero-media {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.mobile-hero-experience { display: none; }

.brand-proof-card {
  justify-self: end;
  width: min(100%, 320px);
  padding: 22px;
  border: 1px solid rgba(32, 210, 126, 0.34);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 14, 10, 0.82), rgba(4, 12, 9, 0.66));
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.proof-logo {
  display: block;
  width: 86px;
  height: 66px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 28px rgba(12, 144, 85, 0.2);
}

.brand-proof-card > strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-proof-card > span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.proof-numbers div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-numbers strong {
  display: block;
  color: #43d684;
  font-size: 25px;
}

.proof-numbers span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
}

.hero-gallery {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 132px));
  gap: 12px;
}

.hero-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.promo-video-card,
.promo-image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: var(--hero-video-max-width, 100%);
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #07110b;
  box-shadow: var(--shadow);
}

.promo-video-card video,
.promo-image-card > img {
  display: block;
  width: 100%;
  aspect-ratio: var(--hero-video-aspect-ratio, 16 / 9);
  object-fit: var(--hero-video-object-fit, cover);
}

.showroom-entry {
  position: relative;
  display: grid;
  width: min(100%, 320px);
  min-height: 218px;
  justify-self: end;
  align-content: center;
  gap: 10px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(63, 227, 137, 0.46);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(24, 173, 96, 0.2), transparent 56%),
    linear-gradient(180deg, #0a1a10 0%, #040805 100%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32), inset 0 0 40px rgba(38, 215, 111, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.showroom-entry::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(113, 241, 165, 0.14);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}

.showroom-entry-kicker,
.showroom-entry strong,
.showroom-entry-copy,
.showroom-entry-button {
  position: relative;
  z-index: 1;
}

.showroom-entry-kicker {
  color: #57e992;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.showroom-entry strong {
  font-size: 26px;
  line-height: 1.05;
}

.showroom-entry-copy {
  max-width: 180px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.4;
}

.showroom-entry-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  padding: 10px 13px;
  border: 1px solid rgba(105, 240, 161, 0.55);
  border-radius: 5px;
  color: #ffffff;
  background: rgba(18, 168, 91, 0.28);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.showroom-entry-button b {
  color: #66eda0;
  font-size: 16px;
  line-height: 1;
}

.video-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 7px 13px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.video-label img {
  width: 42px;
  height: 30px;
  object-fit: cover;
  border-radius: 6px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stats > div {
  position: relative;
  min-height: 98px;
  padding: 19px clamp(16px, 2.4vw, 28px) 18px 66px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.stat-icon {
  position: absolute;
  top: 20px;
  left: clamp(16px, 2.4vw, 28px);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(15, 143, 88, 0.22);
  border-radius: 8px;
  color: #0f8f58;
  background:
    linear-gradient(135deg, rgba(15, 143, 88, 0.12), rgba(15, 143, 88, 0)),
    #f7fbf8;
  font-size: 17px;
  line-height: 1;
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  color: #111111;
  font-size: 18px;
  line-height: 1.2;
}

.stat-description {
  display: block;
  color: #666666;
  font-size: 14px;
  line-height: 1.4;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.company-section {
  background: #fff;
}

.company-section .section-heading {
  margin-bottom: 16px;
}

.company-section h2 {
  max-width: 720px;
  color: #111111;
  font-size: 18px;
  line-height: 1.3;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 24px;
}

.company-body {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.55;
}

.company-points {
  display: grid;
  gap: 12px;
}

.point-item {
  min-height: 58px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-soft);
  font-weight: 900;
}

.warehouse-grid,
.shipping-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.warehouse-grid {
  grid-template-columns: repeat(3, minmax(180px, 280px));
  justify-content: start;
  gap: 16px;
}

.shipping-grid {
  grid-template-columns: repeat(3, minmax(180px, 260px));
  justify-content: start;
  gap: 16px;
}

.media-card,
.video-card,
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(18, 22, 28, 0.06);
}

.media-card img,
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}

.media-card img {
  aspect-ratio: 1 / 1;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #07110b;
}

.media-card div,
.video-card div,
.product-body {
  padding: 18px;
}

.media-card div,
.video-card div {
  padding: 12px 14px 14px;
}

.media-card strong,
.video-card strong {
  display: block;
  margin-bottom: 6px;
}

.media-card span,
.video-card span,
.product-body p,
.footer,
.contact-band p {
  color: var(--muted);
}

.shipping-section {
  background: #f2f5f0;
}

@supports (content-visibility: auto) {
  /* Keep below-the-fold sections out of the first mobile paint. */
  #warehouse,
  #shipping,
  .contact-band {
    content-visibility: auto;
    contain-intrinsic-size: auto 680px;
  }
}

.product-card img {
  object-fit: contain;
}

.product-card button,
.primary-button {
  padding: 0 18px;
  color: #fff;
  background: var(--accent);
}

.product-card button {
  width: 100%;
  margin-top: 10px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  align-items: center;
  padding: clamp(46px, 8vw, 88px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.contact-band .eyebrow {
  color: #94e3bd;
}

.contact-band h2 {
  margin-bottom: 12px;
}

.contact-actions {
  justify-content: end;
  margin: 0;
}

.floating-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
}

.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 228px;
  min-height: 76px;
  padding: 12px 18px 12px 14px;
  border: 3px solid #eafff3;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #10a967, #087044);
  box-shadow: 0 18px 42px rgba(15, 143, 88, 0.38);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (hover: hover) {
  button,
  a,
  .product-card,
  .media-card,
  .video-card {
    transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
  }

  button:hover,
  .product-card:hover,
  .media-card:hover,
  .video-card:hover {
    transform: translateY(-2px);
  }

  .nav-links a:hover,
  .admin-link:hover {
    color: var(--accent-dark);
  }
}

@media (max-width: 980px) {
  .hero,
  .company-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .warehouse-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .shipping-grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .video-card {
    scroll-snap-align: start;
  }

  .media-card {
    scroll-snap-align: start;
  }

  .contact-actions {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  :root {
  --mobile-hero-lifestyle-image: none;
  }

  .topbar {
    min-height: 68px;
    padding: 0 16px;
    background: #07120e;
  }

  .topbar .brand {
    gap: 10px;
    font-size: 16px;
  }

  .topbar .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    display: none;
  }

  .language-select { display: none; }

  .admin-link {
    min-height: 34px;
    padding: 0 10px;
  }

  h1 {
    font-size: var(--mobile-hero-title-size, 44px);
  }

  h2 {
    font-size: var(--mobile-section-title-size, 30px);
  }

  .hero-text {
    font-size: var(--mobile-hero-text-size, 16px);
  }

  .company-body,
  .contact-band p,
  .stats span {
    font-size: var(--mobile-body-text-size, 15px);
  }

  .hero,
  .section,
  .contact-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 68px 14px 14px;
    background: #040b08;
  }
  .hero-copy, .hero-media { display: none; }
  .mobile-hero-experience { display: grid; gap: 0; position: relative; z-index: 1; padding-top: 14px; overflow: hidden; background: #020705; }
  .mobile-brand-zone { overflow: hidden; border: 0; border-radius: 0; background: linear-gradient(135deg, #07100d, #020605); }
  .mobile-brand-matrix { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; }
  .mobile-brand-matrix span { display: grid; min-height: 70px; place-items: center; align-content: center; gap: 3px; padding: 8px 4px; border-right: 1px solid rgba(232, 215, 170, .3); border-bottom: 1px solid rgba(232, 215, 170, .3); color: #ead7ad; font-family: Georgia, "Times New Roman", serif; font-size: 9px; font-weight: 700; letter-spacing: .05em; text-align: center; }
  .mobile-brand-matrix span:nth-child(3n) { border-right: 0; }
  .mobile-brand-matrix span:nth-child(n+4) { border-bottom: 0; }
  .mobile-brand-matrix .brand-tile b { display: block; font: inherit; font-size: 13px; letter-spacing: .04em; line-height: 1; }
  .mobile-brand-matrix .brand-tile small { display: block; color: rgba(234, 215, 173, .92); font-family: Arial, sans-serif; font-size: 6px; font-weight: 700; letter-spacing: .08em; line-height: 1.1; }
  .mobile-brand-matrix .brand-lv b { font-family: Georgia, "Times New Roman", serif; font-size: 9px; font-style: normal; letter-spacing: .05em; }
  .mobile-brand-matrix .brand-dior b { font-family: Georgia, serif; font-size: 18px; font-weight: 400; letter-spacing: .02em; }
  .mobile-brand-matrix .brand-gucci b { font-family: Georgia, serif; font-size: 13px; font-weight: 500; letter-spacing: .08em; }
  .mobile-brand-matrix .brand-gucci small { font-family: Arial, sans-serif; font-size: 5px; font-weight: 700; letter-spacing: .08em; }
  .mobile-brand-matrix .brand-chanel b { font-family: Georgia, serif; font-size: 12px; letter-spacing: .08em; }
  .mobile-brand-matrix .brand-chanel small { font-size: 6px; letter-spacing: .12em; }
  .mobile-brand-matrix .brand-balenciaga b { font-family: Arial, sans-serif; font-size: 9px; letter-spacing: .04em; }
  .mobile-brand-matrix .brand-nike b { font-family: Arial, sans-serif; font-size: 16px; font-style: italic; font-weight: 900; letter-spacing: -.08em; }
  .mobile-brand-matrix .brand-nike small { font-size: 5px; letter-spacing: .14em; }
  .mobile-showcase { overflow: hidden; border: 0; border-radius: 0; background: #09110e; box-shadow: none; }
  .mobile-showcase-track { display: flex; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .mobile-showcase-track::-webkit-scrollbar { display: none; }
  .mobile-showcase-track img { display: block; width: 100%; flex: 0 0 100%; aspect-ratio: 5 / 4; object-fit: cover; scroll-snap-align: start; }
  .mobile-showcase-track .showcase-whatsapp-target { cursor: pointer; }
  .mobile-showcase-track .showcase-whatsapp-target:focus-visible { outline: 3px solid #65f49e; outline-offset: -3px; }
  .mobile-showcase-controls { display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; min-height: 44px; padding: 0 8px; background: rgba(2, 11, 8, .92); }
  .mobile-showcase-controls button { border: 0; background: transparent; color: #8fffc0; font: inherit; font-size: 18px; }
  .mobile-showcase-dots { display: flex; justify-content: center; gap: 6px; }
  .mobile-showcase-dots button { width: 6px; height: 6px; min-height: 0; padding: 0; border-radius: 50%; background: rgba(255,255,255,.35); }
  .mobile-showcase-dots button.active { width: 18px; border-radius: 4px; background: #41ef8d; }
  .mobile-conversion-copy { display: grid; gap: 9px; padding: 15px 13px 13px; border: 0; border-radius: 0; background: linear-gradient(180deg, rgba(7, 19, 13, .98), rgba(2, 8, 5, .99)); text-align: center; box-shadow: none; }
  .mobile-kicker { display: none; }
  .mobile-conversion-copy h1 { margin: 0; color: #f7ead3; font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 5.8vw, 25px); font-weight: 500; line-height: 1.12; }
  .mobile-conversion-copy > p:not(.mobile-kicker) { margin: -3px 0 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.35; }
  .mobile-whatsapp-cta { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 43px; padding: 7px 11px; border: 1px solid #c6ffd9; border-radius: 8px; background: linear-gradient(135deg, #6bff78, #2bdc60); color: #03170a; box-shadow: 0 0 18px rgba(69,255,121,.46); font-size: 13px; font-weight: 900; line-height: 1.1; }
  .mobile-whatsapp-cta .mobile-whatsapp-icon { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 7px; background: rgba(4, 87, 37, .22); color: #063b18; }
  .mobile-whatsapp-cta .mobile-whatsapp-icon svg { width: 18px; height: 18px; fill: currentColor; }
  .mobile-whatsapp-cta > span:last-child { font-size: 13px; }
  .mobile-value-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 12px; color: rgba(255,255,255,.76); font-size: 9px; line-height: 1.2; }
  .mobile-value-points span { display: inline-flex; align-items: center; white-space: nowrap; }
  .mobile-value-points span::before { width: 8px; height: 8px; margin-right: 4px; border: 1px solid #54f68b; border-radius: 2px; transform: rotate(45deg); content: ""; }
  .mobile-more-options { min-height: 37px; border: 1px solid rgba(151, 255, 190, .45); border-radius: 8px; background: rgba(4, 18, 10, .7); color: rgba(255,255,255,.82); font: inherit; font-size: 12px; font-weight: 400; }
  .mobile-more-options::after { content: "⌄"; margin-left: 10px; color: #65f49e; }
  .mobile-more-options.is-open::after { content: "⌃"; }
  .mobile-more-social { display: grid; gap: 8px; }
  .mobile-more-social[hidden] { display: none; }
  .mobile-more-social .social-button { min-height: 48px; }

  .hero::after {
    height: 52%;
    background: linear-gradient(0deg, rgba(3, 8, 6, 0.82), rgba(3, 8, 6, 0));
  }

  .section {
    padding-top: var(--mobile-section-padding, 44px);
    padding-bottom: var(--mobile-section-padding, 44px);
  }

  .social-actions,
  .social-button,
  .primary-button {
    width: 100%;
  }

  .social-button {
    justify-content: flex-start;
  }

  .stats,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .stats > div {
    min-height: 82px;
    padding: 15px 18px 15px 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats > div:last-child {
    border-bottom: 0;
  }

  .stats .stat-icon {
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .stats strong {
    font-size: 18px;
  }

  .stats .stat-description {
    font-size: 14px;
  }

  .company-section h2 {
    font-size: 18px;
  }

  .company-body {
    font-size: 15px;
  }

  .warehouse-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(218px, 72vw);
    grid-template-columns: none;
    gap: 12px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 2px 16px 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .shipping-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(192px, 62vw);
    grid-template-columns: none;
    gap: 12px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 2px 16px 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .warehouse-grid::-webkit-scrollbar,
  .shipping-grid::-webkit-scrollbar {
    display: none;
  }

  .warehouse-grid .media-card,
  .shipping-grid .video-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .media-card strong,
  .video-card strong {
    font-size: var(--mobile-card-title-size, 14px);
    line-height: 1.15;
  }

  .media-card span,
  .video-card span {
    font-size: var(--mobile-card-text-size, 12px);
    line-height: 1.25;
  }

  .section-heading,
  .footer {
    display: block;
  }

  .floating-panel {
    right: 14px;
    bottom: 12px;
    left: auto;
  }

  .floating-whatsapp {
    width: var(--mobile-floating-size, 72px);
    min-width: var(--mobile-floating-size, 72px);
    min-height: var(--mobile-floating-size, 72px);
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }

  html[data-mobile-floating-mode="bar"] .floating-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  html[data-mobile-floating-mode="bar"] .floating-whatsapp {
    width: 100%;
    min-width: 0;
    padding: 12px 18px 12px 14px;
  }

  html[data-mobile-floating-mode="bar"] .floating-whatsapp span:last-child {
    display: grid;
  }

  html[data-mobile-floating-mode="hidden"] .floating-panel {
    display: none;
  }
}

@media (hover: hover) {
  .showroom-entry:hover {
    transform: translateY(-3px);
    border-color: rgba(111, 246, 166, 0.78);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38), 0 0 24px rgba(42, 217, 111, 0.17);
  }
}

@media (max-width: 680px) {
  .showroom-entry {
    width: 100%;
    min-height: 186px;
    justify-self: stretch;
    padding: 24px;
  }

  .showroom-entry strong {
    font-size: 23px;
  }
}

/* Premium catalog composition for the current landing page. */
.topbar {
  background: rgba(2, 12, 8, 0.94);
}

.brand {
  color: #f2d39a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.035em;
}

.nav-links a,
.language-select {
  color: rgba(246, 224, 181, 0.92);
}

.hero {
  grid-template-columns: minmax(280px, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(34px, 5vw, 76px);
  min-height: 780px;
  background-image:
    linear-gradient(90deg, rgba(2, 10, 7, 0.98) 0%, rgba(2, 10, 7, 0.93) 39%, rgba(2, 10, 7, 0.72) 68%, rgba(2, 10, 7, 0.83) 100%),
    var(--hero-lifestyle-image);
}

.hero-copy {
  max-width: 580px;
}

.hero-copy .eyebrow {
  color: #63ef9a;
}

.hero-copy h1 {
  max-width: 520px;
  color: #f5dfb4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.9vw, 68px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-text {
  max-width: 510px;
  color: rgba(255, 248, 235, 0.76);
  font-size: 17px;
}

.hero-copy .social-actions {
  max-width: 420px;
}

.hero-copy .social-button.whatsapp,
.mobile-whatsapp-cta,
.floating-whatsapp {
  position: relative;
  isolation: isolate;
}

.hero-copy .social-button.whatsapp::before,
.mobile-whatsapp-cta::before,
.floating-whatsapp::before {
  position: absolute;
  z-index: -1;
  inset: -7px;
  border-radius: inherit;
  background: rgba(57, 244, 126, 0.32);
  box-shadow: 0 0 28px rgba(57, 244, 126, 0.72), 0 0 56px rgba(57, 244, 126, 0.24);
  content: "";
  filter: blur(7px);
  opacity: 0.86;
}

.social-button.whatsapp .social-icon,
.mobile-whatsapp-icon,
.floating-whatsapp .social-icon {
  color: #f2fff7;
  background: #16b968;
  box-shadow: 0 0 0 4px rgba(111, 255, 166, 0.18), 0 0 18px rgba(83, 255, 143, 0.8);
}

.hero-media {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  justify-items: stretch;
  width: min(100%, 690px);
  justify-self: end;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 204, 139, 0.38);
  border-radius: 12px;
  background: #020b07;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38), 0 0 1px rgba(255, 224, 162, 0.72);
}

.desktop-brand-zone {
  background: linear-gradient(135deg, #08130f, #020805);
}

.desktop-brand-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.desktop-brand-matrix .brand-tile {
  display: grid;
  min-height: 106px;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border-right: 1px solid rgba(233, 207, 149, 0.42);
  border-bottom: 1px solid rgba(233, 207, 149, 0.42);
  color: #efd19b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  text-align: center;
}

.desktop-brand-matrix .brand-tile:nth-child(3n) { border-right: 0; }
.desktop-brand-matrix .brand-tile:nth-child(n + 4) { border-bottom: 0; }
.desktop-brand-matrix b { display: block; font: inherit; font-size: 20px; letter-spacing: 0.06em; line-height: 1; }
.desktop-brand-matrix small { display: block; font-family: Arial, sans-serif; font-size: 7px; font-weight: 700; letter-spacing: 0.14em; }
.desktop-brand-matrix .brand-lv b { font-size: 13px; letter-spacing: 0.08em; }
.desktop-brand-matrix .brand-dior b { font-size: 35px; font-weight: 400; letter-spacing: 0.02em; }
.desktop-brand-matrix .brand-gucci b { font-size: 22px; letter-spacing: 0.09em; }
.desktop-brand-matrix .brand-chanel b { font-size: 20px; letter-spacing: 0.09em; }
.desktop-brand-matrix .brand-balenciaga b { font-family: Arial, sans-serif; font-size: 15px; font-weight: 700; }
.desktop-brand-matrix .brand-nike b { font-family: Arial, sans-serif; font-size: 30px; font-style: italic; font-weight: 900; letter-spacing: -0.08em; }

.desktop-showcase {
  display: grid;
  overflow: hidden;
  min-height: 0;
  background: #020806;
}

.desktop-showcase[hidden] { display: none; }

.desktop-showcase-track {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.desktop-showcase-track::-webkit-scrollbar { display: none; }

.desktop-showcase-track img {
  display: block;
  width: 100%;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  scroll-snap-align: start;
}
.desktop-showcase-track .showcase-whatsapp-target { cursor: pointer; }
.desktop-showcase-track .showcase-whatsapp-target:focus-visible { outline: 3px solid #65f49e; outline-offset: -3px; }

.desktop-showcase-controls {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  min-height: 52px;
  padding: 0 12px;
  border-top: 1px solid rgba(232, 204, 139, 0.22);
  background: #020b07;
}

.desktop-showcase-controls button {
  min-height: 42px;
  border: 0;
  color: #efd19b;
  background: transparent;
  font: inherit;
  font-size: 26px;
}

.desktop-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.desktop-showcase-dots button {
  width: 9px;
  min-height: 0;
  height: 9px;
  padding: 0;
  border: 1px solid #efd19b;
  border-radius: 50%;
}

.desktop-showcase-dots button.active {
  width: 25px;
  border-color: #f4cf89;
  border-radius: 99px;
  background: #f4cf89;
  box-shadow: 0 0 13px rgba(244, 207, 137, 0.72);
}

.desktop-showcase-fallback {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr);
  align-items: stretch;
  padding: 20px;
  gap: 16px;
}

.desktop-showcase-fallback[hidden] { display: none; }
.desktop-showcase-fallback .brand-proof-card,
.desktop-showcase-fallback .showroom-entry { width: 100%; justify-self: stretch; }

@media (max-width: 1120px) and (min-width: 681px) {
  .hero { grid-template-columns: minmax(260px, .75fr) minmax(390px, 1.15fr); gap: 30px; }
  .desktop-brand-matrix .brand-tile { min-height: 86px; }
  .desktop-showcase-track img { aspect-ratio: 5 / 4; }
}

@media (max-width: 680px) {
  .desktop-brand-zone,
  .desktop-showcase,
  .desktop-showcase-fallback { display: none !important; }

  .topbar { background: #030d08; }
  .brand { color: #f8f4ea; font-family: inherit; font-size: 16px; letter-spacing: 0; }
  .mobile-hero-experience { border: 1px solid rgba(227, 207, 160, 0.14); border-radius: 18px; }
  .mobile-brand-zone { background: linear-gradient(135deg, #07120d, #020805); }
  .mobile-brand-matrix span { min-height: 76px; }
  .mobile-showcase-track img { aspect-ratio: 4 / 3; }
  .mobile-showcase-controls { min-height: 46px; }
  .mobile-conversion-copy { padding: 18px 15px 15px; }
  .mobile-conversion-copy h1 { font-size: clamp(24px, 6.2vw, 29px); }
  .mobile-whatsapp-cta { min-height: 48px; border-radius: 9px; box-shadow: 0 0 20px rgba(69, 255, 121, 0.58); }
  .floating-whatsapp { border-color: #d8ffe8; box-shadow: 0 0 0 5px rgba(50, 255, 129, 0.16), 0 0 32px rgba(50, 255, 129, 0.65), 0 18px 42px rgba(15, 143, 88, 0.46); }
}

/* Mobile premium catalog treatment: compact, seamless, and deliberately high contrast. */
@media (max-width: 680px) {
  :root {
    --mobile-ui-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mobile-display-font: Georgia, "Times New Roman", serif;
    --champagne: #f1c882;
    --champagne-soft: #f7dfb4;
    --deep-forest: #020b08;
  }

  body { font-family: var(--mobile-ui-font); }
  .topbar {
    min-height: 66px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(241, 200, 130, 0.7);
    background:
      radial-gradient(circle at 18% -70%, rgba(38, 114, 75, 0.38), transparent 62%),
      linear-gradient(110deg, #03120d, #020806 76%);
  }
  .brand {
    gap: 10px;
    color: var(--champagne-soft);
    font-family: var(--mobile-display-font);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    filter: none;
    box-shadow: 0 0 14px rgba(46, 214, 121, 0.2);
  }
  .language-select {
    min-height: 34px;
    padding: 0 2px;
    border: 0;
    color: var(--champagne-soft);
    background: transparent;
    font-family: var(--mobile-ui-font);
    font-size: 13px;
    font-weight: 700;
  }

  .hero {
    padding: 66px 0 0;
    background: var(--deep-forest);
  }
  .mobile-hero-experience {
    padding: 0;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 11%, rgba(15, 87, 58, 0.25), transparent 32%),
      linear-gradient(180deg, #04130e, #010604 94%);
  }
  .mobile-brand-zone {
    position: relative;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 28%, rgba(21, 95, 62, 0.26), transparent 58%),
      linear-gradient(105deg, #03110c, #010705 82%);
  }
  .mobile-brand-zone::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(241, 200, 130, 0.66);
    content: "";
  }
  .mobile-brand-matrix {
    padding: 14px 16px 0;
    background: transparent;
  }
  .mobile-brand-matrix span {
    min-height: 90px;
    padding: 8px 5px;
    border-color: rgba(241, 200, 130, 0.62);
    color: var(--champagne);
    font-family: var(--mobile-display-font);
    font-weight: 400;
  }
  .mobile-brand-matrix .brand-tile b {
    display: grid;
    min-height: 56px;
    place-items: center;
    align-content: center;
    gap: 3px;
  }
  .mobile-brand-matrix .brand-tile i,
  .mobile-brand-matrix .brand-tile em {
    display: block;
    color: inherit;
    font-style: normal;
  }
  .mobile-brand-matrix .brand-tile small { display: none; }
  .mobile-brand-matrix .brand-lv i {
    font-family: var(--mobile-display-font);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.16em;
    line-height: 0.82;
  }
  .mobile-brand-matrix .brand-lv em {
    font-family: var(--mobile-ui-font);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .mobile-brand-matrix .brand-dior i {
    font-family: var(--mobile-display-font);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .mobile-brand-matrix .brand-gucci i {
    font-family: var(--mobile-display-font);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.12em;
  }
  .mobile-brand-matrix .brand-gucci .brand-mark {
    margin-top: -2px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.24em;
  }
  .mobile-brand-matrix .brand-chanel .chanel-mark {
    font-family: var(--mobile-ui-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1;
  }
  .mobile-brand-matrix .brand-balenciaga i {
    font-family: var(--mobile-ui-font);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
  }
  .mobile-brand-matrix .brand-nike i {
    font-family: var(--mobile-ui-font);
    font-size: 24px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.12em;
    transform: skewX(-8deg);
  }
  .mobile-brand-matrix .brand-nike em {
    margin-top: -4px;
    font-family: var(--mobile-ui-font);
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .mobile-showcase,
  .mobile-showcase-track { background: #020806; }
  .mobile-showcase-track img {
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
  }
  .mobile-showcase-controls {
    min-height: 46px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(241, 200, 130, 0.28);
    background: linear-gradient(90deg, #02100b, #020705);
  }
  .mobile-showcase-controls button {
    color: var(--champagne);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
  }
  .mobile-showcase-dots { gap: 10px; }
  .mobile-showcase-dots button {
    width: 8px;
    height: 8px;
    border: 1px solid var(--champagne);
    background: transparent;
  }
  .mobile-showcase-dots button.active {
    width: 8px;
    background: var(--champagne);
    box-shadow: 0 0 10px rgba(241, 200, 130, 0.72);
  }

  .mobile-conversion-copy {
    gap: 12px;
    padding: 28px 18px 26px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 0, rgba(15, 98, 58, 0.22), transparent 38%),
      linear-gradient(180deg, #03130d, #020806 74%, #010503);
  }
  .mobile-conversion-copy h1 {
    max-width: 330px;
    margin: 0 auto;
    color: #fae3be;
    font-family: var(--mobile-display-font);
    font-size: clamp(31px, 8.4vw, 38px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.03;
    text-wrap: balance;
  }
  .mobile-conversion-copy > p:not(.mobile-kicker) {
    margin: -3px 0 2px;
    color: rgba(247, 229, 196, 0.88);
    font-family: var(--mobile-ui-font);
    font-size: 13px;
    letter-spacing: 0.01em;
    line-height: 1.4;
  }
  .mobile-whatsapp-cta {
    min-height: 66px;
    padding: 11px 16px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #0eac5d, #109c54 55%, #078342);
    color: #f6fff8;
    box-shadow: 0 12px 25px rgba(1, 77, 38, 0.34), 0 0 0 1px rgba(122, 255, 171, 0.14) inset;
    font-family: var(--mobile-ui-font);
    font-size: 17px;
    font-weight: 500;
  }
  .mobile-whatsapp-cta .mobile-whatsapp-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 50%;
    color: #f4fff7;
    background: transparent;
    box-shadow: none;
  }
  .mobile-whatsapp-cta .mobile-whatsapp-icon svg {
    width: 30px;
    height: 30px;
  }
  .mobile-whatsapp-cta > span:last-child { font-size: inherit; }
  .mobile-value-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 8px 0 3px;
    color: rgba(250, 233, 203, 0.92);
    font-family: var(--mobile-ui-font);
    font-size: 11px;
  }
  .mobile-value-points span {
    min-height: 48px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    white-space: normal;
  }
  .mobile-value-points span + span { border-left: 1px solid rgba(241, 200, 130, 0.5); }
  .mobile-value-points span::before {
    width: 17px;
    height: 17px;
    margin: 0;
    border-color: var(--champagne);
    border-radius: 3px;
  }
  .mobile-more-options {
    min-height: 50px;
    border: 1px solid rgba(241, 200, 130, 0.8);
    border-radius: 7px;
    background: rgba(2, 13, 9, 0.45);
    color: rgba(250, 231, 198, 0.94);
    font-family: var(--mobile-ui-font);
    font-size: 15px;
    font-weight: 400;
  }
  .mobile-more-options::after {
    margin-left: 12px;
    color: var(--champagne);
    content: "⌄";
  }

  .floating-panel { right: 16px; bottom: 16px; }
  .floating-whatsapp {
    width: 58px;
    min-width: 58px;
    min-height: 58px;
    border: 2px solid #e4ffe9;
    background: #0aa058;
    box-shadow: 0 0 0 6px rgba(39, 255, 126, 0.12), 0 8px 22px rgba(0, 105, 51, 0.45);
  }
  .floating-whatsapp::before {
    inset: -4px;
    background: rgba(47, 255, 125, 0.38);
    box-shadow: 0 0 22px rgba(55, 255, 132, 0.52);
    filter: blur(5px);
  }
  .floating-whatsapp .social-icon {
    width: 30px;
    height: 30px;
    color: #f4fff7;
    background: transparent;
    box-shadow: none;
  }
}

/* Keep the WhatsApp conversion action fully visible in the first mobile viewport. */
@media (max-width: 680px) {
  /* The mobile hero is content-sized: never reserve an empty desktop-height block below the CTA. */
  .hero {
    min-height: 0;
    height: auto;
    padding-top: 58px;
  }
  .topbar { min-height: 58px; padding: 0 14px; }
  .brand { gap: 8px; font-size: 18px; }
  .brand-logo { width: 34px; height: 34px; }
  .mobile-brand-matrix { padding: 8px 12px 0; }
  .mobile-brand-matrix span { min-height: 58px; padding: 4px 3px; }
  .mobile-brand-matrix .brand-tile b { min-height: 40px; gap: 1px; }
  .mobile-brand-matrix .brand-lv i { font-size: 30px; }
  .mobile-brand-matrix .brand-dior i { font-size: 23px; }
  .mobile-brand-matrix .brand-gucci i { font-size: 14px; }
  .mobile-brand-matrix .brand-nike i { font-size: 19px; }
  .mobile-showcase-track img { aspect-ratio: 16 / 9; }
  .mobile-showcase-controls { min-height: 32px; }
  .mobile-showcase-controls button { min-height: 32px; }
  /* Keep carousel pagination deliberately compact; do not inherit arrow-button height. */
  .mobile-showcase-dots { gap: 5px; }
  .mobile-showcase-controls .mobile-showcase-dots button,
  .mobile-showcase-controls .mobile-showcase-dots button.active {
    width: 5px;
    min-width: 5px;
    height: 5px;
    min-height: 5px;
    padding: 0;
    border-radius: 50%;
    box-shadow: none;
  }
  .mobile-showcase-controls .mobile-showcase-dots button.active {
    background: var(--champagne);
  }
  .mobile-conversion-copy { gap: 7px; padding: 11px 14px 12px; }
  .mobile-conversion-copy h1 { margin: 0; font-size: 22px; line-height: 1.04; }
  .mobile-conversion-copy p { margin: 0; font-size: 11px; }
  .mobile-whatsapp-cta { min-height: 44px; }
  .mobile-value-points { display: none; }
  .mobile-more-options { min-height: 42px; margin-top: 9px; font-size: 13px; }

  .mobile-quick-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3px;
    padding: 0 8px 8px;
    background: #020806;
  }

  .mobile-quick-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #08110d;
  }
}
