/* ========== HERO (fullscreen, full-bleed, colado no menu) ========== */
.hero { position: relative; width: 100%; }

.hero-split,
.hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: var(--ange-mist);
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Slider principal — crossfade entre banners */
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease, cubic-bezier(.4,0,.2,1));
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-slide-link { display: block; width: 100%; height: 100%; }
.hero-slide-link picture { display: block; width: 100%; height: 100%; }
/* sutil “Ken Burns” desativado — imagens estáticas no crossfade */
.hero-loop {
  position: absolute;
  right: clamp(20px, 3vw, 44px);
  bottom: clamp(20px, 3vw, 44px);
  width: clamp(140px, 16vw, 240px);
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  pointer-events: none;
}

/* CTA único centralizado (sem texto) */
.hero-cta-only {
  position: absolute;
  left: 0; right: 0;
  bottom: 56px;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.hero-cta-only .btn {
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 18px 40px;
  font-size: 15px;
  letter-spacing: 0.03em;
}

/* Painel flutuante de texto (à esquerda, sobre a foto) */
.hero-panel {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  bottom: clamp(60px, 8vh, 110px);
  max-width: min(520px, 40vw);
  z-index: 2;
}
.hero-panel-inner {
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.hero-title {
  font-size: clamp(56px, 6.5vw, 104px);
  margin: 14px 0 22px;
  line-height: 0.92;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}
.hero-lede {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ange-muted);
  max-width: 42ch;
  margin: 0 0 26px;
}
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* Slider dots */
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 14px; height: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.hero-dots { gap: 10px; }
.hero-dot:hover { border-color: #fff; }
.hero-dot.is-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.1);
}

/* Setas laterais */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
  transition: background .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.9);
  color: var(--ange-ink);
  border-color: #fff;
  opacity: 1;
}
.hero-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.hero-arrow-prev { left: clamp(16px, 2.5vw, 36px); }
.hero-arrow-next { right: clamp(16px, 2.5vw, 36px); }
.hero-arrow svg { display: block; }

/* CTA reanima quando o slide muda */
@keyframes heroCtaIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-cta-btn {
  animation: heroCtaIn .6s var(--ease, cubic-bezier(.4,0,.2,1)) both;
}

/* Hero full variant (edge-to-edge fullscreen) */
.hero-full {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h, 130px));
  min-height: 560px;
  overflow: hidden;
}
.hero-full img { width: 100%; height: 100%; object-fit: cover; }
.hero-full-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 56px;
  pointer-events: none;
}
.hero-full-overlay > * { pointer-events: auto; }
.hero-full-text {
  color: #fff;
}
.hero-full-title {
  color: #fff;
  font-size: clamp(64px, 8vw, 140px);
  margin: 12px 0 26px;
  line-height: 0.92;
}
.hero-full-title em { font-style: italic; font-weight: 300; }

/* ========== VITRINE ========== */
.vitrine { padding: 88px var(--gutter) 0; }
.vitrine-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 28px;
}
.vitrine-head-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.vitrine-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ange-line-2);
  color: var(--ange-ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.arrow-btn:hover { background: var(--ange-sage); color: var(--ange-ink); border-color: transparent; }

.vitrine-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--shelf-cols, 5) - 1) * 20px) / var(--shelf-cols, 5));
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 5px;
  padding: 4px 5px 14px;
  margin-inline: -5px;
}
.vitrine-scroll > * { scroll-snap-align: start; }

/* ========== PRODUCT CARD ========== */
.pcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pcard-media {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--ange-mist);
  isolation: isolate;
}
.pcard-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .4s var(--ease), transform .6s var(--ease);
}
.pcard-img-main { opacity: 1; z-index: 1; }
.pcard-img-main.is-hidden { opacity: 0; }
.pcard-img-hover { opacity: 0; z-index: 2; }
.pcard-img-hover.is-shown { opacity: 1; }
.pcard-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  background: var(--ange-bone);
  color: var(--ange-ink);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
}
/* Ações flutuantes do card (Favoritar / Espiar) */
.pcard-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.pcard-actions.is-shown,
.pcard:hover .pcard-actions {
  opacity: 1;
  pointer-events: auto;
}

.pcard-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  height: 36px;
  padding: 0;
  border: none;
  background: #ffffff;
  backdrop-filter: blur(6px);
  color: var(--ange-ink);
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 36px;
  /* permanece alinhado à direita mesmo esticando */
  margin-left: auto;
  transition:
    width .55s cubic-bezier(.22, 1, .36, 1),
    background .35s var(--ease),
    color .35s var(--ease),
    box-shadow .35s var(--ease);
}
.pcard-action:hover {
  width: 150px;
  background: var(--ange-ink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.pcard-action-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pcard-action-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 16px;
  padding-right: 4px;
  opacity: 0;
  transform: translateX(4px);
  transition:
    opacity .35s var(--ease) .08s,
    transform .45s cubic-bezier(.22, 1, .36, 1) .05s;
  white-space: nowrap;
}
.pcard-action:hover .pcard-action-label {
  opacity: 1;
  transform: translateX(0);
}


.pcard-quickadd {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 3;
  background: #ffffff;
  backdrop-filter: blur(6px);
  border-radius: var(--r-md);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.pcard-quickadd.is-shown { opacity: 1; transform: translateY(0); }
.pcard-qa-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ange-muted);
}
.pcard-qa-sizes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.pcard-qa-size {
  height: 30px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--ange-line-2);
  font-size: 12px;
  font-weight: 500;
  color: var(--ange-ink);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.pcard-qa-size:hover:not(:disabled) { background: var(--ange-ink); color: #F6F6F4; }
.pcard-qa-size.is-oos {
  color: var(--ange-muted);
  text-decoration: line-through;
  opacity: 0.55;
  cursor: not-allowed;
}
.pcard-qa-size.is-added { background: var(--ange-sage); color: var(--ange-ink); border-color: transparent; }

.pcard-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 2px;
}
.pcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.pcard-name {
  font-size: 14px;
  font-weight: 400;
}
.pcard-ref {
  font-size: 11px;
  color: var(--ange-muted);
  white-space: nowrap;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pcard-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pcard-swatches { display: flex; gap: 6px; }
.pcard-price {
  font-size: 14px;
  color: var(--ange-muted);
}
.pcard-price strong {
  color: var(--ange-ink);
  font-weight: 600;
}

/* ========== CATEGORIAS ========== */
.cats { padding: 96px var(--gutter) 0; }
.cats-head { margin-bottom: 28px; }
.cats-head .eyebrow { margin-bottom: 10px; }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}
.cat-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ange-mist);
  transition: transform .4s var(--ease);
  aspect-ratio: 3 / 4;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-img { position: absolute; inset: 0; }
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.cat-card:hover .cat-img img { transform: scale(1.05); }
.cat-meta {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #F6F6F4;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.cat-label {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cat-arrow {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: background .25s var(--ease);
}
.cat-card:hover .cat-arrow { background: var(--ange-sage); color: var(--ange-ink); }

/* ========== EDITORIAL BANNER ========== */
.editorial {
  position: relative;
  margin: 120px var(--gutter) 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: clamp(520px, 70vh, 720px);
}
.editorial-media { position: absolute; inset: 0; }
.editorial-media img,
.editorial-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.editorial-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.55) 100%);
}
.editorial-text {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 56px 24px;
  color: #fff;
  max-width: none;
}
.editorial-title {
  font-size: clamp(44px, 7vw, 96px);
  margin: 12px 0 24px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.01em;
}
.editorial-text .eyebrow {
  letter-spacing: 0.32em;
}
.editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-radius: var(--r-pill);
}
.editorial-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.editorial-lede {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 46ch;
  opacity: 0.95;
}

/* ========== COMPRE POR COR ========== */
.cols { padding: 120px var(--gutter) 0; }
.cols-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.cols-head .eyebrow { margin-bottom: 10px; }
.cols-intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ange-muted);
  max-width: 46ch;
  justify-self: end;
  margin: 0;
}
.cols-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cols-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* ---- Cards de cor (imagem full + meta box flutuante) ---- */
.color-card {
  position: relative;
  display: block;
  background: var(--mood, var(--ange-mist));
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 5;
  color: var(--ange-ink);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  text-decoration: none;
  font-family: 'Muli', 'Mulish', system-ui, sans-serif;
}
.color-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.25);
}

/* Imagem preenche todo o card — PNG transparente deixa o mood aparecer atrás */
.color-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.color-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease);
}
.color-card:hover .color-img img { transform: scale(1.03); }

/* Box flutuante com margem interna — um trecho da imagem aparece ao redor */
.color-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 18px 18px 16px;
  background: var(--mood, var(--ange-mist));
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  color: var(--ange-ink);
  font-family: 'Muli', 'Mulish', system-ui, sans-serif;
}
/* Fundos escuros → texto claro */
.color-card[style*="#A87762"] .color-meta,
.color-card[style*="#6E4C7A"] .color-meta,
.color-card[style*="#8A9A8F"] .color-meta {
  color: #fff;
}
.color-label {
  font-family: 'Muli', 'Mulish', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.color-copy {
  font-family: 'Muli', 'Mulish', system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.5;
  margin: 0 0 14px 0;
  opacity: 0.78;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Link "ver mais →" no padrão das vitrines, alinhado à direita */
.color-more {
  align-self: flex-end;
  color: inherit;
  font-family: 'Muli', 'Mulish', system-ui, sans-serif;
}

/* ========== UGC ========== */
.ugc { padding: 120px var(--gutter) 0; }
.ugc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}
.ugc-head .eyebrow { margin-bottom: 10px; }
.ugc-intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ange-muted);
  max-width: 46ch;
  justify-self: end;
  margin: 0;
}
.ugc-intro strong { color: var(--ange-ink); font-weight: 500; }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ugc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ange-mist);
}
.ugc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ugc-card:hover img { transform: scale(1.04); }
.ugc-overlay {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.ugc-card:hover .ugc-overlay { opacity: 1; transform: translateY(0); }
.ugc-user { font-size: 13px; font-weight: 500; }
.ugc-tag { font-size: 12px; opacity: 0.92; }

/* Shoppable badge — bag icon overlay */
.ugc-shop-badge {
  position: absolute;
  top: 14px; left: 14px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #fff;
  color: var(--ange-ink);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.ugc-shop-badge:hover { transform: scale(1.06); }
.ugc-shop-badge svg { width: 20px; height: 20px; display: block; }
.ugc-shop-badge.is-open {
  background: var(--ange-ink);
  color: #F6F6F4;
}
.ugc-shop-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--ange-ink);
  color: #F6F6F4;
  font-size: 10.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ugc-shop-badge.is-open .ugc-shop-count {
  background: #F6F6F4;
  color: var(--ange-ink);
}

/* Quickshop panel — slides up from bottom of card */
.ugc-quickshop {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.ugc-card.is-open .ugc-quickshop {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ugc-card.is-open .ugc-overlay { opacity: 0; }
.ugc-qs-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ange-ink);
  transition: background .2s var(--ease);
}
.ugc-qs-item + .ugc-qs-item {
  border-top: 1px solid rgba(20,20,20,0.06);
}
.ugc-qs-item:hover { background: #F6F6F4; }
.ugc-qs-thumb {
  width: 44px; height: 44px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ange-mist);
  flex: 0 0 auto;
}
.ugc-qs-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: none;
}
.ugc-card:hover .ugc-qs-thumb img { transform: none; }
.ugc-qs-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ugc-qs-name {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ange-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ugc-qs-price {
  font-size: 12px;
  color: var(--ange-muted);
}
.ugc-qs-more {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--ange-line-2, rgba(20,20,20,0.18));
  color: var(--ange-ink);
}
.ugc-qs-item:hover .ugc-qs-more {
  background: var(--ange-ink);
  color: #F6F6F4;
  border-color: var(--ange-ink);
}

/* ========== SERVICE STRIP ========== */
.service {
  max-width: var(--container);
  margin: 120px auto 0;
  padding: 48px var(--gutter, 24px) 0;
  border-top: 1px solid var(--ange-line);
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.service-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.service-icon {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ange-ink);
}
.service-icon svg { width: 100%; height: 100%; display: block; stroke-width: 1.4; }
.service-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.service-k {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-v {
  font-size: 13.5px;
  color: var(--ange-muted);
  line-height: 1.45;
}

/* ========== FOOTER ========== */
.ange-footer {
  margin-top: 120px;
  padding: 80px 0 32px;
  background: var(--ange-ink);
  color: #F6F6F4;
}
.ange-footer .eyebrow { color: rgba(246, 246, 244, 0.55); }
.ange-footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 72px;
}
.ange-footer-brand { max-width: 420px; }
.ange-footer-brand .ange-logo { color: #F6F6F4; }
.ange-footer-logo {
  display: block;
  width: 140px;
  height: auto;
  margin-bottom: 24px;
}
.ange-footer-mani {
  font-size: 15px;
  line-height: 1.55;
  margin: 18px 0 32px;
  color: rgba(246, 246, 244, 0.8);
}
.ange-footer-news label { display: block; margin-bottom: 10px; }
.news-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.news-row input {
  height: 48px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(246, 246, 244, 0.18);
  background: transparent;
  color: #F6F6F4;
  font-family: inherit;
  font-size: 14px;
}
.news-row input::placeholder { color: rgba(246, 246, 244, 0.45); }
.news-row input:focus { border-color: #F6F6F4; outline: none; }
.news-row .btn-primary { background: #F6F6F4; color: var(--ange-ink); }
.news-row .btn-primary:hover { background: var(--ange-sage-soft); color: var(--ange-ink); }

.ange-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.ange-footer-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: #F6F6F4;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.ange-footer-social a.ange-footer-pill {
  width: auto; height: auto;
  padding: 6px 12px;
  border: 1px solid rgba(246, 246, 244, 0.25);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F6F6F4;
}
.ange-footer-social a:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}
.ange-footer-social a.ange-footer-pill:hover {
  background: #F6F6F4;
  color: var(--ange-ink);
  border-color: #F6F6F4;
  opacity: 1;
  transform: none;
}
.ange-footer-social img {
  width: 26px; height: 26px;
  display: block;
  /* SVGs são pretos por padrão; inverter para creme no fundo escuro */
  filter: brightness(0) invert(1) sepia(0.05) saturate(0.4) hue-rotate(20deg);
}

.ange-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.ange-footer-cols ul { list-style: none; padding: 0; margin: 14px 0 0; }
.ange-footer-cols li { margin-bottom: 10px; }
.ange-footer-cols a {
  font-size: 14px;
  color: rgba(246, 246, 244, 0.75);
  transition: color .2s var(--ease);
}
.ange-footer-cols a:hover { color: var(--ange-sage); }

/* Atendimento (contact) — phone/whatsapp/email rows */
.ange-footer-contact { list-style: none; padding: 0; margin: 14px 0 0; }
.ange-footer-contact li { margin-bottom: 12px; }
.ange-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(246, 246, 244, 0.75);
  transition: color .2s var(--ease);
  line-height: 1.3;
}
.ange-footer-contact a:hover { color: var(--ange-sage); }
.ange-footer-ic {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 246, 244, 0.55);
}
.ange-footer-ic svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ange-footer-ic-sub {
  opacity: 0.6;
  font-size: 12.5px;
  margin-left: 2px;
}

.ange-footer-legal {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 246, 244, 0.14);
  color: rgba(246, 246, 244, 0.55);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ange-footer-cookies {
  font-size: 12.5px;
  line-height: 1.6;
  max-width: 980px;
  margin: 0;
}
.ange-footer-corp,
.ange-footer-addr {
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
}
.ange-footer-corp { color: rgba(246, 246, 244, 0.7); }

.ange-footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 246, 244, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(246, 246, 244, 0.55);
}
.ange-footer-pay { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pay-mark {
  height: 22px;
  width: auto;
  display: block;
  background: #F6F6F4;
  border-radius: 4px;
  padding: 3px 6px;
  box-sizing: content-box;
}

/* ========== DISCOVER THE LOOK (editorial shoppable) ========== */
.stl {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
}
.stl-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.stl-head .h-section { margin: 2px 0 0; }
.stl-sub {
  font-size: 14.5px;
  color: var(--ange-muted);
  max-width: 46ch;
  margin: 6px 0 0;
  line-height: 1.55;
}

.stl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 28px);
  padding: 0 clamp(12px, 3vw, 40px);
}
.stl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(460px, 88vw);
}

/* Figura editorial + hotspots */
.stl-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  opacity: 1;
}
.stl-figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* Hotspot */
.stl-spot { position: absolute; transform: translate(-50%, -50%); z-index: 2; }
.stl-spot.is-open { z-index: 6; }
.stl-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--ange-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  position: relative;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.stl-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  animation: stlPulse 2.4s ease-out infinite;
}
@keyframes stlPulse {
  0%   { transform: scale(.7); opacity: .8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.stl-dot-plus { position: relative; width: 12px; height: 12px; }
.stl-dot-plus::before, .stl-dot-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.stl-dot-plus::before { left: 50%; top: 0; width: 1.6px; height: 100%; transform: translateX(-50%); }
.stl-dot-plus::after  { top: 50%; left: 0; height: 1.6px; width: 100%; transform: translateY(-50%); }
.stl-dot:hover { transform: scale(1.08); background: #fff; }
.stl-spot.is-open .stl-dot { background: var(--ange-ink); color: #fff; }
.stl-spot.is-open .stl-dot::before { animation: none; opacity: 0; }
.stl-spot.is-open .stl-dot-plus { transform: rotate(45deg); transition: transform .25s var(--ease); }

/* Flyout do hotspot (desktop) */
.stl-flyout {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(6px);
  width: 248px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(20,20,20,0.18);
  padding: 12px;
  display: flex;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .22s var(--ease);
  z-index: 7;
}
.stl-spot.is-open .stl-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.stl-spot.flip-left .stl-flyout { left: auto; right: 50%; transform: translateX(-12px) translateY(6px); }
.stl-spot.flip-left.is-open .stl-flyout { transform: translateX(-12px) translateY(0); }
.stl-spot.flip-right .stl-flyout { left: 50%; transform: translateX(12px) translateY(6px); }
.stl-spot.flip-right.is-open .stl-flyout { transform: translateX(12px) translateY(0); }
.stl-flyout::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}
.stl-spot.flip-left .stl-flyout::after { left: auto; right: 18px; transform: none; }
.stl-spot.flip-right .stl-flyout::after { left: 18px; transform: none; }

.stl-fly-thumb {
  flex: 0 0 64px;
  width: 64px; height: 84px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--ange-mist);
}
.stl-fly-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stl-fly-info { min-width: 0; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.stl-fly-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ange-ink);
  line-height: 1.25;
}
.stl-fly-price { font-size: 12.5px; color: var(--ange-muted); }

.stl-sizes { display: flex; gap: 4px; flex-wrap: wrap; margin: 5px 0 8px; }
.stl-size {
  min-width: 26px; height: 26px;
  padding: 0 5px;
  border: 1px solid var(--ange-line-2);
  background: #fff;
  border-radius: 999px;
  font-family: inherit;
  font-size: 10.5px;
  color: var(--ange-ink);
  cursor: pointer;
  transition: all .18s var(--ease);
}
.stl-size:hover:not(:disabled):not(.is-sel) { border-color: var(--ange-ink); }
.stl-size.is-sel { background: var(--ange-ink); color: #fff; border-color: var(--ange-ink); }
.stl-size.is-oos { color: var(--ange-muted); text-decoration: line-through; cursor: not-allowed; background: var(--ange-mist); border-color: transparent; }

.stl-add {
  width: 100%;
  height: 34px;
  border: none;
  background: var(--ange-ink);
  color: #F6F6F4;
  border-radius: 999px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.stl-add:hover { background: var(--ange-sage-ink, var(--ange-ink)); }

/* Caption */
.stl-caption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 22px;
}
.stl-num { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ange-muted); }
.stl-cap-title {
  font-family: 'Muli', 'Mulish', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ange-ink);
}

/* Lista mobile (oculta no desktop) */
.stl-list { display: none; }

/* Setas */
.stl-arrow {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ange-line-2);
  background: #fff;
  color: var(--ange-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.stl-arrow:hover { background: var(--ange-ink); color: #fff; border-color: var(--ange-ink); }

/* Pager dots */
.stl-pager { display: flex; justify-content: center; gap: 10px; margin-top: clamp(28px, 3.5vw, 44px); }
.stl-pager-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--ange-line-2);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.stl-pager-dot:hover { border-color: var(--ange-ink); }
.stl-pager-dot.is-active { background: var(--ange-ink); border-color: var(--ange-ink); transform: scale(1.15); }

/* ----- Carrossel full-bleed de looks ----- */
.stl-head2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.stl-head2-left .h-section { margin: 2px 0 0; }
.stl-head2-right { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.stl-head2-right .btn-link { white-space: nowrap; }
.stl-arrows { display: flex; gap: 8px; }

.stl-rail-vp {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  touch-action: pan-y;
  cursor: grab;
}
.stl-rail.is-dragging { cursor: grabbing; }
.stl-rail.is-dragging .stl-card { cursor: grabbing; }
.stl-rail { display: flex; gap: 14px; will-change: transform; padding: 0 14px; }
.stl-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 36vw, 560px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ange-mist);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
}
.stl-card > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.stl-card:hover > img { transform: scale(1.04); }

/* Modal "Comprar look" */
.lkm-scrim {
  position: fixed; inset: 0;
  background: rgba(18,18,18,0.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lkm {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 372px);
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.3);
}
.lkm-img { background: var(--ange-mist); overflow: hidden; }
.lkm-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lkm-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--ange-ink);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.16);
  transition: background .2s var(--ease);
}
.lkm-close:hover { background: #fff; }
.lkm-panel { padding: clamp(24px, 3vw, 34px) clamp(22px, 2.6vw, 30px); overflow-y: auto; display: flex; flex-direction: column; }
.lkm-title {
  font-family: 'Muli', 'Mulish', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ange-ink);
  margin: 5px 0 6px;
}
.lkm-sub { font-size: 13px; color: var(--ange-muted); line-height: 1.5; margin: 0 0 22px; }
.lkm-pieces { display: flex; flex-direction: column; gap: 16px; }
.lkm-piece {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ange-line);
}
.lkm-piece:last-child { border-bottom: none; padding-bottom: 0; }
.lkm-piece-thumb { width: 64px; height: 84px; border-radius: 8px; overflow: hidden; background: var(--ange-mist); }
.lkm-piece-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lkm-piece-info { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.lkm-add {
  grid-column: 1 / -1;
  height: 42px;
  border: none;
  background: var(--ange-ink);
  color: #F6F6F4;
  border-radius: 999px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.lkm-add:hover { background: var(--ange-sage-ink, var(--ange-ink)); }
.lkm-add.is-added { background: var(--ange-sage); color: var(--ange-ink); }
.lkm-add.is-added svg { display: block; }
@media (max-width: 720px) {
  .lkm {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    max-height: 90vh;
  }
  .lkm-img { flex: 0 0 32vh; max-height: 32vh; }
  .lkm-panel {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 18px calc(22px + env(safe-area-inset-bottom, 0px));
  }
}

/* Botão Ver mais (legado / página) */
.stl-more { display: flex; justify-content: center; margin-top: clamp(30px, 3.5vw, 48px); }
.stl-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border: 1px solid var(--ange-ink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ange-ink);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.stl-more-btn:hover { background: var(--ange-ink); color: #F6F6F4; }
.stl-more-btn svg { display: block; }

/* Popover "Comprar look" */
.stl-pop-scrim { position: fixed; inset: 0; background: rgba(20,20,20,0.28); z-index: 119; }
.stl-pop {
  position: fixed;
  z-index: 120;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 26px 64px rgba(20,20,20,0.26);
  padding: 14px 14px 10px;
}
.stl-pop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ange-ink);
  margin-bottom: 10px;
  padding: 0 2px;
}
.stl-pop-head .stl-num { letter-spacing: 0.16em; text-transform: uppercase; color: var(--ange-muted); }
.stl-pop-close { background: transparent; border: none; cursor: pointer; color: var(--ange-ink); display: inline-flex; padding: 4px; }
.stl-pop-list { display: flex; flex-direction: column; gap: 10px; overflow-y: auto; padding-bottom: 4px; }
.stl-pop-list .stl-listcard {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--ange-line);
  border-radius: 10px;
  background: #fff;
}
.stl-pop-list .stl-list-thumb { width: 54px; height: 70px; border-radius: 7px; overflow: hidden; background: var(--ange-mist); }
.stl-pop-list .stl-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stl-pop-list .stl-list-info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.stl-add-list { width: auto; padding: 0 14px; height: 34px; align-self: center; }

@media (max-width: 760px) {
  .stl-shop-btn { padding: 8px 12px; font-size: 9.5px; }
  .stl-card-cap .stl-cap-title { font-size: 15px; }
}

/* ===== Página Discover the Look (galeria) ===== */
.dtl-hero {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dtl-hero .h-section { margin: 2px 0 0; font-size: clamp(34px, 5vw, 58px); }
.dtl-hero p { font-size: 15px; color: var(--ange-muted); max-width: 52ch; line-height: 1.6; margin: 6px 0 0; }
.dtl-head {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(24px, 3vw, 44px) var(--gutter) clamp(20px, 2.5vw, 36px);
  max-width: var(--container);
  margin: 0 auto;
}
.dtl-head .h-section { margin: 2px 0 0; font-size: clamp(32px, 4.4vw, 54px); }
.dtl-head p { font-size: 15px; color: var(--ange-muted); max-width: 52ch; line-height: 1.6; margin: 6px 0 0; }
.dtl-grid {
  column-count: 3;
  column-gap: 16px;
  padding: 0 var(--gutter) clamp(56px, 7vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
}
.dtl-fig {
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ange-mist);
  display: block;
}
.dtl-fig img { width: 100%; height: auto; display: block; transition: transform .7s var(--ease); }
.dtl-fig:hover img { transform: scale(1.04); }
.dtl-fig-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(to top, rgba(15,15,15,0.6), rgba(15,15,15,0) 80%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.dtl-fig:hover .dtl-fig-cap { opacity: 1; }
.dtl-fig-cap .stl-num { color: rgba(255,255,255,0.82); }
.dtl-fig-cap .dtl-fig-title { color: #fff; font-size: 17px; font-weight: 300; letter-spacing: -0.01em; }
@media (max-width: 900px) { .dtl-grid { column-count: 2; } }
@media (max-width: 560px) { .dtl-grid { column-count: 1; } .dtl-fig-cap { opacity: 1; } }


@media (prefers-reduced-motion: reduce) {
  .stl-dot::before { animation: none; }
  .stl-figure { animation: none; }
}

/* Mobile: hotspots viram lista */
@media (max-width: 760px) {
  .stl-arrow { width: 40px; height: 40px; }
  .stl-stage { gap: 6px; padding: 0 8px; }
  .stl-spot { display: none; }
  .stl-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
  }
  .stl-listcard {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--ange-line);
    border-radius: 12px;
    background: #fff;
  }
  .stl-list-thumb {
    width: 58px; height: 74px;
    border-radius: 7px;
    overflow: hidden;
    background: var(--ange-mist);
  }
  .stl-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .stl-list-info { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
  .stl-add-list { width: auto; padding: 0 16px; height: 38px; align-self: center; }
}
