:root {
  --ink: #070508;
  --muted: #695d65;
  --paper: #fffafd;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(7, 5, 8, 0.12);
  --rose: #ff1493;
  --pink: #ff1493;
  --rose-soft: #ffd5ec;
  --plum: #8f0b62;
  --smoke: #ebe5ea;
  --silver: #cfc8cf;
  --champagne: #f4c46f;
  --shadow: 0 28px 80px rgba(23, 8, 17, 0.18);
  --hero-overlay: linear-gradient(105deg, rgba(255, 250, 253, 0.97), rgba(255, 250, 253, 0.28));
}

[data-theme="dark"] {
  --ink: #fffafd;
  --muted: #cfc3cb;
  --paper: #070508;
  --panel: rgba(20, 14, 19, 0.86);
  --line: rgba(255, 250, 253, 0.14);
  --rose: #ff4db1;
  --pink: #ff4db1;
  --rose-soft: #5b123d;
  --plum: #ff94cd;
  --smoke: #171116;
  --silver: #77707a;
  --champagne: #f4c46f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --hero-overlay: linear-gradient(105deg, rgba(7, 5, 8, 0.98), rgba(7, 5, 8, 0.42));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 20, 147, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 8%, rgba(0, 0, 0, 0.08), transparent 24rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: color 220ms ease, background 220ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(24px);
}

.brand,
.header-actions,
.main-nav,
.hero-actions,
.hero-stats {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  min-width: 13rem;
}

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  background: #050505;
  box-shadow: 0 0 0 2px var(--line);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small,
.main-nav,
.hero-copy p,
.section-heading p,
.signature p,
.ai-copy p,
.payment-grid span,
.contact-grid span,
.cart-note,
footer span {
  color: var(--muted);
}

.brand small {
  margin-top: 0.2rem;
  font-size: 0.78rem;
}

.main-nav {
  gap: clamp(0.75rem, 2vw, 1.7rem);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav button:hover {
  color: var(--rose);
}

.main-nav button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.header-actions {
  gap: 0.6rem;
}

.theme-toggle,
.login-button,
.cart-pill,
.icon-pill,
.button,
.filter-row button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.theme-toggle {
  min-height: 2.75rem;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel);
  font-weight: 800;
}

.login-button {
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--panel), color-mix(in srgb, var(--rose) 9%, transparent));
  font-weight: 900;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  color: #fffaf7;
  background: #191316;
}

.icon-pill {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel);
  font-weight: 900;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: clamp(1rem, 4vw, 4.5rem);
  left: clamp(1rem, 4vw, 4.5rem);
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  animation: menuDrop 180ms ease both;
}

.mega-menu[hidden] {
  display: none;
}

.mega-menu a {
  display: block;
  padding: 0.58rem 0;
  color: var(--muted);
  font-weight: 900;
}

.mega-menu a:hover {
  color: var(--rose);
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-theme="dark"] .cart-pill {
  color: #191316;
  background: #fff8f2;
}

.cart-pill strong {
  display: grid;
  min-width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 999px;
  color: #191316;
  background: var(--champagne);
  font-size: 0.78rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(21rem, 0.88fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4.5vw, 4rem) clamp(1rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--hero-overlay);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 42rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-copy h1 {
  max-width: 100%;
  font-size: clamp(2.2rem, 3.05vw, 3.65rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 0.55rem;
  font-weight: 900;
}

.button.primary {
  color: white;
  background: var(--rose);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--rose) 32%, transparent);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--panel);
}

.button.full {
  width: 100%;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-stats span {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.9rem;
}

.hero-stats strong {
  color: var(--ink);
}

.hero-panel {
  position: relative;
  display: grid;
  min-height: clamp(22rem, 34vw, 31rem);
  align-content: end;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  color: white;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 20, 147, 0.44), transparent 11rem),
    linear-gradient(145deg, #090509, #2a071c 55%, #060406);
  box-shadow: var(--shadow);
}

.hero-panel > .panel-kicker,
.hero-panel > p,
.hero-panel-copy .panel-kicker,
.hero-panel-copy p {
  color: rgba(255, 250, 253, 0.72);
}

.hero-panel > strong,
.hero-panel-copy strong {
  display: block;
  max-width: 14ch;
  font-size: clamp(2.45rem, 5vw, 5.15rem);
  line-height: 0.95;
}

.hero-panel > p,
.hero-panel-copy p {
  max-width: 28rem;
}

.hero-panel-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.hero-model-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 4, 7, 0.74), rgba(8, 4, 7, 0.26) 54%, rgba(8, 4, 7, 0.14)),
    linear-gradient(0deg, rgba(8, 4, 7, 0.58), transparent 46%);
}

.hero-product-mix {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-mix-card {
  position: relative;
  display: grid;
  min-height: 8.8rem;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0.9rem;
  background: transparent;
}

.hero-mix-card .missing-photo {
  inset: 0.65rem;
  gap: 0.2rem;
  padding: 0.5rem;
}

.hero-mix-card .missing-photo strong {
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.hero-mix-card .missing-photo small {
  max-width: 100%;
  font-size: 0.74rem;
  line-height: 1.2;
}

.hero-mix-card .missing-photo em {
  font-size: 0.74rem;
  line-height: 1.2;
}

.hero-mix-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.55rem;
}

section:not(.hero) {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 5vw, 5rem);
}

body.product-mode main > section:not(.product-page) {
  display: none;
}

body.product-mode .product-page {
  display: block;
  min-height: calc(100vh - 5rem);
}

.signature,
.payment-grid,
.whatsapp-grid,
.confidence-grid,
.social-style-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.signature article,
.payment-grid article,
.whatsapp-grid a,
.confidence-grid article,
.social-style-grid article,
.contact-grid a,
.product-card,
.ai-widget {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(48, 28, 39, 0.08);
}

.signature article,
.payment-grid article,
.whatsapp-grid a,
.confidence-grid article,
.social-style-grid article,
.contact-grid a {
  padding: 1.25rem;
}

.signature span {
  color: var(--rose);
  font-weight: 900;
}

.signature h2 {
  margin-top: 0.8rem;
  font-size: 1.55rem;
  line-height: 1.1;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: 2rem;
}

.shop-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.search-box {
  position: relative;
  display: grid;
  width: min(100%, 27rem);
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.search-suggestions-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: 0;
  z-index: 24;
  display: grid;
  gap: 0.45rem;
  max-height: 23rem;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 0.55rem;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: menuDrop 160ms ease both;
}

.search-suggestions-panel[hidden] {
  display: none;
}

.search-suggestions-panel button {
  display: grid;
  grid-template-columns: 3.35rem 1fr;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.55rem;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.search-suggestions-panel button:hover,
.search-suggestions-panel button:focus-visible {
  background: color-mix(in srgb, var(--rose) 10%, transparent);
}

.search-suggestions-panel img {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.65rem;
  object-fit: contain;
  background: white;
}

.search-suggestions-panel span {
  display: grid;
  min-width: 0;
  gap: 0.2rem;
}

.search-suggestions-panel strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestions-panel small {
  color: var(--muted);
}

.search-box input,
.assistant-form input {
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--panel);
  outline: none;
}

.search-box input:focus,
.assistant-form input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--rose) 14%, transparent);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.filter-row button {
  min-height: 2.65rem;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  font-weight: 800;
}

.filter-row button.active {
  color: white;
  background: var(--plum);
  border-color: var(--plum);
}

.sort-box {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.sort-box select {
  min-height: 2.8rem;
  min-width: 12rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 1rem;
  color: var(--ink);
  background: var(--panel);
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-grid.is-filtering {
  opacity: 0.42;
  transform: translateY(4px);
}

.load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 31rem;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--rose) 35%, var(--line));
  box-shadow: 0 22px 52px rgba(23, 8, 17, 0.16);
}

.product-card.image-unavailable {
  display: none;
}

.product-open,
.product-title {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.product-ribbon {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(143, 11, 98, 0.24);
}

.product-title {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
}

.product-title:hover {
  color: var(--rose);
}

.product-photo {
  position: relative;
  display: grid;
  place-items: center;
  height: 15rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 253, 0.82)),
    radial-gradient(circle at 30% 18%, color-mix(in srgb, var(--rose) 26%, transparent), transparent 8rem),
    linear-gradient(145deg, var(--photo-color), var(--smoke));
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 1;
  padding: 1rem;
}

[data-theme="dark"] .product-photo img {
  mix-blend-mode: normal;
  opacity: 0.94;
}

.product-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 68%, rgba(25, 19, 22, 0.08)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.38), transparent 8rem);
  pointer-events: none;
}

.product-photo strong {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: white;
  font-size: 2rem;
  line-height: 1;
}

.real-product-frame {
  isolation: isolate;
}

.real-product-frame.fallback-image .product-main-image {
  object-fit: cover;
  padding: 0;
}

.real-product-frame.missing-image {
  background:
    radial-gradient(circle at 30% 18%, color-mix(in srgb, var(--rose) 26%, transparent), transparent 8rem),
    linear-gradient(145deg, #0a0709, #24121d);
}

.real-product-frame.has-image .product-main-image {
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.16));
}

.missing-photo {
  position: absolute;
  inset: 1rem;
  z-index: 2;
  display: none;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 0.9rem;
  color: white;
  text-align: center;
}

.missing-image .missing-photo {
  display: grid;
}

.has-image .missing-photo {
  display: none;
}

.missing-photo strong,
.missing-photo small,
.missing-photo em {
  display: block;
}

.missing-photo small {
  max-width: 14rem;
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.missing-photo em {
  color: var(--rose);
  font-style: normal;
  font-weight: 900;
}

.product-card .body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.badge {
  width: max-content;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  color: var(--rose);
  background: color-mix(in srgb, var(--rose) 12%, transparent);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-row strong {
  font-size: 1.32rem;
}

.price-row span {
  color: var(--muted);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 0 1rem 1rem;
}

.text-button {
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.ai-widget {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.assistant-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.assistant-head span {
  color: var(--muted);
}

.assistant-log {
  display: grid;
  min-height: 13rem;
  max-height: 19rem;
  align-content: start;
  gap: 0.7rem;
  overflow: auto;
}

.assistant-log p {
  width: fit-content;
  max-width: 86%;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--rose) 10%, transparent);
}

.assistant-log p.user {
  justify-self: end;
  color: white;
  background: var(--plum);
}

.assistant-form {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.7rem;
}

.ai-upload {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--panel);
  cursor: pointer;
  font-weight: 900;
}

.ai-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-status {
  color: var(--muted);
}

.product-page {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rose) 10%, transparent), transparent),
    color-mix(in srgb, var(--smoke) 65%, transparent);
}

.back-button {
  width: auto;
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.product-page-photo {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
}

.product-page-photo .dialog-photo {
  min-height: 38rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-page-photo .dialog-photo img {
  transition: transform 220ms ease;
}

.product-page-photo .dialog-photo:hover img {
  transform: scale(1.08);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.detail-gallery button {
  min-height: 5rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel);
  cursor: pointer;
}

.detail-gallery button.active {
  border-color: var(--rose);
}

.detail-gallery img {
  width: 100%;
  height: 4.5rem;
  object-fit: contain;
}

.product-page-body {
  display: grid;
  gap: 1rem;
}

.product-page-body h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.routine-wheel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.routine-wheel span {
  display: grid;
  min-height: 3.2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.detail-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.detail-trust-row span {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-page-cta {
  position: sticky;
  bottom: 1rem;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(23, 8, 17, 0.18);
}

.love-panel {
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--rose) 35%, var(--line));
  border-radius: 0.85rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--rose) 14%, transparent), var(--panel));
}

.love-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.payment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-grid strong,
.payment-grid span,
.whatsapp-grid strong,
.whatsapp-grid span,
.contact-grid strong,
.contact-grid span {
  display: block;
}

.payment-grid strong,
.whatsapp-grid strong,
.contact-grid strong {
  margin-bottom: 0.4rem;
}

.whatsapp-section {
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, #25d366 16%, transparent), transparent 24rem),
    color-mix(in srgb, var(--smoke) 42%, transparent);
}

.confidence-section {
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--rose) 12%, transparent), transparent 22rem),
    color-mix(in srgb, var(--smoke) 36%, transparent);
}

.confidence-grid strong,
.confidence-grid span,
.social-style-grid strong,
.social-style-grid span {
  display: block;
}

.confidence-grid strong,
.social-style-grid strong {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.confidence-grid span,
.social-style-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.social-style-section {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rose) 10%, transparent), transparent 45%),
    color-mix(in srgb, var(--paper) 88%, var(--smoke));
}

.social-style-grid article {
  min-height: 13rem;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--rose) 12%, var(--panel)), var(--panel)),
    var(--panel);
}

.social-style-grid span {
  width: max-content;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-grid {
  gap: 1rem;
}

.whatsapp-grid a:hover {
  border-color: color-mix(in srgb, #25d366 45%, var(--line));
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 45;
  display: none;
  min-width: 8.8rem;
  gap: 0.1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.32);
  font-weight: 900;
}

.whatsapp-float span {
  font-size: 0.72rem;
  opacity: 0.86;
}

.whatsapp-float strong {
  font-size: 0.95rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  justify-content: flex-end;
  background: rgba(10, 7, 9, 0.45);
}

.cart-drawer.open {
  display: flex;
}

.toast-stack {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.65rem;
  width: min(22rem, calc(100vw - 2rem));
  pointer-events: none;
}

.toast {
  border: 1px solid var(--line);
  border-left: 0.32rem solid var(--rose);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: var(--shadow);
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(20px);
}

.toast.info {
  border-left-color: var(--champagne);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-dialog {
  position: relative;
  width: min(62rem, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-view-dialog::backdrop {
  background: rgba(7, 5, 8, 0.58);
  backdrop-filter: blur(8px);
}

.quick-view-shell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-view-panel {
  background:
    radial-gradient(circle at 16% 12%, color-mix(in srgb, var(--rose) 13%, transparent), transparent 22rem),
    var(--paper);
}

.quick-view-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--panel);
  cursor: pointer;
  font-weight: 900;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.quick-view-grid .dialog-photo {
  min-height: 28rem;
  border-radius: 1rem;
}

.quick-view-grid h2 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.quick-price {
  display: block;
  margin: 1rem 0;
  font-size: 1.6rem;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mobile-bottom-nav {
  position: fixed;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.35rem;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
  display: grid;
  min-height: 3rem;
  place-items: center;
  border: 0;
  border-radius: 0.75rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav button:hover,
.mobile-bottom-nav a:focus-visible,
.mobile-bottom-nav button:focus-visible {
  color: white;
  background: var(--plum);
}

.cart-panel {
  position: relative;
  display: grid;
  width: min(100%, 29rem);
  max-height: 100dvh;
  grid-template-rows: auto auto auto auto auto;
  gap: 1rem;
  overflow: auto;
  padding: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 3.25rem;
}

.cart-head .icon-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.cart-head h2 {
  font-size: 1.7rem;
}

.icon-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: white;
  background: #191316;
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  max-height: 15rem;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--panel);
}

.cart-item small {
  color: var(--muted);
}

.cart-item button {
  align-self: start;
  border: 0;
  color: var(--rose);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.cart-recommendations {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rose) 10%, transparent), transparent),
    var(--panel);
}

.cart-recommendations:empty {
  display: none;
}

.order-status-panel {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border: 1px solid color-mix(in srgb, #159947 45%, var(--line));
  border-radius: 0.75rem;
  background: color-mix(in srgb, #1fc46c 10%, var(--panel));
}

.order-status-panel[hidden],
.cancel-reason-box[hidden] {
  display: none;
}

.order-status-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cancel-reason-box {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px dashed color-mix(in srgb, var(--rose) 45%, var(--line));
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--rose) 7%, transparent);
}

.mini-products {
  display: grid;
  gap: 0.55rem;
}

.mini-product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
}

.mini-product span,
.mini-product small {
  color: var(--muted);
  font-size: 0.78rem;
}

.mini-product p {
  margin: 0.15rem 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
}

.mini-product button {
  min-height: 2.35rem;
  padding: 0 0.75rem;
  border: 0;
  border-radius: 0.5rem;
  color: white;
  background: var(--rose);
  cursor: pointer;
  font-weight: 900;
}

.payment-choice {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--panel);
}

.card-payment-form {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--panel);
}

.card-payment-form[hidden] {
  display: none;
}

.card-payment-form p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.card-payment-form label,
.order-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.card-payment-form input,
.order-form input,
.order-form select,
.order-form textarea {
  min-height: 2.75rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  color: var(--ink);
  background: var(--paper);
}

.order-form textarea {
  min-height: 5rem;
  padding-top: 0.75rem;
  resize: vertical;
}

.card-payment-form small {
  color: var(--muted);
  line-height: 1.45;
}

.order-form {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem;
  border: 1px solid color-mix(in srgb, var(--rose) 35%, var(--line));
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--panel) 82%, var(--rose) 7%);
}

.order-id-preview {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.85rem;
  font-weight: 900;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 0.65rem;
}

.payment-choice label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
}

.cart-summary {
  display: grid;
  gap: 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
}

.cart-summary .total {
  font-size: 1.25rem;
}

.cart-note {
  margin: 0;
  font-size: 0.86rem;
}

.product-dialog {
  width: min(58rem, calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: 1.1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(10, 7, 9, 0.52);
}

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.dialog-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 32rem;
  background:
    radial-gradient(circle at 28% 20%, color-mix(in srgb, var(--rose) 25%, transparent), transparent 9rem),
    linear-gradient(145deg, var(--photo-color), var(--smoke));
}

.dialog-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 1;
  padding: 1.5rem;
}

.dialog-photo > strong {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: white;
  font-size: 2.4rem;
  line-height: 1;
}

.dialog-photo.fallback-image img {
  object-fit: cover;
  padding: 0;
}

.photo-list-section {
  background: color-mix(in srgb, var(--smoke) 48%, transparent);
}

.reviews-section {
  background:
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--rose) 14%, transparent), transparent 24rem),
    var(--paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: start;
}

.review-form,
.review-card,
.asset-panel {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(48, 28, 39, 0.08);
}

.review-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.review-form label,
.asset-panel label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 900;
}

.review-form input,
.review-form select,
.review-form textarea,
.asset-panel select,
.asset-panel input {
  width: 100%;
  min-height: 3rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--paper);
}

.review-form textarea {
  min-height: 8rem;
  padding-top: 0.85rem;
  resize: vertical;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  padding: 1rem;
}

.review-note,
.review-card small {
  color: var(--muted);
  line-height: 1.45;
}

.review-card > span:not(.review-stars-clean) {
  display: none;
}

.review-card .review-stars-clean {
  display: block;
  margin: 0.25rem 0 0.55rem;
  color: var(--rose);
  letter-spacing: 0;
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.photo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.photo-item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(48, 28, 39, 0.08);
}

.photo-thumb {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 253, 0.84)),
    var(--photo-color);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
}

.photo-item h3 {
  margin: 0.65rem 0 0.35rem;
}

.photo-item p {
  margin-bottom: 0.6rem;
  color: var(--muted);
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.official-link {
  color: var(--rose);
  font-weight: 900;
}

.muted-link {
  color: var(--muted);
}

.dialog-body {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
}

.detail-list article {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--panel);
}

.detail-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.login-dialog {
  width: min(29rem, calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: 1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.asset-dialog {
  width: min(42rem, calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: 1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.camera-dialog {
  width: min(42rem, calc(100% - 2rem));
  padding: 0;
  border: 0;
  border-radius: 1rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.camera-dialog::backdrop {
  background: rgba(10, 7, 9, 0.52);
}

.camera-panel {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.camera-panel h2 {
  font-size: 2rem;
}

.camera-panel video {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #090509;
  object-fit: cover;
}

.camera-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.camera-panel small {
  color: var(--muted);
}

.asset-dialog::backdrop {
  background: rgba(10, 7, 9, 0.52);
}

.asset-panel {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.asset-panel h2 {
  font-size: 2rem;
}

.asset-preview {
  display: grid;
  min-height: 13rem;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: 0.8rem;
  background: color-mix(in srgb, var(--rose) 8%, transparent);
}

.asset-preview img {
  max-height: 18rem;
  object-fit: contain;
}

.asset-filename {
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.login-dialog::backdrop {
  background: rgba(10, 7, 9, 0.52);
}

.login-dialog {
  width: min(34rem, calc(100vw - 1rem));
  max-height: min(92dvh, 48rem);
  padding: 0;
  border: 0;
  border-radius: 1.25rem;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: auto;
}

.login-panel {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.auth-tabs button {
  min-height: 2.45rem;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.auth-tabs button.active {
  color: white;
  background: var(--ink);
}

.verify-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.login-panel h2 {
  font-size: 2rem;
}

.login-panel label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.login-panel input,
.login-panel select {
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--panel);
}

.customer-orders-list {
  display: grid;
  gap: 0.75rem;
}

.customer-order-card {
  display: grid;
  gap: 0.4rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--panel);
}

.customer-order-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.customer-order-card span {
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: var(--plum);
  background: color-mix(in srgb, var(--rose) 12%, transparent);
  font-size: 0.78rem;
  font-weight: 900;
}

.customer-order-card p,
.customer-order-card small {
  margin: 0;
  color: var(--muted);
}

.login-panel small {
  color: var(--muted);
  line-height: 1.5;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

footer a {
  font-weight: 800;
  color: var(--muted);
}

footer a:hover {
  color: var(--rose);
}

.policy-page {
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.policy-hero {
  max-width: 58rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.policy-hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  letter-spacing: 0;
}

.policy-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.policy-content {
  max-width: 58rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.breadcrumb {
  max-width: 72rem;
  margin: 0 auto 1rem;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--plum);
}

.seo-product-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  max-width: 72rem;
  margin: 0 auto 2rem;
  align-items: center;
}

.seo-product-image {
  display: grid;
  min-height: 28rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.seo-product-image img {
  width: min(100%, 30rem);
  max-height: 30rem;
  object-fit: contain;
  padding: 1rem;
}

.seo-product-copy {
  display: grid;
  gap: 1rem;
}

.seo-product-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.96;
}

.seo-product-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.seo-price {
  font-size: 1.7rem;
}

.seo-actions,
.brand-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.seo-product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.seo-product-details article,
.seo-search-panel,
.seo-category-copy article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--panel);
}

.seo-search-panel {
  max-width: 72rem;
  margin: 0 auto 1.25rem;
}

.seo-search-panel p,
.seo-category-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.brand-link-cloud {
  max-width: 72rem;
  margin: 0 auto 1.25rem;
}

.brand-link-cloud a {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel);
  font-weight: 900;
}

.brand-link-cloud small {
  color: var(--muted);
}

.seo-product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 72rem;
  margin: 0 auto 2rem;
}

.seo-list-card {
  display: grid;
  gap: 0.35rem;
  min-height: 8.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 14px 35px rgba(23, 8, 17, 0.08);
}

.seo-list-card span,
.seo-list-card small {
  color: var(--muted);
}

.seo-list-card strong {
  line-height: 1.25;
}

.seo-category-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.policy-content h2 {
  margin: 1.5rem 0 0.45rem;
  font-size: 1.25rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.policy-content a {
  color: var(--rose);
  font-weight: 800;
}

.page-grid,
.page-card-grid,
.tips-grid {
  display: grid;
  gap: 1rem;
}

.page-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.page-card-grid,
.tips-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card,
.tip-card,
.track-panel {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(48, 28, 39, 0.08);
}

.page-card strong,
.tip-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.page-card p,
.tip-card p,
.track-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.premium-form {
  display: grid;
  gap: 0.85rem;
}

.premium-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
  min-height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0 0.85rem;
  color: var(--ink);
  background: var(--panel);
}

.premium-form textarea {
  min-height: 7rem;
  padding-top: 0.75rem;
}

.status-steps {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.status-steps span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-weight: 900;
}

.status-steps span::before {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

@media (max-width: 900px) {
  .page-grid,
  .page-card-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

.admin-body {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 20, 147, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--paper), color-mix(in srgb, var(--smoke) 58%, var(--paper)));
}

.admin-shell {
  padding: clamp(1rem, 4vw, 3rem);
}

.admin-hero,
.admin-board,
.manual-order,
.admin-order,
.admin-stats article {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(48, 28, 39, 0.08);
}

.admin-hero {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 24rem);
  gap: 1rem;
  align-items: end;
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.admin-hero h1 {
  margin: 0.4rem 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.admin-login,
.manual-order form,
.admin-toolbar {
  display: grid;
  gap: 0.8rem;
}

.admin-login label,
.admin-toolbar label,
.manual-order label,
.admin-order label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.admin-login input,
.admin-toolbar input,
.admin-toolbar select,
.manual-order input,
.manual-order textarea,
.manual-order select,
.admin-order input,
.admin-order select {
  min-height: 2.8rem;
  padding: 0 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  color: var(--ink);
  background: var(--panel);
}

.manual-order textarea {
  padding-top: 0.75rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.admin-stats article {
  padding: 1rem;
}

.admin-stats span {
  color: var(--muted);
  font-weight: 800;
}

.admin-stats strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.6rem;
}

.admin-stats small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 800;
}

.shopify-admin-note {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 235, 247, 0.86));
  box-shadow: 0 16px 42px rgba(48, 28, 39, 0.08);
}

.shopify-admin-note h2 {
  margin: 0.15rem 0 0.35rem;
}

.shopify-admin-note p {
  max-width: 58rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-board {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.admin-toolbar {
  grid-template-columns: 1fr minmax(12rem, 16rem) auto;
  align-items: end;
  margin-bottom: 1rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: 1rem;
  align-items: start;
}

.admin-orders {
  display: grid;
  gap: 0.85rem;
}

.admin-order,
.manual-order {
  padding: 1rem;
}

.admin-order-head,
.admin-order-meta,
.admin-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.admin-order-head span,
.admin-order p,
.admin-order-meta span,
.manual-order p {
  color: var(--muted);
}

.admin-order-actions a,
.admin-order-actions button {
  min-height: 2.5rem;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel);
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 900px) {
  .admin-hero,
  .admin-toolbar,
  .admin-layout,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .shopify-admin-note {
    align-items: stretch;
    flex-direction: column;
  }
}

.seo-cloud {
  max-width: 1180px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid var(--line);
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .hero,
  .product-grid,
  .whatsapp-grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    align-items: flex-end;
    flex-direction: column;
  }

  .hero,
  .product-grid,
  .photo-list,
  .ai-section,
  .product-page-grid,
  .reviews-grid,
  .payment-grid,
  .whatsapp-grid,
  .confidence-grid,
  .social-style-grid,
  .contact-section,
  .contact-grid,
  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-panel {
    min-height: 22rem;
  }

  .shop-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .assistant-form {
    grid-template-columns: 1fr;
  }

  .ai-upload {
    width: 100%;
  }

  .product-page-photo {
    position: static;
  }

  .product-page-photo .dialog-photo {
    min-height: 24rem;
  }

  .routine-wheel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-cta {
    right: 0.85rem;
    bottom: 0.75rem;
    left: 0.85rem;
    grid-template-columns: 1fr;
  }

  .seo-product-layout,
  .seo-product-details,
  .seo-product-list,
  .seo-category-copy {
    grid-template-columns: 1fr;
  }

  .seo-product-image {
    min-height: 18rem;
  }

  .hero-product-mix,
  .review-list {
    grid-template-columns: 1fr;
  }

  .photo-item {
    grid-template-columns: 1fr;
  }

  .dialog-photo {
    min-height: 18rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 0.75rem;
    min-width: 7.5rem;
  }

  .login-dialog {
    width: calc(100vw - 1rem);
    max-height: 88dvh;
    border-radius: 1rem;
  }

  .login-panel {
    gap: 0.8rem;
    padding: 1.2rem;
  }

  .login-panel h2 {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
    line-height: 1;
  }

  .verify-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 15px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand strong {
    font-size: 1rem;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.45rem;
  }

  .theme-toggle,
  .login-button,
  .user-orders-button,
  .cart-pill {
    width: 100%;
    min-height: 2.6rem;
    justify-content: center;
    padding: 0 0.45rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    min-height: auto;
    padding: 1.5rem 0.85rem 2rem;
  }

  h1,
  .hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
    line-height: 0.96;
  }

  .hero-actions,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  section:not(.hero) {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .product-grid,
  .photo-list,
  .ai-section,
  .product-page-grid,
  .reviews-grid,
  .payment-grid,
  .whatsapp-grid,
  .confidence-grid,
  .social-style-grid,
  .contact-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-width: 0;
  }

  .cart-panel {
    width: min(100vw, 100%);
    padding: 1rem;
  }

  .payment-choice label {
    align-items: flex-start;
  }
}

/* Luxury launch polish */
.luxury-nav {
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  backdrop-filter: blur(22px);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.luxury-hero {
  overflow: hidden;
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--rose) 58%, transparent), transparent 45%),
    radial-gradient(circle at 76% 22%, color-mix(in srgb, var(--gold) 20%, transparent), transparent 28%),
    linear-gradient(135deg, var(--panel), color-mix(in srgb, var(--soft) 78%, var(--panel)));
}

[data-theme="dark"] .luxury-hero {
  background:
    linear-gradient(115deg, rgba(70, 0, 38, 0.55), transparent 46%),
    radial-gradient(circle at 78% 18%, rgba(215, 181, 119, 0.14), transparent 28%),
    linear-gradient(135deg, #060306, #140710 62%, #080507);
}

.hero-copy h1 {
  max-width: 13ch;
  letter-spacing: 0;
}

.hero-copy .lede {
  max-width: 42rem;
}

.hero-actions,
.section-actions,
.social-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-badges span,
.best-for-labels span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel) 78%, transparent);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-panel {
  box-shadow: 0 2rem 5rem rgba(12, 5, 9, 0.18);
}

.hero-beauty-board {
  overflow: hidden;
  border-radius: 1.6rem;
  background: #0b0609;
}

.hero-product-mix {
  align-items: stretch;
}

.hero-mix-card {
  min-height: 10rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-mix-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.15rem;
  filter: drop-shadow(0 1.3rem 1.2rem rgba(0, 0, 0, 0.34));
}

.trust-strip,
.brand-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 5rem);
}

.trust-strip span,
.brand-carousel span {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel) 82%, transparent);
  box-shadow: 0 1rem 2.5rem rgba(12, 5, 9, 0.05);
  font-weight: 900;
}

.center-heading {
  max-width: 54rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.center-heading h2 {
  margin-bottom: 0.5rem;
}

.category-showcase,
.brand-showcase,
.rewards-section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.category-grid,
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-tile,
.reward-card {
  display: grid;
  gap: 0.75rem;
  min-height: 12rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.35rem;
  color: var(--ink);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--rose) 28%, var(--panel)), var(--panel) 58%),
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--pink) 7%, transparent));
  text-decoration: none;
  box-shadow: 0 1.2rem 3rem rgba(12, 5, 9, 0.07);
  transition: 180ms ease;
}

.category-tile:hover,
.reward-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--pink) 45%, var(--line));
}

.category-tile strong,
.reward-card strong {
  font-size: 1.25rem;
}

.category-tile span,
.reward-card p {
  color: var(--muted);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.feature-tabs a,
.text-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--panel);
  text-decoration: none;
  font-weight: 900;
}

.card-meta-row,
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.wishlist-button {
  width: auto;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pink);
  background: var(--panel);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
}

.wishlist-button.saved {
  color: white;
  border-color: var(--rose);
  background: var(--rose);
}

.rating-row span,
.review-stars-clean {
  color: #c79a38;
  letter-spacing: 0;
}

.rating-row span {
  font-size: 0;
}

.rating-row span::before {
  content: "\2605\2605\2605\2605\2605";
  font-size: 0.9rem;
}

.rating-row small {
  color: var(--muted);
  font-weight: 900;
}

.best-for-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card .body {
  flex: 1;
}

.product-photo,
.photo-thumb {
  background: linear-gradient(145deg, color-mix(in srgb, var(--photo-color) 24%, var(--panel)), var(--panel));
}

.product-main-image,
.photo-thumb img {
  object-fit: contain;
  filter: drop-shadow(0 1rem 1.2rem rgba(0, 0, 0, 0.16));
}

.image-unavailable {
  display: none;
}

.missing-photo em {
  display: none;
}

.detail-rating {
  max-width: 25rem;
  margin: 1rem 0;
}

.related-products {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--rose) 24%, var(--panel));
}

.related-products > div {
  display: grid;
  gap: 0.55rem;
}

.related-products button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.8rem;
  color: var(--ink);
  background: var(--panel);
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.related-products button span {
  color: var(--pink);
  white-space: nowrap;
}

.analysis-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.analysis-flow span {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem;
  color: var(--muted);
  background: var(--panel);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .trust-strip,
  .brand-carousel,
  .category-grid,
  .rewards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 4.8rem;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
    max-width: 100vw;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .brand {
    width: 100%;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 0.85rem);
    gap: 0.55rem;
  }

  .theme-toggle,
  .login-button,
  .cart-pill {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
    white-space: nowrap;
  }

  .cart-pill {
    grid-column: 1 / -1;
  }

  .icon-pill {
    width: 100%;
    min-width: 0;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
    font-size: 0.9rem;
  }

  .mega-menu {
    top: calc(100% + 0.25rem);
    right: 0.7rem;
    left: 0.7rem;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 9rem);
    overflow: auto;
  }

  .sort-box select {
    width: 100%;
  }

  .quick-view-grid {
    grid-template-columns: 1fr;
  }

  .quick-view-grid .dialog-photo {
    min-height: 19rem;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-nav {
    display: grid;
  }

  .toast-stack {
    right: 0.7rem;
    bottom: 4.7rem;
    left: 0.7rem;
    width: auto;
  }

  .trust-strip,
  .brand-carousel,
  .category-grid,
  .rewards-grid,
  .analysis-flow {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .luxury-hero {
    padding-top: 1.25rem;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }
}

/* Final storefront fixes */
.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.trust-strip article {
  display: grid;
  min-width: 0;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--panel) 90%, transparent);
  box-shadow: 0 1rem 2.5rem rgba(12, 5, 9, 0.05);
}

.trust-strip article strong,
.trust-strip article span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.trust-strip article span {
  color: var(--muted);
  line-height: 1.45;
}

.brand-carousel button {
  min-height: 4.2rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  color: var(--muted);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: 0 1rem 2.5rem rgba(12, 5, 9, 0.05);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: 180ms ease;
}

.brand-carousel button:hover,
.brand-carousel button:focus-visible {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--rose) 45%, var(--line));
  box-shadow: 0 1.2rem 3rem color-mix(in srgb, var(--rose) 16%, transparent);
  transform: translateY(-3px);
}

.hero-product-mix {
  align-items: end;
  gap: 0.9rem;
}

.hero-mix-card {
  min-height: 10rem;
  overflow: visible;
  border: 0;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-mix-card::after {
  align-self: end;
  width: 76%;
  height: 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  content: "";
  filter: blur(12px);
  transform: translateY(-0.25rem);
}

.hero-mix-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 11rem;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 1.4rem 1rem rgba(0, 0, 0, 0.35));
  mix-blend-mode: normal;
}

.hero-mix-card.has-image .missing-photo {
  display: none;
}

.hero-beauty-board .hero-mix-card .missing-photo {
  display: none;
}

@media (max-width: 1080px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6vw, 2.25rem);
    line-height: 1.02;
    white-space: nowrap;
  }

  .hero-copy p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 8.25rem;
    min-height: 2.65rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
  }

  .hero-panel {
    min-height: 13.5rem;
    gap: 0.45rem;
    padding: 0.9rem;
  }

  .hero-model-photo {
    object-position: 58% center;
  }

  .hero-panel > strong,
  .hero-panel-copy strong {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero-panel > p,
  .hero-panel-copy p {
    display: none;
  }

  .hero-product-mix {
    display: none;
  }
}
