/* ============================================================
   Dolce Amore — Confeitaria Premium
   style.css — Estilos principais do site
   ============================================================ */

/* --- Variáveis CSS --- */
:root {
  --rosa-claro: #F8BBD0;
  --rosa-escuro: #E91E63;
  --branco: #FFFFFF;
  --creme: #FFF8F3;
  --marrom: #8D6E63;
  --marrom-escuro: #5D4037;
  --texto: #333333;
  --texto-claro: #666666;
  --sombra: 0 4px 20px rgba(233, 30, 99, 0.12);
  --sombra-hover: 0 8px 30px rgba(233, 30, 99, 0.22);
  --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --header-height: 80px;
  --font-body: 'Poppins', sans-serif;
  --font-title: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transicao);
}

ul { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

em {
  font-family: var(--font-title);
  font-style: italic;
  color: var(--rosa-escuro);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rosa-escuro);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--marrom-escuro);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--texto-claro);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transicao);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--rosa-escuro);
  color: var(--branco);
  border-color: var(--rosa-escuro);
}

.btn--primary:hover {
  background: #c2185b;
  border-color: #c2185b;
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.btn--outline {
  background: transparent;
  color: var(--branco);
  border-color: var(--branco);
}

.btn--outline:hover {
  background: var(--branco);
  color: var(--rosa-escuro);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- Loading --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__icon {
  font-size: 3rem;
  color: var(--rosa-escuro);
  animation: pulse 1.5s ease infinite;
}

.loader__text {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--marrom-escuro);
  margin: 16px 0 24px;
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: var(--rosa-claro);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader__progress {
  height: 100%;
  width: 0;
  background: var(--rosa-escuro);
  border-radius: 3px;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transicao);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled .header__link {
  color: var(--texto);
}

.header.scrolled .header__logo {
  color: var(--marrom-escuro);
}

.header.scrolled .header__toggle span {
  background: var(--texto);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--branco);
}

.header__logo i {
  color: var(--rosa-escuro);
  font-size: 1.6rem;
}

.header__nav {
  display: flex;
}

.header__list {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--branco);
  position: relative;
  padding: 4px 0;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rosa-escuro);
  transition: width 0.3s ease;
}

.header__link:hover::after,
.header__link.active::after {
  width: 100%;
}

.header__link:hover,
.header__link.active {
  color: var(--rosa-claro);
}

.header.scrolled .header__link:hover,
.header.scrolled .header__link.active {
  color: var(--rosa-escuro);
}

.header__cta {
  display: none;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--branco);
  border-radius: 2px;
  transition: var(--transicao);
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Menu mobile overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transicao);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header__nav-cta {
  display: none;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--creme);
}

.header__nav-cta .btn {
  width: 100%;
  justify-content: center;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.01);
  animation: heroZoom 24s ease infinite alternate;
}

@keyframes heroZoom {
  to { transform: scale(1.05); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(54, 35, 30, 0.7) 0%, rgba(117, 55, 64, 0.5) 54%, rgba(233, 30, 99, 0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px 0 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--branco);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__badge i {
  color: #FFD700;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title em {
  color: var(--rosa-claro);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero__story {
  margin-bottom: 36px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--rosa-claro);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero__story p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.85;
  margin-bottom: 14px;
}

.hero__story p:last-child {
  margin-bottom: 0;
}

.hero__hearts {
  color: var(--rosa-claro);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero__stat {
  color: var(--branco);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
}

.hero__stat span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--branco);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Sobre --- */
.sobre {
  background: var(--creme);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre__text {
  color: var(--texto-claro);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.sobre__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.sobre__card {
  background: var(--branco);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  transition: var(--transicao);
}

.sobre__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.sobre__card-icon {
  width: 48px;
  height: 48px;
  background: var(--rosa-claro);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-escuro);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.sobre__card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--marrom-escuro);
}

.sobre__card p {
  font-size: 0.9rem;
  color: var(--texto-claro);
}

.sobre__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sobre__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
}

.sobre__image-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 48px);
  background: var(--rosa-escuro);
  color: var(--branco);
  padding: 10px 16px;
  border-radius: 14px;
  text-align: center;
}

.sobre__image-badge strong {
  display: inline-flex;
  font-size: 1rem;
  margin-bottom: 0;
}

.sobre__image-badge a {
  color: var(--branco);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transicao);
  white-space: nowrap;
}

.sobre__image-badge a:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.sobre__image-badge span {
  font-size: 0.86rem;
  font-weight: 700;
}

.sobre__insta-link {
  color: var(--rosa-escuro);
  font-weight: 600;
}

.sobre__insta-link:hover {
  text-decoration: underline;
}

/* --- Produtos --- */
.produtos__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto);
  background: var(--creme);
  border: 2px solid transparent;
  transition: var(--transicao);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rosa-escuro);
  color: var(--branco);
  border-color: var(--rosa-escuro);
}

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card--paginated-hidden,
.menu-gallery-card--paginated-hidden {
  display: none !important;
}

.products-load-more {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 24px;
}

.products-load-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--rosa-escuro);
  background: transparent;
  color: var(--rosa-escuro);
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transicao);
}

.products-load-more__btn span {
  font-weight: 500;
  opacity: 0.8;
}

.products-load-more__btn:hover {
  background: var(--rosa-escuro);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.products-load-more__btn[hidden] {
  display: none !important;
}

.products-group-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  margin-top: 8px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), rgba(93, 64, 55, 0.08));
  border: 1px solid rgba(233, 30, 99, 0.16);
}

.products-group-title span {
  color: var(--rosa-escuro);
  font-family: var(--fonte-titulo);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
}

.products-group-title p {
  max-width: 520px;
  color: var(--texto-claro);
  font-size: 0.95rem;
  text-align: right;
}

.ready-delivery-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 4px;
}

.ready-delivery-info article {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--branco);
  border: 1px solid rgba(93, 64, 55, 0.1);
  box-shadow: 0 10px 28px rgba(93, 64, 55, 0.08);
}

.ready-delivery-info i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.12);
  color: var(--rosa-escuro);
}

.ready-delivery-info h4 {
  color: var(--marrom);
  font-size: 1rem;
  margin-bottom: 8px;
}

.ready-delivery-info p {
  color: var(--texto-claro);
  font-size: 0.86rem;
  line-height: 1.55;
}

.products-group-title--gallery {
  background: linear-gradient(135deg, rgba(93, 64, 55, 0.12), rgba(233, 30, 99, 0.14));
}

.menu-gallery-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--branco);
  border: 1px solid rgba(233, 30, 99, 0.12);
  box-shadow: 0 14px 34px rgba(93, 64, 55, 0.1);
  cursor: pointer;
  transition: var(--transicao);
}

.menu-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.menu-gallery-card__image {
  position: relative;
  height: 285px;
  overflow: hidden;
  background: var(--creme);
}

.menu-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}

.menu-gallery-card:hover .menu-gallery-card__image img {
  transform: scale(1.08);
}

.menu-gallery-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(93, 64, 55, 0.58));
}

.menu-gallery-card__image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rosa-escuro);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-gallery-card__body {
  padding: 16px;
}

.menu-gallery-card__body h3 {
  margin-bottom: 6px;
  color: var(--marrom-escuro);
  font-family: var(--fonte-titulo);
  font-size: 1.2rem;
}

.menu-gallery-card__body p {
  margin-bottom: 14px;
  color: var(--texto-claro);
  font-size: 0.88rem;
  line-height: 1.45;
}

.menu-gallery-card__body .btn {
  width: 100%;
  justify-content: center;
}

.product-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicao);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra-hover);
}

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  max-height: 360px;
  background: var(--creme);
  display: block;
  cursor: pointer;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .product-card__img img {
  transform: scale(1.08);
}

.product-card__img::after {
  content: 'Clique para escolher massa, sabor e tamanho';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(93, 64, 55, 0.82);
  color: var(--branco);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transicao);
  pointer-events: none;
}

.product-card__img:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.product-card__img--celebre-left img {
  object-position: 18% 50%;
}

.product-card__img--celebre-center img {
  object-position: 50% 50%;
}

.product-card__img--celebre-right img {
  object-position: 82% 50%;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rosa-escuro);
  color: var(--branco);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card__badge--ready {
  background: var(--marrom);
  top: auto;
  bottom: 12px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card__img:hover .product-card__badge,
.product-card__img:hover .product-card__badge--ready {
  opacity: 0;
  pointer-events: none;
}

.product-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: 0.8rem;
  color: var(--marrom);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--marrom-escuro);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--texto-claro);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.product-card__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rosa-escuro);
}

/* --- Opções extras do cardápio --- */
.cardapio-extra {
  margin-top: 56px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--creme) 0%, #fff 100%);
  box-shadow: var(--sombra);
}

.cardapio-extra__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}

.cardapio-extra__header h3 {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--marrom-escuro);
  margin-bottom: 8px;
}

.cardapio-extra__header p {
  color: var(--texto-claro);
}

.cardapio-extra__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-panel {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(93, 64, 55, 0.08);
}

.menu-panel--wide {
  grid-row: span 2;
}

.menu-panel h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--marrom-escuro);
  margin-bottom: 18px;
}

.menu-panel h4 i {
  color: var(--rosa-escuro);
}

.menu-table {
  display: grid;
  gap: 10px;
}

.menu-table label {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--creme);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transicao);
}

.menu-table label:hover,
.menu-table label:has(input:checked) {
  border-color: var(--rosa-escuro);
  background: rgba(233, 30, 99, 0.06);
}

.menu-table input,
.tag-list--choice input,
.price-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-table strong {
  color: var(--marrom-escuro);
}

.menu-table span {
  color: var(--texto-claro);
  font-size: 0.9rem;
}

.menu-table b,
.price-list strong {
  color: var(--rosa-escuro);
  white-space: nowrap;
}

.menu-note {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--rosa-claro);
  color: var(--marrom-escuro);
  text-align: center;
  font-weight: 600;
}

.menu-helper {
  margin: -8px 0 14px;
  color: var(--texto-claro);
  font-size: 0.84rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 50px;
  background: var(--creme);
  color: var(--marrom-escuro);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: default;
  transition: var(--transicao);
}

.tag-list--compact span {
  font-size: 0.84rem;
}

.tag-list--choice label {
  cursor: pointer;
}

.tag-list--choice input:checked + span {
  background: var(--rosa-escuro);
  color: var(--branco);
  box-shadow: 0 8px 18px rgba(233, 30, 99, 0.18);
}

.tag-list--choice input:disabled + span {
  opacity: 0.38;
  cursor: not-allowed;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-list li {
  color: var(--texto-claro);
}

.price-list label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--creme);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transicao);
}

.price-list label:hover,
.price-list label:has(input:checked) {
  border-color: var(--rosa-escuro);
  background: rgba(233, 30, 99, 0.06);
}

.price-list label:has(input:checked) span {
  color: var(--marrom-escuro);
  font-weight: 700;
}

.cardapio-extra__cta {
  margin: 28px auto 0;
  width: fit-content;
  display: flex;
}

/* --- Destaques --- */
.destaques {
  background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--creme) 100%);
}

.destaques__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.featured-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  display: flex;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicao);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.featured-card__img {
  width: 160px;
  min-height: 200px;
  flex-shrink: 0;
  background: var(--creme);
}

.featured-card__img img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center center;
}

.featured-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.featured-card__rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rosa-escuro);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.featured-card__name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--marrom-escuro);
  margin-bottom: 6px;
}

.featured-card__price {
  font-weight: 700;
  color: var(--rosa-escuro);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* --- Galeria --- */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.galeria__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--creme);
  min-height: 260px;
  height: 260px;
}

.galeria__item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.galeria__item:hover img {
  transform: scale(1.1);
}

.galeria__item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(233, 30, 99, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transicao);
}

.galeria__item:hover::after {
  opacity: 1;
}

.galeria__item--hidden {
  display: none !important;
}

.galeria__load-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.galeria__load-more[hidden] {
  display: none !important;
}

.galeria__load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--rosa-escuro);
  background: transparent;
  color: var(--rosa-escuro);
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transicao);
}

.galeria__load-more-btn span {
  font-weight: 500;
  opacity: 0.8;
}

.galeria__load-more-btn:hover {
  background: var(--rosa-escuro);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transicao);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__panel {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 920px;
  width: 92vw;
  max-height: 88vh;
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox__media {
  flex: 1.2;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 16px;
}

.lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__info {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--branco);
  min-width: 0;
}

.lightbox__category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--marrom);
  margin-bottom: 8px;
}

.lightbox__title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--marrom-escuro);
  margin-bottom: 16px;
  line-height: 1.3;
}

.lightbox__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rosa-escuro);
  margin-bottom: 12px;
}

.lightbox__desc {
  color: var(--texto-claro);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.order-options {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.order-options > label,
.flavor-field legend,
.size-field legend {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--marrom-escuro);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flavor-field,
.size-field {
  border: 0;
  padding: 0;
  margin: 0;
}

.flavor-field legend,
.size-field legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}

.flavor-field small,
.size-field small {
  color: var(--rosa-escuro);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.order-options select {
  width: 100%;
  border: 1px solid rgba(93, 64, 55, 0.18);
  border-radius: var(--radius);
  padding: 13px 42px 13px 14px;
  background: var(--creme);
  color: var(--texto);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  outline: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--marrom-escuro) 50%),
    linear-gradient(135deg, var(--marrom-escuro) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.order-options select:focus {
  border-color: var(--rosa-escuro);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.order-phrase-field {
  display: none;
}

.order-phrase-field textarea {
  width: 100%;
  min-height: 82px;
  resize: vertical;
  border: 1px solid rgba(93, 64, 55, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--creme);
  color: var(--texto);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.45;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.order-phrase-field textarea:focus {
  border-color: var(--rosa-escuro);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.order-phrase-field small {
  color: var(--texto-claro);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 190px;
  overflow-y: auto;
  padding: 2px 4px 6px 2px;
  scrollbar-width: thin;
}

.size-option {
  cursor: pointer;
}

.size-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-option span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  min-height: 78px;
  padding: 11px 12px;
  border: 1px solid rgba(93, 64, 55, 0.16);
  border-radius: 14px;
  background: var(--creme);
  transition: var(--transicao);
}

.size-option strong {
  color: var(--marrom-escuro);
  font-size: 0.88rem;
  line-height: 1.2;
}

.size-option small {
  color: var(--texto-claro);
  font-size: 0.76rem;
  line-height: 1.25;
}

.size-option b {
  color: var(--rosa-escuro);
  font-size: 0.84rem;
}

.size-option--consult {
  grid-column: 1 / -1;
}

.size-option--consult span {
  min-height: auto;
  border-color: rgba(233, 30, 99, 0.28);
  background: rgba(233, 30, 99, 0.06);
}

.size-option input:checked + span {
  border-color: var(--rosa-escuro);
  background: var(--rosa-escuro);
  box-shadow: 0 10px 22px rgba(233, 30, 99, 0.2);
}

.size-option input:checked + span strong,
.size-option input:checked + span small,
.size-option input:checked + span b {
  color: var(--branco);
}

.flavor-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 142px;
  overflow-y: auto;
  padding: 2px 2px 6px;
  scrollbar-width: thin;
}

.flavor-options label {
  cursor: pointer;
}

.flavor-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.flavor-options span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid rgba(93, 64, 55, 0.16);
  border-radius: 999px;
  background: var(--creme);
  color: var(--marrom-escuro);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transicao);
}

.flavor-options input:checked + span {
  background: var(--rosa-escuro);
  border-color: var(--rosa-escuro);
  color: var(--branco);
  box-shadow: 0 8px 18px rgba(233, 30, 99, 0.2);
}

.flavor-options input:disabled + span {
  opacity: 0.38;
  cursor: not-allowed;
}

.lightbox__info .btn--full {
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--branco);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transicao);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--rosa-escuro);
}

.lightbox__close { top: 24px; right: 24px; z-index: 2; }
.lightbox__prev { left: 24px; z-index: 2; }
.lightbox__next { right: 24px; z-index: 2; }

@media (max-width: 768px) {
  .lightbox__panel {
    flex-direction: column;
    width: 94vw;
    max-height: 92vh;
    overflow-y: auto;
  }

  .lightbox__media {
    min-height: 240px;
    padding: 12px;
  }

  .lightbox__info {
    padding: 24px 20px;
  }

  .lightbox__title {
    font-size: 1.25rem;
  }

  .lightbox__price {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .size-options {
    grid-template-columns: 1fr;
    max-height: 220px;
  }

  .size-option span {
    min-height: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 10px;
  }

  .size-option small {
    grid-column: 1 / -1;
  }

  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* --- Avaliações --- */
.avaliacoes {
  background: var(--creme);
}

.avaliacoes__carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.avaliacoes__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 100%;
  padding: 0 20px;
}

.review-card__inner {
  background: var(--branco);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra);
  text-align: center;
}

.review-card__stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.review-card__text {
  font-size: 1.05rem;
  color: var(--texto-claro);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rosa-claro);
  color: var(--rosa-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-card__name {
  font-weight: 600;
  color: var(--marrom-escuro);
}

.avaliacoes__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.avaliacoes__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--branco);
  color: var(--rosa-escuro);
  box-shadow: var(--sombra);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
}

.avaliacoes__btn:hover {
  background: var(--rosa-escuro);
  color: var(--branco);
}

.avaliacoes__dots {
  display: flex;
  gap: 8px;
}

.avaliacoes__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rosa-claro);
  transition: var(--transicao);
  cursor: pointer;
}

.avaliacoes__dot.active {
  background: var(--rosa-escuro);
  width: 28px;
  border-radius: 5px;
}

/* --- Como Funciona --- */
.passos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.passo {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.passo__number {
  width: 36px;
  height: 36px;
  background: var(--rosa-escuro);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 16px;
}

.passo__icon {
  width: 80px;
  height: 80px;
  background: var(--creme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--rosa-escuro);
  margin: 0 auto 20px;
  transition: var(--transicao);
}

.passo:hover .passo__icon {
  background: var(--rosa-claro);
  transform: scale(1.08);
}

.passo h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--marrom-escuro);
  margin-bottom: 10px;
}

.passo p {
  font-size: 0.9rem;
  color: var(--texto-claro);
}

.passo__line {
  width: 80px;
  height: 2px;
  background: var(--rosa-claro);
  margin-top: 56px;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  background: var(--creme);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transicao);
}

.faq__item.active {
  box-shadow: var(--sombra);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--marrom-escuro);
  text-align: left;
  background: none;
  gap: 16px;
}

.faq__question i {
  color: var(--rosa-escuro);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item.active .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 28px 20px;
  color: var(--texto-claro);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Contato --- */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contato__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contato__icon {
  width: 52px;
  height: 52px;
  background: var(--rosa-claro);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-escuro);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contato__item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--marrom);
  margin-bottom: 4px;
}

.contato__item a {
  color: var(--rosa-escuro);
  font-weight: 500;
}

.contato__item a:hover {
  text-decoration: underline;
}

.contato__item p {
  color: var(--texto-claro);
  font-size: 0.95rem;
}

.contato__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  height: 400px;
}

.contato__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: var(--marrom-escuro);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 16px;
}

.footer__logo i {
  color: var(--rosa-claro);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  transition: var(--transicao);
}

.footer__social a:hover {
  background: var(--rosa-escuro);
  transform: translateY(-3px);
}

.footer__links h4,
.footer__newsletter h4 {
  color: var(--branco);
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: var(--transicao);
}

.footer__links a:hover {
  color: var(--rosa-claro);
  padding-left: 4px;
}

.footer__newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer__form {
  display: flex;
  gap: 0;
}

.footer__form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.footer__form button {
  padding: 12px 20px;
  background: var(--rosa-escuro);
  color: var(--branco);
  border-radius: 0 50px 50px 0;
  transition: var(--transicao);
}

.footer__form button:hover {
  background: #c2185b;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer__admin {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__admin:hover {
  color: var(--rosa-claro);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transicao);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--marrom-escuro);
  color: var(--branco);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transicao);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  background: var(--rosa-escuro);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transicao);
  box-shadow: var(--sombra);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #c2185b;
  transform: translateY(-3px);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: var(--marrom-escuro);
  color: var(--branco);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  box-shadow: var(--sombra);
}

.toast.show {
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVO — MOBILE FIRST FIXES
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section__header {
    margin-bottom: 36px;
  }

  .section__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .section__subtitle {
    font-size: 0.95rem;
  }

  /* Header */
  .header__logo {
    font-size: 1rem;
    gap: 8px;
    max-width: calc(100vw - 70px);
  }

  .header__logo i {
    font-size: 1.35rem;
    flex-shrink: 0;
  }

  .logo-text {
    line-height: 1.2;
    font-size: 0.92rem;
    white-space: normal;
    max-width: 140px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(88vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--branco);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    transition: right 0.35s ease;
    padding: calc(var(--header-height) + 16px) 24px 32px;
    z-index: 999;
    overflow-y: auto;
  }

  .header__nav.open {
    right: 0;
  }

  .header__list {
    flex-direction: column;
    gap: 0;
  }

  .header__link {
    color: var(--texto);
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--creme);
    font-size: 1rem;
  }

  .header__nav-cta {
    display: list-item;
  }

  body {
    overflow-x: hidden;
  }

  .header__toggle {
    display: flex;
  }

  .header.scrolled .header__toggle span,
  .header__toggle span {
    background: var(--texto);
  }

  .header:not(.scrolled) .header__toggle span {
    background: var(--branco);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  }

  .header__toggle.active span {
    background: var(--texto) !important;
    box-shadow: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: calc(var(--header-height) + 24px) 0 48px;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(1.65rem, 7.5vw, 2.2rem);
    margin-bottom: 16px;
  }

  .hero__story {
    padding: 18px 16px;
    margin-bottom: 24px;
  }

  .hero__story p {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero__stat:last-child {
    grid-column: 1 / -1;
  }

  .hero__stat strong {
    font-size: 1.4rem;
  }

  .hero__stat span {
    font-size: 0.78rem;
  }

  .hero__scroll {
    display: none;
  }

  /* Sobre */
  .sobre__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sobre__image img {
    height: 320px;
  }

  .sobre__cards {
    grid-template-columns: 1fr;
  }

  .sobre__card {
    padding: 20px;
  }

  /* Produtos / Cardápio */
  .produtos__filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .produtos__filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.82rem;
  }

  .produtos__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card__img {
    min-height: 260px;
    max-height: 320px;
  }

  .product-card__body {
    padding: 18px;
  }

  .product-card__name {
    font-size: 1.1rem;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .product-card__footer .btn {
    width: 100%;
    justify-content: center;
  }

  .product-card__price {
    font-size: 1.4rem;
    text-align: center;
  }

  /* Destaques */
  .destaques__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-card__img {
    width: 100%;
    min-height: 220px;
  }

  .featured-card__img img {
    min-height: 220px;
  }

  .featured-card__body {
    padding: 18px;
  }

  /* Galeria */
  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    grid-auto-rows: 150px;
  }

  .galeria__item,
  .galeria__item img {
    min-height: 150px;
    height: 150px;
  }

  /* Lightbox mobile */
  .lightbox {
    align-items: flex-end;
    padding: 0;
  }

  .lightbox__panel {
    width: 100%;
    max-width: 100%;
    max-height: 92dvh;
    border-radius: 20px 20px 0 0;
    flex-direction: column;
  }

  .lightbox__media {
    min-height: 200px;
    max-height: 45dvh;
    padding: 12px;
  }

  .lightbox__img {
    max-height: 42dvh;
  }

  .lightbox__info {
    padding: 20px 18px 28px;
  }

  .lightbox__title {
    font-size: 1.15rem;
  }

  .lightbox__price {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .lightbox__prev,
  .lightbox__next {
    top: 16px;
    bottom: auto;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.35);
  }

  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__close { top: 12px; right: 12px; z-index: 3; }

  /* Avaliações */
  .review-card__inner {
    padding: 28px 20px;
  }

  .review-card__text {
    font-size: 0.95rem;
  }

  /* Passos */
  .passos {
    flex-direction: column;
    gap: 24px;
  }

  .passo__line {
    width: 2px;
    height: 32px;
    margin: 0;
  }

  /* Contato */
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contato__map {
    height: 260px;
  }

  .contato__item {
    margin-bottom: 20px;
  }

  /* Footer */
  .footer {
    padding-top: 56px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__form {
    flex-direction: column;
  }

  .footer__form input {
    border-radius: var(--radius);
  }

  .footer__form button {
    border-radius: var(--radius);
    padding: 12px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Botões flutuantes */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .whatsapp-float__tooltip {
    display: none;
  }

  .back-to-top {
    bottom: 80px;
    left: 16px;
    width: 44px;
    height: 44px;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 90px;
    transform: translateY(120%);
  }

  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 380px) {
  .logo-text {
    font-size: 0.82rem;
    max-width: 120px;
  }

  .hero__title {
    font-size: 1.55rem;
  }

  .galeria__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__stat:last-child {
    grid-column: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .produtos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__grid {
    grid-template-columns: 1fr;
  }

  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contato__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .passos {
    flex-direction: column;
    gap: 32px;
  }

  .passo__line {
    width: 2px;
    height: 40px;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
  }
}

/* ============================================================
   MOBILE POLISH — overrides finais para celular
   ============================================================ */

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }

  .header {
    height: 64px;
    background: rgba(93, 64, 55, 0.92);
    backdrop-filter: blur(10px);
  }

  .header.scrolled {
    background: rgba(255, 255, 255, 0.97);
  }

  .header__logo {
    min-width: 0;
    max-width: calc(100vw - 78px);
  }

  .logo-text {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header__toggle {
    display: flex;
    flex-shrink: 0;
  }

  .header__nav {
    right: -110%;
    width: min(84vw, 330px);
    padding: 88px 24px 28px;
  }

  .header__nav.open {
    right: 0;
  }

  .header__link {
    font-size: 1.05rem;
    padding: 13px 0;
  }

  .header__nav-cta {
    display: block;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero__bg {
    background-position: center top;
    transform: none;
    animation: none;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(54, 35, 30, 0.84), rgba(93, 64, 55, 0.62));
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 92px 18px 38px;
  }

  .hero__badge {
    max-width: 100%;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero__title {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.08;
  }

  .hero__story {
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .hero__story p {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero__actions .btn {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero__stat {
    padding: 10px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    text-align: center;
  }

  .hero__stat:last-child {
    grid-column: auto;
  }

  .hero__stat strong {
    font-size: 1.05rem;
  }

  .hero__stat span {
    display: block;
    font-size: 0.64rem;
    line-height: 1.25;
  }

  .section {
    padding: 48px 0;
  }

  .section__header {
    margin-bottom: 28px;
  }

  .section__tag {
    font-size: 0.72rem;
    letter-spacing: 1.4px;
  }

  .section__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    line-height: 1.12;
  }

  .produtos .section__header {
    margin-bottom: 18px;
  }

  .produtos .section__subtitle {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .produtos__filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    margin-bottom: 20px;
    overflow: visible;
  }

  .filter-btn {
    width: 100%;
    padding: 9px 10px;
    font-size: 0.76rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .produtos__grid,
  .destaques__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-card__img {
    aspect-ratio: 4 / 3;
    height: 210px;
    min-height: 0;
    max-height: none;
  }

  .product-card__img img {
    height: 100%;
    min-height: 0;
  }

  .product-card__body {
    padding: 16px;
  }

  .product-card__name {
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .product-card__desc {
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }

  .product-card__footer {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .product-card__footer .btn {
    width: auto;
    min-width: 92px;
    padding: 9px 16px;
  }

  .product-card__price {
    font-size: 1.2rem;
    text-align: left;
  }

  .cardapio-extra {
    margin-top: 36px;
    padding: 22px 16px;
  }

  .cardapio-extra__header {
    margin-bottom: 22px;
  }

  .cardapio-extra__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-panel {
    padding: 18px;
  }

  .menu-panel--wide {
    grid-row: auto;
  }

  .menu-panel h4 {
    font-size: 1.18rem;
    margin-bottom: 14px;
  }

  .menu-table label {
    grid-template-columns: 62px 1fr;
    gap: 6px 10px;
  }

  .menu-table b {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .tag-list {
    gap: 8px;
  }

  .tag-list span {
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .price-list label {
    font-size: 0.9rem;
  }

  .cardapio-extra__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .featured-card {
    flex-direction: row;
    align-items: stretch;
  }

  .featured-card__img {
    width: 118px;
    min-height: 150px;
  }

  .featured-card__img img {
    min-height: 150px;
  }

  .featured-card__body {
    padding: 16px;
  }

  .galeria__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .galeria__item,
  .galeria__item img {
    min-height: 140px;
    height: 140px;
  }

  .contato__item {
    align-items: flex-start;
  }

  .contato__item-icon {
    flex-shrink: 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .back-to-top {
    left: 14px;
    bottom: 78px;
  }
}

@media (max-width: 380px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero__content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo-text {
    max-width: 158px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card__footer .btn {
    width: 100%;
  }

  .product-card__img {
    height: 190px;
  }

  .menu-table label,
  .price-list label {
    font-size: 0.84rem;
  }

  .menu-table span {
    font-size: 0.8rem;
  }
}

/* ============================================================
   RESPONSIVO REAL PARA CELULARES
   ============================================================ */

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  body {
    font-size: 15px;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header {
    height: var(--header-height);
  }

  .header__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header__logo {
    font-size: 0.9rem;
    gap: 6px;
  }

  .header__logo i {
    font-size: 1rem;
  }

  .logo-text {
    max-width: calc(100vw - 96px);
  }

  .header__nav {
    left: auto;
    width: min(88vw, 310px);
    max-width: calc(100vw - 24px);
    padding: 78px 22px 26px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    padding: 78px 14px 30px;
  }

  .hero__badge {
    width: fit-content;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 0.66rem;
  }

  .hero__title {
    font-size: clamp(1.55rem, 8.5vw, 2rem);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero__actions {
    order: 3;
    margin-bottom: 14px;
  }

  .hero__actions .btn {
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.84rem;
  }

  .hero__stats {
    order: 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero__stat {
    padding: 8px 5px;
  }

  .hero__stat strong {
    font-size: 0.92rem;
  }

  .hero__stat span {
    font-size: 0.56rem;
  }

  .hero__story {
    order: 5;
    padding: 14px;
    margin: 0;
  }

  .hero__story p {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .section {
    padding: 42px 0;
  }

  .section__header {
    margin-bottom: 22px;
  }

  .section__title {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .sobre__grid,
  .contato__grid {
    gap: 24px;
  }

  .sobre__image img {
    height: 260px;
  }

  .produtos__filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .filter-btn {
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.71rem;
    white-space: normal;
  }

  .products-group-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px;
  }

  .products-group-title p {
    text-align: left;
    font-size: 0.82rem;
  }

  .ready-delivery-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ready-delivery-info article {
    padding: 14px;
  }

  .ready-delivery-info i {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .ready-delivery-info h4 {
    font-size: 0.95rem;
  }

  .ready-delivery-info p {
    font-size: 0.8rem;
  }

  .menu-gallery-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .menu-gallery-card,
  .menu-gallery-card:nth-child(1),
  .menu-gallery-card:nth-child(8n) {
    grid-column: span 1;
  }

  .menu-gallery-card__image {
    height: clamp(160px, 48vw, 220px);
  }

  .menu-gallery-card__image span {
    left: 8px;
    bottom: 8px;
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .menu-gallery-card__body {
    padding: 10px;
  }

  .menu-gallery-card__body h3 {
    font-size: 0.98rem;
  }

  .menu-gallery-card__body p {
    display: none;
  }

  .menu-gallery-card__body .btn {
    min-height: 34px;
    padding: 8px 6px;
    font-size: 0.68rem;
  }

  .product-card__img {
    height: clamp(178px, 54vw, 230px);
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card__category {
    font-size: 0.68rem;
  }

  .product-card__name {
    font-size: 1rem;
  }

  .product-card__price {
    font-size: 1.08rem;
  }

  .product-card__footer .btn {
    min-width: 86px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .featured-card__img {
    width: 105px;
    min-height: 136px;
  }

  .featured-card__img img {
    min-height: 136px;
  }

  .featured-card__body {
    padding: 14px;
  }

  .galeria__item,
  .galeria__item img {
    min-height: 128px;
    height: 128px;
  }

  .review-card {
    padding: 0;
  }

  .faq__question,
  .faq__answer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contato__item {
    gap: 12px;
  }

  .contato__map {
    height: 230px;
  }
}

@media (max-width: 360px) {
  .container,
  .hero__content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header__logo {
    font-size: 0.82rem;
  }

  .header__nav {
    width: min(90vw, 288px);
    max-width: calc(100vw - 18px);
  }

  .logo-text {
    max-width: calc(100vw - 88px);
  }

  .hero__title {
    font-size: 1.45rem;
  }

  .hero__badge {
    font-size: 0.6rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__stat span {
    font-size: 0.68rem;
  }

  .produtos__filter {
    grid-template-columns: 1fr;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card__footer .btn {
    width: 100%;
  }

  .featured-card {
    flex-direction: column;
  }

  .featured-card__img {
    width: 100%;
    min-height: 180px;
  }

  .featured-card__img img {
    min-height: 180px;
  }

  .galeria__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero__content {
    padding-top: 96px;
  }

  .product-card__img {
    height: 260px;
  }

  .produtos__filter {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Ajuste final do configurador no mobile --- */
@media (max-width: 768px) {
  .lightbox {
    align-items: flex-end;
    padding: 0;
    background: rgba(0, 0, 0, 0.82);
  }

  .lightbox__panel {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 94dvh;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    border-radius: 22px 22px 0 0;
    overflow: hidden;
  }

  .lightbox__media {
    display: none;
  }

  .lightbox__info {
    min-height: 0;
    padding: 22px 16px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .lightbox__category {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }

  .lightbox__title {
    font-size: 1.12rem;
    margin-bottom: 6px;
  }

  .lightbox__price {
    font-size: 1.42rem;
    margin-bottom: 8px;
  }

  .lightbox__desc {
    font-size: 0.8rem;
    line-height: 1.38;
    margin-bottom: 10px;
  }

  .order-options {
    gap: 9px;
    margin-bottom: 12px;
  }

  .order-options > label,
  .flavor-field legend,
  .size-field legend {
    font-size: 0.68rem;
    letter-spacing: 0.35px;
  }

  .order-options select {
    min-height: 42px;
    padding: 10px 38px 10px 12px;
    font-size: 0.88rem;
  }

  .flavor-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    max-height: 178px;
    padding: 1px 2px 5px;
  }

  .flavor-options span {
    width: 100%;
    min-height: 34px;
    justify-content: center;
    padding: 8px 8px;
    font-size: 0.74rem;
    text-align: center;
  }

  .size-options {
    grid-template-columns: 1fr;
    gap: 7px;
    max-height: 220px;
    padding: 1px 3px 5px 1px;
  }

  .size-option span {
    min-height: 0;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2px 10px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .size-option strong {
    font-size: 0.8rem;
  }

  .size-option small {
    grid-column: 1 / -1;
    font-size: 0.7rem;
  }

  .size-option b {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .lightbox__info .btn--full {
    position: static;
    width: 100%;
    margin-top: 8px;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    box-shadow: 0 10px 22px rgba(233, 30, 99, 0.22);
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    transform: translateZ(0);
  }

  .back-to-top {
    left: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .lightbox__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.48);
    z-index: 3;
  }

  .lightbox__prev,
  .lightbox__next {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .lightbox__panel {
    grid-template-rows: minmax(0, 1fr);
    max-height: 96dvh;
  }

  .lightbox__info {
    padding: 12px 12px calc(14px + env(safe-area-inset-bottom));
  }

  .lightbox__title {
    font-size: 1rem;
  }

  .lightbox__price {
    font-size: 1.25rem;
  }

  .flavor-options {
    max-height: 150px;
  }

  .flavor-options span {
    font-size: 0.68rem;
    padding: 7px 6px;
  }

  .size-options {
    max-height: 190px;
  }
}
