------WebKitFormBoundaryAokWCwU2dIQEpxLN
Content-Disposition: form-data; name="files"; filename="style.css"
Content-Type: text/css

------WebKitFormBoundaryLO6VneZfNzgERi0J
Content-Disposition: form-data; name="files"; filename="style.css"
Content-Type: text/css

------WebKitFormBoundaryA3MUcOBEE6YdmmYb
Content-Disposition: form-data; name="files"; filename="style.css"
Content-Type: text/css

------WebKitFormBoundaryXi6Aq9Aor6e2aAX6
Content-Disposition: form-data; name="files"; filename="style.css"
Content-Type: text/css

/* =========================================================
   OLIVART STORE — style.css
   Editorial · Minimalista · Animações refinadas
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  --bg:        #f5f2ec;
  --bg-soft:   #ede9e0;
  --paper:     #fbf9f4;
  --ink:       #2d2d28;
  --ink-soft:  #6a665e;
  --line:      #d8d2c4;
  --line-soft: #e7e1d3;
  --olive:     #6b6b3d;
  --olive-2:   #8a8a52;
  --brass:     #a0844a;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 82px;

  /* easings refinadas */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--olive); color: var(--bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--olive-2); }

/* ---------- ACESSIBILIDADE — focus visível ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero :focus-visible {
  outline-color: var(--bg);
}
.btn:focus-visible {
  outline-offset: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
h1 em, h2 em, h3 em, blockquote em, p em {
  font-style: italic;
  font-weight: 400;
  color: var(--olive);
}

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 500;
}

.head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.head__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  max-width: none;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}
.head--row .head__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: background 400ms var(--ease), color 400ms var(--ease), transform 500ms var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn--solid {
  background: var(--ink);
  color: var(--bg);
}

/* Efeito wipe interno (preenchimento oliva ao passar o mouse) */
.btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--olive);
  transform: translateY(101%);
  transition: transform 500ms var(--ease-out);
  z-index: 0;
}
.btn--solid > * { position: relative; z-index: 1; }
.btn--solid {
  /* spans visuais — o conteúdo de texto fica direto */
}
.btn--solid:hover::before { transform: translateY(0); }

.btn--text {
  background: transparent;
  color: var(--ink);
  padding: 4px 0;
  position: relative;
}
.btn--text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 500ms var(--ease-out);
}
.btn--text:hover::after {
  transform-origin: left center;
  transform: scaleX(1);
  animation: underlineSwap 600ms var(--ease-out);
}
@keyframes underlineSwap {
  0%   { transform: scaleX(1); transform-origin: right center; }
  49%  { transform: scaleX(0); transform-origin: right center; }
  50%  { transform: scaleX(0); transform-origin: left center; }
  100% { transform: scaleX(1); transform-origin: left center; }
}
.btn--text:hover { color: var(--olive); }

.btn--block { width: 100%; }

/* ---------- HEADER (3 colunas — nav verdadeiramente ao centro) ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(245, 242, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 400ms var(--ease), background 400ms;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 242, 236, 0.95);
}

.header__row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header__left   { justify-self: start; }
.header__right  { justify-self: end; display: flex; align-items: center; gap: 6px; }

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo__img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
  /* transição suave ao hover */
  transition: opacity 250ms var(--ease-soft);
}
.logo:hover .logo__img { opacity: 0.78; }

/* Versão footer (fundo escuro) — inverte para branco */
.logo__img--light {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.logo--light:hover .logo__img--light { opacity: 0.7; }

/* Navegação central */
.nav {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav a {
  font-size: 13.5px;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color 220ms var(--ease);
}
.nav a:hover { color: var(--olive); }

/* Iconografia */
.iconlink {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  transition: background 280ms var(--ease), color 280ms var(--ease);
  position: relative;
}
.iconlink svg {
  width: 20px;
  height: 20px;
  transition: transform 400ms var(--ease-out);
}
.iconlink:hover { background: var(--bg-soft); color: var(--olive); }
.iconlink:hover svg { transform: scale(1.1); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--olive);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  transform: scale(0);
  transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-count.is-visible { transform: scale(1); }
.cart-count.is-bump { animation: bump 500ms var(--ease-out); }
@keyframes bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 350ms var(--ease);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Busca expansível */
.searchbar {
  border-top: 1px solid var(--line-soft);
  padding: 0;
  background: var(--paper);
  overflow: hidden;
}
.searchbar:not([hidden]) {
  animation: searchOpen 500ms var(--ease-out) forwards;
}
@keyframes searchOpen {
  from { max-height: 0; opacity: 0; }
  to   { max-height: 100px; opacity: 1; }
}
.searchbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
}
.searchbar input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-style: italic;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 300ms;
}
.searchbar input::placeholder { color: var(--ink-soft); }
.searchbar input:focus { border-bottom-color: var(--olive); }
.searchbar__close {
  font-size: 16px;
  color: var(--ink-soft);
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: color 250ms, background 250ms;
}
.searchbar__close:hover { color: var(--ink); background: var(--bg-soft); }

/* Menu mobile */
.mobilemenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding: 24px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all 400ms var(--ease);
}
.mobilemenu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobilemenu a {
  font-family: var(--serif);
  font-size: 22px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.mobilemenu.is-open a {
  animation: slideUp 600ms var(--ease-out) backwards;
}
.mobilemenu.is-open a:nth-child(1) { animation-delay: 60ms; }
.mobilemenu.is-open a:nth-child(2) { animation-delay: 120ms; }
.mobilemenu.is-open a:nth-child(3) { animation-delay: 180ms; }
.mobilemenu.is-open a:nth-child(4) { animation-delay: 240ms; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- HERO (full-bleed video) ---------- */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);  /* full-bleed mesmo dentro de container */
  height: clamp(560px, 92vh, 880px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  padding: 0;
  /* Poster como fallback CSS — garante imagem mesmo se o vídeo falhar */
  background: var(--ink) url('images/hero-poster.jpg') center/cover no-repeat;
}

/* Vídeo de fundo */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Começa invisível — aparece com fade quando estiver pronto para reproduzir */
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}
.hero__video.is-ready { opacity: 1; }

/* Veil para contraste — gradiente assimétrico que escurece a base */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(45, 45, 40, 0.32) 0%,
      rgba(45, 45, 40, 0.12) 28%,
      rgba(45, 45, 40, 0.08) 55%,
      rgba(45, 45, 40, 0.72) 100%);
  pointer-events: none;
}

/* Conteúdo editorial */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg);
  padding: 0 var(--gutter);
  margin-top: clamp(-140px, -18vh, -80px); /* empurra conteúdo para o terço superior */
  max-width: 760px;
  width: 100%;
}

.hero__kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade 900ms var(--ease-out) 200ms forwards;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.hero__title em {
  font-style: italic;
  color: var(--bg);
  /* leve viés pra dar peso editorial */
  font-weight: 400;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.hero__title .line__inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1200ms var(--ease-out), opacity 1000ms var(--ease-out);
  will-change: transform, opacity;
}
.hero .line__inner { /* dispara automaticamente na hero (sem precisar de IO) */
  animation: heroLine 1200ms var(--ease-out) forwards;
}
.hero .hero__title .line:nth-child(1) .line__inner { animation-delay: 350ms; }
.hero .hero__title .line:nth-child(2) .line__inner { animation-delay: 480ms; }

@keyframes heroLine {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* Botão grande da hero */
.btn--lg {
  padding: 18px 36px;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  background: var(--bg);
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  animation: heroFade 900ms var(--ease-out) 800ms forwards;
}
.btn--lg::before { background: var(--olive); }
.btn--lg:hover { color: var(--bg); }

/* Indicador de scroll */
.hero__scroll {
  position: absolute;
  bottom: clamp(32px, 5vh, 56px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  opacity: 0;
  animation: heroFade 900ms var(--ease-out) 1200ms forwards;
  transition: color 300ms;
}
.hero__scroll:hover { color: var(--bg); }
.hero__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.hero__scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: translateY(-100%);
  animation: scrollLine 2.4s var(--ease-soft) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ---------- VALORES ---------- */
.values {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.values__row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.values__row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.values__row strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.values__row span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- SEÇÕES ---------- */
section { padding: clamp(70px, 9vw, 130px) 0; }

/* ---------- CATEGORIAS ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px) clamp(20px, 2.5vw, 32px);
}
.cat {
  display: block;
  position: relative;
}
.cat__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
  margin-bottom: 18px;
}
.cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out), filter 700ms var(--ease-out);
}
/* Variante para packshot (fundo branco) — fundo branco e contain */
.cat__img--pack {
  background: #ffffff;
  border: 1px solid var(--line-soft);
}
.cat__img--pack img {
  object-fit: contain;
  padding: 14% 16%;
}
.cat--lg { grid-column: span 1; }
@media (min-width: 821px) {
  .cat--lg { grid-column: span 2; }
  .cat--lg .cat__img { aspect-ratio: 16/10; }
}
.cat:hover .cat__img img {
  transform: scale(1.06);
}
/* overlay translúcido sutil */
.cat__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(45,45,40,.18));
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
}
.cat:hover .cat__img::after { opacity: 1; }

.cat h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}
.cat h3::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 350ms var(--ease-out), transform 400ms var(--ease-out);
  color: var(--olive);
}
.cat:hover h3::after { opacity: 1; transform: translateX(0); }

.cat span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- EDITORIAL ---------- */
.feature {
  background: var(--bg-soft);
}
.feature__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.6s var(--ease-out);
}
.feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-soft);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1.4s var(--ease-out);
}
.feature__media.is-revealed img { transform: scale(1); }
.feature__media.is-revealed::after { transform: scaleX(0); }
.feature__media:hover img { transform: scale(1.04); }

.feature__text { max-width: 480px; }
.feature__text .head__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.feature__text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.feature__text .btn--text {
  margin-top: 12px;
  display: inline-block;
}

/* ---------- PARCEIROS ---------- */
.partners {
  text-align: center;
  padding: clamp(70px, 8vw, 110px) 0;
}
.partners__lead {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-weight: 500;
}
.partners__list {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.partners__list span {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  transition: color 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.partners__list span:not(.dot):hover {
  color: var(--olive);
  transform: translateY(-3px);
}
.partners__list .dot {
  color: var(--line);
  font-style: normal;
  font-size: 1.6rem;
}

/* ---------- SHOP / FILTROS / GRID ---------- */
.filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.filter {
  padding: 8px 18px;
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.filter:hover { color: var(--ink); }
.filter.is-active {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper);
}

.select {
  padding: 10px 38px 10px 18px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236a665e' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 13px;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  outline: 0;
  cursor: pointer;
  transition: border-color 250ms;
}
.select:hover, .select:focus { border-color: var(--ink); }
.select option { background: var(--paper); color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 32px);
}
.grid.is-changing { opacity: 0; transition: opacity 200ms var(--ease); }

.card {
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  cursor: pointer;
}
.card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.card .card__name {
  transition: color 250ms;
}
.card:hover .card__name { color: var(--olive); }

.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ffffff;             /* packshot Tramontina é fundo branco */
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--line-soft);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;             /* mostra o produto inteiro, sem cortar */
  padding: 14% 18%;                /* respiro editorial em volta do produto */
  transition: transform 1.4s var(--ease-out), filter 600ms var(--ease-out);
}
.card:hover .card__media img {
  transform: scale(1.06);
}

.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 500;
  z-index: 2;
}

.card__brand {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--bg);
  background: rgba(45, 45, 40, 0.6);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.card:hover .card__brand { opacity: 1; transform: translateY(0); }

.card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-4px) scale(0.92);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out), color 200ms;
  z-index: 2;
}
.card__fav svg { width: 16px; height: 16px; }
.card:hover .card__fav { opacity: 1; transform: translateY(0) scale(1); }
.card__fav:hover { color: var(--olive); }
.card__fav.is-active svg { fill: currentColor; color: var(--olive); }
.card__fav.is-active { animation: pop 380ms var(--ease-out); }
@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.card__buy {
  position: absolute;
  left: 12px; right: 12px;
  bottom: 12px;
  padding: 12px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out), background 280ms;
  cursor: pointer;
  z-index: 3;
  overflow: hidden;
}
.card__buy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--olive);
  transform: translateY(101%);
  transition: transform 450ms var(--ease-out);
}
.card__buy span {
  position: relative;
  z-index: 1;
}
.card__buy:hover::before { transform: translateY(0); }
.card:hover .card__buy {
  opacity: 1;
  transform: translateY(0);
}

.card__cat {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.card__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
}
.card__price-now { color: var(--ink); font-weight: 500; }
.card__price-old {
  color: var(--ink-soft);
  text-decoration: line-through;
  font-size: 12.5px;
}
.card__installment {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.empty {
  text-align: center;
  padding: 80px 0;
  color: var(--ink-soft);
}
.empty p { margin-bottom: 18px; }

/* ---------- QUOTE ---------- */
.quote {
  text-align: center;
  padding: clamp(80px, 10vw, 160px) 0;
}
.quote__text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.quote__text .line {
  display: block;
  overflow: hidden;
}
.quote__text .line__inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1100ms var(--ease-out), opacity 800ms var(--ease-out);
}
.quote__text.is-revealed .line:nth-child(1) .line__inner { transition-delay: 0ms;   transform: translateY(0); opacity: 1; }
.quote__text.is-revealed .line:nth-child(2) .line__inner { transition-delay: 160ms; transform: translateY(0); opacity: 1; }

.quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- TESTEMUNHOS ---------- */
.testimonials { background: var(--bg-soft); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.testi {
  padding: 36px 30px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  transition: transform 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}
.testi:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(45, 45, 40, 0.12);
}
.testi blockquote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testi figcaption {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

/* ---------- NEWSLETTER ---------- */
.news__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.news .head__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.news p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.news__form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: border-color 350ms;
}
.news__form:focus-within { border-color: var(--olive); }
.news__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 0;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
}
.news__form input::placeholder { color: var(--ink-soft); }
.news__form .btn { padding: 12px 24px; }
.news small {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--olive);
  min-height: 18px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--bg-soft);
  padding: clamp(60px, 8vw, 100px) 0 32px;
}
.footer .logo {
  display: inline-flex;
  margin-bottom: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  max-width: 280px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__cols h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 18px;
}
.footer__cols a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  padding: 5px 0;
  transition: color 250ms, padding 350ms var(--ease-out);
}
.footer__cols a:hover {
  color: var(--bg);
  padding-left: 6px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.04em;
}
.footer__bottom a { color: rgba(255,255,255,.55); }
.footer__bottom a:hover { color: var(--bg); }

/* ---------- SACOLA ---------- */
.cart {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.cart.is-open { pointer-events: auto; }

.cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 40, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 500ms var(--ease);
}
.cart.is-open .cart__overlay { opacity: 1; }

.cart__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 600ms var(--ease-out);
  border-left: 1px solid var(--line);
}
.cart.is-open .cart__panel { transform: translateX(0); }

.cart__head {
  padding: 24px 28px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.cart__head h3 {
  font-size: 22px;
  font-weight: 400;
}
.cart__close {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: color 250ms, background 250ms, transform 400ms var(--ease-out);
}
.cart__close:hover {
  color: var(--ink);
  background: var(--bg-soft);
  transform: rotate(90deg);
}

.cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--ink-soft);
}
.cart-empty svg {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--line);
}
.cart-empty p { font-size: 14px; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
  opacity: 0;
  transform: translateX(20px);
  animation: itemIn 600ms var(--ease-out) forwards;
}
.cart-item:nth-child(1) { animation-delay: 60ms; }
.cart-item:nth-child(2) { animation-delay: 120ms; }
.cart-item:nth-child(3) { animation-delay: 180ms; }
.cart-item:nth-child(4) { animation-delay: 240ms; }
.cart-item:nth-child(n+5) { animation-delay: 300ms; }
@keyframes itemIn {
  to { opacity: 1; transform: translateX(0); }
}

.cart-item__img {
  width: 80px; height: 96px;
  background: var(--bg-soft);
  overflow: hidden;
}
.cart-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.cart-item:hover .cart-item__img img { transform: scale(1.05); }

.cart-item__name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item__price {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 12px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  transition: border-color 250ms;
}
.qty:hover { border-color: var(--ink); }
.qty button {
  width: 26px; height: 26px;
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 200ms;
}
.qty button:hover { color: var(--ink); }
.qty span {
  min-width: 28px;
  text-align: center;
  font-size: 12.5px;
}
.cart-item__remove {
  font-size: 14px;
  color: var(--ink-soft);
  width: 28px; height: 28px;
  border-radius: 50%;
  transition: color 200ms, transform 350ms var(--ease-out);
}
.cart-item__remove:hover { color: var(--olive); transform: rotate(90deg); }

.cart__foot {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.cart__row strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
}
.cart__foot small {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
#cartInstallment:not(:empty) {
  display: block;
  font-size: 12px;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 4px;
}

/* ---------- MODAL DE PRODUTO (PDP) ---------- */
.pdp {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp.is-open { pointer-events: auto; }

.pdp__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 40, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
}
.pdp.is-open .pdp__overlay { opacity: 1; }

.pdp__panel {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  background: var(--bg);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 700ms var(--ease-out), opacity 600ms var(--ease-out);
  box-shadow: 0 40px 90px -20px rgba(45, 45, 40, 0.45);
}
.pdp.is-open .pdp__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pdp__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  z-index: 4;
  color: var(--ink);
  transition: background 250ms, transform 400ms var(--ease-out);
}
.pdp__close svg { width: 18px; height: 18px; }
.pdp__close:hover {
  background: var(--ink);
  color: var(--bg);
  transform: rotate(90deg);
}

/* Galeria */
.pdp__gallery {
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.pdp__main {
  position: relative;
  flex: 1;
  background: #fff;
  overflow: hidden;
  min-height: 0;
}
.pdp__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6% 8%;
  transition: opacity 350ms var(--ease-out), transform 1.2s var(--ease-out);
}
.pdp__main.is-loading img { opacity: 0; }

.pdp__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--ink);
  opacity: 0;
  transition: opacity 350ms, background 250ms, transform 350ms;
  z-index: 2;
}
.pdp__nav svg { width: 18px; height: 18px; }
.pdp__main:hover .pdp__nav { opacity: 1; }
.pdp__nav:hover { background: var(--ink); color: var(--bg); }
.pdp__nav--prev { left: 18px; }
.pdp__nav--next { right: 18px; }
.pdp__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.pdp__nav--next:hover { transform: translateY(-50%) translateX(2px); }

/* Thumbnails */
.pdp__thumbs {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  overflow-x: auto;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
  scrollbar-width: thin;
}
.pdp__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  padding: 4px;
  transition: border-color 250ms, transform 350ms var(--ease-out);
}
.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pdp__thumb:hover { transform: translateY(-2px); }
.pdp__thumb.is-active {
  border-color: var(--ink);
  background: #fff;
}

/* Info à direita */
.pdp__info {
  padding: 56px 48px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.pdp__brand {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 12px;
}
.pdp__name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--ink);
}
.pdp__sku {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  display: block;
}

.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.pdp__price-now {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}
.pdp__price-old {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.pdp__price-old:empty { display: none; }
.pdp__installment {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.pdp__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}

.pdp__specs-head {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 600;
}
.pdp__specs {
  display: grid;
  gap: 8px 16px;
  grid-template-columns: 130px 1fr;
  font-size: 13.5px;
  margin-bottom: 32px;
}
.pdp__specs dt {
  color: var(--ink-soft);
  font-weight: 500;
}
.pdp__specs dd {
  color: var(--ink);
}

.pdp__cta {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 24px;
}
.pdp__qty {
  background: transparent;
  border: 1px solid var(--line);
}
.pdp__qty button { width: 38px; height: 100%; }
.pdp__qty span { min-width: 36px; }

.pdp__perks {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.pdp__perks strong {
  color: var(--ink);
  font-weight: 500;
}

/* Responsive PDP */
@media (max-width: 920px) {
  .pdp__panel {
    grid-template-columns: 1fr;
    max-height: 92svh;
    width: 100vw;
    align-self: flex-end;
    overflow-x: hidden;
    overflow-y: auto;                   /* painel inteiro scrollável no mobile */
    -webkit-overflow-scrolling: touch;  /* scroll suave no iOS */
    overscroll-behavior-y: contain;     /* não propaga scroll ao body */
    border-radius: 16px 16px 0 0;       /* bottom-sheet feel */
  }
  .pdp__main {
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    max-height: 55vw;                   /* limita altura da galeria em ecrãs pequenos */
  }
  .pdp__info {
    padding: 28px 20px 40px;
    overflow-y: visible;                /* o scroll é tratado pelo panel */
  }
  .pdp__close {
    position: fixed;                    /* sempre visível mesmo com scroll */
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
  }
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  z-index: 300;
  opacity: 0;
  transition: all 450ms var(--ease-out);
  pointer-events: none;
  max-width: 92vw;
}
.toast.is-show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal media (com painel deslizante já tratado nos próprios elementos) */
.reveal-media { /* placeholder — animação já em hero/feature media */ }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .header__row { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 820px) {
  .hero { height: 78vh; min-height: 520px; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 4.4rem); }
  .feature__grid { grid-template-columns: 1fr; }
  .feature__media { aspect-ratio: 4/3; }
  .values__row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .head--row { flex-direction: column; align-items: flex-start; }
  .hamburger { display: flex; }
  .head__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}

@media (max-width: 480px) {
  .values__row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .cart-item { grid-template-columns: 64px 1fr auto; }
  .cart-item__img { width: 64px; height: 80px; }
  .partners__list span { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Esconde o vídeo, mantém só o poster como background */
  .hero__video { display: none; }
  .hero {
    background-image: url("images/hero-poster.jpg");
    background-size: cover;
    background-position: center;
  }
  .hero__title .line__inner,
  .hero__kicker, .btn--lg, .hero__scroll { opacity: 1; transform: none; }
  /* Sem vídeo em reduced-motion — poster CSS já está como background */
  .hero__video { display: none; }
}

/* ---------- FOOTER LEGAL BUTTONS ---------- */
.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.35);
  transition: color 250ms var(--ease), text-decoration-color 250ms;
}
.footer__legal-btn:hover {
  color: var(--bg);
  text-decoration-color: rgba(255,255,255,0.8);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  background: var(--ink);
  color: rgba(255,255,255,0.88);
  padding: 20px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: slideUpBanner 500ms var(--ease-out);
}
.cookie-banner[hidden] { display: none; }
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text p { font-size: 13.5px; line-height: 1.55; }
.cookie-banner__text strong { color: var(--bg); }
.cookie-banner__link {
  background: none;
  border: none;
  padding: 0;
  color: var(--olive-2);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 220ms;
}
.cookie-banner__link:hover { color: var(--bg); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 280ms var(--ease), color 280ms var(--ease), border-color 280ms;
}
.cookie-banner__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
}
.cookie-banner__btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--bg);
}
.cookie-banner__btn--solid {
  background: var(--olive);
  border: 1px solid var(--olive);
  color: var(--bg);
}
.cookie-banner__btn--solid:hover {
  background: var(--olive-2);
  border-color: var(--olive-2);
}

/* ---------- MODAL LEGAL ---------- */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.legal-modal[aria-hidden="false"] { pointer-events: auto; }
.legal-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(45,45,40,0.6);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.legal-modal[aria-hidden="false"] .legal-modal__overlay { opacity: 1; }
.legal-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--paper);
  width: 100%;
  max-width: 720px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 500ms var(--ease-out), opacity 400ms var(--ease);
  margin: 0 var(--gutter);
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
}
@media (min-width: 768px) {
  .legal-modal {
    align-items: center;
  }
  .legal-modal__panel {
    border-radius: 4px;
    margin-bottom: var(--gutter);
  }
}
.legal-modal[aria-hidden="false"] .legal-modal__panel {
  transform: translateY(0);
  opacity: 1;
}
.legal-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.legal-modal__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.legal-modal__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: background 250ms, color 250ms;
  flex-shrink: 0;
}
.legal-modal__close:hover { background: var(--bg-soft); color: var(--ink); }
.legal-modal__body {
  overflow-y: auto;
  padding: 28px 28px 36px;
  flex: 1;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink);
}
.legal-modal__body h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--ink);
}
.legal-modal__body h3:first-child { margin-top: 0; }
.legal-modal__body p { margin-bottom: 14px; color: var(--ink-soft); }
.legal-modal__body p:last-child { margin-bottom: 0; }
.legal-modal__body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.legal-modal__body ul li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.legal-modal__body ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--olive);
}
.legal-modal__body a {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-modal__body strong { color: var(--ink); font-weight: 500; }

------WebKitFormBoundaryXi6Aq9Aor6e2aAX6--

------WebKitFormBoundaryA3MUcOBEE6YdmmYb--

------WebKitFormBoundaryLO6VneZfNzgERi0J--

------WebKitFormBoundaryAokWCwU2dIQEpxLN--
