.premium-home-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 114, 76, 0.18), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(56, 189, 248, 0.18), transparent 22%),
    radial-gradient(circle at 50% 72%, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(180deg, #04050c 0%, #090d17 38%, #04060d 100%);
  color: var(--text-primary);
  overflow: clip;
}

.premium-home-shell,
.premium-home-shell * {
  box-sizing: border-box;
}

.premium-home-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.premium-home-shell .home-cursor-glow {
  display: block;
  opacity: 0.75;
}

.glass-canvas,
.glass-drops-layer,
.glass-frost-layer {
  position: absolute;
  inset: 0;
}

.glass-canvas,
.glass-drops-layer {
  pointer-events: none;
}

.glass-frost-layer {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18) 0%, transparent 26%, transparent 58%, rgba(255, 255, 255, 0.08) 72%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 40%, rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.82));
}

.glass-drop {
  position: absolute;
  top: -10%;
  left: 0;
  width: var(--drop-size, 14px);
  height: calc(var(--drop-size, 14px) * 1.45);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 32%, rgba(255, 255, 255, 0.04) 58%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 12px 24px rgba(0, 0, 0, 0.18);
  opacity: 0.9;
  will-change: transform;
}

.premium-home-header,
.premium-home-main {
  position: relative;
  z-index: 1;
}

.premium-home-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.72), rgba(4, 6, 12, 0.28));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.premium-brand-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), rgba(255,255,255,0.05) 55%, rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
  animation: logoFloat 5.8s ease-in-out infinite;
  overflow: hidden;
}

.premium-brand-emblem::before,
.premium-brand-emblem::after {
  content: "";
  position: absolute;
  border-radius: 30px;
  pointer-events: none;
}

.premium-brand-emblem::before {
  inset: -18%;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 40%, rgba(255,255,255,0.08) 70%, transparent 78%);
  mix-blend-mode: screen;
  animation: logoSweep 6.6s linear infinite;
}

.premium-brand-emblem::after {
  inset: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

.premium-brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform-origin: center;
  animation: logoBreath 4.2s ease-in-out infinite;
}

.premium-brand-kicker {
  margin: 0 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}

.premium-brand-title {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.premium-header-actions,
.restaurant-quick-actions,
.premium-hero-actions,
.reservation-submit-row,
.reservation-status-row,
.section-heading-row,
.gallery-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.premium-chip,
.premium-primary-action,
.premium-secondary-action,
.section-link,
.panel-link {
  text-decoration: none;
}

.premium-chip,
.premium-primary-action,
.premium-secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.premium-chip {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.premium-chip:hover,
.premium-primary-action:hover,
.premium-secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.premium-chip-call,
.premium-primary-action {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.92), rgba(234, 88, 12, 0.82));
  border-color: rgba(251, 146, 60, 0.48);
  color: #fff;
}

.premium-chip-accent,
.section-link {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(99, 102, 241, 0.22));
  border-color: rgba(96, 165, 250, 0.28);
  color: #e2f4ff;
}

.premium-secondary-action {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}

.premium-primary-action,
.premium-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.premium-home-main {
  padding: 28px clamp(18px, 4vw, 42px) 70px;
}

.premium-hero-section {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 28px 0 48px;
}

.premium-copy-stack {
  display: grid;
  gap: 20px;
  max-width: 620px;
}

.premium-eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.premium-hero-title,
.section-title {
  margin: 0;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.premium-hero-title {
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  text-wrap: balance;
}

.premium-hero-text,
.section-subtitle,
.restaurant-about-text,
.panel-note,
.scene-menu-detail,
.home-product-description,
.availability-status,
.reservation-success,
.restaurant-meta-list dd {
  color: rgba(228, 234, 245, 0.74);
}

.premium-hero-text {
  margin: 0;
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.premium-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 0;
}

.premium-hero-metrics div,
.glass-panel,
.scene-menu-card,
.home-product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
}

.premium-hero-metrics div {
  border-radius: 24px;
  padding: 16px 18px;
}

.premium-hero-metrics dt {
  margin: 0 0 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
}

.premium-hero-metrics dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.premium-hero-metrics a {
  color: #f8fafc;
  text-decoration: none;
}

.premium-scene-shell {
  position: relative;
}

.scene-stage {
  position: relative;
  min-height: 700px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(7, 10, 20, 0.92), rgba(8, 12, 22, 0.7));
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(var(--scene-rotate-x, 0deg)) rotateY(var(--scene-rotate-y, 0deg));
  transition: transform 180ms ease-out;
}

.scene-stage[data-scene-theme="pizza"] {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 110, 60, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 10, 10, 0.94), rgba(10, 8, 14, 0.74));
}

.scene-stage[data-scene-theme="gyros-burger"] {
  background:
    radial-gradient(circle at 60% 20%, rgba(34, 197, 94, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(7, 12, 10, 0.94), rgba(10, 10, 16, 0.74));
}

.scene-stage[data-scene-theme="sandwiches"] {
  background:
    radial-gradient(circle at 48% 18%, rgba(250, 204, 21, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.94), rgba(11, 10, 14, 0.74));
}

.scene-stage[data-scene-theme="drinks"] {
  background:
    radial-gradient(circle at 54% 18%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(6, 10, 16, 0.94), rgba(7, 10, 16, 0.74));
}

.scene-stage[data-scene-theme="ice-cream"] {
  background:
    radial-gradient(circle at 52% 18%, rgba(244, 114, 182, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(18, 10, 16, 0.94), rgba(10, 8, 14, 0.74));
}

.scene-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.scene-stage-reflection {
  position: absolute;
  inset: -20%;
  background: linear-gradient(125deg, transparent 22%, rgba(255, 255, 255, 0.22) 40%, transparent 56%, rgba(255, 255, 255, 0.08) 70%, transparent 78%);
  opacity: 0.36;
  transform: translate3d(calc(var(--pointer-depth-x, 0px) * 0.45), calc(var(--pointer-depth-y, 0px) * 0.35), 0);
  mix-blend-mode: screen;
  animation: sceneReflection 7s ease-in-out infinite alternate;
}

.food-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 360ms ease, transform 360ms ease;
  pointer-events: none;
}

.food-scene.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.scene-depth-layer {
  position: absolute;
  inset: auto 12% 8%;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.42), transparent 65%);
  filter: blur(26px);
  transform: translate3d(calc(var(--pointer-depth-x, 0px) * -0.18), calc(var(--pointer-depth-y, 0px) * -0.08), -90px);
}

.pressable-scene {
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
  will-change: transform;
}

.pressable-scene.is-pressed {
  transform: scale(0.96) translateY(10px) !important;
}

.pizza-stack,
.gyro-wrap,
.burger-stack,
.sandwich-stack,
.drink-cluster,
.ice-cream-stack {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
}

.pizza-stack {
  width: min(68vw, 510px);
  aspect-ratio: 1;
  transform: translate(-50%, -48%) rotate(var(--pizza-spin, 0deg));
  animation: pizzaFloat 18s linear infinite;
}

.pizza-base,
.pizza-sauce,
.pizza-cheese,
.pizza-sheen,
.pizza-slice-lift {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.pizza-base {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 220, 164, 0.82) 0%, rgba(188, 113, 42, 0.92) 72%, rgba(124, 67, 18, 0.98) 100%);
  box-shadow:
    inset 0 0 0 18px rgba(255, 204, 117, 0.85),
    0 32px 70px rgba(0, 0, 0, 0.34);
}

.pizza-sauce {
  inset: 6%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 126, 100, 0.98), rgba(181, 30, 30, 0.94));
}

.pizza-cheese {
  inset: 12%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 243, 180, 0.96), rgba(248, 199, 76, 0.92) 52%, rgba(232, 177, 42, 0.88) 76%, transparent 80%),
    radial-gradient(circle at 68% 64%, rgba(255, 245, 182, 0.92), rgba(244, 191, 58, 0.82) 54%, transparent 76%);
  filter: saturate(1.08);
}

.pizza-sheen {
  inset: 10%;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 42%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.7;
  transform: rotate(15deg);
  animation: sheenSweep 4.8s ease-in-out infinite;
}

.pizza-slice-lift {
  inset: 0;
  clip-path: polygon(50% 50%, 92% 28%, 84% 72%);
  background: linear-gradient(135deg, rgba(255, 244, 190, 0.75), rgba(255, 132, 82, 0.28));
  transform-origin: 52% 52%;
  animation: sliceLift 5.2s ease-in-out infinite;
}

.pizza-toppings .topping {
  position: absolute;
  border-radius: 50%;
}

.topping.pepperoni {
  width: 72px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 160, 136, 0.85), rgba(174, 31, 19, 0.96) 52%, rgba(122, 15, 8, 1));
  box-shadow: inset 0 -8px 14px rgba(92, 8, 4, 0.32);
}

.topping.basil {
  width: 28px;
  height: 54px;
  border-radius: 100% 20% 100% 20%;
  background: linear-gradient(180deg, #7ef2a2, #1a8a52 72%);
  transform: rotate(14deg);
}

.topping.olive {
  width: 26px;
  aspect-ratio: 1;
  border: 8px solid rgba(48, 59, 35, 0.92);
  background: transparent;
}

.topping.onion {
  width: 34px;
  aspect-ratio: 1;
  border: 6px solid rgba(246, 237, 255, 0.65);
}

.topping.one { left: 14%; top: 23%; }
.topping.two { right: 20%; top: 18%; }
.topping.three { left: 52%; bottom: 18%; }
.topping.basil.one { left: 28%; top: 54%; }
.topping.basil.two { right: 28%; top: 46%; transform: rotate(-12deg); }
.topping.olive.one { right: 38%; top: 26%; }
.topping.olive.two { left: 44%; bottom: 30%; }
.topping.onion.one { left: 20%; bottom: 26%; }

.steam-column {
  position: absolute;
  top: 12%;
  width: 120px;
  height: 220px;
}

.steam-left { left: 14%; }
.steam-right { right: 12%; }

.steam-column span {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  filter: blur(12px);
  animation: steamRise 4.4s ease-in-out infinite;
}

.steam-column span:nth-child(2) {
  left: 28px;
  animation-delay: -1.4s;
}

.steam-column span:nth-child(3) {
  left: 58px;
  animation-delay: -2.8s;
}

.pizza-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 590px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) rotateZ(0deg);
  opacity: 0.4;
  animation: orbitSpin 22s linear infinite;
}

.gyro-wrap {
  width: 240px;
  height: 430px;
  transform: translate(-150%, -46%) rotate(-10deg);
  animation: gyroRock 5.6s ease-in-out infinite;
}

.gyro-shell {
  position: absolute;
  inset: 0;
  border-radius: 58% 42% 50% 46% / 44% 46% 54% 56%;
  background:
    linear-gradient(180deg, rgba(239, 196, 135, 0.98), rgba(204, 145, 72, 0.96)),
    linear-gradient(90deg, rgba(160, 100, 45, 0.38), transparent 32%, transparent 72%, rgba(118, 66, 18, 0.22));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.gyro-fillings {
  position: absolute;
  inset: 16% 13% 18%;
  overflow: hidden;
  border-radius: 44% 44% 50% 50%;
}

.gyro-fillings span {
  position: absolute;
  inset: auto;
  width: 140%;
  height: 46px;
  left: -18%;
  border-radius: 999px;
  animation: fillingDrift 6.2s ease-in-out infinite;
}

.gyro-fillings span:nth-child(1) {
  top: 6%;
  background: linear-gradient(90deg, #ef4444, #fb923c, #facc15);
}

.gyro-fillings span:nth-child(2) {
  top: 28%;
  background: linear-gradient(90deg, #4ade80, #15803d);
  animation-delay: -1.6s;
}

.gyro-fillings span:nth-child(3) {
  top: 52%;
  background: linear-gradient(90deg, #f59e0b, #f97316, #facc15);
  animation-delay: -3.1s;
}

.gyro-fillings span:nth-child(4) {
  top: 74%;
  background: linear-gradient(90deg, #f8fafc, #cbd5e1);
  animation-delay: -4.4s;
}

.burger-stack {
  width: 280px;
  height: 240px;
  transform: translate(22%, -12%);
  animation: burgerFloat 5.8s ease-in-out infinite;
}

.burger-bun-top,
.burger-bun-bottom,
.burger-patty,
.burger-cheese,
.burger-lettuce,
.burger-seed {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 999px;
}

.burger-bun-top {
  top: 0;
  height: 90px;
  background: linear-gradient(180deg, #f9d68f, #d79b47);
}

.burger-bun-bottom {
  bottom: 0;
  height: 56px;
  background: linear-gradient(180deg, #d0913c, #b07228);
}

.burger-lettuce {
  top: 92px;
  height: 24px;
  background: linear-gradient(90deg, #59ff8e, #1b9d51);
  clip-path: polygon(0 48%, 8% 0, 18% 58%, 28% 8%, 38% 56%, 48% 14%, 58% 56%, 68% 6%, 78% 58%, 88% 10%, 100% 54%, 100% 100%, 0 100%);
}

.burger-patty {
  top: 120px;
  height: 44px;
  background: linear-gradient(180deg, #5c2d10, #2c1205);
  box-shadow: inset 0 8px 12px rgba(255, 255, 255, 0.08);
}

.burger-cheese {
  top: 114px;
  left: 18px;
  width: calc(100% - 36px);
  height: 28px;
  background: linear-gradient(180deg, #fde047, #f59e0b);
  clip-path: polygon(0 0, 100% 0, 86% 100%, 64% 66%, 40% 100%, 18% 66%);
}

.burger-seed {
  inset: 18px 20px auto;
  height: 18px;
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 246, 225, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 36% 26%, rgba(255, 246, 225, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 62% 44%, rgba(255, 246, 225, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 22%, rgba(255, 246, 225, 0.9) 0 4px, transparent 5px);
}

.sandwich-stack {
  width: 340px;
  height: 280px;
  transform: translate(-50%, -38%);
  animation: sandwichFloat 5.2s ease-in-out infinite;
}

.sandwich-bread,
.sandwich-layer {
  position: absolute;
  left: 0;
  width: 100%;
}

.sandwich-bread {
  height: 74px;
  border-radius: 28px;
  background: linear-gradient(180deg, #edd3a2, #b88c54);
}

.sandwich-bread.top { top: 0; }
.sandwich-bread.bottom { bottom: 0; }

.sandwich-layer {
  border-radius: 18px;
  animation: sandwichLayerShift 4.4s ease-in-out infinite;
}

.sandwich-layer.meat {
  top: 86px;
  height: 40px;
  background: linear-gradient(90deg, #7c2d12, #431407);
}

.sandwich-layer.cheese {
  top: 132px;
  height: 24px;
  background: linear-gradient(90deg, #fde047, #f59e0b);
  animation-delay: -1.2s;
}

.sandwich-layer.lettuce {
  top: 164px;
  height: 22px;
  background: linear-gradient(90deg, #34d399, #166534);
  animation-delay: -2.1s;
}

.sandwich-layer.tomato {
  top: 192px;
  height: 20px;
  background: linear-gradient(90deg, #ef4444, #7f1d1d);
  animation-delay: -3.2s;
}

.drink-cluster {
  width: min(78vw, 520px);
  height: 520px;
  transform: translate(-50%, -44%);
}

.drink-glass,
.drink-can,
.drink-bottle {
  position: absolute;
  bottom: 0;
}

.drink-glass {
  left: 10%;
  width: 180px;
  height: 320px;
  border-radius: 42px 42px 28px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 26px 58px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  animation: drinkBob 5.6s ease-in-out infinite;
}

.drink-liquid {
  position: absolute;
  inset: auto 12px 14px;
  height: 68%;
  border-radius: 32px 32px 22px 22px;
  background: linear-gradient(180deg, rgba(255, 152, 80, 0.92), rgba(180, 58, 23, 0.88));
  overflow: hidden;
}

.drink-wave {
  position: absolute;
  left: -8%;
  width: 116%;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 220, 190, 0.24);
}

.wave-one {
  top: -12px;
  animation: waveDrift 3.6s ease-in-out infinite;
}

.wave-two {
  top: 4px;
  background: rgba(255, 255, 255, 0.14);
  animation: waveDrift 4.4s ease-in-out infinite reverse;
}

.drink-ice {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(191, 219, 254, 0.2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.drink-ice.one { top: 110px; left: 44px; transform: rotate(18deg); }
.drink-ice.two { top: 156px; right: 34px; transform: rotate(-14deg); }

.drink-can {
  left: 46%;
  width: 140px;
  height: 290px;
  border-radius: 30px;
  background: linear-gradient(180deg, #38bdf8, #0f172a 36%, #22d3ee 72%, #082f49);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 26px 58px rgba(0, 0, 0, 0.28);
  animation: drinkBob 6.4s ease-in-out infinite reverse;
}

.drink-bottle {
  right: 8%;
  width: 110px;
  height: 360px;
  border-radius: 26px 26px 34px 34px;
  background:
    linear-gradient(180deg, rgba(177, 148, 255, 0.94), rgba(49, 46, 129, 0.94) 56%, rgba(30, 41, 59, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 36%, transparent 64%, rgba(255, 255, 255, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 32px 64px rgba(0, 0, 0, 0.3);
  animation: drinkBob 6.8s ease-in-out infinite;
}

.drink-bottle::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -36px;
  width: 50px;
  height: 74px;
  border-radius: 20px 20px 10px 10px;
  background: linear-gradient(180deg, #7dd3fc, #3b82f6);
}

.ice-cream-stack {
  width: 320px;
  height: 470px;
  transform: translate(-50%, -48%);
  animation: iceCreamBob 5.8s ease-in-out infinite;
}

.ice-scoop {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 -18px 20px rgba(0, 0, 0, 0.12), 0 16px 28px rgba(0, 0, 0, 0.18);
}

.scoop-top {
  top: 0;
  width: 170px;
  height: 150px;
  background: radial-gradient(circle at 36% 30%, #fff7d1, #fcd34d 66%, #f59e0b);
  animation: scoopWobble 3.8s ease-in-out infinite;
}

.scoop-middle {
  top: 102px;
  width: 198px;
  height: 172px;
  background: radial-gradient(circle at 36% 30%, #ffe5ef, #fb7185 66%, #be123c);
  animation: scoopWobble 4.2s ease-in-out infinite -0.8s;
}

.scoop-bottom {
  top: 214px;
  width: 222px;
  height: 190px;
  background: radial-gradient(circle at 36% 30%, #d9fff2, #4ade80 66%, #15803d);
  animation: scoopWobble 4.6s ease-in-out infinite -1.6s;
}

.ice-cone {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 188px;
  height: 220px;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background:
    linear-gradient(45deg, rgba(159, 104, 45, 0.26) 25%, transparent 25%, transparent 50%, rgba(159, 104, 45, 0.26) 50%, rgba(159, 104, 45, 0.26) 75%, transparent 75%, transparent),
    linear-gradient(135deg, rgba(255, 232, 179, 0.98), rgba(201, 140, 57, 0.96));
  background-size: 26px 26px, 100% 100%;
}

.ice-drips .drip {
  position: absolute;
  width: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 243, 199, 0.94), rgba(253, 186, 116, 0.84));
  animation: dripFall 4.2s ease-in-out infinite;
}

.drip.one {
  left: 44%;
  top: 208px;
  height: 76px;
}

.drip.two {
  left: 56%;
  top: 150px;
  height: 98px;
  animation-delay: -1.4s;
}

.drip.three {
  left: 34%;
  top: 122px;
  height: 84px;
  animation-delay: -2.7s;
}

.scene-menu-section,
.home-products-section,
.restaurant-info-section,
.reservation-section {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.section-heading-row {
  justify-content: space-between;
  flex-wrap: wrap;
}

.section-subtitle {
  margin: 0;
  max-width: 54ch;
  line-height: 1.6;
}

.scene-menu-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.scene-menu-rail::-webkit-scrollbar {
  height: 8px;
}

.scene-menu-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.scene-menu-card {
  position: relative;
  min-height: 138px;
  padding: 22px 22px 24px;
  border-radius: 30px;
  text-align: left;
  color: #f8fafc;
  scroll-snap-align: start;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.scene-menu-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.36));
}

.scene-menu-card.is-active {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(96, 165, 250, 0.32);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.13), rgba(99, 102, 241, 0.18));
}

.scene-experience-section {
  display: grid;
  gap: 20px;
}

.scene-experience-stage {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.92), rgba(7, 11, 18, 0.72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.scene-experience-deck {
  position: relative;
  min-height: 520px;
}

.scene-page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}

.scene-page.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scene-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, color-mix(in srgb, var(--scene-accent, #16a34a) 18%, transparent), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 42%);
  pointer-events: none;
}

.scene-page-copy,
.scene-page-aside {
  position: relative;
  z-index: 1;
}

.scene-page-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.scene-page-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--scene-accent, #16a34a) 70%, white);
}

.scene-page-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  color: #f7f4ea;
}

.scene-page-text {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.82);
}

.scene-page-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.86);
}

.scene-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.scene-page-aside {
  display: grid;
  align-content: center;
}

.scene-page-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.scene-page-card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.54);
}

.scene-page-orb {
  position: absolute;
  right: 5%;
  top: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--scene-accent, #16a34a) 42%, white), transparent 68%);
  filter: blur(8px);
  opacity: 0.36;
  animation: orbPulse 5.4s ease-in-out infinite;
}

.scene-feature-grid {
  display: grid;
  gap: 12px;
}

.scene-feature-card {
  display: grid;
  gap: 6px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(8, 12, 20, 0.55);
}

.scene-feature-card strong {
  font-size: 1rem;
  color: #fff9ef;
}

.scene-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.74);
}

.scene-feature-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--scene-accent, #16a34a) 18%, rgba(255,255,255,0.08));
  color: color-mix(in srgb, var(--scene-accent, #16a34a) 72%, white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-menu-label,
.home-product-title {
  display: block;
  font-size: 1.24rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-product-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 240px;
  border-radius: 28px;
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.home-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
}

.home-product-visual {
  position: relative;
  min-height: 150px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(249, 115, 22, 0.26), rgba(99, 102, 241, 0.22));
}

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

.home-product-pill {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.home-product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.restaurant-info-grid,
.restaurant-gallery-map,
.reservation-layout {
  display: grid;
  gap: 20px;
}

.restaurant-info-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.restaurant-gallery-map,
.reservation-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glass-panel {
  border-radius: 32px;
  padding: 24px;
}

.restaurant-meta-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
}

.restaurant-meta-list dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 6px;
}

.restaurant-meta-list a,
.panel-link,
.section-link {
  color: #f8fafc;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.hours-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-list strong {
  color: #fff;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(15, 23, 42, 0.62));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 16px 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(6, 8, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
}

.restaurant-map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
}

.reservation-form {
  display: grid;
  gap: 18px;
}

.reservation-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reservation-form-grid label {
  display: grid;
  gap: 8px;
}

.reservation-form-grid span {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.reservation-notes-field {
  grid-column: 1 / -1;
}

.premium-form-input {
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.premium-form-input:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.34);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.availability-status {
  margin: 0;
  font-size: 0.96rem;
}

.reservation-selected-table {
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.reservation-success {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(74, 222, 128, 0.22);
  line-height: 1.65;
}

.home-table-picker {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-picker-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

.home-table-button {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  transform: rotate(var(--table-rotation, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-table-button.circle {
  border-radius: 50%;
}

.home-table-button.square {
  border-radius: 18px;
}

.home-table-button.available {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.42), rgba(8, 145, 178, 0.26));
  border-color: rgba(74, 222, 128, 0.32);
}

.home-table-button.unavailable,
.home-table-button.blocked {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.38), rgba(127, 29, 29, 0.28));
  border-color: rgba(248, 113, 113, 0.28);
  opacity: 0.72;
}

.home-table-button.selected {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.55), rgba(249, 115, 22, 0.38));
  border-color: rgba(251, 191, 36, 0.58);
  transform: rotate(var(--table-rotation, 0deg)) scale(1.05);
}

.home-table-button:hover:not(.unavailable):not(.blocked) {
  transform: rotate(var(--table-rotation, 0deg)) translateY(-2px) scale(1.02);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.26);
}

.home-table-number {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-table-capacity {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
}

.home-table-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pizzaFloat {
  0% { transform: translate(-50%, -48%) rotate(0deg) translateY(0); }
  50% { transform: translate(-50%, -46%) rotate(180deg) translateY(-8px); }
  100% { transform: translate(-50%, -48%) rotate(360deg) translateY(0); }
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes sceneReflection {
  from { transform: translate3d(-8%, -2%, 0) rotate(4deg); }
  to { transform: translate3d(8%, 2%, 0) rotate(-4deg); }
}

@keyframes sheenSweep {
  0%, 100% { transform: translateX(-22%) rotate(15deg); opacity: 0.35; }
  50% { transform: translateX(18%) rotate(15deg); opacity: 0.9; }
}

@keyframes sliceLift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes steamRise {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 0.36; }
  100% { transform: translateY(-110px) scale(1.24); opacity: 0; }
}

@keyframes gyroRock {
  0%, 100% { transform: translate(-150%, -46%) rotate(-10deg); }
  50% { transform: translate(-150%, -48%) rotate(-2deg); }
}

@keyframes burgerFloat {
  0%, 100% { transform: translate(22%, -12%) scaleY(1); }
  50% { transform: translate(22%, -14%) scaleY(0.98); }
}

@keyframes sandwichFloat {
  0%, 100% { transform: translate(-50%, -38%); }
  50% { transform: translate(-50%, -40%); }
}

@keyframes sandwichLayerShift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

@keyframes fillingDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(16px); }
}

@keyframes drinkBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes waveDrift {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50% { transform: translateX(-12px) scaleX(1.04); }
}

@keyframes iceCreamBob {
  0%, 100% { transform: translate(-50%, -48%); }
  50% { transform: translate(-50%, -50%); }
}

@keyframes scoopWobble {
  0%, 100% { transform: translateX(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) rotate(2deg); }
}

@keyframes dripFall {
  0%, 100% { transform: scaleY(0.75) translateY(0); opacity: 0.72; }
  50% { transform: scaleY(1.05) translateY(18px); opacity: 1; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1.5deg); }
}

@keyframes logoBreath {
  0%, 100% { transform: scale(0.98) rotate(-1deg); }
  50% { transform: scale(1.02) rotate(1deg); }
}

@keyframes logoSweep {
  from { transform: translateX(-12%) rotate(0deg); }
  to { transform: translateX(12%) rotate(360deg); }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.28; }
  50% { transform: scale(1.06); opacity: 0.42; }
}

@media (max-width: 1120px) {
  .premium-hero-section,
  .restaurant-info-grid,
  .restaurant-gallery-map,
  .reservation-layout,
  .scene-page {
    grid-template-columns: 1fr;
  }

  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-stage {
    min-height: 620px;
  }

  .scene-experience-deck {
    min-height: 760px;
  }
}

@media (max-width: 768px) {
  .premium-home-header {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-header-actions,
  .restaurant-quick-actions,
  .premium-hero-actions,
  .reservation-submit-row,
  .reservation-status-row {
    flex-wrap: wrap;
  }

  .premium-hero-title {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .premium-hero-metrics,
  .reservation-form-grid,
  .home-products-grid {
    grid-template-columns: 1fr;
  }

  .scene-stage {
    min-height: 520px;
  }

  .scene-experience-deck {
    min-height: 900px;
  }

  .scene-page {
    padding: 24px 20px;
  }

  .pizza-stack {
    width: 340px;
  }

  .gyro-wrap {
    width: 170px;
    height: 320px;
  }

  .burger-stack {
    width: 220px;
    height: 200px;
  }

  .drink-cluster {
    width: 360px;
    height: 420px;
  }

  .drink-glass {
    width: 130px;
    height: 250px;
  }

  .drink-can {
    width: 98px;
    height: 220px;
  }

  .drink-bottle {
    width: 84px;
    height: 260px;
  }

  .ice-cream-stack {
    width: 240px;
    height: 360px;
  }
}

/* Calabria premium overrides */
.premium-home-shell {
  background:
    radial-gradient(circle at 16% 18%, rgba(13, 122, 62, 0.28), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(198, 35, 47, 0.22), transparent 24%),
    radial-gradient(circle at 50% 66%, rgba(246, 239, 225, 0.12), transparent 34%),
    linear-gradient(180deg, #07100c 0%, #0b1510 38%, #060908 100%);
}

.premium-home-header {
  background:
    linear-gradient(180deg, rgba(7, 16, 12, 0.88), rgba(7, 16, 12, 0.56)),
    linear-gradient(90deg, rgba(13, 122, 62, 0.12), transparent 42%, rgba(198, 35, 47, 0.1));
  border-bottom: 1px solid rgba(246, 239, 225, 0.08);
}

.premium-brand-kicker,
.premium-eyebrow,
.section-kicker,
.panel-kicker {
  color: rgba(246, 239, 225, 0.62);
}

.premium-brand-title {
  color: #f6efe1;
}

.premium-chip-call {
  background: linear-gradient(135deg, rgba(195, 35, 47, 0.95), rgba(154, 18, 30, 0.88));
  border-color: rgba(255, 126, 126, 0.36);
}

.premium-chip-accent,
.section-link,
.premium-primary-action {
  background: linear-gradient(135deg, rgba(13, 122, 62, 0.9), rgba(35, 154, 88, 0.82));
  border-color: rgba(112, 218, 150, 0.26);
  color: #f8fff8;
}

.premium-secondary-action {
  background: rgba(246, 239, 225, 0.08);
  color: #f6efe1;
  border-color: rgba(246, 239, 225, 0.14);
}

.scene-menu-card {
  border-color: rgba(246, 239, 225, 0.08);
  background:
    linear-gradient(180deg, rgba(246, 239, 225, 0.08), rgba(246, 239, 225, 0.03)),
    linear-gradient(135deg, rgba(13, 122, 62, 0.08), transparent 60%, rgba(198, 35, 47, 0.08));
}

.scene-menu-card.is-active {
  border-color: rgba(13, 122, 62, 0.42);
  background:
    linear-gradient(135deg, rgba(13, 122, 62, 0.22), rgba(198, 35, 47, 0.12)),
    linear-gradient(180deg, rgba(246, 239, 225, 0.08), rgba(246, 239, 225, 0.04));
}

.menu-preview-card,
.home-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 225, 0.08);
  background:
    linear-gradient(180deg, rgba(246, 239, 225, 0.08), rgba(246, 239, 225, 0.035)),
    linear-gradient(135deg, color-mix(in srgb, var(--category-accent, #1f8b4c) 16%, transparent), transparent 58%);
}

.menu-preview-card::before,
.home-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(246, 239, 225, 0), var(--category-accent, #1f8b4c), rgba(246, 239, 225, 0));
  opacity: 0.9;
}

.menu-preview-card[data-preset="pizza"] { --category-accent: #c3232f; }
.menu-preview-card[data-preset="gyros-burger"] { --category-accent: #1f8b4c; }
.menu-preview-card[data-preset="burger"] { --category-accent: #7b4a2f; }
.menu-preview-card[data-preset="sandwiches"] { --category-accent: #c88a38; }
.menu-preview-card[data-preset="sandwich"] { --category-accent: #c88a38; }
.menu-preview-card[data-preset="drinks"] { --category-accent: #1f8b4c; }
.menu-preview-card[data-preset="ice-cream"] { --category-accent: #c3232f; }

.home-product-pill {
  background: color-mix(in srgb, var(--category-accent, #1f8b4c) 22%, rgba(246, 239, 225, 0.06));
  border-color: color-mix(in srgb, var(--category-accent, #1f8b4c) 48%, rgba(246, 239, 225, 0.12));
}

.home-product-price {
  color: #f6efe1;
}

.delivery-tracking-section {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(246, 239, 225, 0.08);
  background:
    linear-gradient(180deg, rgba(246, 239, 225, 0.08), rgba(246, 239, 225, 0.04)),
    linear-gradient(135deg, rgba(13, 122, 62, 0.12), transparent 48%, rgba(198, 35, 47, 0.12));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

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

.tracking-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
}

.tracking-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tracking-metrics div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(246, 239, 225, 0.05);
  border: 1px solid rgba(246, 239, 225, 0.07);
}

.tracking-metrics span,
.tracking-address-text,
.tracking-status-line {
  color: rgba(228, 234, 245, 0.72);
}

.tracking-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.delivery-tracking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.delivery-tracking-stat {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(246, 239, 225, 0.05);
  border: 1px solid rgba(246, 239, 225, 0.07);
}

.delivery-tracking-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

html[data-theme="day"] .premium-home-shell {
  background:
    radial-gradient(circle at 16% 18%, rgba(13, 122, 62, 0.18), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(198, 35, 47, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f1e5 0%, #f2eadf 40%, #efe6d7 100%);
  color: #1a261e;
}

html[data-theme="day"] .premium-home-header,
html[data-theme="day"] .delivery-tracking-section,
html[data-theme="day"] .scene-menu-card,
html[data-theme="day"] .scene-experience-stage,
html[data-theme="day"] .scene-page-card,
html[data-theme="day"] .home-product-card {
  color: #1a261e;
  border-color: rgba(24, 38, 29, 0.09);
}

html[data-theme="day"] .premium-secondary-action,
html[data-theme="day"] .premium-chip {
  color: #1a261e;
  background: rgba(255, 255, 255, 0.76);
}

html[data-theme="day"] .premium-hero-text,
html[data-theme="day"] .section-subtitle,
html[data-theme="day"] .restaurant-about-text,
html[data-theme="day"] .panel-note,
html[data-theme="day"] .scene-menu-detail,
html[data-theme="day"] .scene-page-text,
html[data-theme="day"] .scene-feature-card p,
html[data-theme="day"] .home-product-description,
html[data-theme="day"] .availability-status,
html[data-theme="day"] .reservation-success,
html[data-theme="day"] .restaurant-meta-list dd {
  color: rgba(26, 38, 30, 0.72);
}

html[data-theme="day"] .scene-page-title,
html[data-theme="day"] .scene-feature-card strong {
  color: #13221a;
}

@media (max-width: 900px) {
  .tracking-grid {
    grid-template-columns: 1fr;
  }

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

  .delivery-tracking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .delivery-tracking-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-stage,
  .pressable-scene,
  .scene-stage-reflection,
  .food-scene,
  .glass-drop,
  .premium-brand-emblem,
  .premium-brand-logo,
  .scene-page,
  .scene-page-orb {
    transition: none !important;
    animation: none !important;
  }
}
