/* Aqua & Sapone public storefront. The secure table menu keeps the legacy styles. */

html[data-page-mode="storefront"] [data-page-shell="menu"],
html[data-page-mode="menu"] [data-page-shell="storefront"],
html[data-page-mode="table"] [data-page-shell="storefront"] {
  display: none !important;
}

html[data-page-mode="table"] [data-public-site-nav],
html[data-page-mode="table"] [data-full-menu-only] {
  display: none !important;
}

/* Ordering controls live outside the legacy menu <main>; keep them completely
   out of the public storefront's layout and accessibility tree. */
html[data-page-mode="storefront"] #floatingCart,
html[data-page-mode="storefront"] #productModalOverlay,
html[data-page-mode="storefront"] #productModal,
html[data-page-mode="storefront"] #colorFilterModalOverlay,
html[data-page-mode="storefront"] #colorFilterModal,
html[data-page-mode="storefront"] #modalOverlay,
html[data-page-mode="storefront"] #cartModal,
html[data-page-mode="storefront"] #codeGenerationModal,
html[data-page-mode="storefront"] #clientCodeDisplayModal,
html[data-page-mode="storefront"] #tableCodeModal,
html[data-page-mode="storefront"] #languageSelectionModal,
html[data-page-mode="storefront"] #fullScreenImageModal {
  display: none !important;
}

/* The legacy sheets used only an off-screen transform while closed, which left
   their controls focusable and exposed them in full-page captures. */
.product-modal:not(.active),
.cart-modal:not(.active) {
  visibility: hidden;
  pointer-events: none;
}

.product-modal.active,
.cart-modal.active {
  visibility: visible;
  pointer-events: auto;
}

body[data-page-mode="storefront"],
body[data-page-mode="menu"] {
  background: #030d1a;
}

body[data-page-mode="storefront"] .header,
body[data-page-mode="menu"] .header {
  position: sticky;
  top: 0;
  z-index: 180;
  padding: 8px 0;
  background: rgba(3, 13, 26, 0.82);
  border-bottom-color: rgba(109, 228, 247, 0.14);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

body[data-page-mode="storefront"] .header-content,
body[data-page-mode="menu"] .header-content {
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
}

body[data-page-mode="storefront"] .header-logo,
body[data-page-mode="menu"] .header-logo {
  flex: 0 0 auto;
}

body[data-page-mode="storefront"] .header-logo #headerSocials,
body[data-page-mode="menu"] .header-logo #headerSocials {
  display: none !important;
}

body[data-page-mode="storefront"] .restaurant-logo,
body[data-page-mode="menu"] .restaurant-logo {
  width: clamp(170px, 17vw, 238px) !important;
  height: auto !important;
  max-height: 72px !important;
  max-width: none !important;
}

.storefront-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.storefront-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(232, 247, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.storefront-nav-link:hover,
.storefront-nav-link:focus-visible {
  color: #e8f7ff;
  background: rgba(109, 228, 247, 0.09);
  outline: none;
}

body[data-page-mode="storefront"] .header-info,
body[data-page-mode="menu"] .header-info {
  flex: 0 0 auto;
  gap: 10px;
}

body[data-page-mode="storefront"] .social-btn,
body[data-page-mode="menu"] .social-btn {
  width: 42px;
  height: 42px;
}

body[data-page-mode="storefront"] .language-btn,
body[data-page-mode="menu"] .language-btn {
  min-width: 44px;
  min-height: 44px;
}

.storefront-shell,
.storefront-footer,
.full-menu-intro {
  position: relative;
  z-index: 4;
}

.storefront-hero {
  min-height: min(780px, calc(100svh - 88px));
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vw, 132px) 0 clamp(70px, 8vw, 112px);
  overflow: hidden;
}

.storefront-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 35%, rgba(109, 228, 247, 0.13), transparent 31%),
    linear-gradient(90deg, rgba(3, 13, 26, 0.72) 0%, rgba(3, 13, 26, 0.32) 58%, rgba(3, 13, 26, 0.55) 100%);
}

.storefront-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.storefront-hero-copy {
  max-width: 710px;
}

.storefront-eyebrow,
.storefront-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6de4f7;
  font-size: clamp(0.64rem, 1vw, 0.76rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.storefront-eyebrow-dot,
.storefront-live-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6de4f7;
  box-shadow: 0 0 0 5px rgba(109, 228, 247, 0.1), 0 0 18px rgba(109, 228, 247, 0.7);
}

.storefront-hero h1 {
  max-width: 760px;
  margin: 24px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #f2fbff;
  text-wrap: balance;
}

.storefront-hero-lead {
  max-width: 650px;
  color: rgba(214, 243, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.storefront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.storefront-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.storefront-button:hover,
.storefront-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.storefront-button-primary {
  color: #03101d;
  background: linear-gradient(135deg, #a8f3ff 0%, #6de4f7 45%, #42bbd6 100%);
  box-shadow: 0 12px 34px rgba(64, 192, 218, 0.25);
}

.storefront-button-primary:hover,
.storefront-button-primary:focus-visible {
  box-shadow: 0 16px 42px rgba(64, 192, 218, 0.38);
}

.storefront-button-secondary {
  color: #e8f7ff;
  background: rgba(8, 29, 52, 0.66);
  border-color: rgba(109, 228, 247, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.storefront-button-secondary:hover,
.storefront-button-secondary:focus-visible {
  border-color: rgba(109, 228, 247, 0.5);
  background: rgba(14, 46, 79, 0.8);
}

.storefront-whatsapp-line {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: rgba(232, 247, 255, 0.72);
  font-size: 0.78rem;
  text-decoration: none;
}

.storefront-whatsapp-line strong {
  color: #e8f7ff;
  font-weight: 650;
}

.storefront-whatsapp-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #6de4f7;
  background: rgba(109, 228, 247, 0.09);
  border: 1px solid rgba(109, 228, 247, 0.2);
}

.storefront-hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.storefront-visual-card {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 0.92;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
  border-radius: 44% 56% 48% 52% / 48% 42% 58% 52%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.24), transparent 17%),
    linear-gradient(145deg, rgba(102, 224, 245, 0.25), rgba(10, 54, 95, 0.55));
  border: 1px solid rgba(178, 242, 255, 0.34);
  box-shadow: inset 0 0 48px rgba(224, 250, 255, 0.13), 0 35px 90px rgba(0, 0, 0, 0.36), 0 0 70px rgba(80, 210, 237, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: rotate(-2deg);
}

.storefront-visual-shine {
  position: absolute;
  width: 48%;
  height: 18%;
  top: 8%;
  left: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.24), transparent 70%);
  transform: rotate(-24deg);
}

.storefront-visual-logo {
  position: relative;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(1, 12, 25, 0.34));
}

.storefront-visual-card p {
  position: relative;
  margin-top: 24px;
  color: rgba(232, 247, 255, 0.82);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
}

.storefront-visual-pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.storefront-visual-pills span {
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(232, 247, 255, 0.8);
  background: rgba(3, 13, 26, 0.32);
  border: 1px solid rgba(232, 247, 255, 0.16);
  font-size: 0.68rem;
}

.storefront-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(109, 228, 247, 0.18);
  border-radius: 50%;
}

.storefront-orbit-one {
  width: 112%;
  aspect-ratio: 1;
}

.storefront-orbit-two {
  width: 82%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.7;
}

.storefront-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 15px;
  border: 1px solid rgba(109, 228, 247, 0.22);
  border-radius: 16px;
  color: rgba(232, 247, 255, 0.8);
  background: rgba(3, 18, 34, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.7rem;
  font-weight: 600;
}

.storefront-float-card-top {
  top: 9%;
  right: -2%;
}

.storefront-float-card-bottom {
  bottom: 10%;
  left: -5%;
}

.storefront-float-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #03101d;
  background: #6de4f7;
  font-weight: 800;
}

.storefront-metrics {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(109, 228, 247, 0.1);
  border-bottom: 1px solid rgba(109, 228, 247, 0.1);
  background: rgba(3, 13, 26, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.storefront-metric {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px;
  text-align: center;
}

.storefront-metric + .storefront-metric {
  border-left: 1px solid rgba(109, 228, 247, 0.1);
}

.storefront-metric strong {
  color: #e8f7ff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
}

.storefront-metric span {
  max-width: 128px;
  color: rgba(200, 240, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: left;
}

.storefront-section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.storefront-section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.storefront-section-heading h2,
.storefront-contact-card h2,
.full-menu-intro h1 {
  margin-top: 13px;
  color: #eefaff;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.storefront-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 50px;
}

.storefront-heading-split > p,
.storefront-heading-centered > p,
.storefront-contact-card p,
.full-menu-intro p {
  color: rgba(200, 240, 255, 0.59);
  font-size: 0.9rem;
  line-height: 1.75;
}

.storefront-heading-centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.storefront-heading-centered .storefront-kicker {
  justify-content: center;
}

.storefront-heading-centered h2 {
  margin-bottom: 18px;
}

.storefront-story {
  background: linear-gradient(180deg, rgba(4, 18, 34, 0.84), rgba(3, 13, 26, 0.94));
}

.storefront-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.storefront-benefit-card {
  min-height: 250px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(109, 228, 247, 0.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(12, 42, 72, 0.48), rgba(5, 22, 42, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.storefront-benefit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #6de4f7;
  background: rgba(109, 228, 247, 0.08);
  border: 1px solid rgba(109, 228, 247, 0.17);
}

.storefront-benefit-icon svg {
  width: 25px;
  height: 25px;
}

.storefront-benefit-card h3 {
  margin-top: 28px;
  color: #e8f7ff;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 500;
}

.storefront-benefit-card p {
  margin-top: 12px;
  color: rgba(200, 240, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.7;
}

.storefront-menu-preview-section {
  background:
    radial-gradient(circle at 50% 22%, rgba(109, 228, 247, 0.08), transparent 36%),
    rgba(3, 13, 26, 0.88);
}

.storefront-product-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.storefront-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(109, 228, 247, 0.14);
  border-radius: 22px;
  background: rgba(7, 29, 53, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.storefront-product-visual {
  position: relative;
  min-height: 154px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.15), transparent 15%),
    radial-gradient(circle at 72% 30%, rgba(109, 228, 247, 0.24), transparent 39%),
    linear-gradient(145deg, rgba(14, 67, 105, 0.66), rgba(5, 24, 47, 0.82));
}

.storefront-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storefront-product-placeholder {
  position: absolute;
  inset: 0;
}

.storefront-product-visual::before,
.storefront-product-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(180, 245, 255, 0.18);
  border-radius: 50%;
}

.storefront-product-visual::before {
  width: 92px;
  height: 92px;
  right: 18px;
  top: 12px;
}

.storefront-product-visual::after {
  width: 38px;
  height: 38px;
  right: 94px;
  top: 76px;
}

.storefront-product-mark {
  position: relative;
  z-index: 1;
  color: rgba(232, 247, 255, 0.78);
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-style: italic;
}

.storefront-product-category {
  position: relative;
  z-index: 1;
  max-width: 62%;
  padding: 6px 10px;
  overflow: hidden;
  border: 1px solid rgba(232, 247, 255, 0.13);
  border-radius: 999px;
  color: rgba(232, 247, 255, 0.7);
  background: rgba(3, 13, 26, 0.35);
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.storefront-product-image + .storefront-product-category {
  margin-left: auto;
  background: rgba(3, 13, 26, 0.72);
}

.storefront-product-copy {
  min-height: 144px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.storefront-product-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  color: #e8f7ff;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.storefront-product-copy p {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: rgba(200, 240, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.storefront-product-price {
  margin-top: auto;
  padding-top: 14px;
  color: #6de4f7;
  font-size: 0.9rem;
  font-weight: 750;
}

.storefront-product-loading .storefront-product-copy span,
.storefront-product-loading .storefront-product-copy strong,
.storefront-product-loading .storefront-product-copy small {
  display: block;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(109, 228, 247, 0.08);
}

.storefront-product-loading .storefront-product-copy strong {
  width: 76%;
  height: 18px;
}

.storefront-product-loading .storefront-product-copy small {
  width: 45%;
}

.storefront-preview-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.storefront-button-wide {
  min-width: min(100%, 280px);
}

.storefront-preview-action p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(200, 240, 255, 0.48);
  font-size: 0.68rem;
}

.storefront-empty {
  grid-column: 1 / -1;
  padding: 42px 24px;
  border: 1px dashed rgba(109, 228, 247, 0.18);
  border-radius: 22px;
  color: rgba(200, 240, 255, 0.58);
  text-align: center;
}

.storefront-locations {
  background: rgba(4, 18, 34, 0.9);
  border-top: 1px solid rgba(109, 228, 247, 0.08);
}

.storefront-store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.storefront-store-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(109, 228, 247, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(109, 228, 247, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(10, 40, 70, 0.72), rgba(4, 20, 39, 0.86));
}

.storefront-store-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(109, 228, 247, 0.15);
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-style: italic;
  line-height: 1;
}

.storefront-store-copy {
  position: relative;
  z-index: 1;
  max-width: 82%;
}

.storefront-store-label {
  color: #6de4f7;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.storefront-store-copy h3 {
  margin-top: 16px;
  color: #e8f7ff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
}

.storefront-store-copy p {
  min-height: 50px;
  margin-top: 12px;
  color: rgba(200, 240, 255, 0.55);
  font-size: 0.76rem;
  line-height: 1.6;
}

.storefront-store-copy a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #e8f7ff;
  font-size: 0.83rem;
  font-weight: 650;
  text-decoration: none;
}

.storefront-map-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #6de4f7;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.storefront-contact {
  padding-top: 34px;
}

.storefront-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(109, 228, 247, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 25%, rgba(109, 228, 247, 0.15), transparent 27%),
    linear-gradient(135deg, rgba(10, 45, 76, 0.82), rgba(5, 21, 41, 0.9));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.storefront-contact-card h2 {
  max-width: 670px;
  margin-bottom: 14px;
}

.storefront-contact-actions {
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.storefront-socials,
.storefront-footer-socials {
  justify-content: center;
  gap: 10px;
}

.storefront-socials .social-icon-link,
.storefront-footer-socials .social-icon-link {
  width: 44px;
  height: 44px;
}

.storefront-footer {
  padding: 54px 0 22px;
  border-top: 1px solid rgba(109, 228, 247, 0.1);
  background: rgba(2, 10, 21, 0.96);
}

.storefront-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
}

.storefront-footer-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
}

.storefront-footer p {
  margin-top: 9px;
  color: rgba(200, 240, 255, 0.45);
  font-size: 0.68rem;
}

.storefront-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.storefront-footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(232, 247, 255, 0.64);
  font-size: 0.7rem;
  text-decoration: none;
}

.storefront-footer-links a:hover {
  color: #6de4f7;
}

.storefront-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(109, 228, 247, 0.08);
  color: rgba(200, 240, 255, 0.34);
  font-size: 0.62rem;
}

.full-menu-intro {
  padding: clamp(46px, 6vw, 78px) 0 28px;
  background: linear-gradient(180deg, rgba(5, 24, 45, 0.78), rgba(3, 13, 26, 0.2));
}

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

.full-menu-intro h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.full-menu-intro p {
  max-width: 700px;
  margin-top: 14px;
}

body[data-page-mode="storefront"] #bgVideo,
body[data-page-mode="menu"] #bgVideo {
  opacity: 0.25 !important;
  filter: blur(6px) saturate(0.9) !important;
}

/* Intentional branded fallback for catalog records that have no image. */
.product-image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.14), transparent 12%),
    radial-gradient(circle at 74% 28%, rgba(109, 228, 247, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(16, 65, 104, 0.66), rgba(5, 25, 48, 0.82));
}

.product-image-placeholder::before,
.product-image-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(196, 247, 255, 0.18);
  border-radius: 50%;
}

.product-image-placeholder::before {
  width: 92px;
  height: 92px;
  top: 15%;
  right: 17%;
}

.product-image-placeholder::after {
  width: 38px;
  height: 38px;
  top: 52%;
  right: 47%;
}

.product-image-placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(232, 247, 255, 0.76);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2.4rem);
  font-style: italic;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

body[data-page-mode="menu"] .products-grid {
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  body[data-page-mode="storefront"] .header-social-buttons,
  body[data-page-mode="menu"] .header-social-buttons {
    display: none;
  }

  .storefront-nav-link {
    padding-inline: 10px;
  }

  .storefront-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 36px;
  }

  .storefront-hero-visual {
    min-height: 390px;
  }

  .storefront-heading-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

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

  .storefront-footer-socials {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body[data-page-mode="storefront"] .header,
  body[data-page-mode="menu"] .header {
    padding: 6px 0 8px;
  }

  body[data-page-mode="storefront"] .header-content,
  body[data-page-mode="menu"] .header-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
  }

  body[data-page-mode="storefront"] .restaurant-logo,
  body[data-page-mode="menu"] .restaurant-logo {
    width: 160px !important;
    max-height: 52px !important;
  }

  body[data-page-mode="storefront"] .header-info,
  body[data-page-mode="menu"] .header-info {
    grid-column: 2;
    grid-row: 1;
  }

  .storefront-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .storefront-nav-link {
    flex: 1 0 auto;
    justify-content: center;
    min-height: 40px;
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .storefront-hero {
    min-height: auto;
    padding: 64px 0 62px;
  }

  .storefront-hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .storefront-eyebrow {
    justify-content: center;
  }

  .storefront-hero h1 {
    margin-top: 20px;
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  .storefront-hero-lead {
    font-size: 0.92rem;
  }

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

  .storefront-whatsapp-line {
    margin-left: auto;
    margin-right: auto;
  }

  .storefront-hero-visual {
    width: min(100%, 390px);
    min-height: 365px;
    margin: 0 auto;
  }

  .storefront-visual-card {
    width: 82%;
    padding: 36px 28px;
  }

  .storefront-float-card-top {
    right: 0;
  }

  .storefront-float-card-bottom {
    left: 0;
  }

  .storefront-metrics-grid {
    grid-template-columns: 1fr;
  }

  .storefront-metric {
    min-height: 86px;
  }

  .storefront-metric + .storefront-metric {
    border-top: 1px solid rgba(109, 228, 247, 0.1);
    border-left: 0;
  }

  .storefront-metric strong {
    min-width: 64px;
    text-align: right;
  }

  .storefront-metric span {
    min-width: 145px;
  }

  .storefront-benefit-grid {
    grid-template-columns: 1fr;
  }

  .storefront-benefit-card {
    min-height: auto;
  }

  .storefront-product-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .storefront-product-visual {
    min-height: 118px;
    padding: 13px;
  }

  .storefront-product-category {
    max-width: 75%;
    padding: 5px 7px;
    font-size: 0.52rem;
  }

  .storefront-product-mark {
    font-size: 1.05rem;
  }

  .storefront-product-copy {
    min-height: 142px;
    padding: 14px;
  }

  .storefront-product-copy h3 {
    font-size: 0.72rem;
  }

  .storefront-product-copy p {
    font-size: 0.6rem;
  }

  .storefront-product-price {
    font-size: 0.76rem;
  }

  .storefront-store-grid {
    grid-template-columns: 1fr;
  }

  .storefront-store-card {
    min-height: 290px;
  }

  .storefront-contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .storefront-contact-card .storefront-kicker {
    justify-content: center;
  }

  .storefront-contact-actions {
    min-width: 0;
  }

  .storefront-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .storefront-footer-logo {
    width: 190px;
  }

  .storefront-footer-links,
  .storefront-footer-socials {
    justify-content: center;
  }

  .storefront-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .full-menu-intro-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 420px) {
  .storefront-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .storefront-button {
    width: 100%;
  }

  .storefront-hero-visual {
    min-height: 330px;
  }

  .storefront-float-card {
    padding: 8px 10px;
    font-size: 0.6rem;
  }

  .storefront-section-heading h2,
  .storefront-contact-card h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront-button,
  .storefront-nav-link {
    scroll-behavior: auto;
    transition: none;
  }
}
