html,
body {
  overflow-x: hidden;
}

:root {
  --bg: #020202;
  --section: #080808;
  --card: #141414;
  --card-2: #1a1a1a;
  --border: #242424;
  --text: #ffffff;
  --muted: #747474;
  --green: #00b86b;
  --green-light: #24d86f;
  --red: #e63345;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #050505;
  border-bottom: 1px solid #1c1c1c;
}

.nav-wrapper {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  height: 110px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.desktop-menu {
  display: flex;
  gap: 38px;
  align-items: center;
}

.desktop-menu a {
  color: #6d6d6d;
  font-size: 17px;
  font-weight: 700;
  transition: 0.25s;
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: #fff;
}

.desktop-menu a.active {
  border-bottom: 3px solid var(--red);
  padding-bottom: 8px;
}

.nav-cart {
  border: 1px solid #303030;
  border-radius: 999px;
  padding: 12px 28px;
  color: #fff !important;
}

.mobile-btn {
  display: none;
}

.mobile-actions,
.mobile-cart-link {
  display: none;
}

.mobile-menu {
  display: none;
}

/* HERO */

.hero {
  min-height: 790px;
  padding-top: 120px;
  display: flex;
  align-items: center;
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(to right,
      var(--green) 0%,
      var(--green) 33%,
      #fff 33%,
      #fff 66%,
      var(--red) 66%,
      var(--red) 100%) 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.italy-bar {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.italy-bar span {
  width: 34px;
  height: 4px;
  border-radius: 20px;
}

.green {
  background: var(--green);
}

.white {
  background: #fff;
}

.red {
  background: var(--red);
}

.eyebrow {
  color: #686868;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 26px;
}

.hero h1 {
  max-width: 610px;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -1px;
}

.hero h1::after {
  content: "";
  display: block;
  width: 170px;
  height: 5px;
  margin-top: 8px;
  background: linear-gradient(to right,
      var(--green) 0%,
      var(--green) 33%,
      #fff 33%,
      #fff 66%,
      var(--red) 66%,
      var(--red) 100%);
}

.hero p {
  margin-top: 28px;
  max-width: 640px;
  color: #777;
  font-size: 21px;
  line-height: 1.7;
}

.hero-buttons,
.actions-row {
  display: flex;
  gap: 18px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-category-strip a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2f2f2f;
  border-radius: 999px;
  padding: 0 16px;
  background: #101010;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 800;
}

.btn-white,
.btn-green,
.btn-ghost,
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 36px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  transition: 0.25s;
  border: none;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-green {
  background: var(--green-light);
  color: #fff;
}

.btn-ghost {
  border: 1px solid #333;
  color: #fff;
  background: transparent;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-white:hover,
.btn-green:hover,
.btn-ghost:hover,
.btn-red:hover {
  transform: translateY(-3px);
}

.hero-image {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 22px;
  padding: 24px;
}

.hero-placeholder {
  position: relative;
  height: 285px;
  border-radius: 14px;
  background: #1a1a1a;
  border: 1px solid #333;
  display: grid;
  place-items: center;
  color: #303030;
  margin-bottom: 22px;
  overflow: hidden;
}

.hero-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-placeholder:has(img) span {
  display: none;
}

.hero-image::after {
  content: "Os favoritos da Fratelli\a Pizza, lanche, porção e pastel no mesmo pedido\a\a Monte seu pedido online";
  white-space: pre-line;
  display: block;
  text-align: center;
  font-weight: 800;
  line-height: 1.55;
}

/* SECTIONS */

.info-section,
.section {
  background: #080808;
  padding: 54px 0;
  border-bottom: 1px solid #1d1d1d;
}

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

.info-card {
  padding: 28px 40px;
  border-right: 1px solid #222;
  transition: 0.25s;
}

.info-card:last-child {
  border-right: none;
}

.info-card:hover {
  background: #0d0d0d;
}

.info-card h2,
.info-card h3 {
  font-size: 20px;
  font-weight: 900;
}

.info-card p {
  color: #6f6f6f;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.5;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 20px;
}

.section-head h2,
.page-title {
  font-size: 34px;
  font-weight: 900;
}

.section-head p {
  color: #777;
}

.promo-banner {
  background: #101010;
  border: 1px solid #252525;
  color: #fff;
  border-radius: 14px;
  padding: 28px;
  font-size: 22px;
  font-weight: 900;
}

.menu-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.menu-highlight-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #101010;
  border: 1px solid #252525;
  border-radius: 14px;
  padding: 22px;
  transition: 0.25s;
}

.menu-highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}

.menu-highlight-card span {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.menu-highlight-card strong {
  color: #7d7d7d;
  font-size: 14px;
}

/* PAGES */

.page-spacing {
  padding-top: 140px;
  padding-bottom: 80px;
}

.menu-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.menu-intro-text {
  max-width: 620px;
  color: #d6d6d6;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.55;
}

.menu-cart-cta {
  flex: 0 0 auto;
  gap: 10px;
}

.menu-toolbar {
  display: flex;
  gap: 12px;
  padding: 16px 0 8px;
  background: var(--bg);
}

.menu-search {
  max-width: 520px;
  margin-bottom: 0;
}

.cart-badge {
  min-width: 22px;
  height: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.cart-badge.show,
.inline-badge {
  display: inline-flex;
}

.inline-badge:not(.show) {
  display: none;
}

.is-hidden {
  display: none !important;
}

.floating-cart {
  display: none;
}

.category-title {
  font-size: 28px;
  font-weight: 900;
  margin: 44px 0 24px;
}

.menu-sections {
  position: sticky;
  top: 92px;
  z-index: 30;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 18px;
  padding: 12px 0;
  background: var(--bg);
  border-bottom: 1px solid #161616;
  scrollbar-width: none;
}

.menu-sections-marker {
  height: 0;
}

.menu-sections.is-fixed {
  position: fixed;
  top: var(--menu-fixed-top, 92px);
  left: 50%;
  width: min(100%, 1180px);
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  transform: translateX(-50%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.menu-sections::-webkit-scrollbar {
  display: none;
}

.menu-sections a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  padding: 0 18px;
  background: #101010;
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s;
}

.menu-sections a:hover {
  border-color: var(--red);
  color: #fff;
}

.menu-section,
.pizza-group {
  scroll-margin-top: 162px;
}

.pizza-group + .pizza-group {
  margin-top: 34px;
}

.subcategory-title {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 18px;
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #141414;
  border: 1px solid #282828;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 18px 34px rgba(0, 184, 107, 0.16);
}

.product-image {
  position: relative;
  height: auto;
  aspect-ratio: 1.28 / 1;
  background: #1b1b1b;
  border-bottom: 1px solid #252525;
  display: grid;
  place-items: center;
  color: #292929;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.product-content h3 {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
}

.special-flavor-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-left: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(230, 42, 42, 0.14);
  color: #ffb3b3;
  border: 1px solid rgba(230, 42, 42, 0.35);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}

.product-content p,
.product-meta {
  color: #777;
  margin-top: 10px;
  line-height: 1.5;
}

.product-bottom {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.add-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 17px;
  font-weight: 900;
  transition: 0.25s;
}

.add-btn:hover {
  transform: scale(1.05);
}

.option-select,
.input {
  width: 100%;
  background: #171717;
  color: #fff;
  border: 1px solid #292929;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
  outline: none;
}

.option-select {
  margin-top: 18px;
}

.pizza-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.size-btn {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #171717;
  border: 1px solid #292929;
  border-radius: 10px;
  color: #fff;
  transition: 0.25s;
}

.size-btn span {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.size-btn small {
  color: #888;
  font-size: 12px;
  font-weight: 800;
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--green);
  background: rgba(0, 184, 107, 0.12);
}

.size-btn.active small {
  color: var(--green-light);
}

.pizza-flavors {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.pizza-flavors label {
  display: grid;
  gap: 6px;
}

.pizza-third-flavor[hidden] {
  display: none;
}

.pizza-flavors span {
  color: #aaa;
  font-size: 12px;
  font-weight: 800;
}

.pizza-flavor-select {
  margin: 0;
  padding: 12px;
}

.pizza-flavor-note {
  min-height: 18px;
  margin: 0;
  color: #858585;
  font-size: 12px;
  line-height: 1.35;
}

/* BEBIDAS */

.drink-sections {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 18px;
  margin-top: -4px;
  scrollbar-width: none;
}

.beverage-stock-note {
  max-width: 680px;
  margin: -12px 0 18px;
  color: #d8d8d8;
}

.drink-sections::-webkit-scrollbar {
  display: none;
}

.drink-sections a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  padding: 0 15px;
  background: #101010;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 800;
}

.drinks-wrapper {
  display: grid;
  gap: 30px;
}

.bebida-group {
  scroll-margin-top: 162px;
}

.drink-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.drink-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #141414;
  border: 1px solid #282828;
  border-radius: 12px;
  padding: 16px;
  transition: 0.25s;
}

.drink-card:hover {
  border-color: var(--green);
  box-shadow: 0 14px 26px rgba(0, 184, 107, 0.12);
}

.drink-info {
  min-width: 0;
}

.drink-info h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.drink-info p {
  margin-top: 5px;
  color: #858585;
  font-size: 13px;
  line-height: 1.35;
}

.drink-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* PASTEL */

.glass-card {
  background: #101010;
  border: 1px solid #292929;
  border-radius: 18px;
}

.pastel-box,
.checkout-box {
  padding: 30px;
}

.pastel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.pastel-head h3 {
  font-size: 22px;
  font-weight: 900;
}

.pastel-text {
  color: #777;
  margin-top: 6px;
}

.pastel-price {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(0, 184, 107, 0.14);
  border: 1px solid var(--green);
  color: var(--green-light);
  font-size: 20px;
  font-weight: 900;
}

.pastel-counter {
  margin-bottom: 18px;
  color: #d8d8d8;
  font-size: 15px;
  font-weight: 800;
}

.sabores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.sabor-item {
  background: #171717;
  border: 1px solid #292929;
  padding: 15px;
  border-radius: 10px;
  color: #d8d8d8;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s;
}

.sabor-item input {
  accent-color: var(--green);
}

.sabor-item.selected {
  border-color: var(--green);
  background: rgba(0, 184, 107, 0.12);
  color: #fff;
}

.sabor-item:has(input:disabled) {
  opacity: 0.55;
}

/* CART */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 28px;
}

.checkout-box {
  position: sticky;
  top: 120px;
}

.checkout-box h2 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 24px;
}

.cart-item {
  background: #101010;
  border: 1px solid #292929;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.cart-item h3 {
  font-size: 20px;
  font-weight: 900;
}

.cart-item p {
  color: #777;
  margin-top: 6px;
}

.cart-info strong {
  display: block;
  margin-top: 12px;
  color: #fff;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remove-btn,
.qty-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 13px;
  font-weight: 900;
}

.qty-number {
  margin: 0 8px;
  font-weight: 900;
}

.total-box {
  border-top: 1px solid #292929;
  margin-top: 22px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 900;
}

.total-box strong {
  color: #fff;
}

.checkout-btn {
  width: 100%;
  margin-top: 22px;
}

.empty-cart {
  background: #101010;
  border: 1px dashed #292929;
  color: #777;
  border-radius: 18px;
  padding: 30px;
}

/* FOOTER */

footer {
  margin-top: auto;
  padding: 36px 0;
  border-top: 1px solid #1d1d1d;
  background: #050505;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
}

.footer-logo {
  height: 44px;
}

/* TOAST */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid var(--green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  opacity: 0;
  transition: 0.25s;
  z-index: 9999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
}

/* ANIMAÇÕES */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media (max-width: 900px) {

  html,
  body {
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .header {
    width: 100%;
  }

  .nav-wrapper {
    min-height: 76px;
    gap: 12px;
  }

  .logo {
    height: 72px;
    max-width: 210px;
    width: auto;
  }

  .desktop-menu {
    display: none;
  }

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

  .mobile-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
  }

  .mobile-cart-link.active {
    border-color: var(--red);
  }

  .mobile-cart-link svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .cart-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #050505;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
  }

  .cart-badge.show {
    display: flex;
  }

  .inline-badge {
    position: static;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    border: none;
  }

  .inline-badge:not(.show) {
    display: none;
  }

  .floating-cart {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 900;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    padding: 0 18px;
    background: var(--green-light);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
    font-size: 15px;
    font-weight: 900;
  }

  .mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    background: #111;
    border: 1px solid #333;
    border-radius: 10px;

    color: white;
    font-size: 22px;
  }

  .mobile-menu {
    display: none;
    position: fixed;

    top: 76px;
    left: 0;

    width: 100%;

    background: #050505;
    border-bottom: 1px solid #222;

    padding: 14px 18px 18px;

    z-index: 998;
  }

  .mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-menu a {
    display: block;

    width: 100%;

    background: #111;
    border: 1px solid #252525;

    padding: 15px 16px;

    border-radius: 10px;

    color: white;
    font-weight: 800;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 46px;

    min-height: auto;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.04;
    letter-spacing: 0;
  }


  .hero p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.6;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .italy-bar {
    margin-bottom: 18px;
  }

  .hero-buttons,
  .actions-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-category-strip {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-category-strip a {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .btn-white,
  .btn-green,
  .btn-ghost,
  .btn-red {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 9px;
    font-size: 16px;
  }

  .hero-image {
    width: 100%;
    padding: 12px;
    border-radius: 16px;
  }

  .hero-placeholder {
    width: 100%;
    height: 220px;
    border-radius: 12px;
  }

  .info-grid,
  .contact-grid,
  .cart-layout,
  .products-grid,
  .sabores-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section,
  .info-section {
    padding: 38px 0;
  }

  .page-spacing {
    padding-top: 112px;
    padding-bottom: 54px;
  }

  .section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-highlight-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .menu-highlight-card {
    min-height: 112px;
    border-radius: 12px;
    padding: 16px;
  }

  .menu-highlight-card span {
    font-size: 18px;
  }

  .section-head h2,
  .page-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .category-title {
    font-size: 25px;
    margin: 34px 0 18px;
  }

  .menu-intro {
    display: block;
  }

  .menu-intro-text {
    font-size: 16px;
  }

  .menu-cart-cta {
    display: none;
  }

  .menu-toolbar {
    margin-left: -18px;
    margin-right: -18px;
    padding: 12px 18px;
    border-top: 1px solid #161616;
  }

  .menu-search {
    max-width: none;
  }

  .menu-sections {
    top: 76px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 10px 18px;
    border-top: 1px solid #161616;
    border-bottom: 1px solid #161616;
  }

  .menu-sections.is-fixed {
    left: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
    transform: none;
  }

  .menu-sections a {
    min-height: 40px;
    padding: 0 15px;
    font-size: 13px;
  }

  .menu-section,
  .pizza-group {
    scroll-margin-top: 150px;
  }

  .products-grid {
    gap: 12px;
  }

  .product-card {
    width: 100%;
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: stretch;
    border-radius: 12px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-image {
    width: 96px;
    height: 100%;
    aspect-ratio: auto;
    min-height: 106px;
    border-right: 1px solid #252525;
    border-bottom: none;
  }

  .image-badge {
    display: none;
  }

  .product-content {
    min-width: 0;
    padding: 14px;
  }

  .product-content h3 {
    font-size: 17px;
    line-height: 1.18;
  }

  .special-flavor-tag {
    margin: 6px 0 0;
    padding: 4px 7px;
    font-size: 10px;
  }

  .product-content p,
  .product-meta {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: #858585;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .drink-sections {
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 14px;
  }

  .drink-sections a {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .drinks-wrapper {
    gap: 24px;
  }

  .bebida-group {
    scroll-margin-top: 150px;
  }

  .drink-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .drink-card {
    min-height: 74px;
    border-radius: 11px;
    padding: 13px;
  }

  .drink-card:hover {
    box-shadow: none;
  }

  .drink-info h3 {
    font-size: 16px;
  }

  .drink-info p {
    font-size: 12px;
  }

  .price {
    font-size: 17px;
  }

  .pastel-head {
    flex-direction: column;
    gap: 14px;
  }

  .pastel-price {
    width: 100%;
  }

  .product-bottom {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-top: 0;
  }

  .add-btn {
    width: 44px;
    min-width: 44px;
    min-height: 40px;
    padding: 0;
    border-radius: 9px;
  }

  .pizza-sizes {
    gap: 6px;
    margin-top: 12px;
  }

  .size-btn {
    min-height: 46px;
    border-radius: 8px;
  }

  .size-btn span {
    font-size: 15px;
  }

  .size-btn small {
    font-size: 11px;
  }

  .cart-layout {
    gap: 24px;
  }

  .checkout-box {
    position: static;
    width: 100%;
  }

  .cart-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
  }

  .cart-actions {
    width: 100%;
    justify-content: space-between;
    padding-top: 4px;
  }

  .total-box {
    font-size: 21px;
  }

  .info-card {
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid #222;
  }

  .info-card:last-child {
    border-bottom: none;
  }

  .promo-banner {
    padding: 22px;
    border-radius: 12px;
    font-size: 19px;
    line-height: 1.35;
  }

  .footer-content {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .footer-logo {
    height: 56px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-wrapper {
    min-height: 68px;
  }

  .logo {
    height: 58px;
    max-width: 170px;
  }

  .mobile-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .mobile-menu {
    top: 68px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-spacing {
    padding-top: 96px;
    padding-bottom: 44px;
  }

  .hero-placeholder {
    height: 190px;
  }

  .product-card {
    grid-template-columns: 84px 1fr;
  }

  .product-image {
    width: 84px;
    height: 100%;
    min-height: 104px;
  }

  .product-content {
    padding: 12px;
  }

  .product-content h3 {
    font-size: 16px;
  }

  .product-content p,
  .product-meta {
    font-size: 12px;
  }

  .drink-sections {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-sections {
    top: 68px;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-sections.is-fixed {
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-toolbar {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .cart-item {
    padding: 16px;
  }

  .pastel-box,
  .checkout-box {
    padding: 18px;
    border-radius: 14px;
  }

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

  .size-btn {
    min-height: 44px;
  }

  .input,
  .option-select {
    padding: 14px;
  }

  .toast {
    left: 14px;
    right: 14px;
    bottom: 16px;
    transform: none;
    border-radius: 12px;
    text-align: center;
  }
}
