/* ===== Tokens ===== */
:root {
  --color-vinho: #7A1F2B;
  --color-vinho-escuro: #591520;
  --color-dourado: #C9A227;
  --color-creme: #FDF6EF;
  --color-rosa-blush: #F6D8DE;
  --color-texto: #2B1215;
  --color-branco: #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-script: "Alex Brush", cursive;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 32px -14px rgba(89, 21, 32, 0.35);
  --shadow-lift: 0 20px 40px -16px rgba(89, 21, 32, 0.45);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-texto);
  background: var(--color-creme);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-vinho);
  color: var(--color-creme);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--color-dourado);
  outline-offset: 3px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.4em; color: var(--color-vinho-escuro); font-weight: 600; }
h1 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); line-height: 1.18; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 0.8em; }
.lede { font-size: 1rem; color: var(--color-texto); opacity: 0.85; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-vinho);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--color-dourado);
}

.script-accent {
  font-family: var(--font-script);
  font-size: 1.8em;
  color: var(--color-vinho);
  font-weight: 400;
  line-height: 1;
}

.section {
  padding: 44px 0;
}
.section--tight { padding: 28px 0; }
.section--rosa { background: var(--color-rosa-blush); }
.section--vinho {
  background: var(--color-vinho);
  color: var(--color-rosa-blush);
}
.section--vinho h2, .section--vinho h3 { color: var(--color-creme); }
.section-head {
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}
.section-head.align-left { margin-left: 0; text-align: left; }
.section-head p.lede { margin-bottom: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary {
  background: var(--color-vinho);
  color: var(--color-creme);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); background: var(--color-vinho-escuro); }
.btn-secondary {
  background: transparent;
  color: var(--color-vinho);
  border-color: var(--color-vinho);
}
.btn-secondary:hover { background: var(--color-vinho); color: var(--color-creme); transform: translateY(-2px); }
.btn-gold {
  background: var(--color-dourado);
  color: var(--color-vinho-escuro);
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost {
  background: rgba(253, 246, 239, 0.12);
  color: var(--color-creme);
  border-color: rgba(253, 246, 239, 0.4);
}
.btn-ghost:hover { background: rgba(253, 246, 239, 0.22); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }
.btn-xs { padding: 6px 12px; font-size: 0.76rem; gap: 6px; }
.btn-xs svg { width: 15px; height: 15px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(122, 31, 43, 0.12);
  box-shadow: 0 8px 24px -18px rgba(43, 18, 21, 0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand-word { font-family: var(--font-display); font-weight: 600; color: var(--color-vinho-escuro); font-size: 1.05rem; line-height: 1.15; }
.brand-word small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-vinho); opacity: 0.75; }

.nav-links {
  display: flex;
  gap: 26px;
  margin: 0 auto;
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a { text-decoration: none; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--color-dourado);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.cart-btn {
  position: relative;
  background: none;
  border: 1.5px solid var(--color-vinho);
  color: var(--color-vinho);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.cart-btn:hover { background: var(--color-rosa-blush); }
.cart-btn svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--color-dourado);
  color: var(--color-vinho-escuro);
  font-size: 0.66rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count[hidden] { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--color-vinho);
  position: relative;
}
.nav-toggle svg { position: absolute; inset: 0; margin: auto; width: 24px; height: 24px; }
.nav-toggle .icon-close { opacity: 0; }
.nav-toggle[aria-expanded="true"] .icon-open { opacity: 0; }
.nav-toggle[aria-expanded="true"] .icon-close { opacity: 1; }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-creme);
  z-index: 99;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(122, 31, 43, 0.12);
  color: var(--color-vinho-escuro);
}
.mobile-menu .btn { margin-top: 24px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-actions .btn-primary.nav-cta { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 26px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -160px; right: -180px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-rosa-blush) 0%, transparent 70%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.hero p.eyebrow { margin-bottom: 0.5em; }
.hero h1 { margin-bottom: 0.3em; }
.hero .lede { font-size: 0.94rem; margin-bottom: 0.7em; }
.hero-badges {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding: 6px 12px;
  background: var(--color-branco);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero-badge strong { font-family: var(--font-display); font-size: 0.92rem; color: var(--color-vinho); }
.hero-badge span { font-size: 0.72rem; opacity: 0.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 6px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-frame {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  background: var(--color-branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: contain; }
.hero-tag {
  display: none;
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 16px; }
  .hero-visual { order: -1; }
  .hero-visual-frame { max-width: 150px; margin: 0 auto; }
  .hero { text-align: center; padding: 16px 0 20px; }
  .hero-actions, .hero-badges { justify-content: center; }
}

/* ===== Como funciona (tira compacta) ===== */
.steps-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-branco);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  flex: 1 1 auto;
  min-width: 160px;
}
.step-pill .step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-vinho);
  color: var(--color-creme);
  font-family: var(--font-display);
  font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-pill span.label { opacity: 0.9; }

/* ===== Catálogo ===== */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}
.filter-btn {
  background: var(--color-branco);
  border: 1.5px solid var(--color-rosa-blush);
  color: var(--color-vinho-escuro);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.filter-btn:hover { border-color: var(--color-vinho); }
.filter-btn[aria-pressed="true"] {
  background: var(--color-vinho);
  border-color: var(--color-vinho);
  color: var(--color-creme);
}

.occasion-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 22px;
}
.occasion-chip {
  font-size: 0.74rem;
  color: var(--color-vinho);
  background: var(--color-rosa-blush);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  background: var(--color-branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.product-media {
  background: var(--color-rosa-blush);
  padding: 10px;
  aspect-ratio: 4/2.8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-media img { width: 66%; }
.product-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--color-vinho);
  color: var(--color-creme);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 999px;
}
.product-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { margin-bottom: 0; font-size: 1rem; }
.product-body p { font-size: 0.82rem; opacity: 0.75; margin: 0; flex: 1; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.product-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-vinho);
}
.product-price.is-tbd { font-family: var(--font-body); font-size: 0.76rem; font-weight: 600; font-style: italic; opacity: 0.7; }
.product-actions { display: flex; gap: 6px; margin-top: 2px; }
.product-actions .btn { flex: 1; }

.catalog-note {
  text-align: center;
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 0.84rem;
  opacity: 0.75;
}

@media (max-width: 980px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 620px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-body { padding: 10px 10px 12px; }
  .product-actions { flex-direction: column; }
}

/* ===== Sobre / Diferenciais ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 28px;
  align-items: center;
}
.about-visual {
  background: var(--color-branco);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual svg { width: 100%; max-width: 96px; }
.diff-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 12px; }
.diff-item { display: flex; gap: 10px; align-items: flex-start; }
.diff-item .num { font-family: var(--font-display); font-size: 1.05rem; color: var(--color-dourado); flex-shrink: 0; }
.diff-item h3 { margin-bottom: 2px; font-size: 0.92rem; }
.diff-item p { margin: 0; font-size: 0.8rem; opacity: 0.75; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-visual { max-width: 100px; margin: 0 auto; }
  .diff-list { grid-template-columns: 1fr; text-align: left; }
}

/* ===== Entregas / Pagamento (+ horário/área compactados juntos) ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.info-card {
  background: rgba(253, 246, 239, 0.08);
  border: 1px solid rgba(253, 246, 239, 0.18);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}
.info-card .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-dourado);
  color: var(--color-vinho-escuro);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.info-card .icon svg { width: 16px; height: 16px; }
.info-card h3 { color: var(--color-creme); font-size: 0.92rem; margin-bottom: 2px; }
.info-card p { opacity: 0.85; font-size: 0.78rem; margin: 0; }

@media (max-width: 980px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Depoimento ===== */
.testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-branco);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--color-vinho-escuro);
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-source { font-size: 0.78rem; color: var(--color-vinho); font-weight: 600; }

/* ===== Instagram ===== */
.instagram-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--color-branco);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}
.instagram-cta h3 { margin-bottom: 2px; font-size: 1rem; }
.instagram-cta p { margin: 0; opacity: 0.75; font-size: 0.84rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 8px; }
.faq-item {
  background: var(--color-branco);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.94rem;
  color: var(--color-vinho-escuro);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--color-dourado);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 18px 16px; margin: 0; opacity: 0.82; font-size: 0.86rem; }

/* ===== Contato / Footer ===== */
.site-footer {
  background: var(--color-vinho-escuro);
  color: var(--color-rosa-blush);
  padding: 36px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 48px; border-radius: 50%; }
.footer-brand strong { font-family: var(--font-display); color: var(--color-creme); font-size: 1.1rem; }
.footer-col h4 { color: var(--color-creme); font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.92rem; }
.footer-col a { text-decoration: none; opacity: 0.85; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(246, 216, 222, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.75;
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== WhatsApp float button ===== */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  background: var(--color-vinho);
  color: var(--color-creme);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lift);
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ===== Modal (pedido) ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 18, 21, 0.55);
  z-index: 150;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
@media (min-width: 640px) {
  .modal-overlay { align-items: center; padding: 24px; }
}

.modal-panel {
  background: var(--color-creme);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 26px 24px 24px;
  transform: translateY(24px);
  transition: transform 0.35s var(--ease);
  position: relative;
}
.modal-overlay.is-open .modal-panel { transform: translateY(0); }
@media (min-width: 640px) {
  .modal-panel { border-radius: var(--radius-lg); }
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--color-rosa-blush);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-vinho);
  display: flex; align-items: center; justify-content: center;
}
.modal-panel h3 { padding-right: 40px; }

.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 5px; color: var(--color-vinho-escuro); }
.form-field .optional-tag { font-weight: 400; opacity: 0.55; font-size: 0.76rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1.5px solid var(--color-rosa-blush);
  background: var(--color-branco);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-texto);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-vinho);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 56px; }
.form-hint { font-size: 0.76rem; opacity: 0.6; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .form-row, .form-row-3 { grid-template-columns: 1fr; } }

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #B3261E;
}
.field-error {
  display: none;
  color: #B3261E;
  font-size: 0.76rem;
  margin-top: 4px;
}
.form-field.has-error .field-error { display: block; }

.form-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-vinho);
  margin: 18px 0 10px;
  padding-top: 12px;
  border-top: 1px solid var(--color-rosa-blush);
}
.form-section-title:first-of-type { margin-top: 4px; padding-top: 0; border-top: none; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--color-rosa-blush);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
}
.qty-stepper .qty-btn { border-color: var(--color-vinho); }
.qty-stepper output { min-width: 20px; text-align: center; font-weight: 600; }

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.toggle-switch {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 100%; height: 100%;
  position: absolute;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.toggle-switch .track {
  position: absolute; inset: 0;
  background: var(--color-rosa-blush);
  border-radius: 999px;
  transition: background-color 0.2s var(--ease);
}
.toggle-switch .track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-branco);
  transition: transform 0.2s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.toggle-switch input:checked ~ .track { background: var(--color-vinho); }
.toggle-switch input:checked ~ .track::after { transform: translateX(18px); }
.toggle-row label { font-size: 0.85rem; font-weight: 600; color: var(--color-vinho-escuro); cursor: pointer; }
.toggle-row .form-hint { margin: 0; }

/* ===== Cart drawer ===== */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--color-creme);
  z-index: 150;
  box-shadow: -20px 0 40px rgba(43,18,21,0.25);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--color-rosa-blush);
}
.cart-drawer-body { padding: 18px 24px; overflow-y: auto; flex: 1; }
.cart-drawer-foot { padding: 20px 24px 26px; border-top: 1px solid var(--color-rosa-blush); }
.cart-empty { text-align: center; opacity: 0.65; padding: 40px 0; font-size: 0.94rem; }
.cart-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(122,31,43,0.08);
}
.cart-item img { width: 52px; height: 52px; object-fit: contain; background: var(--color-rosa-blush); border-radius: 10px; padding: 6px; }
.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.92rem; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--color-vinho); background: none; color: var(--color-vinho);
  cursor: pointer; font-size: 0.9rem; line-height: 1;
}
.cart-item-remove { background: none; border: none; color: var(--color-vinho); opacity: 0.6; cursor: pointer; font-size: 0.8rem; text-decoration: underline; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Rose motif draw-in */
.rose-motif .draw {
  transition: stroke-dashoffset 1.4s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .rose-motif .draw { stroke-dashoffset: 0 !important; transition: none; }
}

.divider-rose {
  display: flex;
  justify-content: center;
  margin: 4px 0 18px;
  opacity: 0.85;
}
.divider-rose svg { width: 34px; height: auto; }

/* Toast */
.toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-vinho-escuro);
  color: var(--color-creme);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lift);
  z-index: 160;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
