:root {
  --blue-950: #031c42;
  --blue-900: #072f6b;
  --blue-700: #0d58ad;
  --red-700: #c7182d;
  --red-600: #de243b;
  --green: #25d366;
  --cream: #fffaf2;
  --ice: #f2f7ff;
  --paper: #ffffff;
  --ink: #172033;
  --muted: #5c6678;
  --line: #e4e9f2;
  --shadow: 0 16px 36px rgba(3, 28, 66, 0.11);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(13, 88, 173, 0.38), transparent 30rem),
    radial-gradient(circle at 95% 72%, rgba(199, 24, 45, 0.28), transparent 32rem),
    linear-gradient(145deg, #031c42 0%, #06285b 52%, #031936 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #f7b731;
  outline-offset: 4px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  color: var(--paper);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(7, 47, 107, 0.1);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.brand,
.main-nav,
.hero-actions,
.hero-highlights,
.location-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.nav-wrap {
  min-height: 76px;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  gap: 0.65rem;
  color: var(--blue-900);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand strong {
  color: var(--red-700);
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.main-nav {
  gap: 1.05rem;
}

.main-nav a {
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--red-700);
}

.main-nav .nav-order {
  padding: 0.65rem 1rem;
  color: var(--paper);
  background: var(--red-700);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-900);
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 54, 76, 0.62), transparent 19rem),
    radial-gradient(circle at 10% 8%, rgba(42, 129, 255, 0.5), transparent 24rem),
    linear-gradient(125deg, #031c42 0%, #073f84 50%, #a7122a 145%);
}

.hero::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  z-index: -1;
  width: 27rem;
  height: 27rem;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.hero::before {
  position: absolute;
  top: -9rem;
  left: 46%;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  content: "";
  background: rgba(0, 117, 255, 0.3);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-grid,
.order-layout,
.original-menu-grid,
.featured-grid,
.location-grid,
.hours-card,
.footer-grid {
  display: grid;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--red-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--blue-950);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5.6vw, 4.65rem);
}

.hero h1 {
  color: var(--paper);
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-text,
.section-heading > p:last-child,
.hours-card p,
.contact-card > p {
  color: var(--muted);
}

.hero-text {
  max-width: 700px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions,
.location-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.76rem 1.1rem;
  color: var(--paper);
  background: var(--red-700);
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary:hover,
.nav-order:hover {
  background: var(--blue-900);
}

.button-secondary {
  background: var(--blue-900);
}

.button-secondary:hover {
  background: var(--red-700);
}

.button-outline {
  color: var(--blue-900);
  background: transparent;
  border-color: var(--blue-900);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--blue-900);
}

.hero .button-outline {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.82);
}

.hero .button-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-whatsapp {
  background: #168a48;
}

.button-whatsapp:hover {
  background: #10763c;
}

.hero-highlights {
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero-highlights li {
  padding: 0.38rem 0.7rem;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  justify-self: end;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.hero-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.3 / 1;
  object-fit: contain;
  border-radius: 12px;
}

.hero-card p {
  margin: 0.8rem 0 0.1rem;
  color: var(--blue-900);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.quick-actions {
  color: var(--paper);
  background: var(--blue-950);
}

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

.quick-grid a {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.35rem;
  text-decoration: none;
}

.quick-grid a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-grid a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.action-icon {
  font-size: 1.75rem;
}

.quick-grid strong,
.quick-grid small {
  display: block;
}

.quick-grid small {
  color: rgba(255, 255, 255, 0.74);
}

.section {
  padding: 4.2rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.menu-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 8%, rgba(199, 24, 45, 0.16), transparent 21rem),
    radial-gradient(circle at 2% 80%, rgba(13, 88, 173, 0.17), transparent 25rem),
    linear-gradient(145deg, #eef6ff 0%, #fffaf2 62%, #fff3f3 100%);
}

.menu-section::before {
  position: absolute;
  top: 8rem;
  right: -7rem;
  z-index: -1;
  width: 19rem;
  height: 19rem;
  content: "";
  background: rgba(13, 88, 173, 0.1);
  border-radius: 50%;
  filter: blur(22px);
}

.order-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}

.filter-button,
.text-button,
.quantity-button,
.remove-button {
  cursor: pointer;
}

.filter-button {
  padding: 0.52rem 0.78rem;
  color: var(--blue-900);
  background: var(--paper);
  border: 1px solid rgba(7, 47, 107, 0.15);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--paper);
  background: var(--blue-900);
}

.menu-categories {
  display: grid;
  gap: 1rem;
}

.menu-category {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 47, 107, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 22px rgba(3, 28, 66, 0.07);
}

.menu-category h3 {
  margin-bottom: 0.85rem;
  color: var(--blue-900);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.9));
  border: 1px solid var(--line);
  border-radius: 12px;
}

.product-card h4 {
  margin: 0;
  color: var(--blue-950);
  font-size: 0.96rem;
}

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

.product-actions {
  text-align: right;
}

.product-price {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--red-700);
  font-size: 0.98rem;
  font-weight: 800;
}

.add-button {
  min-height: 34px;
  padding: 0.46rem 0.68rem;
  font-size: 0.76rem;
}

.cart-card {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 106px);
  overflow: auto;
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  border: 1px solid rgba(7, 47, 107, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.cart-heading,
.cart-total,
.cart-summary-row,
.cart-item,
.cart-item-actions {
  display: flex;
  align-items: center;
}

.cart-heading,
.cart-total,
.cart-summary-row {
  justify-content: space-between;
  gap: 1rem;
}

.cart-heading h2 {
  margin: 0;
  font-size: 1.8rem;
}

.cart-count {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  color: var(--paper);
  background: var(--red-700);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-empty {
  padding: 1rem 0 0.4rem;
  color: var(--muted);
}

.cart-empty p {
  margin-bottom: 0.15rem;
  color: var(--blue-950);
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.cart-item {
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.cart-item h3 {
  margin: 0 0 0.12rem;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.cart-item p {
  margin: 0;
  color: var(--red-700);
  font-size: 0.83rem;
  font-weight: 800;
}

.cart-item-actions {
  gap: 0.3rem;
}

.quantity-button,
.remove-button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue-900);
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
}

.remove-button {
  color: var(--red-700);
  background: #fff2f4;
}

.cart-quantity {
  min-width: 18px;
  color: var(--blue-950);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

.cart-summary {
  padding-top: 1rem;
}

.cart-summary-row {
  padding: 0.38rem 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-total {
  padding-top: 0.65rem;
  margin-top: 0.35rem;
  color: var(--blue-950);
  font-size: 1rem;
  border-top: 1px solid var(--line);
}

.cart-total strong {
  font-size: 1.35rem;
}

.cart-summary p {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.cart-summary .cart-note {
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
}

.cart-send {
  width: 100%;
}

.text-button {
  display: block;
  margin: 0.8rem auto 0;
  color: var(--red-700);
  background: transparent;
  border: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.original-menu-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 28%, rgba(199, 24, 45, 0.18), transparent 24rem),
    linear-gradient(135deg, #fff5ee 0%, #fffaf2 44%, #edf5ff 100%);
}

.featured-grid {
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.featured-panel {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 47, 107, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.featured-panel > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 47, 107, 0.1);
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(3, 28, 66, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(3, 28, 66, 0.16);
}

.featured-placeholder {
  display: grid;
  min-height: 92px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 74% 24%, rgba(222, 36, 59, 0.72), transparent 7rem),
    linear-gradient(145deg, #073f84, #031c42);
}

.featured-placeholder span {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-card h3 {
  padding: 0 0.85rem;
  margin: 0 0 0.22rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.featured-card p {
  padding: 0 0.85rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.original-menu-section::after {
  position: absolute;
  right: -9rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  content: "";
  background: rgba(13, 88, 173, 0.09);
  border-radius: 50%;
  filter: blur(18px);
}

.original-menu-grid {
  grid-template-columns: minmax(0, 560px) minmax(260px, 1fr);
  gap: 2rem;
  align-items: start;
}

.menu-image-link {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.menu-image-link img {
  width: 100%;
}

.original-menu-note {
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.original-menu-note p:not(.eyebrow) {
  color: var(--muted);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(13, 88, 173, 0.45), transparent 22rem),
    radial-gradient(circle at 86% 92%, rgba(199, 24, 45, 0.32), transparent 26rem),
    linear-gradient(140deg, #031c42 0%, #063873 64%, #09254d 100%);
}

.gallery-section .eyebrow {
  color: #ff9ba8;
}

.gallery-section h2,
.gallery-section .section-heading > p:last-child {
  color: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  margin: 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.3rem 0.9rem 0.8rem;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(3, 28, 66, 0.9));
  font-weight: 800;
}

.gallery-sandwich img {
  object-position: 49% 24%;
  transform-origin: 50% 24%;
  transform: scale(2.4);
}

.gallery-coffee img {
  object-position: 10% 82%;
  transform-origin: 10% 82%;
  transform: scale(2.4);
}

.gallery-shake img {
  object-position: 88% 83%;
  transform-origin: 88% 83%;
  transform: scale(2.4);
}

.gallery-croquettes img {
  object-position: 12% 29%;
  transform-origin: 12% 29%;
  transform: scale(2.45);
}

.gallery-card:hover img {
  transform: scale(2.52);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.3);
}

.location-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(13, 88, 173, 0.16), transparent 24rem),
    radial-gradient(circle at 4% 100%, rgba(199, 24, 45, 0.13), transparent 22rem),
    linear-gradient(135deg, #f3f8ff 0%, #fffaf2 58%, #fff1f2 100%);
}

.location-grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: center;
}

address {
  color: var(--muted);
  font-style: normal;
}

.location-copy address {
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
}

.map-wrap {
  overflow: hidden;
  min-height: 350px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.hours-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(13, 88, 173, 0.48), transparent 20rem),
    linear-gradient(135deg, #031c42, #07366f);
}

.hours-card {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hours-card dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--paper);
  background: var(--blue-900);
  border-radius: 12px;
}

.hours-card dd {
  margin: 0;
  font-weight: 800;
}

.contact-section {
  color: var(--paper);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.15), transparent 20rem),
    radial-gradient(circle at 88% 90%, rgba(7, 47, 107, 0.5), transparent 24rem),
    linear-gradient(130deg, #c7182d 0%, #9f0c23 56%, #5f0b20 100%);
  text-align: center;
}

.contact-card {
  max-width: 780px;
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card > p {
  color: var(--paper);
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 3rem 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.75fr 0.8fr;
  gap: 2rem;
}

.footer-brand {
  color: var(--paper);
}

.site-footer h2 {
  color: var(--paper);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 0.32rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.83rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(3, 28, 66, 0.22);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
}

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

  .cart-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(3, 28, 66, 0.1);
  }

  .main-nav.is-open {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 0.72rem 0.35rem;
  }

  .main-nav .nav-order {
    margin-top: 0.35rem;
    text-align: center;
  }

  .hero-grid,
  .original-menu-grid,
  .location-grid,
  .hours-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-card {
    width: min(76vw, 290px);
    justify-self: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  .section {
    padding: 3.35rem 0;
  }

  .quick-grid,
  .product-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-panel {
    padding: 1rem;
  }

  .featured-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .featured-placeholder {
    min-height: 86px;
  }

  .quick-grid a {
    min-height: 78px;
  }

  .quick-grid a + a {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .hero-actions .button,
  .location-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .product-card {
    padding: 0.78rem;
  }

  .gallery-card {
    min-height: 230px;
  }

  .hours-card {
    gap: 1rem;
    padding: 1.3rem;
  }

  .hours-card dl div {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
