:root {
  --red: #d62828;
  --red-dark: #8b1e1e;
  --yellow: #ffb703;
  --cheese: #ffd166;
  --orange: #f77f00;
  --charcoal: #151515;
  --charcoal-soft: #202020;
  --white: #ffffff;
  --beige: #fff3d6;
  --beige-dark: #f4e4bc;
  --text: #3a3a3a;
  --muted: #77716a;
  --green: #25d366;
  --heading: "Bebas Neue", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: 1180px;
  --radius-small: 12px;
  --radius: 22px;
  --radius-large: 34px;
  --shadow: 0 24px 70px rgba(40, 17, 6, 0.14);
  --shadow-strong: 0 28px 60px rgba(0, 0, 0, 0.28);
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: var(--heading);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--charcoal);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.eyebrow.dark {
  color: var(--red);
}

.eyebrow.light {
  color: var(--cheese);
}

.section-heading {
  max-width: 710px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2,
.faq-intro h2,
.order-copy h2,
.location-content h2,
.about-copy h2,
.offer-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.section-heading p,
.faq-intro > p,
.order-copy > p,
.about-copy > p {
  color: var(--muted);
  font-size: 1.04rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition), border-color var(--transition);
  overflow: hidden;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
  content: "";
  transform: translateX(-130%);
  transition: transform 500ms ease;
}

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

.button:hover::after {
  transform: translateX(130%);
}

.button svg {
  z-index: 1;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 30px rgba(214, 40, 40, 0.32);
}

.button-primary:hover {
  background: #ec3030;
  box-shadow: 0 17px 38px rgba(214, 40, 40, 0.4);
}

.button-yellow {
  color: var(--charcoal);
  background: var(--yellow);
  box-shadow: 0 14px 34px rgba(255, 183, 3, 0.24);
}

.button-yellow:hover {
  background: var(--cheese);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-outline-light:hover {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--white);
}

.button-large {
  min-height: 58px;
  padding: 16px 27px;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(21, 21, 21, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(21, 21, 21, 0.985);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--charcoal);
  background: linear-gradient(145deg, var(--yellow), var(--orange));
  border-radius: 50% 50% 45% 45%;
  font-family: var(--heading);
  font-size: 1.7rem;
  line-height: 1;
  place-items: center;
  transform: rotate(-4deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--yellow);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.5vw, 23px);
}

.main-nav > a {
  position: relative;
  color: #ececec;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-nav > a:hover {
  color: var(--yellow);
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 785px;
  padding: 152px 0 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 45%, rgba(247, 127, 0, 0.26), transparent 27%),
    radial-gradient(circle at 40% 15%, rgba(214, 40, 40, 0.18), transparent 31%),
    linear-gradient(120deg, #160909 0%, #3b0e0d 46%, #131313 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 55px 55px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -22%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.24), transparent 68%);
  content: "";
}

.hero-noise,
.offer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.hero-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 52px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(4.1rem, 7.4vw, 7.1rem);
  letter-spacing: 0.015em;
  line-height: 0.87;
}

.hero h1 em {
  display: block;
  color: var(--yellow);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: #f7e7da;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-support {
  color: #cdbeb4;
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 30px 0 36px;
}

.social-proof {
  display: flex;
  align-items: stretch;
  max-width: 650px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-proof div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1px;
  padding: 20px 18px 0 0;
}

.social-proof div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.social-proof strong {
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.social-proof span {
  color: #baaaa1;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.hero-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.58) 0%, rgba(247, 127, 0, 0.25) 32%, rgba(214, 40, 40, 0.08) 56%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
}

.burger-frame {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(590px, 47vw);
  aspect-ratio: 1.4;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: 48% 52% 46% 54% / 46% 48% 52% 54%;
  box-shadow: var(--shadow-strong), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
  animation: burger-float 4.7s ease-in-out infinite;
  overflow: hidden;
}

.burger-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), transparent 42%, rgba(214, 40, 40, 0.16));
  content: "";
  pointer-events: none;
}

.burger-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 51%;
  transform: scale(1.08);
}

.burger-shadow {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 50%;
  width: 310px;
  height: 48px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  filter: blur(18px);
  transform: translateX(-50%);
  animation: shadow-breathe 4.7s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.floating-badge strong {
  color: var(--red);
  font-size: 1.1rem;
}

.badge-best {
  top: 70px;
  left: -15px;
  transform: rotate(-4deg);
}

.badge-fast {
  right: -4px;
  bottom: 85px;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  color: var(--white);
  background: var(--red);
  border-color: #e75858;
  transform: rotate(3deg);
}

.badge-fast strong {
  color: var(--yellow);
}

.steam {
  position: absolute;
  z-index: 2;
  top: 4px;
  width: 58px;
  height: 170px;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0;
  animation: steam-rise 4.2s ease-in-out infinite;
}

.steam-one {
  left: 35%;
}

.steam-two {
  left: 52%;
  height: 130px;
  animation-delay: 1.25s;
}

.steam-three {
  left: 65%;
  height: 155px;
  animation-delay: 2.4s;
}

.heat-particle {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--orange);
  opacity: 0.5;
  animation: heat-float 6s ease-in-out infinite;
}

.particle-one {
  top: 29%;
  right: 45%;
}

.particle-two {
  top: 57%;
  right: 5%;
  animation-delay: 1.7s;
}

.particle-three {
  top: 73%;
  right: 42%;
  animation-delay: 3.1s;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 29px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: inline-block;
  width: 18px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
}

.scroll-cue span::after {
  display: block;
  width: 3px;
  height: 6px;
  margin: 6px auto;
  background: var(--yellow);
  border-radius: 3px;
  content: "";
  animation: scroll-dot 1.8s ease infinite;
}

.category-section {
  position: relative;
  z-index: 8;
  padding: 54px 0 32px;
  background: var(--beige);
  border-bottom: 1px solid var(--beige-dark);
}

.category-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.category-button {
  min-height: 78px;
  padding: 13px 8px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(139, 30, 30, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(61, 34, 12, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.category-button span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.category-button:hover,
.category-button.is-active {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 13px 25px rgba(214, 40, 40, 0.25);
  transform: translateY(-5px);
}

.category-button:hover span,
.category-button.is-active span {
  color: var(--yellow);
}

.menu-section {
  padding: 100px 0 115px;
  background:
    radial-gradient(circle at 0 10%, rgba(255, 183, 3, 0.08), transparent 24%),
    var(--white);
}

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

.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid #efe8de;
  border-radius: var(--radius);
  box-shadow: 0 13px 42px rgba(48, 26, 10, 0.09);
  transition: transform 300ms ease, box-shadow 300ms ease;
  overflow: hidden;
}

.product-card[hidden] {
  display: none;
}

.product-card.is-filtered-in {
  animation: card-in 380ms ease both;
}

.product-card:hover {
  box-shadow: 0 25px 55px rgba(51, 25, 6, 0.18);
  transform: translateY(-10px);
}

.product-image {
  height: 255px;
  background: var(--charcoal);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translateY(var(--parallax-y, 0)) scale(1.02);
  transition: transform 600ms ease;
}

.product-card:hover .product-image img {
  transform: translateY(var(--parallax-y, 0)) scale(1.09);
}

.product-content {
  padding: 24px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 27px;
  margin-bottom: 15px;
}

.product-tag {
  padding: 5px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-tag.promo {
  color: var(--charcoal);
  background: var(--yellow);
}

.product-tag.new {
  background: var(--orange);
}

.product-tag.hot {
  background: var(--red-dark);
}

.rating {
  color: #a06e00;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.product-card p {
  min-height: 75px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  border-top: 1px solid #eee7de;
}

.product-bottom > strong {
  color: var(--red);
  font-family: var(--heading);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.button-card {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 9px;
  font-size: 0.7rem;
}

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

.offer-section {
  position: relative;
  padding: 88px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 183, 3, 0.12), transparent 23%),
    linear-gradient(115deg, #1b0b0b, var(--red-dark) 52%, #280b0b);
  overflow: hidden;
}

.offer-pattern {
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 16px);
}

.offer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.offer-image-wrap {
  position: relative;
}

.offer-image-wrap::before {
  position: absolute;
  inset: -13px 25px 13px -13px;
  border: 2px solid rgba(255, 183, 3, 0.4);
  border-radius: var(--radius-large);
  content: "";
}

.offer-image-wrap img {
  position: relative;
  width: 100%;
  height: 445px;
  object-fit: cover;
  border-radius: var(--radius-large);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(var(--parallax-y, 0));
}

.offer-stamp {
  position: absolute;
  z-index: 3;
  top: -36px;
  right: -28px;
  display: grid;
  width: 112px;
  height: 112px;
  color: var(--charcoal);
  background: var(--yellow);
  border: 5px solid var(--red-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--yellow), 0 15px 35px rgba(0, 0, 0, 0.3);
  font-family: var(--heading);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  line-height: 0.85;
  text-align: center;
  text-transform: uppercase;
  place-items: center;
  animation: badge-pulse 1.9s ease-in-out infinite;
}

.offer-copy h2 {
  color: var(--white);
  font-size: clamp(3.4rem, 7vw, 5.8rem);
}

.offer-copy h2 em {
  display: block;
  color: var(--yellow);
}

.offer-description {
  max-width: 530px;
  color: #f3d9cf;
  font-size: 1.12rem;
}

.offer-price {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin: 22px 0 24px;
}

.offer-price small {
  margin-bottom: 13px;
  color: #d0aaa1;
  font-size: 0.8rem;
  text-decoration: line-through;
}

.offer-price strong {
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 4.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.85;
}

.offer-price sup {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 800;
}

.stock-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  color: #ead2c9;
  font-size: 0.79rem;
  font-weight: 600;
}

.stock-note span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.14);
  animation: availability 1.5s ease infinite;
}

.delivery-section {
  padding: 110px 0;
  background: var(--beige);
}

.delivery-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps::before {
  position: absolute;
  z-index: 0;
  top: 38px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(214, 40, 40, 0.27) 0 9px, transparent 9px 17px);
  content: "";
}

.delivery-steps li {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  text-align: center;
}

.step-number {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  color: var(--white);
  background: var(--red);
  border: 8px solid var(--beige);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(214, 40, 40, 0.17), 0 12px 24px rgba(214, 40, 40, 0.18);
  font-family: var(--heading);
  font-size: 1.8rem;
  place-items: center;
}

.delivery-steps h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.delivery-steps p {
  color: var(--muted);
  font-size: 0.86rem;
}

.delivery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  max-width: 860px;
  margin: 55px auto 0;
  padding: 22px 25px;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(55, 31, 9, 0.08);
}

.delivery-cta p {
  margin: 0;
  color: var(--muted);
}

.delivery-cta strong {
  color: var(--charcoal);
}

.about-section {
  padding: 120px 0;
  color: var(--white);
  background: var(--charcoal);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 85px;
}

.about-gallery {
  position: relative;
  min-height: 640px;
}

.about-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(var(--parallax-y, 0));
}

.about-small-image {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 315px;
  object-fit: cover;
  border: 8px solid var(--charcoal);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(var(--parallax-y, 0));
}

.experience-badge {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: var(--charcoal);
  background: var(--yellow);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
}

.experience-badge strong {
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.experience-badge span {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-copy h2 {
  color: var(--white);
}

.about-copy h2 em {
  color: var(--yellow);
}

.about-copy > p {
  color: #bcb8b4;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 25px;
  margin: 35px 0 38px;
}

.feature-grid div {
  padding-left: 16px;
  border-left: 3px solid var(--red);
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.85rem;
}

.feature-grid span {
  color: #8f8d8a;
  font-size: 0.72rem;
  line-height: 1.5;
}

.testimonials-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 183, 3, 0.1), transparent 24%),
    var(--white);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-stage {
  position: relative;
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 45px 55px;
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: 28px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(35px) scale(0.98);
  transition: opacity 450ms ease, transform 450ms ease;
  pointer-events: none;
}

.testimonial-card.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.quote-mark {
  position: absolute;
  top: 20px;
  right: 36px;
  color: rgba(214, 40, 40, 0.14);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 23px;
}

.testimonial-person img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: var(--charcoal);
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.72rem;
}

.stars {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2.3vw, 1.42rem);
  font-weight: 700;
  line-height: 1.55;
}

.ordered-product {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.ordered-product strong {
  color: var(--red);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.carousel-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 50%;
  font-size: 1.2rem;
  place-items: center;
  transition: background var(--transition), transform var(--transition);
}

.carousel-arrow:hover {
  background: var(--red);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: #d5cec5;
  border-radius: 99px;
  transition: width var(--transition), background var(--transition);
}

.carousel-dot.is-active {
  width: 27px;
  background: var(--red);
}

.location-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
  background: var(--red-dark);
}

.location-map {
  min-height: 620px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  filter: grayscale(0.8) contrast(1.12);
}

.location-panel {
  display: flex;
  align-items: center;
  padding: 75px max(30px, calc((100vw - var(--container)) / 2)) 75px 65px;
  color: var(--white);
  background:
    linear-gradient(rgba(139, 30, 30, 0.94), rgba(88, 16, 16, 0.96)),
    url("assets/restaurante-fachada.jpg") center / cover;
}

.location-content {
  max-width: 540px;
}

.location-content h2 {
  color: var(--white);
}

.location-content h2 em {
  color: var(--yellow);
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 34px 0;
}

.contact-list div {
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 5px;
  color: var(--cheese);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 0.82rem;
  line-height: 1.5;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-section {
  padding: 115px 0;
  background: var(--beige);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 115px;
  align-self: start;
}

.faq-intro > p {
  margin-bottom: 28px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #eadfcf;
  border-radius: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 11px;
}

.faq-item.is-open {
  border-color: rgba(214, 40, 40, 0.35);
  box-shadow: 0 12px 28px rgba(66, 36, 13, 0.08);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--body);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 21px 23px;
  color: var(--charcoal);
  background: transparent;
  font-size: 0.91rem;
  font-weight: 800;
  text-align: left;
}

.faq-question i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: transform var(--transition);
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.faq-answer {
  max-height: 0;
  transition: max-height 350ms ease;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 23px 22px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.order-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(214, 40, 40, 0.3), transparent 25%),
    var(--charcoal);
}

.order-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 80px;
}

.order-copy h2 {
  color: var(--white);
}

.order-copy h2 em {
  color: var(--yellow);
}

.order-copy > p {
  color: #bdb9b5;
}

.order-copy img {
  width: 100%;
  height: 250px;
  margin-top: 30px;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.82) contrast(1.05);
}

.order-promise {
  margin-top: 28px;
  padding: 17px 19px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
}

.order-promise strong,
.order-promise span {
  display: block;
}

.order-promise strong {
  color: var(--white);
}

.order-promise span {
  color: #aaa7a4;
  font-size: 0.78rem;
}

.order-form {
  padding: 38px;
  color: var(--text);
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--text);
  background: #faf7f1;
  border: 1px solid #e4ded5;
  border-radius: 10px;
  font-size: 0.87rem;
  outline: none;
  text-transform: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.order-form textarea {
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  background: var(--white);
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 5px;
}

.form-privacy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: center;
}

.site-footer {
  padding: 72px 0 0;
  color: #a7a4a1;
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr 0.8fr 0.9fr;
  gap: 55px;
  padding-bottom: 54px;
}

.footer-brand > p {
  max-width: 380px;
  margin: 22px 0;
  font-size: 0.83rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand),
.footer-grid > div:not(.footer-brand) p {
  margin-bottom: 9px;
  color: #8d8a87;
  font-size: 0.78rem;
  transition: color var(--transition);
}

.footer-grid a:not(.brand):hover {
  color: var(--yellow);
}

.footer-grid strong {
  color: #d5d2cf;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  padding: 7px 10px;
  border: 1px solid #333;
  border-radius: 7px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid #282828;
}

.footer-bottom p {
  margin: 0;
  color: #686664;
  font-size: 0.69rem;
}

.footer-bottom strong {
  color: var(--yellow);
}

.whatsapp-float-wrap {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-bubble {
  padding: 10px 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid #e7e2dc;
  border-radius: 11px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.17);
  font-size: 0.72rem;
}

.whatsapp-bubble strong {
  color: var(--red);
}

.whatsapp-float {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  padding: 15px;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  place-items: center;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes burger-float {
  0%,
  100% { transform: translate(-50%, -50%) translateY(0) rotate(-1deg); }
  50% { transform: translate(-50%, -50%) translateY(-15px) rotate(1deg); }
}

@keyframes shadow-breathe {
  0%,
  100% { opacity: 0.65; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 0.38; transform: translateX(-50%) scaleX(0.82); }
}

@keyframes glow-pulse {
  0%,
  100% { opacity: 0.72; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes steam-rise {
  0% { opacity: 0; transform: translateY(55px) scale(0.75) rotate(5deg); }
  30% { opacity: 0.65; }
  100% { opacity: 0; transform: translateY(-70px) scale(1.15) rotate(-12deg); }
}

@keyframes heat-float {
  0%,
  100% { opacity: 0.15; transform: translateY(15px) scale(0.6); }
  50% { opacity: 0.75; transform: translateY(-35px) scale(1.1); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translateY(0); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes badge-pulse {
  0%,
  100% { transform: scale(1) rotate(5deg); }
  50% { transform: scale(1.08) rotate(2deg); }
}

@keyframes availability {
  0%,
  100% { box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.14); }
  50% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
}

@keyframes whatsapp-pulse {
  0%,
  100% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.42); }
  50% { box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 13px rgba(37, 211, 102, 0); }
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 12px;
  }

  .main-nav > a {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 740px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 20px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .badge-best {
    left: -5px;
  }

  .category-list {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .about-grid {
    gap: 50px;
  }

  .location-panel {
    padding-left: 40px;
  }

  .faq-grid,
  .order-grid {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

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

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

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

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 100px 30px 40px;
    background: rgba(21, 21, 21, 0.99);
    opacity: 0;
    transform: translateX(100%);
    transition: transform 350ms ease, opacity 350ms ease;
    pointer-events: none;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .main-nav > a {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 400;
  }

  .main-nav > a::after {
    display: none;
  }

  .nav-order {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 135px 0 85px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .social-proof {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 20px;
  }

  .burger-frame {
    width: min(650px, 80vw);
  }

  .badge-best {
    left: 8%;
  }

  .badge-fast {
    right: 7%;
  }

  .scroll-cue {
    display: none;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .offer-image-wrap {
    max-width: 670px;
    margin-inline: auto;
  }

  .offer-copy {
    max-width: 670px;
    margin-inline: auto;
    text-align: center;
  }

  .offer-copy .eyebrow,
  .stock-note {
    justify-content: center;
  }

  .delivery-steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }

  .delivery-steps::before {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .about-copy {
    max-width: 720px;
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 430px;
  }

  .location-panel {
    padding: 70px max(25px, calc((100vw - 760px) / 2));
  }

  .faq-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
    max-width: 610px;
  }

  .order-copy {
    max-width: 700px;
  }

  .order-copy img {
    height: 330px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .hero {
    padding-top: 122px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 4.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .social-proof {
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
  }

  .social-proof div {
    width: 100%;
    padding: 12px 0;
  }

  .social-proof div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .hero-visual {
    min-height: 350px;
    margin-top: 12px;
  }

  .burger-frame {
    width: 93vw;
    border-width: 6px;
  }

  .hero-glow {
    width: 340px;
    height: 340px;
  }

  .burger-shadow {
    bottom: 6px;
    width: 210px;
  }

  .badge-best {
    top: 25px;
    left: 0;
  }

  .badge-fast {
    right: 0;
    bottom: 35px;
  }

  .floating-badge {
    padding: 9px 11px;
    font-size: 0.58rem;
  }

  .steam {
    top: -35px;
  }

  .category-section {
    padding-top: 44px;
  }

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

  .category-button {
    min-height: 70px;
  }

  .menu-section,
  .delivery-section,
  .about-section,
  .testimonials-section,
  .faq-section,
  .order-section {
    padding-block: 80px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .faq-intro h2,
  .order-copy h2,
  .location-content h2,
  .about-copy h2,
  .offer-copy h2 {
    font-size: clamp(2.8rem, 14vw, 3.8rem);
  }

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

  .product-image {
    height: 245px;
  }

  .product-card p {
    min-height: auto;
  }

  .offer-section {
    padding-block: 75px;
  }

  .offer-grid {
    gap: 45px;
  }

  .offer-image-wrap img {
    height: 310px;
  }

  .offer-image-wrap::before {
    inset: -8px 12px 8px -8px;
  }

  .offer-stamp {
    top: -30px;
    right: -4px;
    width: 88px;
    height: 88px;
    font-size: 1.3rem;
  }

  .offer-price {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .offer-price small {
    margin: 0;
  }

  .offer-price strong {
    font-size: 4rem;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .delivery-steps li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    align-items: center;
    padding: 0;
    text-align: left;
  }

  .step-number {
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .delivery-steps p {
    margin-bottom: 0;
  }

  .delivery-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .about-gallery {
    min-height: 500px;
  }

  .about-main-image {
    width: 92%;
    height: 390px;
  }

  .about-small-image {
    width: 52%;
    height: 235px;
  }

  .experience-badge {
    bottom: 14px;
    left: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-stage {
    min-height: 460px;
  }

  .testimonial-card {
    padding: 35px 26px;
  }

  .quote-mark {
    right: 15px;
    font-size: 5rem;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-map,
  .location-map iframe {
    min-height: 350px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .order-form {
    padding: 25px 20px;
  }

  .order-copy img {
    height: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .whatsapp-float-wrap {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-bubble {
    display: none;
  }

  .whatsapp-float {
    width: 57px;
    height: 57px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
