/* ==========================================================================
   Sulco — design tokens & fontes
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2-variations'), url('../fonts/inter-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/fraunces-variable.woff2') format('woff2-variations'), url('../fonts/fraunces-variable.woff2') format('woff2');
}

:root {
  --dark: #2b1e16;
  --brown: #6b4226;
  --oak: #a87549;
  --cream: #faf3e9;
  --cream-2: #f2e8da;
  --terracotta: #c9622d;
  --terracotta-light: #e8a272;
  --charcoal: #2a2118;
  --text: #443528;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(43, 30, 22, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; text-decoration: none; transition: color 0.15s ease; }

.col-full {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

button, .btn {
  font-family: var(--font-body);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(43, 30, 22, 0.18); }

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.95em 2em;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(201, 98, 45, 0.35);
}
.btn-primary:hover { background: #b3541f; }

.btn-dark {
  background: var(--dark);
  color: var(--cream);
  padding: 0.7em 1.4em;
  font-size: 0.92rem;
}
.btn-dark:hover { background: var(--terracotta); }

*:focus-visible { outline: 3px solid var(--terracotta-light); outline-offset: 2px; }

/* ==========================================================================
   Header flutuante
   ========================================================================== */

body { padding-top: 96px; }
body.is-home { padding-top: 0; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
}

.bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1240px;
  margin: 16px auto 0;
  padding: 12px 26px;
  background: rgba(43, 30, 22, 0.95);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(20, 13, 9, 0.28);
  transition: margin 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled .bar {
  margin-top: 8px;
  padding: 7px 20px;
  background: rgba(43, 30, 22, 0.66);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.bar__brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
}

.bar__brand img { width: 32px; height: 32px; transition: width 0.3s ease, height 0.3s ease; }
.site-header.is-scrolled .bar__brand a { font-size: 1.1rem; }
.site-header.is-scrolled .bar__brand img { width: 26px; height: 26px; }

.bar__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.bar__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.5rem;
  margin: 0;
  padding: 0;
}

.bar__nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: rgba(250, 243, 233, 0.86);
  position: relative;
  padding-bottom: 2px;
}

.bar__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -3px;
  height: 1.5px;
  background: var(--terracotta-light);
  transition: right 0.25s ease;
}

.bar__nav a:hover { color: var(--cream); }
.bar__nav a:hover::after { right: 0; }

.bar__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  position: relative;
}

.icon-btn {
  background: rgba(250, 243, 233, 0.1);
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-btn:hover { background: var(--terracotta); transform: scale(1.06); }

.cart-pill {
  border-radius: 999px;
  padding: 0.45em 0.95em;
  background: rgba(250, 243, 233, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--cream);
  font-size: 0.92rem;
  transition: background-color 0.2s ease;
}
.cart-pill:hover { background: var(--terracotta); }
.cart-pill.is-bouncing { animation: cart-bounce .5s cubic-bezier(.36,.07,.19,.97); }
@keyframes cart-bounce {
  0%, 100% { transform: scale(1) rotate(0); }
  25% { transform: scale(1.18) rotate(-6deg); }
  50% { transform: scale(.96) rotate(4deg); }
  75% { transform: scale(1.08) rotate(-2deg); }
}

.mobile-menu {
  display: none;
}

.menu-toggle {
  display: none;
  background: rgba(250, 243, 233, 0.12);
  color: var(--cream);
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1em;
  font-size: 0.85rem;
}

.search-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 280px;
  max-width: 80vw;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  background: var(--cream);
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(20, 13, 9, 0.3);
  display: flex;
}

.bar.search-open .search-panel { opacity: 1; visibility: visible; transform: translateY(0); }

.search-panel input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6em 1em;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
}

.search-panel button {
  background: var(--dark);
  color: var(--cream);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Hero / carrossel
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero__track { position: relative; display: grid; }

.slide {
  grid-area: 1 / 1;
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--cream);
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }

.slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,13,9,.6) 0%, rgba(20,13,9,.32) 45%, rgba(20,13,9,.12) 100%);
}

.slide__inner {
  position: relative;
  padding: clamp(120px, 15vw, 190px) 24px clamp(80px, 13vw, 150px);
  max-width: 720px;
}

.slide.is-active .slide__kicker,
.slide.is-active .slide__heading,
.slide.is-active .slide__subtext,
.slide.is-active .slide__price,
.slide.is-active .slide__actions {
  animation: slideUp 0.7s cubic-bezier(.16,1,.3,1) both;
}
.slide.is-active .slide__kicker { animation-delay: .05s; }
.slide.is-active .slide__heading { animation-delay: .12s; }
.slide.is-active .slide__subtext { animation-delay: .2s; }
.slide.is-active .slide__price { animation-delay: .27s; }
.slide.is-active .slide__actions { animation-delay: .34s; }

@keyframes slideUp { from { opacity:0; transform:translateY(18px);} to { opacity:1; transform:translateY(0);} }

.slide__kicker {
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  font-size: .8rem; color: var(--terracotta-light); margin-bottom: 1rem;
}
.slide__heading {
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.1; margin: 0 0 1.1rem; color: var(--cream); text-wrap: balance;
}
.slide__subtext {
  font-size: 1.08rem; line-height: 1.6; color: rgba(250,243,233,.88); max-width: 46ch; margin: 0 0 1.5rem;
}
.slide__price { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.75rem; }
.slide__price-was { font-size: 1rem; color: rgba(250,243,233,.55); text-decoration: line-through; }
.slide__price-now { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--cream); }
.slide__price-badge { background: var(--terracotta); color: var(--cream); font-size: .78rem; font-weight: 700; padding: .3em .7em; border-radius: 999px; }
.slide__actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.slide__link { color: var(--cream); font-weight: 500; border-bottom: 1px solid rgba(250,243,233,.4); padding-bottom: 2px; }
.slide__link:hover { color: var(--terracotta-light); border-color: var(--terracotta-light); }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(250,243,233,.12); color: var(--cream);
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; z-index: 3;
}
.hero__arrow:hover { background: var(--terracotta); }
.hero__arrow--prev { left: clamp(12px,3vw,40px); }
.hero__arrow--next { right: clamp(12px,3vw,40px); }

.hero__dots { position: absolute; left: 0; right: 0; bottom: 22px; display: flex; justify-content: center; gap: .5rem; z-index: 3; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(250,243,233,.35); padding: 0; transition: background-color .2s ease, width .3s ease; }
.hero__dot.is-active { background: var(--terracotta-light); width: 22px; border-radius: 999px; }

/* ==========================================================================
   Trust bar
   ========================================================================== */

.trustbar { background: var(--cream-2); border-bottom: 1px solid rgba(43,30,22,.06); }
.trustbar__inner { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; justify-content: center; padding: 1.4rem 0; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .92rem; font-weight: 500; white-space: nowrap; }
.trust-item .ic { font-size: 1.2rem; }

/* ==========================================================================
   Seções gerais
   ========================================================================== */

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-heading { font-size: clamp(1.6rem, 3vw, 2.1rem); text-align: center; color: var(--charcoal); margin: 0 0 2.5rem; }

/* ==========================================================================
   Categorias
   ========================================================================== */

.categories__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.category-card { position: relative; display: flex; align-items: flex-end; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.category-card__image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.category-card:hover .category-card__image { transform: scale(1.06); }
.category-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,13,9,0) 40%, rgba(20,13,9,.75) 100%); }
.category-card__label { position: relative; z-index: 1; color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; padding: 1.25rem; }

/* ==========================================================================
   Como funciona
   ========================================================================== */

.how { background: var(--dark); color: var(--cream); }
.how .section-heading { color: var(--cream); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
.how__step { text-align: center; }
.how__number { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); color: var(--cream); font-family: var(--font-display); font-weight: 700; margin-bottom: 1.1rem; }
.how__step h3 { font-family: var(--font-display); margin: 0 0 .6rem; color: var(--cream); }
.how__step p { color: rgba(250,243,233,.75); line-height: 1.6; font-size: .96rem; margin: 0; }

/* ==========================================================================
   Produtos
   ========================================================================== */

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; align-items: stretch; list-style: none; margin: 0; padding: 0; }
.product-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(43,30,22,.18); }
.product-card__link { display: flex; flex-direction: column; flex: 1; }
.product-card__image { aspect-ratio: 1/1; object-fit: cover; flex-shrink: 0; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.product-card:hover .product-card__image { transform: scale(1.045); }
.product-card__badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: var(--terracotta); color: var(--cream); border-radius: 999px;
  font-weight: 600; font-size: .78rem; padding: .3em .9em;
}
.product-card__badge--featured { background: var(--dark); display: flex; align-items: center; gap: .3em; }
.product-card__badge--featured svg { width: 11px; height: 11px; }
.product-card__title {
  font-size: .98rem; font-weight: 600; color: var(--charcoal); padding: 0 1rem; margin: .9rem 0 .3rem;
  line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em;
}
.product-card__price { padding: 0 1rem; color: var(--terracotta); font-weight: 600; margin-bottom: .9rem; }
.product-card__price del { color: #b0a596; font-weight: 400; margin-right: .4em; }
.product-card__btn { margin: 0 1rem 1.25rem !important; margin-top: auto !important; text-align: center; background: var(--dark); color: var(--cream); padding: .75em; font-size: .92rem; }
.product-card__btn:hover { background: var(--terracotta); }

/* ==========================================================================
   Barra de confiança / estatísticas (estilo woodbull)
   ========================================================================== */

.trust-stats { background: var(--dark); color: var(--cream); }
.trust-stats__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: clamp(40px, 6vw, 60px) 0;
}
.trust-stat { display: flex; align-items: center; gap: .9rem; }
.trust-stat__icon {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(250,243,233,.08);
  color: var(--terracotta-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-stat__icon svg { width: 22px; height: 22px; }
.trust-stat strong { display: block; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.1; }
.trust-stat span { font-size: .82rem; color: rgba(250,243,233,.65); }

/* ==========================================================================
   Depoimentos
   ========================================================================== */

.testimonials { background: var(--cream-2); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial-card {
  position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.75rem; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px; height: 100%; color: var(--cream);
}
.testimonial-card__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(.5) saturate(1.05);
  transition: transform .6s cubic-bezier(.16,1,.3,1); z-index: 0;
}
.testimonial-card:hover .testimonial-card__bg { transform: scale(1.05); }
.testimonial-card::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(15,10,7,.72) 0%, rgba(15,10,7,.8) 40%, rgba(12,8,6,.96) 100%);
}
.testimonial-card__stars, .testimonial-card__quote, .testimonial-card__author { position: relative; z-index: 1; }
.testimonial-card__stars { color: var(--terracotta-light); font-size: .92rem; margin-bottom: 1rem; letter-spacing: .1em; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.testimonial-card__quote { flex: 1; font-size: .96rem; line-height: 1.65; color: var(--cream); margin: 0 0 1.5rem; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after { content: '\201D'; }
.testimonial-card__author { display: flex; align-items: center; gap: .8rem; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; border: 2px solid rgba(250,243,233,.5);
  box-shadow: 0 1px 4px rgba(0,0,0,.4);
  font-family: var(--font-display); font-weight: 600; color: var(--cream); font-size: .9rem;
}
.testimonial-card__author strong { display: block; font-size: .88rem; color: var(--cream); text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.testimonial-card__author span { font-size: .76rem; opacity: .85; text-shadow: 0 1px 3px rgba(0,0,0,.5); }

/* ==========================================================================
   Blog (prévia na home + páginas)
   ========================================================================== */

.blog-preview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(43,30,22,.18); }
.blog-card__image { aspect-ratio: 16/10; background-size: cover; background-position: center; flex-shrink: 0; }
.blog-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--terracotta); margin-bottom: .5rem; }
.blog-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 0 0 .6rem; line-height: 1.3; }
.blog-card__excerpt { font-size: .88rem; color: var(--text); opacity: .85; line-height: 1.6; margin: 0 0 1rem; flex: 1; }
.blog-card__meta { font-size: .76rem; opacity: .6; }

.blog-page { padding: 30px 0 100px; }
.blog-hero { text-align: center; padding: 20px 0 50px; max-width: 60ch; margin: 0 auto; }
.blog-hero h1 { margin-bottom: .75rem; }
.blog-hero p { opacity: .8; line-height: 1.6; }

.blog-post { padding: 30px 0 100px; }
.blog-post__header { max-width: 74ch; margin: 0 auto 2rem; text-align: center; }
.blog-post__cat { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--terracotta); margin-bottom: .75rem; }
.blog-post__header h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: .75rem; text-wrap: balance; }
.blog-post__meta { opacity: .65; font-size: .88rem; }
.blog-post__cover { aspect-ratio: 21/9; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: var(--shadow); max-width: 900px; margin: 0 auto 2.5rem; }
.blog-post__body { max-width: 74ch; margin: 0 auto; }
.blog-post__body p { line-height: 1.8; margin-bottom: 1.3rem; }
.blog-post__body h2 { font-size: 1.3rem; margin: 2rem 0 1rem; }
.blog-post__body ul { padding-left: 1.3rem; line-height: 1.8; margin-bottom: 1.3rem; }
.blog-post__cta { max-width: 74ch; margin: 2.5rem auto 0; background: var(--cream-2); border-radius: var(--radius); padding: 1.75rem; text-align: center; }
.blog-post__cta p { margin: 0 0 1rem; }

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner { background: linear-gradient(120deg, var(--terracotta), #a84e21); color: var(--cream); }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(48px,7vw,72px) 0; }
.cta-banner__text h2 { font-family: var(--font-display); margin: 0 0 .6rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-banner__text p { max-width: 52ch; line-height: 1.6; color: rgba(250,243,233,.92); margin: 0; }
.cta-banner .btn-primary { background: var(--dark); box-shadow: none; flex-shrink: 0; }
.cta-banner .btn-primary:hover { background: #180f0a; }

/* ==========================================================================
   Rodapé
   ========================================================================== */

.site-footer { background: var(--dark); color: rgba(250,243,233,.82); padding: 56px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 40px; border-bottom: 1px solid rgba(250,243,233,.12); }

.footer-brand a { display: inline-flex; align-items: center; gap: .55rem; color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: .9rem; }
.footer-brand img { width: 30px; height: 30px; }
.footer-brand p { font-size: .9rem; line-height: 1.6; max-width: 32ch; margin: 0 0 1.25rem; color: rgba(250,243,233,.65); }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(250,243,233,.08);
  display: flex; align-items: center; justify-content: center; color: var(--cream);
  transition: background-color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--terracotta); transform: translateY(-2px); }

.footer-col h4 { font-family: var(--font-display); font-weight: 600; color: var(--cream); font-size: 1rem; margin: 0 0 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col p { color: rgba(250,243,233,.65); font-size: .9rem; }
.footer-col a:hover { color: var(--terracotta-light); }
.footer-col p { margin: 0; line-height: 1.6; }

.payment-icons { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; }
.payment-badge {
  border: 1px solid rgba(250,243,233,.25); border-radius: 6px; padding: .35em .7em;
  font-size: .74rem; font-weight: 600; letter-spacing: .02em; color: rgba(250,243,233,.75);
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; padding: 22px 0; font-size: .82rem; opacity: .6; }
.footer-bottom a:hover { color: var(--terracotta-light); }

/* ==========================================================================
   Botão flutuante do WhatsApp
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(20, 13, 9, 0.35);
  z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 34px rgba(20, 13, 9, 0.4);
}

.whatsapp-fab svg { width: 28px; height: 28px; }

/* ==========================================================================
   Toast de feedback
   ========================================================================== */

.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 1000;
  display: flex; align-items: center; gap: .6rem;
  background: var(--charcoal); color: var(--cream);
  padding: .85em 1.3em; border-radius: 999px;
  box-shadow: 0 14px 32px rgba(20,13,9,.32);
  font-size: .92rem; font-weight: 600;
  transform: translate(-50%, 16px); opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast__icon {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--terracotta); color: var(--cream); font-size: .72rem;
}

/* ==========================================================================
   Favoritar (coração)
   ========================================================================== */

.card-favorite {
  position: absolute; top: .75rem; right: .75rem; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(250,243,233,.92); color: var(--charcoal);
  cursor: pointer; box-shadow: 0 3px 10px rgba(20,13,9,.18);
  transition: transform .15s ease, background-color .15s ease;
}
.card-favorite:hover { transform: scale(1.08); }
.card-favorite svg { width: 17px; height: 17px; transition: fill .15s ease, stroke .15s ease; }
.card-favorite.is-favorited { color: var(--terracotta); }
.card-favorite.is-favorited svg { fill: var(--terracotta); stroke: var(--terracotta); }
.card-favorite.is-popping svg { animation: heart-pop .4s ease; }
@keyframes heart-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.35); }
  60% { transform: scale(.9); }
  100% { transform: scale(1); }
}

.product-gallery .card-favorite { top: 14px; right: 14px; width: 42px; height: 42px; }
.product-gallery .card-favorite svg { width: 20px; height: 20px; }

/* ==========================================================================
   Scroll-reveal
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-group .reveal:nth-child(1){transition-delay:0s;}
.reveal-group .reveal:nth-child(2){transition-delay:.08s;}
.reveal-group .reveal:nth-child(3){transition-delay:.16s;}
.reveal-group .reveal:nth-child(4){transition-delay:.24s;}
.reveal-group .reveal:nth-child(5){transition-delay:.32s;}
.reveal-group .reveal:nth-child(6){transition-delay:.4s;}
.reveal-group .reveal:nth-child(7){transition-delay:.48s;}
.reveal-group .reveal:nth-child(8){transition-delay:.56s;}

@media (prefers-reduced-motion: reduce) {
  .reveal, .slide.is-active * { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Breadcrumb / páginas internas
   ========================================================================== */

.breadcrumb { padding: 18px 0; opacity: .75; font-size: .92rem; }
.breadcrumb a:hover { color: var(--terracotta); }
.page-title { text-align: center; padding: 20px 0 40px; }
.page-title h1 { font-size: clamp(2rem, 4vw, 2.6rem); }

/* ==========================================================================
   Página de produto
   ========================================================================== */

.product-page { padding: 30px 0 80px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.product-gallery { position: relative; }
.product-gallery img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1/1; object-fit: cover; display: block; width: 100%; }

/* ---- Preview de personalização ao vivo ---- */
.engrave-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: flex; align-items: center; gap: .4rem;
  background: rgba(250,243,233,.95); color: var(--charcoal);
  font-size: .76rem; font-weight: 600; padding: .4em .8em .4em .65em;
  border-radius: 999px; box-shadow: 0 4px 14px rgba(20,13,9,.18);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.engrave-badge.is-visible { opacity: 1; transform: translateY(0); }
.engrave-overlay {
  position: absolute; z-index: 1; pointer-events: none;
  opacity: 0; transition: opacity .35s ease;
}
.engrave-overlay.is-visible { opacity: 1; }
.engrave-overlay--text {
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-weight: 600; line-height: 1.15;
  letter-spacing: .01em; overflow: hidden; word-break: break-word;
  mix-blend-mode: multiply; color: var(--charcoal); text-shadow: 0 1px 0 rgba(255,255,255,.18);
}
.engrave-overlay--image {
  background-size: cover; background-position: center; border-radius: 4px;
  filter: grayscale(.9) sepia(.15) contrast(1.08) brightness(1.15);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), 0 2px 12px rgba(0,0,0,.35);
}
[data-tone="light"] .engrave-overlay--text { color: var(--cream); mix-blend-mode: screen; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
[data-tone="light"] .engrave-overlay--image { mix-blend-mode: screen; filter: grayscale(1) contrast(1.1) brightness(1.3); box-shadow: none; }

.product-info__cat { font-size: .85rem; opacity: .7; margin-bottom: .5rem; }
.product-info h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 1rem; text-wrap: balance; }
.product-info__price { display: flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--terracotta); margin-bottom: 1rem; }
.product-info__price del { font-family: var(--font-body); font-size: 1.15rem; font-weight: 400; color: #b0a596; }
.product-info__short { opacity: .85; margin-bottom: .75rem; }
.product-info__stock { display: flex; align-items: center; gap: .5rem; color: #4d7c3a; font-size: .92rem; margin-bottom: 1.5rem; }

/* ---- Seletor de modelo/variação ---- */
.variant-group { margin-bottom: 1.5rem; }
.variant-group__label { display: flex; align-items: baseline; gap: .4rem; font-weight: 600; font-size: .9rem; margin-bottom: .75rem; color: var(--charcoal); }
.variant-group__label .variant-current { font-weight: 400; color: var(--text); opacity: .75; }
.variant-options { display: flex; flex-wrap: wrap; gap: .7rem; }
.variant-option {
  display: block;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
  width: 74px;
}
.variant-option__swatch {
  display: block;
  width: 74px; height: 74px;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(43,30,22,.14);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.variant-option__swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.variant-option:hover .variant-option__swatch { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(43,30,22,.22); }
.variant-option__name { display: block; font-size: .74rem; margin-top: .4rem; color: var(--text); opacity: .8; line-height: 1.25; }
.variant-option.is-selected .variant-option__swatch { border-color: var(--terracotta); box-shadow: 0 6px 16px rgba(201,98,45,.3); }
.variant-option.is-selected .variant-option__name { color: var(--terracotta); opacity: 1; font-weight: 600; }

.personalize-box { background: var(--cream-2); border: 1px solid rgba(43,30,22,.08); border-radius: var(--radius); padding: 1.25rem 1.4rem; margin-bottom: 1.5rem; }
.personalize-box__title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin: 0 0 .3rem; }
.personalize-box__hint { font-size: .88rem; opacity: .85; margin: 0 0 1rem; }
.p-field { margin-bottom: 1rem; }
.p-field:last-child { margin-bottom: 0; }
.p-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.p-field .req { color: var(--terracotta); }
.p-field .opt { font-weight: 400; opacity: .6; font-size: .82rem; }
.p-field input[type="text"] {
  width: 100%; max-width: 420px; padding: .65em .9em; border: 1px solid rgba(43,30,22,.18);
  border-radius: 10px; background: #fff; font-family: var(--font-body); font-size: .94rem;
}
.p-field input[type="text"]:focus { border-color: var(--terracotta); outline: none; }
.p-field .field-hint { display: block; font-size: .78rem; opacity: .65; margin-top: .35rem; }

/* ---- Upload de imagem (dropzone) ---- */
.upload-zone {
  position: relative;
  max-width: 420px;
  border: 2px dashed rgba(43,30,22,.28);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease;
}
.upload-zone:hover { border-color: var(--terracotta); }
.upload-zone.is-dragover { border-color: var(--terracotta); background: var(--cream-2); }
.upload-zone input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; margin: 0; padding: 0;
}
.upload-zone__prompt { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.6rem 1rem; gap: .5rem; }
.upload-zone__icon { width: 34px; height: 34px; color: var(--terracotta); }
.upload-zone__prompt strong { font-size: .92rem; color: var(--charcoal); }
.upload-zone__prompt span { font-size: .78rem; opacity: .62; }

.upload-zone__preview { display: none; align-items: center; gap: .9rem; text-align: left; padding: .75rem; }
.upload-zone.has-file .upload-zone__prompt { display: none; }
.upload-zone.has-file .upload-zone__preview { display: flex; }
.upload-zone.has-file { border-style: solid; border-color: var(--terracotta); background: #fff; }
.upload-zone__preview img { width: 56px; height: 56px; border-radius: 9px; object-fit: cover; flex-shrink: 0; }
.upload-zone__filename { font-size: .85rem; font-weight: 600; color: var(--charcoal); word-break: break-all; }
.upload-zone__filesize { font-size: .76rem; opacity: .6; }
.upload-zone__remove {
  position: relative; z-index: 2; margin-left: auto; flex-shrink: 0;
  background: rgba(43,30,22,.06); border: none; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text); cursor: pointer;
}
.upload-zone__remove:hover { background: var(--terracotta); color: #fff; }

.product-buy { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(43,30,22,.1); }
.qty-input { width: 64px; padding: .7em; border-radius: 10px; border: 1px solid rgba(43,30,22,.2); font-family: var(--font-body); text-align: center; }

.product-desc h2 { font-size: 1.3rem; margin-bottom: .75rem; }
.product-desc p { line-height: 1.7; max-width: 70ch; }

.related h2 { font-size: 1.4rem; margin: 60px 0 24px; }

/* ==========================================================================
   Página da loja
   ========================================================================== */

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 1rem; }
.shop-toolbar select { border-radius: 999px; border: 1px solid rgba(43,30,22,.2); padding: .5em 1.2em; background: #fff; font-family: var(--font-body); }
.shop-toolbar .count { opacity: .75; }

/* ==========================================================================
   Autenticação (login / cadastro)
   ========================================================================== */

.auth-page { padding: clamp(60px, 10vw, 100px) 0 100px; }
.auth-card { max-width: 420px; margin: 0 auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.5rem 2.25rem; }
.auth-card__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--cream-2); color: var(--terracotta); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.auth-card h1 { font-size: 1.5rem; text-align: center; margin-bottom: .4rem; }
.auth-card__sub { text-align: center; opacity: .75; font-size: .92rem; margin-bottom: 1.75rem; }

.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.form-field input {
  width: 100%; padding: .75em .9em; border: 1px solid rgba(43,30,22,.18);
  border-radius: 10px; background: #fff; font-family: var(--font-body); font-size: .94rem;
}
.form-field input:focus { border-color: var(--terracotta); outline: none; }
.form-row { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; margin-bottom: 1.5rem; }
.form-row a { color: var(--terracotta); }
.form-check { display: flex; align-items: center; gap: .5rem; }

.auth-card .btn-primary { width: 100%; text-align: center; padding: .85em; margin-bottom: 1.25rem; }
.auth-card__switch { text-align: center; font-size: .9rem; opacity: .8; }
.auth-card__switch a { color: var(--terracotta); font-weight: 600; }

.auth-divider { display: flex; align-items: center; gap: .8rem; margin: 1.5rem 0; color: var(--text); opacity: .5; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(43,30,22,.15); }

.btn-whatsapp-login {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: #25d366; color: #fff; padding: .8em; text-align: center; margin-bottom: 1rem;
}
.btn-whatsapp-login svg { width: 18px; height: 18px; }
.btn-whatsapp-login:hover { background: #1ebc59; }

/* ==========================================================================
   Minha conta
   ========================================================================== */

.account-page { padding: 30px 0 100px; }
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; align-items: start; }

.account-nav { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; }
.account-nav__user { display: flex; align-items: center; gap: .75rem; padding-bottom: 1.25rem; margin-bottom: 1rem; border-bottom: 1px solid rgba(43,30,22,.08); }
.account-nav__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--terracotta); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; flex-shrink: 0;
}
.account-nav__user strong { display: block; font-size: .92rem; }
.account-nav__user span { font-size: .78rem; opacity: .65; }
.account-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; }
.account-nav a {
  display: flex; align-items: center; gap: .65rem; padding: .65em .75em; border-radius: 10px;
  font-size: .9rem; font-weight: 500; color: var(--text);
}
.account-nav a svg { width: 17px; height: 17px; flex-shrink: 0; opacity: .7; }
.account-nav a:hover { background: var(--cream-2); }
.account-nav a.is-active { background: var(--cream-2); color: var(--terracotta); font-weight: 600; }
.account-nav a.is-active svg { opacity: 1; }
.account-nav a.logout { color: #a4443a; margin-top: .5rem; }

.account-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem 2.25rem; }
.account-panel h1 { font-size: 1.4rem; margin-bottom: .3rem; }
.account-panel__sub { opacity: .7; font-size: .9rem; margin-bottom: 1.75rem; }

.order-row {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 1.25rem; align-items: center;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(43,30,22,.08);
}
.order-row:last-child { border-bottom: none; }
.order-row img { width: 56px; height: 56px; border-radius: 9px; object-fit: cover; }
.order-row__title { font-weight: 600; font-size: .92rem; margin-bottom: .2rem; }
.order-row__meta { font-size: .78rem; opacity: .6; }
.order-status { font-size: .76rem; font-weight: 600; padding: .35em .8em; border-radius: 999px; white-space: nowrap; }
.order-status--sent { background: #e4f0df; color: #3f6b2e; }
.order-status--production { background: #fdecd8; color: #9c5a12; }
.order-status--delivered { background: #e3e8f5; color: #3a4d8f; }
.order-row__price { font-family: var(--font-display); font-weight: 600; color: var(--terracotta); white-space: nowrap; }

.account-empty { text-align: center; padding: 40px 20px; opacity: .7; }

/* ==========================================================================
   Página Sobre
   ========================================================================== */

.about-hero { background: var(--dark); color: var(--cream); padding: clamp(140px, 18vw, 210px) 0 clamp(64px, 8vw, 96px); text-align: center; }
.about-hero p.kicker { font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .8rem; color: var(--terracotta-light); margin-bottom: 1rem; }
.about-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); max-width: 20ch; margin: 0 auto 1.2rem; text-wrap: balance; }
.about-hero p.lede { max-width: 56ch; margin: 0 auto; font-size: 1.08rem; line-height: 1.65; color: rgba(250,243,233,.85); }

.about-story { padding: clamp(56px, 8vw, 96px) 0; }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-story__art { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background-size: cover; background-position: center; }
.about-story__text h2 { font-size: 1.7rem; margin-bottom: 1rem; }
.about-story__text p { line-height: 1.75; margin-bottom: 1rem; color: var(--text); }
.about-story__text p:last-child { margin-bottom: 0; }

.values { background: var(--cream-2); padding: clamp(56px, 8vw, 96px) 0; }
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--shadow); text-align: center; }
.value-card .ic { font-size: 2rem; display: block; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.value-card p { font-size: .92rem; line-height: 1.6; color: var(--text); margin: 0; }

.about-stats { display: flex; justify-content: center; gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap; padding: clamp(48px, 7vw, 72px) 0; text-align: center; }
.about-stats strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--terracotta); }
.about-stats span { font-size: .88rem; opacity: .75; }

/* ==========================================================================
   Carrinho
   ========================================================================== */

.cart-page { padding: 30px 0 100px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }

.cart-items { list-style: none; margin: 0; padding: 0; }
.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(43,30,22,.1); align-items: start; }
.cart-item img { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; }
.cart-item__title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin: 0 0 .5rem; }
.cart-item__meta { font-size: .85rem; color: var(--text); opacity: .8; margin: 0 0 .25rem; }
.cart-item__meta a { color: var(--terracotta); text-decoration: underline; }
.cart-item__controls { display: flex; align-items: center; gap: .9rem; margin-top: .75rem; }
.cart-item__qty { display: inline-flex; align-items: center; border: 1px solid rgba(43,30,22,.18); border-radius: 999px; overflow: hidden; }
.cart-item__qty button { background: none; border: none; width: 30px; height: 30px; cursor: pointer; font-size: 1rem; color: var(--charcoal); }
.cart-item__qty button:hover { background: var(--cream-2); }
.cart-item__qty input { width: 34px; border: none; text-align: center; font-family: var(--font-body); font-size: .92rem; }
.cart-item__remove { background: none; border: none; color: var(--text); opacity: .55; font-size: .85rem; cursor: pointer; text-decoration: underline; padding: 0; }
.cart-item__remove:hover { opacity: 1; color: var(--terracotta); }
.cart-item__price { font-family: var(--font-display); font-weight: 600; color: var(--terracotta); text-align: right; white-space: nowrap; }

.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty .ic { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-empty h2 { margin-bottom: .75rem; }
.cart-empty p { opacity: .75; margin-bottom: 1.5rem; }

.order-summary { background: var(--cream-2); border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 110px; }
.order-summary h2 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.order-summary__row { display: flex; justify-content: space-between; font-size: .92rem; padding: .55rem 0; border-bottom: 1px solid rgba(43,30,22,.08); }
.order-summary__row.total { border-bottom: none; padding-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--charcoal); }
.order-summary__row.total span:last-child { color: var(--terracotta); }
.order-summary .btn { width: 100%; text-align: center; margin-top: 1.25rem; padding: .85em; }
.order-summary__note { font-size: .78rem; opacity: .65; text-align: center; margin-top: .9rem; }

.order-summary__coupon { padding: 1rem 0; border-bottom: 1px solid rgba(43,30,22,.08); }
.order-summary__coupon label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .55rem; color: var(--charcoal); }
.coupon-field { display: flex; gap: .5rem; }
.coupon-field input {
  flex: 1; min-width: 0; padding: .65em .8em; border: 1px solid rgba(43,30,22,.18);
  border-radius: 10px; font-family: var(--font-sans); font-size: .88rem; background: #fff;
}
.coupon-field input:focus { outline: none; border-color: var(--terracotta); }
.btn-coupon {
  flex-shrink: 0; padding: .65em 1.1em; border-radius: 10px; border: 1px solid var(--charcoal);
  background: var(--charcoal); color: var(--cream); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: opacity .15s ease;
}
.btn-coupon:hover { opacity: .85; }
.coupon-message { font-size: .8rem; margin: .6rem 0 0; display: none; }
.coupon-message.is-success { display: block; color: #2e7d4f; }
.coupon-message.is-error { display: block; color: #b3412c; }
.order-summary__row.discount span:last-child { color: #2e7d4f; }

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .cart-pill .cart-count { display: none; }
}

@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; gap: 1.75rem; }
  .auth-card { padding: 2rem 1.5rem; }
  .account-layout { grid-template-columns: 1fr; }
  .account-panel { padding: 1.5rem; }
  .order-row { grid-template-columns: auto 1fr; row-gap: .5rem; }
  .order-row__price, .order-status { grid-column: 2; justify-self: start; }
  .about-story__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .values__grid { grid-template-columns: 1fr; }
  .about-stats { gap: 2rem; }

  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item__price { grid-column: 1 / -1; text-align: left; margin-top: .5rem; }
  .cart-item img { width: 72px; height: 72px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  .whatsapp-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 25px; height: 25px; }

  .coupon-field { flex-direction: column; }
  .btn-coupon { width: 100%; }

  .bar { margin: 10px auto 0; padding: 8px 14px; gap: .6rem; }
  .site-header.is-scrolled .bar { margin-top: 6px; padding: 6px 12px; }
  .bar__brand a { font-size: 1.05rem; }
  .bar__brand img { width: 26px; height: 26px; }
  .bar__nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .bar__actions .icon-btn.search-toggle,
  .bar__actions .search-panel { display: none; }

  .mobile-menu {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: var(--dark); border-radius: 20px; padding: .5rem;
    box-shadow: 0 20px 44px rgba(20,13,9,.35);
    display: none; flex-direction: column;
  }
  .bar.menu-open .mobile-menu { display: flex; }
  .mobile-menu a { display: block; padding: .85em 1.1em; border-radius: 12px; color: rgba(250,243,233,.9); font-weight: 500; }
  .mobile-menu a:hover { background: rgba(250,243,233,.08); }

  .slide__inner { max-width: 100%; }
  .slide__actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; padding: 32px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .product-card__title { font-size: .88rem; }
  .product-card__btn { font-size: .8rem; }
  .trustbar__inner { display: grid; grid-template-columns: repeat(2,1fr); gap: .9rem 1rem; padding: 1.25rem 0; }
  .trust-item { white-space: normal; font-size: .85rem; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .cta-banner .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
}
