/* Tipografia da identidade visual: Poppins nos textos/interface; Wilmina preservada no logotipo pela imagem oficial. */
:root {
  --cream: #f9ebe1;
  --cream-2: #fff8f3;
  --cream-3: #f2ddcf;
  --brown: #3e1811;
  --brown-2: #5a261c;
  --gold: #c79444;
  --gold-soft: #e4c17c;
  --muted: #84675f;
  --line: rgba(62, 24, 17, 0.16);
  --shadow: 0 18px 48px rgba(62, 24, 17, 0.13);
  --serif: "Poppins", system-ui, sans-serif;
  --sans: "Poppins", system-ui, sans-serif;
  --script: "Poppins", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream-2);
  color: var(--brown);
  font-family: var(--sans);
}

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

a { color: inherit; text-decoration: none; }

/* Escurecimento forte + marca d'água nos cards de produto */
.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.card-image-wrap img {
  filter: brightness(0.34) saturate(0.92);
  transform: scale(1.01);
}

.card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 8, 6, 0.18) 0%,
    rgba(20, 8, 6, 0.48) 100%
  );
  pointer-events: none;
}

.coming-soon {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  min-width: 132px;
  border-radius: 999px;
  background: rgba(249, 235, 225, 0.14);
  border: 1px solid rgba(249, 235, 225, 0.46);
  color: #fff8f3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  pointer-events: none;
}

.category-image-wrap .coming-soon {
  min-width: 118px;
  font-size: 0.74rem;
  padding: 8px 14px;
}

.product-card .card-image-wrap img {
  aspect-ratio: 1 / .82;
  object-fit: cover;
}

.category-grid .card-image-wrap img {
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

@media (max-width: 560px) {
  .coming-soon {
    min-width: 110px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}

.topbar {
  height: 34px;
  background: var(--brown);
  color: var(--cream);
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.topbar a {
  font-weight: 700;
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 243, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 42px));
  height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr 96px;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 205px;
  height: auto;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}

.menu a {
  position: relative;
  padding: 10px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}

.menu a:hover::after { width: 100%; }

.nav-icons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  font-size: 1.35rem;
}

.menu-toggle { display: none; }

.hero {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(249,235,225,.98) 0%, rgba(249,235,225,.82) 32%, rgba(249,235,225,.26) 58%, rgba(249,235,225,.08) 100%),
    url("assets/hero-banner.webp");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 110px 0 90px;
  max-width: 610px;
  margin-left: calc((100% - min(1180px, calc(100% - 42px))) / 2);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: inline-block;
  font-family: var(--sans);
  color: var(--gold);
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p:not(.kicker) {
  max-width: 420px;
  margin: 22px 0 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--brown-2);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 14px 24px rgba(62, 24, 17, .18);
}

.btn-light {
  background: rgba(255,255,255,.72);
  border-color: var(--gold-soft);
  color: var(--brown);
}

.section {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 66px 0;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.ornament {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.section-title h2 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.section-title p {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  background: #fffaf6;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(62,24,17,.06);
}

.product-card img {
  aspect-ratio: 1 / .82;
  object-fit: cover;
}

.product-card div {
  padding: 14px 12px 16px;
  text-align: center;
}

.product-card h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.1;
}

.product-card p {
  margin: 0;
  font-size: .72rem;
  color: var(--muted);
}

.product-card strong {
  display: block;
  margin: 2px 0 10px;
  font-size: .78rem;
}

.product-card a {
  display: inline-flex;
  min-height: 27px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  font-size: .61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.passion {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--cream) 0%, #fff8f3 100%);
}

.passion-image img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.passion-copy {
  padding: 58px 48px;
  align-self: center;
}

.mini-logo {
  color: var(--gold);
  font-size: 1.7rem;
}

.passion-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.05;
}

.passion-copy p:not(.kicker) {
  color: var(--muted);
  line-height: 1.75;
  margin: 18px 0 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--line);
  align-self: center;
  margin-right: max(24px, calc((100vw - 1180px) / 2));
}

.feature-grid div {
  min-height: 152px;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid span {
  color: var(--gold);
  font-size: 2rem;
}

.feature-grid strong {
  display: block;
  max-width: 150px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.2;
}

.compact { margin-bottom: 24px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.category-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  background: #fffaf6;
}

.category-grid img {
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.category-grid h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 12px 0 8px;
}

.category-grid a {
  display: inline-flex;
  margin-bottom: 14px;
  min-height: 26px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  font-size: .62rem;
  text-transform: uppercase;
  font-weight: 800;
}

.info-band {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 1fr 1.55fr 1.05fr;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.info-band h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.info-band p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 8px;
}

.info-band .btn {
  margin-top: 14px;
  min-height: 40px;
  font-size: .72rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.insta-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.quote-card {
  border: 1px solid rgba(199,148,68,.42);
  border-radius: 18px;
  background: rgba(255,248,243,.8);
  padding: 24px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.quote-card p {
  font-family: var(--sans);
  color: var(--brown);
  font-size: 1.35rem;
  line-height: 1.55;
  font-weight: 700;
}

.quote-card span {
  color: var(--gold);
  font-size: 3rem;
}

.footer {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  padding: 40px max(21px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer img {
  width: 210px;
  margin-bottom: 12px;
}

.footer h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.copyright {
  background: var(--brown);
  color: rgba(249,235,225,.8);
  text-align: center;
  padding: 14px;
  font-size: .78rem;
}

@media (max-width: 1100px) {
  .product-row { grid-template-columns: repeat(4, 1fr); }
  .passion { grid-template-columns: 1fr; }
  .feature-grid { margin: 0; border-left: 0; }
  .passion-image img { max-height: 460px; }
}

@media (max-width: 880px) {
  .topbar { display: none; }

  .nav {
    height: auto;
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand img { width: 184px; }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--brown);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 800;
  }

  .menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-bottom: 18px;
  }

  .menu.open { display: flex; }

  .nav-icons { display: none; }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(249,235,225,.98) 0%, rgba(249,235,225,.72) 100%),
      url("assets/hero-banner.webp");
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
    padding: 72px 0;
  }

  .product-row { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .info-band { grid-template-columns: 1fr; padding: 22px; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
  .product-row,
  .category-grid,
  .footer,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .info-band {
    width: min(100% - 28px, 1180px);
  }

  .passion-copy { padding: 42px 24px; }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Sessões Dani e Cleu */
.team-section {
  padding-top: 72px;
}

.team-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf6 0%, #fff4ec 100%);
  box-shadow: 0 18px 48px rgba(62, 24, 17, 0.08);
}

.team-card + .team-card {
  margin-top: 24px;
}

.team-card.reverse {
  grid-template-columns: 1fr 420px;
}

.team-card.reverse .team-photo {
  order: 2;
}

.team-card.reverse .team-copy {
  order: 1;
}

.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 460px;
  background: #efefef;
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.team-copy h3 {
  margin: 6px 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.45vw, 2.55rem);
  line-height: 1.12;
}

.team-copy p:not(.kicker) {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.team-copy .btn {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .team-card,
  .team-card.reverse {
    grid-template-columns: 1fr;
  }

  .team-card.reverse .team-photo,
  .team-card.reverse .team-copy {
    order: initial;
  }

  .team-photo,
  .team-photo img {
    min-height: 360px;
  }
}

/* Destaques com imagens reais do cliente */
.highlights-title {
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.highlights-title > div {
  max-width: 760px;
}

.btn-see-more {
  flex-shrink: 0;
  margin-bottom: 4px;
}

.real-products-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.real-product-card img {
  filter: none !important;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center;
}

.real-product-card::after,
.real-product-card::before {
  content: none !important;
}

.real-product-card div {
  min-height: 170px;
}

/* Página de cardápio completo */
.menu-page {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.menu-hero {
  padding: 74px 0 38px;
  border-bottom: 1px solid var(--line);
}

.menu-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.menu-hero p:not(.kicker) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
  margin: 18px 0 24px;
}

.menu-category-nav {
  position: sticky;
  top: 112px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0;
  background: rgba(255, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.menu-category-nav a {
  display: inline-flex;
  min-height: 34px;
  padding: 0 13px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf6;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
}

.menu-category {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.menu-category-heading {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: end;
  margin-bottom: 22px;
}

.menu-category-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.menu-category-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.menu-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fffaf6;
  box-shadow: 0 12px 30px rgba(62, 24, 17, 0.05);
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.menu-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.18;
}

.menu-item-head span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown-2);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-desc,
.menu-full,
.menu-meta {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.86rem;
  margin: 10px 0 0;
}

.menu-full {
  font-size: 0.8rem;
}

.menu-price {
  margin-top: 14px;
  font-weight: 900;
  color: var(--brown);
}

.variation-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
}

.variation-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.variation-list strong {
  color: var(--brown);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .real-products-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlights-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-category-heading,
  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-category-nav {
    top: 74px;
  }
}

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

  .menu-page {
    width: min(100% - 28px, 1180px);
  }

  .menu-item-head {
    flex-direction: column;
    gap: 8px;
  }

  .menu-category-nav {
    position: static;
  }
}

/* Ajustes: imagem das sócias e contato sem galeria */
.passion-image img[src*="socias"] {
  object-position: center top;
}

.contact-clean {
  display: grid;
  align-content: center;
}

.contact-clean .btn {
  margin-top: 12px;
  width: fit-content;
  min-height: 40px;
  font-size: 0.72rem;
}

/* Seção de contato melhorada */
.contact-section {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.9fr;
  gap: 18px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffaf6 0%, var(--cream) 100%);
  box-shadow: 0 18px 46px rgba(62, 24, 17, 0.08);
  padding: 28px;
}

.contact-main h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-main p:not(.kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-details h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.contact-details li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-details li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-details strong {
  color: var(--brown);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-details span,
.contact-details a {
  color: var(--muted);
  line-height: 1.55;
}

.contact-details a {
  font-weight: 800;
  color: var(--brown-2);
}

.contact-quote {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 148, 68, 0.18), transparent 42%),
    #fffaf6;
}

.contact-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.16;
  font-weight: 800;
  color: var(--brown);
}

.contact-quote span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 600;
}

.contact-quote a {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 20px;
  border-radius: 50%;
  border: 1px solid rgba(199, 148, 68, 0.45);
  color: var(--gold);
  font-size: 2.3rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-quote a:hover {
  transform: translateY(-2px);
  background: var(--cream);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-social a,
.footer-cta {
  display: inline-flex !important;
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  align-items: center;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream) !important;
  font-size: 0.72rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-section {
    width: min(100% - 28px, 1180px);
  }

  .contact-card {
    padding: 22px;
  }

  .contact-actions .btn {
    width: 100%;
  }
}


/* Carrinho lateral */
.cart-open-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(62, 24, 17, 0.12);
}

.cart-open-button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown);
  font-size: 0.72rem;
}

.add-to-cart {
  width: 100%;
  min-height: 34px;
  margin-top: 8px;
  border: 1px solid rgba(62, 24, 17, 0.18);
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.add-to-cart:hover {
  transform: translateY(-1px);
  background: #fffaf6;
}

.menu-add-to-cart {
  width: auto;
  padding: 0 16px;
  margin-top: 14px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(36, 16, 12, 0.42);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(440px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(110%);
  transition: transform 0.24s ease;
  background: #fffaf6;
  color: var(--brown);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(62, 24, 17, 0.22);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.cart-drawer-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.cart-close-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffaf6;
  color: var(--brown);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  overflow: auto;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.cart-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.15;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: var(--cream);
}

.cart-qty button,
.cart-remove {
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 900;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fffaf6;
  color: var(--brown);
}

.cart-qty span {
  min-width: 22px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 900;
}

.cart-remove {
  background: transparent;
  color: var(--muted);
  font-size: 0.74rem;
  text-decoration: underline;
}

.cart-empty {
  display: none;
  padding: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.cart-empty strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
}

.cart-empty.show {
  display: block;
}

.cart-footer {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 800;
}

.cart-checkout-button,
.cart-clear-button {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-checkout-button {
  border: 0;
  background: var(--brown);
  color: var(--cream);
}

.cart-clear-button {
  margin-top: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--brown);
}

.cart-checkout-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 880px) {
  .cart-open-button {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    margin-bottom: 12px;
  }
}


/* Correção dos cards da tela inicial e seleção obrigatória de variações */
.real-products-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fixed-highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.fixed-highlight-card > img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  object-position: center;
  filter: none !important;
}

.fixed-highlight-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 236px;
}

.fixed-highlight-card h3 {
  min-height: 2.35em;
}

.fixed-highlight-card .add-to-cart {
  margin-top: auto;
}

.variation-field {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  text-align: left;
}

.variation-field span {
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.product-variation-select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffaf6;
  color: var(--brown);
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
}

.compact-variation-select {
  min-height: 36px;
  font-size: 0.76rem;
}

.product-variation-select.is-invalid {
  border-color: #9f2d20;
  box-shadow: 0 0 0 3px rgba(159, 45, 32, 0.13);
}

.variation-warning {
  display: block;
  margin-top: -4px;
  margin-bottom: 8px;
  color: #9f2d20;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: left;
}

.menu-item .variation-field {
  max-width: 420px;
}

.menu-item .menu-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 190px;
  padding: 0 18px;
}

@media (max-width: 980px) {
  .real-products-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .fixed-highlight-card > div {
    min-height: auto;
  }

  .menu-item .menu-add-to-cart {
    width: 100%;
  }
}
