@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/Poppins-Regular.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/Poppins-Medium.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/Poppins-SemiBold.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("assets/fonts/Poppins-Bold.otf") format("opentype");
}

:root {
  --brand-teal: #004c6d;
  --brand-sand: #f5e9da;
  --brand-orange: #e36414;
  --brand-orange-light: #ff7f32;
  --brand-blue: #5fa8d3;
  --ember: var(--brand-orange);
  --ember-hot: var(--brand-orange-light);
  --petrol: var(--brand-teal);
  --petrol-deep: #003a53;
  --aqua: var(--brand-blue);
  --cherry: #a20f2d;
  --grape: #3c173f;
  --cacao: #8a5c49;
  --blue: var(--brand-blue);
  --ink: #0f1214;
  --muted: #665d55;
  --paper: #fffdf9;
  --cream: var(--brand-sand);
  --line: rgba(0, 76, 109, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 76, 109, 0.16);
  --radius: 8px;
  --speed: 260ms;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(245, 233, 218, 0.9)),
    var(--paper);
  color: var(--ink);
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  transition: transform var(--speed) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light), var(--brand-blue));
}

.topline {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 18px;
  background: var(--brand-teal);
  color: var(--white);
  font-size: 0.78rem;
}

.topline span,
.topline a {
  opacity: 0.9;
}

.topline a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 22px;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(245, 233, 218, 0.2);
  background: rgba(0, 76, 109, 0.78);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background var(--speed) ease, min-height var(--speed) ease, box-shadow var(--speed) ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(20, 18, 16, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  padding: 7px;
  background: var(--brand-orange);
  object-fit: contain;
  border-radius: 50%;
  border: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: currentColor;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.7rem;
  opacity: 0.68;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav a {
  position: relative;
  font-size: 0.86rem;
  opacity: 0.78;
  transition: opacity var(--speed) ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--ember);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn,
.icon-button,
.filter-chip,
.mode-button,
.fit-tab {
  border: 0;
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 12px 17px;
  font-weight: 760;
  isolation: isolate;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: translateX(-120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  animation: sheen 850ms ease;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(233, 91, 10, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.7);
}

.icon-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: transparent;
  color: currentColor;
  transition: background var(--speed) ease, transform var(--speed) ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: rgba(233, 91, 10, 0.12);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  align-items: center;
  margin-top: -76px;
  padding: 156px 36px 90px;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  z-index: 1;
  width: 520px;
  height: 520px;
  background: url("assets/brand/elyve-symbol.png") center / contain no-repeat;
  content: "";
  opacity: 0.11;
  transform: rotate(-10deg);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
  will-change: transform;
}

.hero-photo-main {
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-photo-float {
  display: none;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 76, 109, 0.88), rgba(0, 58, 83, 0.52) 48%, rgba(15, 18, 20, 0.16)),
    linear-gradient(0deg, rgba(0, 58, 83, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--ember-hot);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 6.35rem;
  font-weight: 500;
  line-height: 0.88;
}

.hero h1 span,
.hero h1 small {
  display: block;
}

.hero h1 small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.6rem;
  font-weight: 620;
  line-height: 1.1;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  position: absolute;
  right: 36px;
  bottom: 40px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-width: 116px;
  padding: 16px;
  background: rgba(20, 18, 16, 0.22);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 1.45rem;
}

.hero-metrics span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: cue 1.4s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--brand-teal);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 780;
  text-transform: uppercase;
}

.ticker span:nth-child(3n + 1) {
  color: var(--ember-hot);
}

.ticker span:nth-child(3n + 2) {
  color: var(--aqua);
}

.section {
  padding: 96px 36px;
}

.section-heading,
.intro-grid,
.essence-section,
.builder-grid,
.commerce-grid,
.guide-section,
.final-cta,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2,
.intro-grid h2,
.essence-copy h2,
.guide-copy h2,
.final-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.section-heading p,
.intro-grid p,
.essence-copy p,
.guide-copy p,
.final-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.82)),
    url("assets/brand/elyve-pattern-watermark.png") right -120px top 40px / 420px auto no-repeat,
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 52px;
  align-items: start;
}

.brand-notes {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.brand-notes div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.brand-notes span {
  color: var(--ember);
  font-weight: 840;
}

.brand-notes strong {
  font-size: 1.15rem;
}

.brand-notes p {
  grid-column: 2;
  margin: -2px 0 0;
}

.identity-strip {
  display: grid;
  width: min(1180px, 100%);
  align-items: center;
  gap: 22px;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  margin: 48px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 233, 218, 0.78);
  padding: 18px;
  box-shadow: 0 18px 42px rgba(0, 76, 109, 0.08);
}

.identity-strip img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.identity-strip span,
.identity-strip strong {
  display: block;
}

.identity-strip div > span {
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-strip strong {
  margin-top: 4px;
  color: var(--brand-teal);
  font-size: 1.25rem;
}

.identity-swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.identity-swatches span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  background: var(--white);
  padding: 7px 9px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.identity-swatches span::before {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 76, 109, 0.16);
  border-radius: 50%;
  background: var(--swatch);
  content: "";
}

.collection-section {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-chip,
.fit-tab {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.72);
  padding: 9px 12px;
  font-weight: 760;
  transition: background var(--speed) ease, color var(--speed) ease, border-color var(--speed) ease, transform var(--speed) ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.fit-tab:hover,
.fit-tab:focus-visible {
  transform: translateY(-1px);
}

.filter-chip.is-active,
.fit-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.product-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 18, 16, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 12px 34px rgba(20, 18, 16, 0.07);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, opacity var(--speed) ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card.is-sold-out .product-media img {
  filter: grayscale(0.82);
  opacity: 0.58;
}

.product-card.is-sold-out .product-media::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
  content: "Esgotado";
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(20, 18, 16, 0.15);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: scale(1.05);
}

.badge-stack {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge-stack span {
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.88);
  padding: 6px 8px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 780;
  backdrop-filter: blur(10px);
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-price {
  color: var(--ink);
  font-weight: 840;
}

.product-commerce,
.product-confidence {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.product-commerce span,
.product-confidence {
  border-radius: var(--radius);
  background: rgba(0, 76, 109, 0.08);
  padding: 6px 8px;
  color: var(--petrol);
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1.25;
}

.product-commerce span:first-child {
  background: rgba(233, 91, 10, 0.12);
  color: var(--ember);
}

.product-commerce [data-stock-label] {
  background: rgba(0, 76, 109, 0.1);
  color: var(--petrol);
}

.product-body p {
  min-height: 68px;
  margin: 12px 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-actions {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.swatches,
.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}

.swatch {
  width: 26px;
  height: 26px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--color);
  box-shadow: 0 0 0 1px rgba(20, 18, 16, 0.2);
  cursor: pointer;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease;
}

.swatch.is-selected {
  box-shadow: 0 0 0 2px var(--ember);
  transform: scale(1.06);
}

.size-button {
  min-width: 34px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 780;
}

.size-button.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.add-button {
  width: 100%;
}

.look-section {
  background: var(--paper);
}

.look-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.look-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(20, 18, 16, 0.08);
}

.look-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--cream);
}

.look-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease;
}

.look-card:hover .look-media img,
.look-card:focus-within .look-media img {
  transform: scale(1.05);
}

.look-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: var(--radius);
  background: var(--ember);
  color: var(--white);
  padding: 7px 9px;
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
}

.look-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.look-body h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.05;
}

.look-body p,
.look-body small {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.look-products,
.result-products,
.detail-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.look-products button,
.result-products button,
.detail-chip-row span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 8px 9px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 780;
}

.finder-section {
  background:
    linear-gradient(135deg, rgba(0, 76, 109, 0.08), rgba(255, 127, 50, 0.12)),
    var(--cream);
}

.finder-shell {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.finder-copy,
.finder-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.82);
  padding: 28px;
  box-shadow: 0 18px 46px rgba(20, 18, 16, 0.08);
}

.finder-copy {
  display: grid;
  align-content: center;
}

.finder-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.finder-copy p,
.finder-result p {
  color: var(--muted);
  line-height: 1.7;
}

.finder-form {
  display: grid;
  gap: 16px;
}

.finder-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.finder-form legend {
  margin-bottom: 8px;
  color: var(--petrol);
  font-size: 0.8rem;
  font-weight: 840;
  text-transform: uppercase;
}

.finder-form label {
  display: grid;
  cursor: pointer;
}

.finder-form input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.finder-form span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
  font-weight: 780;
  transition: background var(--speed) ease, color var(--speed) ease, border-color var(--speed) ease;
}

.finder-form input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.finder-result {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  border-radius: var(--radius);
  background: var(--petrol);
  color: var(--white);
  padding: 20px;
}

.finder-result > span {
  color: var(--brand-orange-light);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.finder-result h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.05;
}

.finder-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.result-products button {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.essence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: center;
}

.color-story {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.color-story span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.color-story span::before {
  width: 34px;
  height: 18px;
  border-radius: var(--radius);
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px rgba(20, 18, 16, 0.12);
  content: "";
}

.essence-stage {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.essence-stage img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.essence-stage img:first-child {
  grid-row: span 2;
}

.builder-section {
  background: var(--ink);
  color: var(--white);
}

.builder-section .section-heading p,
.builder-section .section-heading h2 + p {
  color: rgba(255, 255, 255, 0.7);
}

.builder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
}

.mode-panel {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mode-button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 16px;
  font-weight: 800;
  text-align: left;
  transition: background var(--speed) ease, transform var(--speed) ease, border-color var(--speed) ease;
}

.mode-button span {
  color: var(--ember-hot);
}

.mode-button.is-active {
  border-color: rgba(233, 91, 10, 0.8);
  background: rgba(233, 91, 10, 0.18);
}

.mode-button:hover,
.mode-button:focus-visible {
  transform: translateX(4px);
}

.mode-result {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.mode-hero {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  min-height: 360px;
}

.mode-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.mode-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.mode-copy h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.mode-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.mode-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mode-products button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 9px 10px;
  cursor: pointer;
  font-weight: 780;
}

.detail-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.detail-tile {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.76);
  padding: 24px;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease;
}

.detail-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(20, 18, 16, 0.1);
}

.detail-tile svg {
  width: 34px;
  height: 34px;
  color: var(--ember);
}

.detail-tile h3 {
  margin: 28px 0 10px;
}

.detail-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.commerce-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 76, 109, 0.96), rgba(0, 58, 83, 0.96)),
    var(--petrol);
  color: var(--white);
}

.commerce-section .section-heading p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
}

.commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 16px;
}

.pix-card,
.commerce-panel,
.commerce-flow {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 52px rgba(0, 22, 34, 0.24);
}

.pix-card {
  display: grid;
  grid-row: span 2;
  gap: 20px;
  align-content: start;
  background:
    linear-gradient(160deg, rgba(255, 127, 50, 0.26), rgba(95, 168, 211, 0.1)),
    rgba(255, 255, 255, 0.08);
  padding: 26px;
}

.pix-card h3,
.commerce-panel h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.pix-card p,
.pix-card small,
.commerce-panel p,
.commerce-flow li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.pix-card p {
  margin: 0;
}

.pix-card .btn-outline {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--petrol);
}

.pix-status {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 800;
}

.pix-visual {
  display: grid;
  min-height: 330px;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 233, 218, 0.92));
  padding: 24px;
}

.pix-qr-image {
  width: min(280px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-shell {
  position: relative;
  display: grid;
  width: min(280px, 100%);
  aspect-ratio: 1;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  padding: 18px;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 76, 109, 0.1);
}

.qr-shell span {
  border-radius: 2px;
  background: rgba(0, 76, 109, 0.14);
}

.qr-shell span:nth-child(1),
.qr-shell span:nth-child(2),
.qr-shell span:nth-child(4),
.qr-shell span:nth-child(5),
.qr-shell span:nth-child(7),
.qr-shell span:nth-child(9),
.qr-shell span:nth-child(11),
.qr-shell span:nth-child(13),
.qr-shell span:nth-child(14),
.qr-shell span:nth-child(17),
.qr-shell span:nth-child(19),
.qr-shell span:nth-child(20),
.qr-shell span:nth-child(21),
.qr-shell span:nth-child(23),
.qr-shell span:nth-child(25) {
  background: var(--petrol);
}

.qr-shell.is-pending span:nth-child(3n) {
  background: var(--ember);
}

.qr-shell img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  padding: 12px;
  border-radius: 50%;
  background: var(--brand-orange);
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.pix-key {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(0, 22, 34, 0.2);
  padding: 14px;
}

.pix-key span {
  color: var(--brand-orange-light);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.pix-key strong {
  word-break: break-word;
}

.commerce-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.method-list {
  display: grid;
  gap: 10px;
}

.method-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.method-card span,
.shipping-tags span {
  width: fit-content;
  border-radius: var(--radius);
  background: rgba(255, 127, 50, 0.18);
  padding: 6px 8px;
  color: var(--brand-orange-light);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.method-card strong {
  font-size: 1.05rem;
}

.method-card p {
  margin: 0;
}

.shipping-panel {
  background:
    linear-gradient(135deg, rgba(95, 168, 211, 0.16), rgba(255, 127, 50, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.shipping-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cep-preview {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 22, 34, 0.18);
  padding: 14px;
}

.cep-preview label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 780;
}

.cep-preview input {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 12px;
}

.cep-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.5;
}

.commerce-flow {
  grid-column: 1 / -1;
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
}

.commerce-flow .section-kicker {
  margin-bottom: 12px;
}

.commerce-flow ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: commerce-flow;
}

.commerce-flow li {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 18px;
  color: var(--muted);
  counter-increment: commerce-flow;
}

.commerce-flow li::before {
  display: block;
  margin-bottom: 12px;
  color: var(--ember);
  font-weight: 840;
  content: "0" counter(commerce-flow);
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.fit-guide {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 18px 46px rgba(20, 18, 16, 0.08);
}

.fit-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.fit-output {
  min-height: 132px;
  margin-top: 18px;
  border-radius: var(--radius);
  background: var(--cream);
  padding: 22px;
}

.fit-output strong {
  display: block;
  margin-bottom: 8px;
}

.fit-output p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.founder-section {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.92), rgba(245, 233, 218, 0.72)),
    url("assets/brand/elyve-pattern-watermark.png") left -120px center / 380px auto no-repeat;
}

.founder-card {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.86);
  padding: 28px;
  box-shadow: 0 18px 46px rgba(20, 18, 16, 0.08);
}

.founder-mark {
  display: grid;
  min-height: 220px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ember);
}

.founder-mark img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.founder-card h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.founder-card p {
  color: var(--muted);
  line-height: 1.75;
}

.founder-notes,
.concierge-grid,
.proof-grid {
  display: grid;
  gap: 14px;
}

.founder-notes {
  display: flex;
  flex-wrap: wrap;
}

.founder-notes span {
  border-radius: var(--radius);
  background: var(--cream);
  padding: 9px 10px;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 780;
}

.concierge-section {
  background: var(--paper);
}

.concierge-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concierge-card {
  display: grid;
  gap: 16px;
  min-height: 190px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  box-shadow: 0 14px 36px rgba(20, 18, 16, 0.06);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
}

.concierge-card:hover,
.concierge-card:focus-visible {
  border-color: rgba(233, 91, 10, 0.44);
  box-shadow: 0 22px 52px rgba(20, 18, 16, 0.1);
  transform: translateY(-4px);
}

.concierge-card span {
  width: fit-content;
  border-radius: var(--radius);
  background: rgba(233, 91, 10, 0.12);
  padding: 7px 9px;
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 840;
  text-transform: uppercase;
}

.concierge-card strong {
  font-size: 1.15rem;
  line-height: 1.2;
}

.concierge-card small {
  color: var(--muted);
  line-height: 1.4;
}

.proof-section {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.proof-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(20, 18, 16, 0.07);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
}

.proof-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.proof-card span {
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.social-section {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.social-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.social-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  color: var(--white);
  text-align: left;
}

.social-card:nth-child(1),
.social-card:nth-child(5) {
  grid-row: span 2;
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease, filter 800ms ease;
}

.social-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 18, 16, 0.72), transparent 58%);
  content: "";
}

.social-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  font-weight: 760;
  line-height: 1.35;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--speed) ease, opacity var(--speed) ease;
}

.social-card:hover img,
.social-card:focus-visible img {
  filter: saturate(1.12);
  transform: scale(1.06);
}

.social-card:hover span,
.social-card:focus-visible span {
  transform: translateY(0);
  opacity: 1;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 38px;
  align-items: stretch;
  padding: 96px 0;
}

.final-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
}

.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-copy {
  display: grid;
  align-content: center;
  padding: 42px;
  border-radius: var(--radius);
  background: var(--petrol-deep);
  color: var(--white);
}

.final-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.quick-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.quick-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 760;
}

.quick-form input,
.quick-form select {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 14px;
}

.quick-form option {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 36px 48px;
  border-top: 1px solid var(--line);
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  padding: 8px;
  background: var(--brand-orange);
  border-radius: 50%;
  object-fit: contain;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
}

.site-footer nav {
  flex-wrap: wrap;
}

.mobile-mini-cart {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 85;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 76, 109, 0.95);
  padding: 8px;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 22, 34, 0.28);
  backdrop-filter: blur(18px);
  transform: translateY(calc(100% + 22px));
  transition: transform var(--speed) ease;
}

.mobile-mini-cart.is-visible {
  transform: translateY(0);
}

.mobile-mini-cart button,
.mobile-mini-cart a {
  border: 0;
  border-radius: var(--radius);
  color: inherit;
  font-weight: 800;
}

.mobile-mini-cart button {
  display: grid;
  gap: 2px;
  background: transparent;
  padding: 4px 8px;
  text-align: left;
}

.mobile-mini-cart span,
.mobile-mini-cart small {
  display: block;
}

.mobile-mini-cart small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
}

.mobile-mini-cart a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ember);
  padding: 0 16px;
}

.floating-order {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(233, 91, 10, 0.34);
  cursor: pointer;
  transition: transform var(--speed) ease;
}

.floating-order:hover,
.floating-order:focus-visible {
  transform: translateY(-3px) scale(1.02);
}

.floating-order span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--petrol);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 20px;
}

.order-drawer,
.lightbox,
.product-detail {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
}

.order-drawer.is-open,
.lightbox.is-open,
.product-detail.is-open {
  pointer-events: auto;
}

.drawer-backdrop,
.lightbox-backdrop,
.detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0);
  transition: background var(--speed) ease;
}

.order-drawer.is-open .drawer-backdrop,
.lightbox.is-open .lightbox-backdrop,
.product-detail.is-open .detail-backdrop {
  background: rgba(20, 18, 16, 0.58);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(430px, 100%);
  height: 100%;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  background: var(--paper);
  padding: 24px;
  box-shadow: -30px 0 70px rgba(20, 18, 16, 0.22);
  transform: translateX(105%);
  transition: transform 360ms ease;
}

.order-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-panel header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.drawer-panel h2 {
  margin: 0;
}

.drawer-checkout {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 14px;
}

.drawer-checkout label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 780;
}

.drawer-checkout input,
.drawer-checkout select {
  min-height: 42px;
  border: 1px solid rgba(0, 76, 109, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
}

.drawer-checkout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.drawer-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.empty-order {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.drawer-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.drawer-item img {
  width: 76px;
  height: 86px;
  border-radius: var(--radius);
  object-fit: cover;
}

.drawer-item strong,
.drawer-item span {
  display: block;
}

.drawer-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.remove-item {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
}

.drawer-whatsapp {
  width: 100%;
}

.product-detail-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -48%) scale(0.98);
  transition: opacity var(--speed) ease, transform var(--speed) ease;
}

.product-detail.is-open .product-detail-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-detail-panel > .icon-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 250, 244, 0.86);
}

#productDetailContent {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
}

.product-detail-media {
  position: relative;
  min-height: 560px;
  background: var(--cream);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-media span {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: var(--radius);
  background: var(--ember);
  color: var(--white);
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 840;
  text-transform: uppercase;
}

.product-detail-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 36px;
}

.product-detail-copy h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 0.96;
}

.product-detail-copy > strong {
  color: var(--ember);
  font-size: 1.2rem;
}

.product-detail-copy > p,
.detail-spec-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.detail-spec-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px;
}

.detail-spec-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--petrol);
  font-size: 0.7rem;
  font-weight: 840;
  text-transform: uppercase;
}

.color-detail-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.color-detail-row span::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(20, 18, 16, 0.16);
  content: "";
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lightbox-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.54fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -48%) scale(0.98);
  transition: opacity var(--speed) ease, transform var(--speed) ease;
}

.lightbox.is-open .lightbox-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.lightbox-panel > .icon-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 250, 244, 0.85);
}

.lightbox-panel img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 32px);
  object-fit: cover;
}

.lightbox-panel div {
  display: grid;
  align-content: center;
  padding: 34px;
}

.lightbox-panel h2 {
  margin: 0 0 12px;
}

.lightbox-panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sheen {
  to {
    transform: translateX(120%);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05) translate3d(1.4%, -1.2%, 0);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@media (min-width: 1080px) {
  .hero-photo-float {
    display: block;
    border: 8px solid rgba(255, 250, 244, 0.74);
    border-radius: var(--radius);
  }

  .hero-photo-float.one {
    right: 9%;
    bottom: 18%;
    width: 230px;
    height: 288px;
    animation: floatOne 8s ease-in-out infinite alternate;
  }

  .hero-photo-float.two {
    right: 23%;
    top: 18%;
    width: 190px;
    height: 310px;
    animation: floatTwo 9s ease-in-out infinite alternate;
  }

  @keyframes floatOne {
    to {
      transform: translateY(-14px) rotate(1.5deg);
    }
  }

  @keyframes floatTwo {
    to {
      transform: translateY(18px) rotate(-1.5deg);
    }
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(20, 18, 16, 0.16);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 90svh;
    margin-top: -70px;
    padding: 138px 22px 88px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero h1 small {
    font-size: 1.25rem;
  }

  .hero-metrics {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .hero-metrics div {
    min-width: 0;
    padding: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 72px 20px;
  }

  .section-heading,
  .intro-grid,
  .identity-strip,
  .essence-section,
  .builder-grid,
  .commerce-grid,
  .guide-section,
  .finder-shell,
  .founder-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .identity-swatches {
    justify-content: flex-start;
  }

  .product-grid,
  .detail-grid,
  .look-grid,
  .concierge-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #productDetailContent {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 420px;
  }

  .builder-grid {
    gap: 16px;
  }

  .pix-card {
    grid-row: auto;
  }

  .commerce-flow ol {
    grid-template-columns: 1fr;
  }

  .mode-hero {
    grid-template-columns: 1fr;
  }

  .mode-hero img {
    min-height: 320px;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .final-cta {
    padding: 72px 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 12px;
    min-height: auto;
    overflow: visible;
    padding: 7px 10px;
    text-align: center;
    white-space: nowrap;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 36px;
  }

  .section-heading h2,
  .intro-grid h2,
  .essence-copy h2,
  .guide-copy h2,
  .final-copy h2 {
    font-size: 2.15rem;
  }

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

  .collection-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .product-card {
    box-shadow: 0 10px 24px rgba(20, 18, 16, 0.08);
  }

  .product-card:hover,
  .product-card:focus-within {
    transform: translateY(-2px);
  }

  .product-media {
    aspect-ratio: 1 / 1.12;
  }

  .badge-stack {
    top: 8px;
    left: 8px;
    gap: 4px;
  }

  .badge-stack span {
    padding: 4px 6px;
    font-size: 0.56rem;
    line-height: 1;
  }

  .badge-stack span:nth-child(n + 2) {
    display: none;
  }

  .product-body {
    padding: 9px;
  }

  .product-body h3 {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.3em;
    font-size: 0.84rem;
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-meta {
    display: grid;
    gap: 2px;
    margin-top: 6px;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .product-commerce {
    gap: 4px;
    margin-top: 6px;
  }

  .product-commerce span {
    padding: 4px 5px;
    font-size: 0.56rem;
  }

  .product-commerce span:nth-child(2),
  .product-confidence {
    display: none;
  }

  .product-body p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2.7em;
    margin: 7px 0 8px;
    font-size: 0.67rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .swatches,
  .size-row {
    gap: 4px;
    margin: 7px 0;
  }

  .swatch {
    width: 19px;
    height: 19px;
    border-width: 1px;
  }

  .size-button {
    min-width: 26px;
    min-height: 27px;
    padding: 3px 5px;
    font-size: 0.66rem;
  }

  .add-button {
    min-height: 36px;
    margin-top: 8px;
    padding: 8px 6px;
    gap: 4px;
    font-size: clamp(0.6rem, 2.8vw, 0.66rem);
  }

  .add-button svg {
    width: 15px;
    height: 15px;
  }

  .add-button span {
    white-space: nowrap;
  }

  .look-grid,
  .concierge-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .look-body,
  .finder-copy,
  .finder-panel,
  .founder-card,
  .product-detail-copy {
    padding: 20px;
  }

  .finder-copy h2,
  .founder-card h2,
  .product-detail-copy h2 {
    font-size: 2.15rem;
  }

  .founder-mark,
  .product-detail-media {
    min-height: 0;
    aspect-ratio: 4 / 3.2;
  }

  .detail-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-actions,
  .result-actions {
    display: grid;
  }

  .mobile-mini-cart {
    display: grid;
  }

  .mobile-mini-cart.is-visible + .floating-order {
    display: none;
  }

  .detail-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card,
  .social-card:nth-child(1),
  .social-card:nth-child(5) {
    grid-row: span 1;
    min-height: 280px;
  }

  .essence-stage {
    grid-template-columns: 1fr;
  }

  .brand-notes div,
  .drawer-item {
    grid-template-columns: 1fr;
  }

  .drawer-item img {
    width: 100%;
    height: 160px;
  }

  .lightbox-panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .lightbox-panel img {
    max-height: 58vh;
  }

  .floating-order {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
