:root {
  --bg: #f3ede4;
  --bg-alt: #efe7db;
  --panel: #fffaf3;
  --ink: #2b1f1a;
  --muted: #786b60;
  --line: rgba(120, 96, 72, 0.16);
  --brand: #c5a652;
  --brand-deep: #8f6f2d;
  --coffee: #2f2118;
  --coffee-soft: #463123;
  --green: #234e3a;
  --shadow: 0 24px 54px rgba(43, 31, 26, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Fauna One", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(197, 166, 82, 0.16), transparent 22%),
    linear-gradient(180deg, #f6efe7 0%, #f1e8dc 100%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.site-shell { min-height: 100vh; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.serif-display { font-family: "Cinzel", serif; }
.muted { color: var(--muted); }
.hidden { display: none !important; }
#pedidos { display: none !important; }

.topbar {
  background: var(--brand);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.topbar .container {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 0;
  flex-wrap: wrap;
  text-align: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(47, 33, 24, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header .container {
  display: grid;
  grid-template-columns: 260px 1fr 160px;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.brand-copy strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #f4ebdf;
}
.brand-copy span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #c7ae82;
  text-transform: uppercase;
}
.brand-copy {
  display: none;
}
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: #f5ede1;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.nav a:hover { color: #ddc07f; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle,
.mobile-bag,
.mobile-menu {
  display: none;
}

.button,
.button-ghost,
.button-alt {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  transition: 180ms ease;
}
.button {
  background: linear-gradient(135deg, var(--brand), #d7bb74);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(143, 111, 45, 0.18);
}
.button:hover { transform: translateY(-1px); }
.button-ghost {
  background: rgba(43, 31, 26, 0.04);
  color: var(--ink);
  border: 1px solid rgba(43, 31, 26, 0.12);
}
.button-alt {
  background: #28c85f;
  color: #fff;
  font-weight: 700;
}
.header .button-ghost,
.hero .button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f8f0e4;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  background: #4a3023;
  color: #fff7ef;
  padding: 0 0 18px;
  position: relative;
  overflow: hidden;
}
.hero-banner-only {
  min-height: auto;
}
.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: end;
  min-height: auto;
}
.hero-copy {
  padding: 18px 0 8px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  color: #d5b56d;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
}
.hero-copy h1 {
  margin: 14px 0 14px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  max-width: 820px;
}
.hero-copy p {
  max-width: 680px;
  color: rgba(255, 245, 234, 0.82);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  color: rgba(255, 245, 234, 0.64);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-link {
  display: inline-block;
  margin-top: 18px;
  color: #d7bb74;
  font-weight: 700;
}
.hero-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  background: #2d1f17;
  opacity: 0.9;
}
.hero-card img {
  width: 100%;
  height: 420px;
  min-height: 420px;
  object-fit: cover;
}

.hero-carousel {
  position: relative;
}
.hero-carousel-banner {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #4a3023;
  overflow: hidden;
}
.hero-picture,
.hero-carousel-banner img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-carousel-banner img {
  object-fit: cover;
  object-position: center;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots-banner {
  position: relative;
  margin-top: 10px;
  z-index: 2;
  padding: 0 16px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hero-dot.is-active {
  background: #f6efe3;
}
.section {
  padding: 58px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-products {
  position: relative;
  padding: 44px 0 52px;
  background:
    radial-gradient(circle at top center, rgba(215, 187, 116, 0.08), transparent 32%),
    linear-gradient(180deg, #3a2a21 0%, #2f2118 100%);
  color: #f6efe3;
}
.site-shell > main > #produtos.section-products {
  padding-top: 44px;
}
.section-products .section-head h2 {
  color: #f6efe3;
}
.section-products .eyebrow {
  color: #d7bb74;
}
.section-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(215, 187, 116, 0.18);
}
.section-products .section-head {
  margin-bottom: 10px;
}
.section-products .section-head h2 {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.section-products .catalog-toolbar {
  margin-bottom: 28px;
}
.section-products .catalog-toolbar .button-ghost {
  background: rgba(255, 247, 239, 0.06);
  color: #f6efe3;
  border-color: rgba(255, 247, 239, 0.16);
}
.section-products #catalogMessage {
  color: rgba(246, 239, 227, 0.72);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-head-centered {
  justify-content: center;
  text-align: center;
  margin-bottom: 12px;
}
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
}
.catalog-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.catalog-grid {
  display: grid;
  gap: 28px;
}
.catalog-group {
  display: grid;
  gap: 18px;
}
.catalog-group-head {
  display: grid;
  gap: 6px;
}
.catalog-group-head h3 {
  margin: 0;
  color: #f6efe3;
  font-size: clamp(24px, 3.2vw, 38px);
  text-transform: uppercase;
}
.catalog-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.panel,
.product-card,
.info-card,
.orders-card,
.empty-state,
.cart-item,
.modal-card {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.about-section {
  background: #fffaf3;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.about-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 50px);
  text-transform: uppercase;
}
.about-text {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  color: var(--ink);
  line-height: 1.85;
}
.about-highlight {
  color: var(--brand-deep);
  font-size: 28px;
  line-height: 1.3;
}
.info-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,250,243,0.98), rgba(245,235,222,0.95));
}
.info-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.catalog-grid {
  display: grid;
  gap: 28px;
}

.section-copy {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(47, 33, 24, 0.98), rgba(35, 24, 18, 0.98));
  color: #f8eee0;
}

.process-section .section-copy,
.process-section .eyebrow {
  color: rgba(232, 203, 137, 0.92);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.process-carousel {
  margin-top: 28px;
}
.process-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}
.process-stage img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.process-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.56));
}
.process-stage-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 34px;
}
.process-stage-copy h3 {
  margin: 0 0 12px;
  color: #f8eee0;
  font-size: clamp(28px, 4vw, 44px);
}
.process-stage-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 238, 224, 0.84);
  line-height: 1.8;
}
.process-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(197, 166, 82, 0.84);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}
.process-nav-prev {
  left: 18px;
}
.process-nav-next {
  right: 18px;
}
.process-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.process-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.24);
}
.process-dot.is-active {
  background: var(--brand);
}

.process-card {
  padding: 28px 22px;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.06);
  border: 1px solid rgba(232, 203, 137, 0.16);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.16);
}

.process-step {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--brand), #ddc27f);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.process-card h3 {
  margin: 0 0 10px;
  color: #fff7ec;
  font-size: 22px;
}

.process-card p {
  margin: 0;
  color: rgba(248, 238, 224, 0.78);
  line-height: 1.7;
  font-size: 14px;
}

.benefits-section {
  background: #f1ebe2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 24px 20px;
  border-radius: 26px;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.benefit-subtitle {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-weight: 700;
}

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

.testimonials-section {
  background: #fffaf3;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,250,243,0.98), rgba(241,235,226,0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  margin-bottom: 16px;
  color: var(--brand);
  letter-spacing: 0.18em;
  font-size: 14px;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card strong {
  font-family: "Cinzel", serif;
  font-size: 15px;
}

.newsletter-section {
  background: var(--coffee);
  color: #f8eee0;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(197, 166, 82, 0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(232, 203, 137, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.newsletter-panel h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
}

.newsletter-panel p {
  margin: 0;
  color: rgba(248, 238, 224, 0.78);
  line-height: 1.8;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 250, 243, 0.95);
  color: var(--ink);
}
.product-card {
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
}
.product-media {
  position: relative;
}
.product-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  background: #e8dfd2;
}
.product-body {
  padding: 16px 18px 14px;
  display: grid;
  gap: 10px;
  color: #34241b;
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #d8bc71;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.product-body h3,
.product-body .price,
.product-body .price-old,
.product-body strong {
  color: #34241b;
}
.product-body .muted,
.product-weight .muted {
  color: rgba(52, 36, 27, 0.78);
}
.product-body h3 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}
.product-choices {
  display: grid;
  gap: 8px;
}
.product-choice {
  display: grid;
  gap: 6px;
}
.product-choice span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(52, 36, 27, 0.72);
}
.product-choice select {
  width: 100%;
  min-height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(120, 96, 72, 0.18);
  background: rgba(250, 244, 235, 0.94);
  color: #34241b;
  padding: 10px 12px;
  font: inherit;
}
.product-stars {
  color: #b08a36;
  letter-spacing: 0.12em;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  font-family: Arial, sans-serif;
}
.product-weight {
  min-height: 22px;
}
.product-buy {
  width: 100%;
  justify-content: center;
  letter-spacing: 0.08em;
}
.price {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  font-family: "Cinzel", serif;
}
.price-old {
  margin-top: 4px;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
}

.panel,
.orders-card,
.empty-state {
  padding: 28px;
}

.cart-fab {
  display: none;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 39;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #d7ba70);
  color: var(--coffee);
  box-shadow: 0 16px 28px rgba(43, 31, 26, 0.2);
  font-size: 0;
  line-height: 0;
}

.whatsapp-fab-icon {
  width: 26px;
  height: 26px;
  display: block;
  transform: translateY(0.5px);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--coffee);
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(27, 19, 14, 0.58);
  backdrop-filter: blur(6px);
  display: none;
}
.overlay.is-open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(430px, 100%);
  height: 100vh;
  background: #fffdfa;
  box-shadow: -24px 0 54px rgba(43, 31, 26, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head,
.drawer-foot {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}
.drawer-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #fffdfa;
}
.drawer-scroll {
  padding: 22px;
  overflow: auto;
  min-height: 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 14px;
  background: #f5eee5;
  margin-bottom: 14px;
  border-radius: 22px;
}
.cart-item img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
  background: #e8dfd2;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.qty-row button {
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  background: #cfb068;
  color: #fff;
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
}
.modal.is-open { display: grid; }
.modal-card {
  width: min(780px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.password-input-wrap {
  position: relative;
}

.password-input-wrap input {
  padding-right: 56px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(43, 31, 26, 0.06);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.password-toggle:hover {
  background: rgba(43, 31, 26, 0.12);
}
.field,
.field-full {
  display: grid;
  gap: 8px;
}
.field-full { grid-column: 1 / -1; }
.field label,
.field-full label {
  font-size: 13px;
  color: var(--muted);
}
.field input,
.field select,
.field-full input,
.field-full select {
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: #fff;
}

.checkout-summary {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #f3eadf;
  display: grid;
  gap: 10px;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.orders-grid {
  display: grid;
  gap: 14px;
}

.site-footer {
  padding: 42px 0 54px;
  background: var(--coffee);
  color: #f4ece2;
  margin-top: 24px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.process-gallery {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-tile {
  background: rgba(255, 249, 240, 0.06);
  border: 1px solid rgba(232, 203, 137, 0.14);
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
}

.process-tile-featured {
  grid-row: span 2;
}

.process-tile-media {
  position: relative;
}

.process-tile-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.process-tile-featured .process-tile-media img {
  height: 100%;
  min-height: 470px;
}

.process-tile-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ddc27f);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.process-tile-copy {
  display: grid;
  gap: 10px;
  padding: 20px 20px 22px;
}

.process-tile-copy h3 {
  margin: 0;
  color: #f8eee0;
  font-size: 24px;
}

.process-tile-copy p {
  margin: 0;
  color: rgba(248, 238, 224, 0.78);
  line-height: 1.7;
  font-size: 14px;
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 58px 0 62px;
  background: #3a2a21;
  color: #f6efe3;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(197, 166, 82, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.9fr;
  gap: 42px;
}

.footer-col h3 {
  margin: 0;
  color: #d7bb74;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.footer-rule {
  display: block;
  width: 78px;
  height: 2px;
  margin: 14px 0 22px;
  background: rgba(215, 187, 116, 0.72);
}

.footer-col p,
.footer-contact-list,
.footer-contact-list span {
  color: #fff8ef;
  line-height: 1.72;
  font-size: 15px;
}

.footer-contact-list {
  display: grid;
  gap: 18px;
}

.footer-contact-list div {
  display: grid;
  gap: 4px;
}

.footer-contact-list strong {
  font-size: 15px;
  color: #fff8ef;
  font-family: "Poppins", sans-serif;
}

.footer-menu {
  display: grid;
  gap: 10px;
}

.footer-menu a {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #d7bb74;
  color: #3a2a21;
  font-weight: 700;
  text-transform: lowercase;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-badges {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  padding: 0 8px;
  border-radius: 4px;
  background: #fff;
  color: #4b3a2a;
  font-size: 11px;
  font-weight: 700;
  flex: 0 0 auto;
}

.payment-badge-pix,
.payment-badge-visa,
.payment-badge-mastercard,
.payment-badge-elo {
  min-width: 72px;
  width: 72px;
  max-width: 72px;
  height: 32px;
  min-height: 32px;
  max-height: 32px;
  padding: 3px 6px;
  border-radius: 4px;
  overflow: hidden;
}

.payment-badge-pix img,
.payment-badge-visa img,
.payment-badge-mastercard img,
.payment-badge-elo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.payment-badge-elo {
  background: #000;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .info-grid,
  .catalog-grid,
  .process-grid,
  .process-gallery,
  .benefits-grid,
  .testimonial-grid,
  .newsletter-panel,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    flex-wrap: wrap;
  }

  .header .container {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }
  .brand img {
    width: 58px;
    height: 58px;
  }
  .nav { display: none; }
  .header-actions {
    justify-self: end;
    gap: 8px;
  }
  .mobile-bag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(214, 186, 121, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #f8f0e4;
    position: relative;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-bag svg {
    width: 21px;
    height: 21px;
    display: block;
  }
  .mobile-bag-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--coffee);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .header #authButton {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(214, 186, 121, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: #f8f0e4;
    border-radius: 999px;
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(47, 33, 24, 0.99), rgba(38, 26, 19, 0.99));
  }
  .mobile-menu.is-open {
    display: block;
  }
  .mobile-menu-inner {
    padding: 16px 0 22px;
  }
  .mobile-nav {
    display: grid;
    gap: 10px;
    color: #f5ede1;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-account-link {
    width: 100%;
    padding: 0 0 12px;
    margin: 0 0 2px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    color: #d7bb74;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .hero-carousel-banner { aspect-ratio: 16 / 7; }
  .topbar {
    font-size: 10px;
  }
  .topbar .container {
    gap: 10px;
    padding: 8px 0;
    letter-spacing: 0.04em;
    flex-wrap: nowrap;
  }
}

@media (max-width: 720px) {
  .topbar {
    font-size: 9px;
  }
  .topbar .container {
    gap: 8px;
    padding: 7px 0;
  }
  .header .container {
    grid-template-columns: auto 1fr auto;
  }
  .whatsapp-fab {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }
  .whatsapp-fab-icon {
    width: 24px;
    height: 24px;
  }
  .header #authButton {
    padding: 10px 14px;
    font-size: 13px;
  }
  .button,
  .button-ghost,
  .button-alt {
    padding: 11px 16px;
    font-size: 13px;
    line-height: 1.2;
  }
  .hero { padding: 0 0 18px; }
  .hero-carousel-banner { aspect-ratio: 5 / 2; }
  .hero-copy h1 { font-size: clamp(34px, 10vw, 54px); }
  .hero-copy p { font-size: 16px; }
  .hero-highlights { gap: 10px; font-size: 11px; }
  .about-highlight { font-size: 22px; }
  .section-head h2 {
    font-size: clamp(24px, 8vw, 36px);
  }
  .section-copy {
    font-size: 14px;
    line-height: 1.7;
  }
  .product-card {
    border-radius: 20px;
  }
  .product-card img {
    height: 220px;
  }
  .product-body {
  padding: 16px 18px 14px;
  display: grid;
  gap: 10px;
  color: #34241b;
}
  .product-tag {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 10px;
  }
  .product-body h3,
.product-body .price,
.product-body .price-old,
.product-body strong {
  color: #34241b;
}
.product-body .muted,
.product-weight .muted {
  color: rgba(52, 36, 27, 0.78);
}
.product-body h3 {
    font-size: 16px;
    line-height: 1.25;
  }
  .product-weight,
  .product-body .muted,
  .benefit-card p:last-child,
  .testimonial-card p,
  .info-card p,
  .process-tile-copy p,
  .process-card p,
  .newsletter-panel p {
    font-size: 13px;
    line-height: 1.65;
  }
  .product-stars {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .price {
    font-size: 24px;
  }
  .price-old {
    font-size: 12px;
  }
  .product-choice span {
    font-size: 10px;
  }
  .product-choice select {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }
  .product-buy {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .info-card h3,
  .benefit-card h3,
  .testimonial-card strong,
  .process-tile-copy h3 {
    font-size: 18px;
  }
  .cart-item {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }
  .cart-item img {
    width: 72px;
    height: 72px;
  }
  .cart-item h3 {
    font-size: 15px !important;
    line-height: 1.3;
  }
  .qty-row {
    gap: 8px;
    margin-top: 10px;
  }
  .qty-row button {
    min-width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .checkout-line,
  .checkout-summary,
  .field label,
  .field-full label,
  .mobile-nav a,
  .mobile-account-link {
    font-size: 13px;
  }
  .checkout-summary {
    gap: 8px;
  }
  .field input,
  .field select,
  .field-full input,
  .field-full select {
    min-height: 46px;
    padding: 0 12px;
    font-size: 14px;
  }
  .process-stage,
  .process-stage img { min-height: 420px; height: 420px; }
  .process-stage-copy { padding: 22px; }
  .process-tile-featured {
    grid-row: span 1;
    }
    .process-tile-featured .process-tile-media img {
      min-height: 300px;
    }
    .footer-grid {
      gap: 28px;
    }
    .drawer-head, .drawer-scroll, .modal-card { padding: 18px; }
    .drawer-foot {
      position: sticky;
      bottom: 0;
      padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
      box-shadow: 0 -10px 24px rgba(36, 24, 18, 0.08);
    }
    .drawer-foot .button {
      min-height: 48px;
    }
  .newsletter-panel,
  .process-card,
  .benefit-card,
  .testimonial-card {
    padding: 22px 18px;
  }
  .info-card,
  .orders-card,
  .panel,
  .empty-state {
    padding: 20px 18px;
  }
}





.qty-row [data-action="remove-from-cart"] {
  min-width: auto !important;
  height: auto !important;
  padding: 8px 14px !important;
  background: rgba(43, 31, 26, 0.06) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(43, 31, 26, 0.12) !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
.qty-row [data-action="remove-from-cart"]:hover {
  background: rgba(43, 31, 26, 0.1) !important;
}
