* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: #111111;
  background: #f4f1ee;
  line-height: 1.6;
}

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

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  margin-bottom: 24px;
  text-align: center;
  color: black;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #f5c542;
}

.section-note {
  margin: 8px auto 16px;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: #111111;
}

.drinks .section-note {
  color: #ffffff;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  min-height: 40vh;
  background: linear-gradient(rgba(30, 10, 10, 0.7), rgba(30, 10, 10, 0.7));
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero::before {
  left: 0;
  background-image:
    linear-gradient(rgba(30, 10, 10, 0.7), rgba(30, 10, 10, 0.7)), url("images/beefEpanada.jpg");
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.hero::after {
  right: 0;
  background-image:
    linear-gradient(rgba(30, 10, 10, 0.7), rgba(30, 10, 10, 0.7)), url("images/PinchosHero.PNG");
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0));
}

.site-banner {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0px auto 0;
  padding: 10px 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  background: #fff3cd;
  color: #664d03;
  border: 1px solid #ffecb5;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.hero__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #f5c542;
  background: #ffffff;
}

.hero__brand {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
}

.hero__intro {
  text-align: center;
}

.hero__headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin: 0;
}

.hero__tagline {
  font-size: 1.1rem;
  max-width: 520px;
  margin-top: 12px;
}

.hero__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.8px;
  color: #f5c542;
  margin-top: 12px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  text-align: center;
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 48px 0;
    text-align: center;
  }

  .hero__topbar {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__tagline {
    max-width: 100%;
  }
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn--primary {
  background: #f5c542;
  color: #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.btn--ghost {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.menu-section {
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  margin-top: -48px;
  padding: 48px 0 64px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.menu-card,
.drinks__card {
  background: linear-gradient(165deg, #fff9e6 0%, #ffe8a6 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  text-align: center;
  padding-bottom: 16px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.menu-card:hover,
.drinks__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  border-color: #f5c542;
}

.menu-card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu-card--quipe img {
  -o-object-position: center 30%;
  object-position: center 30%;
}

.menu-card__label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 16px;
  color: #7a4a00;
}

.drinks {
  background: linear-gradient(120deg, #c62828, #8e1c1c);
  color: #ffffff;
}

.drinks .section-title,
.contact .section-title {
  color: #ffffff;
}

.drinks__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 280px));
  gap: 24px;
  margin: 24px auto 0;
  justify-content: center;
  max-width: 720px;
}

.drinks__card {
  color: #111111;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 1;
  padding-bottom: 0;
}

.drinks__card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  background: #fffdf5;
  border-bottom: 2px solid rgba(245, 197, 66, 0.7);
}

.drinks__card h3 {
  margin: 10px 0 2px;
  color: #7a4a00;
  min-height: 1.3em;
  text-align: center;
}

.drinks__subtitle {
  margin: 0 0 6px;
  min-height: 1.2em;
  text-align: center;
  align-self: center;
  font-size: 1.1rem;
}
.drinks__subtitle.price-list__note {
  font-size: 1rem;
}

.hours {
  background: #ffffff;
}

.hours__list {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hours__list li {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hours__list li span {
  font-weight: 600;
}

.contact {
  background: #8e1c1c;
  color: #ffffff;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  justify-items: center;
}

.contact__card {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(245, 197, 66, 0.7);
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.contact__card h3 {
  font-size: 1.2rem;
}

.contact__card p {
  font-size: 1.05rem;
}

.footer {
  text-align: center;
  padding: 12px 0 0;
  font-size: 0.9rem;
  color: #2a2a2a;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__heart {
  color: #c62828;
}
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.modal.is-open {
  display: flex;
}

.modal__content {
  background: #ffffff;
  color: #111111;
  border-radius: 16px;
  padding: 32px;
  padding-bottom: 80px;
  max-width: 520px;
  width: 100%;
  max-height: min(86vh, 760px);
  overflow: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal__content h3,
p {
  margin-top: 0;
  text-align: center;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #c62828;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.modal__close:hover {
  background: #f5c542;
  color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}
.modal__close:focus-visible {
  outline: 3px solid rgba(245, 197, 66, 0.6);
  outline-offset: 2px;
}

.modal-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 16px;
}

.modal-btn {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
}

.modal-btn--secondary {
  background: #f5c542;
  color: #111111;
}

.modal-btn--primary {
  background: #c62828;
  color: #ffffff;
}

.modal-btn--primary:hover {
  background: #8e1c1c;
}

.checkout-steps {
  margin: 0 0 16px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.7);
}

.checkout-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: "Source Sans 3", sans-serif;
}

.field__hint {
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.7);
}

.form-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(198, 40, 40, 0.12);
  color: #8e1c1c;
  font-weight: 600;
}

.delivery-min {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.18);
  border: 1px solid rgba(255, 193, 7, 0.35);
}

.delivery-min__text {
  margin: 0;
  font-weight: 600;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.segmented__btn {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 700;
  background: #ffffff;
  cursor: pointer;
}

.segmented__btn--active,
.segmented__btn.is-active {
  border-color: #c62828;
  background: rgba(198, 40, 40, 0.08);
  color: #8e1c1c;
}

.checkout-summary {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 12px;
}

.checkout-summary li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.payment {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  display: grid;
  gap: 14px;
}

.payment__title {
  margin: 0;
  font-weight: 700;
}

.payment__frame {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  min-height: 0;
}

.payment__frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.payment__frame > iframe {
  height: 240px;
}

.payment__grid {
  display: grid;
  gap: 14px;
}

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

.payment__field {
  display: grid;
  gap: 8px;
}

.payment__label {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(17, 17, 17, 0.75);
}

.clover-field {
  min-height: 30px;
  border-radius: 10px;
  padding: 0 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d0d5dd;
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.06);
  display: flex;
  align-items: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.clover-field iframe {
  width: 100% !important;
  min-height: 30px !important;
  height: 30px !important;
  border: 0 !important;
  display: block !important;
}

#clover-card-number.clover-field,
#clover-card-number iframe {
  min-height: 30px !important;
  height: 30px !important;
}

#clover-card-number,
#clover-card-date,
#clover-card-cvv,
#clover-card-postal-code {
  box-sizing: border-box;
}

.clover-field:focus-within {
  border-color: #f5c542;
  box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.25);
}

.input-errors {
  min-height: 1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8e1c1c;
}

.payment__pay {
  width: 100%;
  margin-top: 12px;
}

.payment__edit {
  width: 100%;
  margin-top: 8px;
}

.payment__edit.btn--ghost {
  border-color: rgba(0, 0, 0, 0.2);
  color: #111111;
}

.payment__edit.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
  .payment {
    padding: 14px;
  }

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

  .payment__frame {
    padding: 12px;
  }

  .payment__frame > iframe {
    height: 260px;
  }
}

.confirmation-note {
  margin-top: 16px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.7);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.price-list--scroll {
  max-height: 270px;
  overflow-y: auto;
  padding-right: 8px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.menu-item {
  align-items: center;
  gap: 12px;
}
.menu-item__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.menu-item__name {
  font-weight: 600;
}
.menu-item__note {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c62828;
}
.menu-item__note--compact {
  font-size: 0.7rem;
}
.menu-item__right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.menu-item--soldout {
  opacity: 0.75;
}
.menu-item__soldout-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c62828;
  background: #fff3c4;
  padding: 2px 8px;
  border-radius: 999px;
}
.menu-item__price {
  font-weight: 700;
  color: #7a4a00;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.qty-control__add,
.qty-control__btn {
  border: 2px solid #c62828;
  background: #fff3c4;
  color: #c62828;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.qty-control__btn {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-control__qty {
  min-width: 16px;
  text-align: center;
  font-weight: 700;
  color: #111111;
}
.cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: #ffffff;
  border-top: 2px solid #f5c542;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1500;
}

.cart-bar__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  color: #7a4a00;
}

.cart-bar__total {
  font-size: 1.1rem;
  color: #111111;
}

.cart-bar__btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: #c62828;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-actions {
  display: flex;
  justify-content: flex-end;
  margin: -6px 0 12px;
}

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

.cart-actions__checkout {
  margin-left: auto;
}

.cart-actions__clear {
  border: 1px solid rgba(198, 40, 40, 0.4);
  background: #fff3f0;
  color: #c62828;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.cart-actions__clear:hover {
  background: #c62828;
  color: #ffffff;
  border-color: #c62828;
  box-shadow: 0 6px 16px rgba(198, 40, 40, 0.2);
}

.cart-actions__clear:focus-visible {
  outline: 3px solid rgba(198, 40, 40, 0.3);
  outline-offset: 2px;
}

.cart-actions__clear[disabled] {
  color: rgba(17, 17, 17, 0.4);
  background: #f2f2f2;
  border-color: rgba(17, 17, 17, 0.2);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #fffdf5;
  border: 1px solid rgba(198, 40, 40, 0.12);
}

.cart-item__name {
  font-weight: 700;
}

.cart-item__price {
  font-weight: 700;
  color: #7a4a00;
  justify-self: end;
}

.cart-item .qty-control {
  grid-column: 1 / -1;
}

.cart-empty {
  text-align: center;
  padding: 16px;
  color: #6b5b4b;
  font-weight: 600;
}

.totals {
  background: #fffdf5;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-weight: 600;
}

.totals__divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 8px 0;
}

.totals__row--total {
  font-size: 1.1rem;
  font-weight: 700;
}

.totals__note {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: #6b5b4b;
  text-align: center;
}
.checkout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout__note {
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: #c62828;
}
.checkout__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.checkout__option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fffdf5;
  font-weight: 600;
}
.checkout__option input:disabled + span {
  color: rgba(17, 17, 17, 0.4);
}
.price-list__note {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c62828;
  background: #fff3c4;
  padding: 2px 8px;
  border-radius: 999px;
}
.price-list__note--compact {
  font-size: 0.7rem;
}
.modal .price-list__note {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .drinks__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 62vh;
  }
  .hero__topbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero__content {
    padding: 32px 0 20px;
    align-items: center;
    text-align: center;
  }
  .hero__actions {
    width: 100%;
  }
  .hero__actions .btn {
    flex: 1 1 100%;
  }
  .hero__logo {
    justify-content: center;
    text-align: center;
  }
  .menu-section {
    margin-top: -32px;
  }
  .menu-section {
    padding: 36px 0 48px;
  }
  .menu-grid {
    gap: 12px;
  }
  .menu-card img {
    height: 140px;
  }
  .hours__list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .drinks__card img {
    height: 70%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .drinks__card {
    padding-bottom: 0;
  }
}
@media (max-width: 520px) {
  .section {
    padding: 36px 0;
  }
  .hero__content {
    padding: 22px 0 14px;
  }
  .hero__actions {
    gap: 8px;
  }
  .hero__headline {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
  }
  .hero__tagline {
    font-size: 1rem;
  }
  .drinks__grid {
    gap: 20px;
  }
  .drinks__card img {
    height: 70%;
  }
  .modal--single {
    align-items: flex-start;
  }
  .modal--single .modal__content {
    margin-top: 18vh;
  }
  .modal .price-list__note {
    font-size: 1.1rem;
  }
  .modal .price-list__note--compact {
    font-size: 0.85rem;
  }
  .cart-bar {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 24px;
  }
  .cart-bar__info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cart-item {
    grid-template-columns: 1fr;
  }
  .cart-item__price {
    justify-self: start;
  }
  .contact__grid {
    gap: 16px;
  }
  .contact__card {
    padding: 16px;
  }
  .hours__list li {
    padding: 12px 16px;
  }
  .footer {
    padding: 16px 0;
  }
  .modal__content {
    padding: 24px;
  }
  .modal {
    align-items: flex-start;
    padding-top: 48px;
  }
}

@media (min-width: 1440px) {
  .cart-bar {
    justify-content: center;
    gap: 48px;
  }
}

@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
  .hero__tagline {
    margin-top: 24px;
  }
}
