:root {
  --plum: #69234d;
  --plum-dark: #321126;
  --plum-soft: #8a426c;
  --gold: #bd9145;
  --gold-light: #e5c987;
  --cream: #fffaf0;
  --rose: #f4e6ea;
  --ink: #24131d;
  --muted: #735c69;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(50, 17, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(189, 145, 69, 0.18), transparent 34rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 45%, #f8eef2 100%);
  font-family: "Outfit", Arial, sans-serif;
}

button,
a,
input,
select {
  touch-action: manipulation;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(105, 35, 77, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 35, 77, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--plum);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.loading-screen.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  animation: loaderFloat 2.2s ease-in-out infinite;
}

.loader-inner img {
  width: min(280px, 58vw);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(50, 17, 38, 0.34);
}

.loader-line {
  width: min(220px, 48vw);
  height: 4px;
  overflow: hidden;
  background: rgba(229, 201, 135, 0.18);
  border-radius: 999px;
}

.loader-line span {
  display: block;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  border-radius: inherit;
  animation: loaderLine 1.4s ease-in-out infinite;
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(220%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 250, 240, 0.84);
  border-bottom: 1px solid rgba(105, 35, 77, 0.12);
  backdrop-filter: blur(18px);
  direction: ltr;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--plum);
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: 2px solid rgba(189, 145, 69, 0.75);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-family: "Marhey", cursive;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 1.35rem);
  color: var(--plum-dark);
  direction: rtl;
  font-family: "Marhey", cursive;
  font-size: 0.95rem;
}

.mobile-bottom-nav {
  display: none;
}

.header-cart-button {
  display: none;
}

nav a {
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--plum);
  border-color: var(--gold);
}

.lang-toggle {
  min-height: 2.55rem;
  padding: 0.45rem 0.9rem;
  color: var(--plum-dark);
  background: rgba(229, 201, 135, 0.78);
  border: 1px solid rgba(189, 145, 69, 0.7);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 700;
}

.lang-toggle:hover {
  background: var(--gold-light);
}

body[data-lang="en"] nav,
body[data-lang="en"] .hero-content,
body[data-lang="en"] .menu-section,
body[data-lang="en"] .feature-copy,
body[data-lang="en"] .about-section,
body[data-lang="en"] .social-card,
body[data-lang="en"] .reviews-section,
body[data-lang="en"] .order-section,
body[data-lang="en"] .cart-section,
body[data-lang="en"] .location-card {
  direction: ltr;
}

body[data-lang="en"] .hero-content,
body[data-lang="en"] .section-heading,
body[data-lang="en"] .panel-title,
body[data-lang="en"] .reviews-summary {
  text-align: left;
}

body[data-lang="en"] .section-heading,
body[data-lang="en"] .reviews-summary {
  margin-right: auto;
  margin-left: auto;
}

body[data-lang="en"] .menu-item p {
  text-align: left;
}

body[data-lang="en"] .about-points div {
  padding-right: 1.15rem;
  padding-left: 4.2rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 81px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 25%, rgba(229, 201, 135, 0.18), transparent 20rem),
    linear-gradient(180deg, #69234d 0%, #4e1b3a 100%);
}

.hero-media {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.06);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-content {
  width: min(820px, 100%);
  padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 5vw, 5rem);
  color: var(--white);
  direction: rtl;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(290px, 62vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 1.6rem;
  border: 1px solid rgba(229, 201, 135, 0.34);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(50, 17, 38, 0.36);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(4.2rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.86;
}

.hero-copy {
  max-width: 620px;
  margin: 1.35rem auto 0;
  font-family: "Marhey", cursive;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Marhey", cursive;
  font-weight: 700;
}

.button.primary {
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(189, 145, 69, 0.3);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(105, 35, 77, 0.15);
}

.intro-band div {
  padding: clamp(1.1rem, 3vw, 2rem);
  background: rgba(255, 250, 240, 0.9);
  text-align: center;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  color: var(--plum);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.intro-band span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-family: "Marhey", cursive;
}

section {
  padding: clamp(3.8rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.order-section h2 {
  margin: 0;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: clamp(2.2rem, 5.5vw, 4.3rem);
  line-height: 1.18;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1120px;
  margin: 0 auto;
}

.menu-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(105, 35, 77, 0.16);
  border-top: 9px solid var(--plum);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-panel::before {
  position: absolute;
  top: -1.2rem;
  left: 1rem;
  color: rgba(189, 145, 69, 0.18);
  content: "✦";
  font-size: 8rem;
  line-height: 1;
}

.panel-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border: 2px solid rgba(189, 145, 69, 0.5);
  border-radius: 50%;
}

.panel-title {
  position: relative;
  margin-bottom: 1.2rem;
  text-align: center;
}

.panel-title span {
  display: block;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: 2rem;
  line-height: 1.1;
}

.panel-title strong {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(105, 35, 77, 0.13);
}

.menu-item h3,
.menu-item p {
  margin: 0;
}

.menu-item h3 {
  color: var(--plum-dark);
  font-family: "Marhey", cursive;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.menu-item p {
  margin-top: 0.15rem;
  color: var(--muted);
  direction: ltr;
  text-align: right;
}

.menu-item strong {
  color: var(--plum);
  white-space: nowrap;
}

.add-to-cart {
  min-width: 4.25rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.8rem;
  color: var(--plum-dark);
  background: rgba(229, 201, 135, 0.78);
  border: 1px solid rgba(189, 145, 69, 0.65);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Marhey", cursive;
  font-weight: 700;
}

.add-to-cart:hover {
  background: var(--gold-light);
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--plum-dark);
  color: var(--white);
}

.feature-copy {
  max-width: 680px;
}

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

.feature-copy p:last-child,
.order-section p {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Marhey", cursive;
  font-size: 1.08rem;
  line-height: 1.9;
}

.feature-strip img {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  justify-self: center;
  border: 9px solid rgba(229, 201, 135, 0.78);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(189, 145, 69, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(244, 230, 234, 0.72));
}

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

.about-copy h2 {
  margin: 0;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.2;
}

.about-copy p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: "Marhey", cursive;
  font-size: 1.08rem;
  line-height: 1.9;
}

.about-points {
  display: grid;
  gap: 1rem;
}

.about-points div {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4.2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(50, 17, 38, 0.1);
}

.about-points div::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  color: var(--plum-dark);
  content: "19";
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-weight: 700;
  transform: translateY(-50%);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: 1.15rem;
}

.about-points span {
  margin-top: 0.25rem;
  color: var(--muted);
}

.products-section {
  background: rgba(255, 250, 240, 0.64);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(105, 35, 77, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  cursor: zoom-in;
  object-fit: cover;
}

.product-card div {
  padding: 1rem;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.65rem;
  color: var(--plum-dark);
  background: rgba(229, 201, 135, 0.7);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card h3 {
  margin: 0;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: 1.05rem;
  line-height: 1.55;
}

.product-quantity {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) 2.7rem;
  align-items: center;
  margin-top: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(50, 17, 38, 0.06);
}

.product-quantity button {
  min-height: 2.65rem;
  color: var(--plum);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
}

.product-add {
  display: inline-flex;
  width: 100%;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  color: var(--white);
  background: var(--plum);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(105, 35, 77, 0.2);
  cursor: pointer;
  font-family: "Marhey", cursive;
  font-weight: 800;
}

.product-add:hover {
  background: var(--plum-dark);
}

.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(36, 19, 29, 0.68);
  backdrop-filter: blur(14px);
}

.image-preview-modal[hidden] {
  display: none;
}

.image-preview-modal img {
  width: min(92vw, 620px);
  max-height: 78vh;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(229, 201, 135, 0.42);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.image-preview-modal p {
  width: min(92vw, 620px);
  margin: 0.85rem 0 0;
  color: var(--cream);
  font-family: "Marhey", cursive;
  font-weight: 800;
  text-align: center;
}

.image-preview-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: 1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--cream);
  background: var(--plum);
  border: 1px solid rgba(229, 201, 135, 0.48);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
}

.product-add:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.fly-to-cart {
  position: fixed;
  z-index: 1200;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(50, 17, 38, 0.25);
  pointer-events: none;
  transition:
    transform 0.7s cubic-bezier(0.18, 0.84, 0.28, 1),
    opacity 0.7s ease;
}

.product-quantity button:hover {
  background: rgba(229, 201, 135, 0.18);
}

.product-quantity span {
  display: grid;
  min-width: 0;
  height: 100%;
  place-items: center;
  color: var(--plum-dark);
  text-align: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 1.05rem;
  font-weight: 800;
}

.social-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(189, 145, 69, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(244, 230, 234, 0.78));
}

.social-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(105, 35, 77, 0.96), rgba(50, 17, 38, 0.98)),
    var(--plum);
  border: 1px solid rgba(229, 201, 135, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.social-card::before {
  position: absolute;
  top: -2.2rem;
  left: 1.5rem;
  color: rgba(229, 201, 135, 0.13);
  content: "@";
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 1;
}

.social-card > * {
  position: relative;
}

.social-card span {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.22em;
}

.social-card h3 {
  margin: 0.55rem 0 0;
  color: var(--white);
  font-family: "Marhey", cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
}

.social-card p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Marhey", cursive;
  line-height: 1.9;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.plum-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.reviews-section {
  background:
    linear-gradient(180deg, rgba(244, 230, 234, 0.78), rgba(255, 250, 240, 0.92)),
    var(--rose);
}

.reviews-summary {
  max-width: 520px;
  margin: -0.5rem auto 2rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(105, 35, 77, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(50, 17, 38, 0.12);
}

.reviews-summary strong {
  display: block;
  color: var(--plum);
  font-size: 3rem;
  line-height: 1;
}

.reviews-summary span,
.review-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.reviews-summary p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-family: "Marhey", cursive;
}

.reviews-grid {
  display: flex;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.25rem 0.25rem 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-card {
  display: flex;
  flex: 0 0 min(360px, 82vw);
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.featured-review {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(105, 35, 77, 0.97), rgba(50, 17, 38, 0.98)),
    var(--plum);
}

.review-card p {
  margin: 1rem 0;
  color: var(--plum-dark);
  font-family: "Marhey", cursive;
  font-size: 1.05rem;
  line-height: 1.8;
}

.featured-review p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0;
  color: inherit;
  background: transparent;
}

.review-card footer strong {
  color: var(--plum);
}

.featured-review footer strong {
  color: var(--gold-light);
}

.review-card footer span {
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-review footer span {
  color: rgba(255, 255, 255, 0.68);
}

.order-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(105, 35, 77, 0.95), rgba(50, 17, 38, 0.98)),
    var(--plum);
}

.order-section div {
  max-width: 700px;
}

.cart-section {
  display: none !important;
  background: var(--cream);
}

.cart-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-top: 9px solid var(--plum);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cart-heading,
.cart-footer,
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-heading h2 {
  margin: 0;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.cart-count {
  padding: 0.45rem 0.8rem;
  color: var(--plum-dark);
  background: rgba(229, 201, 135, 0.72);
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-empty {
  margin-top: 1.2rem;
  padding: 1rem;
  color: var(--muted);
  background: rgba(244, 230, 234, 0.58);
  border: 1px dashed rgba(105, 35, 77, 0.25);
  border-radius: 8px;
  font-family: "Marhey", cursive;
  text-align: center;
}

.cart-empty.is-hidden {
  display: none;
}

.cart-items {
  margin-top: 1rem;
}

.cart-row {
  padding: 1rem 0;
  border-top: 1px solid rgba(105, 35, 77, 0.12);
}

.cart-row textarea {
  width: 100%;
  min-height: 5rem;
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  color: var(--plum-dark);
  resize: vertical;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-radius: 8px;
  font: inherit;
}

.cart-row:first-child {
  border-top: 0;
}

.cart-row h3,
.cart-row p {
  margin: 0;
}

.cart-row h3 {
  color: var(--plum-dark);
  font-family: "Marhey", cursive;
  font-size: 1rem;
}

.cart-row p {
  margin-top: 0.25rem;
  color: var(--muted);
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 2.2rem 2.4rem 2.2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(105, 35, 77, 0.2);
  border-radius: 999px;
}

.quantity-control button {
  min-height: 2.2rem;
  color: var(--plum);
  background: rgba(244, 230, 234, 0.78);
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
}

.quantity-control span {
  text-align: center;
  font-weight: 700;
}

.cart-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(105, 35, 77, 0.14);
}

.cart-footer span,
.cart-footer strong {
  display: block;
}

.cart-footer span {
  color: var(--muted);
  font-family: "Marhey", cursive;
}

.cart-footer strong {
  color: var(--plum);
  font-size: 1.6rem;
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.promo-box {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(244, 230, 234, 0.5);
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-radius: 8px;
}

.promo-box label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-weight: 700;
}

.promo-box div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.promo-box input,
.admin-panel input,
.admin-panel select {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  color: var(--plum-dark);
  background: var(--white);
  border: 1px solid rgba(105, 35, 77, 0.22);
  border-radius: 8px;
  font: inherit;
}

.promo-apply {
  color: var(--plum);
  border-color: rgba(105, 35, 77, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.promo-box p {
  min-height: 1.4rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkout-fields {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(105, 35, 77, 0.12);
  border-radius: 8px;
}

.checkout-fields label {
  display: grid;
  gap: 0.45rem;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-weight: 800;
}

.checkout-fields input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  color: var(--plum-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-radius: 8px;
  font: 700 1rem "Outfit", Arial, sans-serif;
}

.drawer-promo-box {
  background: rgba(255, 255, 255, 0.62);
}

.location-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(244, 230, 234, 0.92)),
    var(--cream);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(105, 35, 77, 0.96), rgba(50, 17, 38, 0.98)),
    var(--plum);
  border: 1px solid rgba(229, 201, 135, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.location-card::before {
  position: absolute;
  left: clamp(1rem, 4vw, 2rem);
  bottom: -2.7rem;
  color: rgba(229, 201, 135, 0.14);
  content: "19";
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 1;
}

.location-card > * {
  position: relative;
}

.location-card h2 {
  margin: 0;
  color: var(--white);
  font-family: "Marhey", cursive;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
}

.location-copy p {
  max-width: 600px;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Marhey", cursive;
  line-height: 1.9;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.location-meta span {
  padding: 0.45rem 0.75rem;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(229, 201, 135, 0.24);
  border-radius: 999px;
  font-weight: 700;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.map-button {
  color: var(--plum-dark);
  background: var(--gold-light);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.map-preview {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(138, 66, 108, 0.95), rgba(50, 17, 38, 0.98));
  border: 1px solid rgba(229, 201, 135, 0.45);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.map-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-preview::after {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  height: 3.4rem;
  content: "";
  background: rgba(255, 250, 240, 0.11);
  border: 1px solid rgba(229, 201, 135, 0.2);
  border-radius: 8px;
}

.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 6rem;
  height: 6rem;
  place-items: center;
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 7px solid rgba(255, 250, 240, 0.68);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  font-family: "Marhey", cursive;
  font-size: 1.8rem;
  font-weight: 700;
  transform: rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-pin::after {
  position: absolute;
  right: -1.15rem;
  bottom: -1.15rem;
  width: 2.1rem;
  height: 2.1rem;
  content: "";
  background: rgba(229, 201, 135, 0.25);
  border-radius: 50%;
}

.map-preview strong,
.map-preview small {
  position: absolute;
  z-index: 2;
  right: 2rem;
}

.map-preview strong {
  bottom: 3.25rem;
  color: var(--gold-light);
  letter-spacing: 0.16em;
}

.map-preview small {
  bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
}

.map-road {
  position: absolute;
  z-index: 1;
  height: 1.1rem;
  background: rgba(255, 250, 240, 0.22);
  border: 1px solid rgba(229, 201, 135, 0.13);
  border-radius: 999px;
}

.road-one {
  width: 125%;
  top: 29%;
  left: -16%;
  transform: rotate(-18deg);
}

.road-two {
  width: 110%;
  right: -28%;
  bottom: 42%;
  transform: rotate(32deg);
}

.road-three {
  width: 86%;
  left: -18%;
  bottom: 25%;
  transform: rotate(8deg);
}

.real-map {
  display: block;
  min-height: 340px;
  padding: 0.65rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(138, 66, 108, 0.98), rgba(50, 17, 38, 0.98));
}

.real-map::before,
.real-map::after {
  display: none;
}

.real-map iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 315px;
  border: 1px solid rgba(229, 201, 135, 0.35);
  border-radius: 8px;
}

.map-open-overlay {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: grid;
  gap: 0.12rem;
  min-width: 12rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  text-align: right;
  text-decoration: none;
  background: rgba(105, 35, 77, 0.78);
  border: 1px solid rgba(229, 201, 135, 0.42);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.map-open-overlay strong,
.map-open-overlay small {
  position: static;
  right: auto;
  bottom: auto;
}

.map-open-overlay strong {
  color: var(--gold-light);
  letter-spacing: 0.12em;
}

.map-open-overlay small {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  gap: 1.35rem;
  padding: 2rem clamp(1rem, 5vw, 5rem) calc(7rem + env(safe-area-inset-bottom));
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 10%, rgba(229, 201, 135, 0.12), transparent 16rem),
    linear-gradient(180deg, #321126, #24131d);
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer-brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: cover;
  border: 1px solid rgba(229, 201, 135, 0.5);
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-family: "Marhey", cursive;
  font-size: 1.05rem;
}

.footer-brand span {
  margin-top: 0.2rem;
  color: rgba(255, 250, 240, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-links a {
  padding: 0.55rem 0.8rem;
  color: var(--gold-light);
  text-decoration: none;
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(229, 201, 135, 0.18);
  border-radius: 999px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  color: rgba(255, 250, 240, 0.64);
  border-top: 1px solid rgba(229, 201, 135, 0.16);
}

.site-footer .admin-open {
  min-height: 2.45rem;
  padding: 0.45rem 0.85rem;
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: rgba(255, 250, 240, 0.18);
  box-shadow: none;
  font-size: 0.78rem;
}

@media (max-width: 850px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .lang-toggle {
    align-self: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background:
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
  }

  .intro-band,
  .menu-grid,
  .feature-strip,
  .about-section,
  .product-grid,
  .social-card {
    grid-template-columns: 1fr;
  }

  .product-grid {
    max-width: 520px;
  }

  .social-actions {
    justify-content: stretch;
  }

  .order-section {
    align-items: stretch;
    flex-direction: column;
  }

  .location-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .location-meta,
  .location-actions {
    justify-content: center;
  }

  .map-preview {
    min-height: 280px;
  }
}

.floating-cart {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 60;
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  color: var(--plum-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 2px solid rgba(255, 250, 240, 0.7);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(50, 17, 38, 0.32);
  cursor: pointer;
}

.floating-cart-icon {
  font-size: 1.55rem;
  line-height: 1;
}

.floating-cart-count {
  position: absolute;
  top: -0.35rem;
  right: -0.3rem;
  display: grid;
  min-width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  padding: 0 0.35rem;
  color: var(--white);
  background: var(--plum);
  border: 2px solid var(--cream);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.floating-cart.is-empty {
  opacity: 0.72;
}

body[data-lang="ar"] .floating-cart {
  right: auto;
  left: clamp(1rem, 3vw, 1.6rem);
}

body[data-lang="ar"] .floating-cart-count {
  right: auto;
  left: -0.3rem;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(36, 19, 29, 0.48);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cart-drawer-backdrop.is-open {
  opacity: 1;
}

.cart-drawer-backdrop[hidden],
.cart-drawer[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 920;
  display: flex;
  width: min(430px, 92vw);
  height: 100vh;
  flex-direction: column;
  overflow-y: auto;
  padding: 1.2rem;
  color: var(--plum-dark);
  background:
    radial-gradient(circle at top right, rgba(189, 145, 69, 0.18), transparent 18rem),
    var(--cream);
  border-left: 1px solid rgba(105, 35, 77, 0.16);
  box-shadow: -24px 0 70px rgba(36, 19, 29, 0.24);
  transform: translateX(105%);
  transition: transform 0.34s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

body[data-lang="ar"] .cart-drawer {
  right: auto;
  left: 0;
  border-right: 1px solid rgba(105, 35, 77, 0.16);
  border-left: 0;
  box-shadow: 24px 0 70px rgba(36, 19, 29, 0.24);
  transform: translateX(-105%);
}

body[data-lang="ar"] .cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(105, 35, 77, 0.14);
}

.cart-drawer-header h2 {
  margin: 0;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: 2rem;
  line-height: 1.1;
}

.cart-drawer-close {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  color: var(--cream);
  background: var(--plum);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 800;
}

.drawer-empty {
  margin-top: 1rem;
}

.drawer-items {
  flex: 1;
  overflow: auto;
  padding: 0.5rem 0;
}

.cart-drawer-footer {
  position: sticky;
  bottom: -1.2rem;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
  margin: 1rem -1.2rem -1.2rem;
  padding: 1rem 1.2rem max(1rem, env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), var(--cream) 34%),
    var(--cream);
  border-top: 1px solid rgba(105, 35, 77, 0.14);
  box-shadow: 0 -14px 34px rgba(50, 17, 38, 0.08);
}

.cart-drawer-footer span,
.cart-drawer-footer strong {
  display: block;
}

.cart-drawer-footer span {
  color: var(--muted);
  font-family: "Marhey", cursive;
}

.cart-drawer-footer strong {
  color: var(--plum);
  font-size: 1.6rem;
}

.drawer-review {
  color: var(--plum);
  border-color: rgba(105, 35, 77, 0.25);
  background: rgba(255, 255, 255, 0.64);
}

.admin-open {
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  color: var(--gold-light);
  background: var(--plum);
  border: 1px solid rgba(229, 201, 135, 0.48);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(50, 17, 38, 0.24);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
}

body[data-lang="ar"] .admin-open {
  right: auto;
  left: auto;
}

.admin-footer {
  display: flex;
  justify-content: center;
  padding: 1.2rem 1rem calc(6.6rem + env(safe-area-inset-bottom));
  background: var(--cream);
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: end center;
  padding: 1rem;
  background: rgba(36, 19, 29, 0.56);
  backdrop-filter: blur(10px);
}

.admin-modal[hidden] {
  display: none;
}

.admin-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 880px);
  overflow: auto;
  padding: clamp(1.2rem, 4vw, 2rem);
  color: var(--plum-dark);
  background:
    radial-gradient(circle at top right, rgba(189, 145, 69, 0.16), transparent 18rem),
    var(--cream);
  border: 1px solid rgba(229, 201, 135, 0.36);
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.admin-panel::before {
  display: block;
  width: 3.2rem;
  height: 0.25rem;
  margin: -0.2rem auto 1.2rem;
  content: "";
  background: rgba(105, 35, 77, 0.25);
  border-radius: 999px;
}

.admin-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: var(--cream);
  background: var(--plum);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 800;
}

.admin-panel h2 {
  margin: 0 0 1rem;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: clamp(2rem, 5vw, 3rem);
}

.admin-panel h3 {
  margin: 0 0 1rem;
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: 1.35rem;
}

.admin-panel label {
  display: block;
  margin: 0.85rem 0 0.4rem;
  color: var(--plum-dark);
  font-weight: 800;
}

.admin-action {
  width: 100%;
  margin-top: 1rem;
}

.admin-block {
  margin-top: 1.1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(105, 35, 77, 0.14);
  border-radius: 8px;
}

.admin-secondary,
.admin-danger {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.7rem;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(105, 35, 77, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.admin-danger {
  color: #9b1c38;
  border-color: rgba(155, 28, 56, 0.35);
}

.admin-products {
  display: grid;
  gap: 0.65rem;
}

.admin-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(105, 35, 77, 0.12);
  border-radius: 8px;
}

.availability-toggle {
  min-width: 6.5rem;
  min-height: 2.4rem;
  color: var(--white);
  background: var(--plum);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.availability-toggle.is-off {
  color: var(--plum);
  background: rgba(105, 35, 77, 0.12);
}

.admin-message {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  color: var(--plum);
  font-weight: 700;
}

.product-card.is-unavailable {
  opacity: 0.52;
}

.product-card.is-unavailable .product-quantity {
  pointer-events: none;
  filter: grayscale(1);
}

@media (max-width: 520px) {
  nav {
    font-size: 0.86rem;
  }

  .hero-content {
    padding-top: 6rem;
    text-align: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.2rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 22rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .menu-item strong {
    justify-self: start;
  }

  .cart-heading,
  .cart-footer,
  .cart-row {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-control {
    align-self: flex-start;
  }
}

@media (max-width: 850px) {
  .site-header {
    position: sticky;
    align-items: center;
    padding: 0.8rem 1rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  nav {
    justify-content: center;
    gap: 0.45rem;
  }

  nav a {
    min-height: 2.45rem;
    padding: 0.55rem 0.7rem;
    background: rgba(105, 35, 77, 0.06);
    border: 1px solid rgba(105, 35, 77, 0.08);
    border-radius: 999px;
    font-size: 0.82rem;
  }

  .lang-toggle {
    min-width: 7rem;
    min-height: 2.75rem;
  }

  .hero {
    min-height: calc(100svh - 150px);
    align-items: center;
  }

  .hero-content {
    padding: 4rem 1rem;
    text-align: center;
  }

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

  section {
    padding: 3.25rem 1rem;
  }

  .section-heading {
    margin-bottom: 1.4rem;
  }

  .intro-band div {
    padding: 1rem;
  }

  .menu-panel,
  .cart-shell,
  .review-card,
  .product-card,
  .social-card,
  .location-card {
    box-shadow: 0 16px 40px rgba(50, 17, 38, 0.12);
  }

  .product-card img {
    aspect-ratio: 1 / 0.9;
  }

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

  .product-quantity button {
    min-height: 3.15rem;
    font-size: 1.55rem;
  }

  .quantity-control {
    grid-template-columns: 2.85rem 2.8rem 2.85rem;
  }

  .quantity-control button {
    min-height: 2.85rem;
  }

  .promo-box div {
    grid-template-columns: 1fr;
  }

  .promo-apply {
    width: 100%;
  }

  .cart-drawer {
    width: 100vw;
    max-width: none;
    padding: 1rem;
  }

  .cart-drawer-footer {
    bottom: -1rem;
    margin: 1rem -1rem -1rem;
    padding: 0.9rem 1rem max(0.9rem, env(safe-area-inset-bottom));
  }

  .admin-panel {
    width: 100%;
    max-height: 92vh;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  nav {
    font-size: 0.84rem;
  }

  .hero {
    min-height: calc(100svh - 145px);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.2rem);
  }

  .hero-copy {
    max-width: 22rem;
    font-size: 0.98rem;
  }

  .button {
    min-height: 3.4rem;
  }

  .cart-row {
    gap: 0.8rem;
  }

  .floating-cart {
    width: 4rem;
    height: 4rem;
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }

  .admin-open {
    min-height: 2.55rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
  }

  .admin-product-row {
    align-items: stretch;
    flex-direction: column;
  }

  .availability-toggle {
    width: 100%;
  }
}

@media (max-width: 850px) {
  body {
    padding-bottom: 6.2rem;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem 0.8rem;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    position: sticky;
  }

  .site-header .brand {
    width: auto;
    justify-content: center;
  }

  .top-nav {
    display: none;
  }

  .lang-toggle {
    position: static;
    min-width: 5.8rem;
    min-height: 2.45rem;
    align-self: center;
    flex: 0 0 auto;
    padding: 0.45rem 0.8rem;
    transform: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: auto;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    left: 50%;
    z-index: 75;
    display: grid;
    width: min(96vw, 520px);
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    align-items: center;
    padding: 0.55rem;
    background: rgba(255, 250, 240, 0.92);
    border: 1px solid rgba(105, 35, 77, 0.12);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(50, 17, 38, 0.18);
    backdrop-filter: blur(16px);
    direction: ltr;
    transform: translateX(-50%);
  }

  .mobile-bottom-nav a {
    display: grid;
    min-height: 3rem;
    place-items: center;
    padding: 0.35rem;
    color: var(--plum-dark);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-bottom-nav a.is-active {
    color: var(--white);
    background: var(--plum);
  }

  .floating-cart {
    bottom: calc(max(0.8rem, env(safe-area-inset-bottom)) + 4.9rem);
  }

}

@media (max-width: 420px) {
  .mobile-bottom-nav {
    width: min(97vw, 520px);
    gap: 0.2rem;
    padding: 0.45rem;
  }

  .mobile-bottom-nav a {
    min-height: 2.75rem;
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 2.45rem;
    height: 2.45rem;
  }
}

@media (max-width: 850px) {
  .mobile-bottom-nav {
    right: 0.75rem !important;
    left: 0.75rem !important;
    width: calc(100vw - 1.5rem) !important;
    max-width: calc(100vw - 1.5rem) !important;
    min-width: 0 !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    transform: scale(0.82) !important;
    transform-origin: bottom left !important;
  }

  .mobile-bottom-nav a {
    min-width: 0 !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: none !important;
    gap: 0.8rem;
  }

  .product-card img {
    aspect-ratio: 1 / 1;
  }

  .product-card div {
    padding: 0.75rem;
  }

  .product-card h3 {
    min-height: 3.2rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .product-card span {
    font-size: 0.72rem;
  }

  .product-quantity {
    grid-template-columns: 2.35rem minmax(0, 1fr) 2.35rem !important;
    margin-top: 0.65rem;
    border-color: rgba(105, 35, 77, 0.14) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 18px rgba(50, 17, 38, 0.06) !important;
  }

  .product-quantity button {
    min-height: 2.5rem !important;
    color: var(--plum) !important;
    background: transparent !important;
    font-size: 1.2rem !important;
  }

  .product-add {
    min-height: 2.75rem;
    margin-top: 0.65rem;
    font-size: 0.78rem;
  }

  .reviews-grid {
    margin-right: -1rem;
    margin-left: -1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .review-card {
    flex-basis: 82vw;
    min-height: 260px;
  }
}

@media (max-width: 850px) {
  .mobile-bottom-nav {
    right: 1.15rem !important;
    bottom: max(0.28rem, env(safe-area-inset-bottom)) !important;
    left: 1.15rem !important;
    width: calc(100% - 2.3rem) !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0.25rem !important;
    padding: 0.42rem !important;
    transform: none !important;
  }

  .mobile-bottom-nav a {
    min-height: 2.75rem !important;
    padding: 0.25rem 0.2rem !important;
    font-size: 0.72rem !important;
    line-height: 1.05 !important;
  }

  .floating-cart {
    bottom: calc(max(0.28rem, env(safe-area-inset-bottom)) + 4rem) !important;
  }
}

@media (max-width: 390px) {
  .mobile-bottom-nav {
    right: 0.8rem !important;
    left: 0.8rem !important;
    width: calc(100% - 1.6rem) !important;
  }

  .mobile-bottom-nav a {
    font-size: 0.66rem !important;
  }
}

@media (max-width: 520px) {
  .real-map {
    min-height: 300px;
    padding: 0.45rem;
  }

  .real-map iframe {
    min-height: 280px;
  }

  .map-open-overlay {
    right: 0.9rem;
    bottom: 0.9rem;
    min-width: 10.5rem;
    padding: 0.7rem 0.85rem;
  }
}

@media (max-width: 850px) {
  .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 0.9rem !important;
    background: rgba(255, 250, 240, 0.94) !important;
    border-bottom: 1px solid rgba(105, 35, 77, 0.1) !important;
    backdrop-filter: blur(16px);
  }

  .site-header .brand {
    justify-content: flex-start !important;
    min-width: 0;
  }

  .brand-logo {
    width: 2.65rem !important;
    height: 2.65rem !important;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .lang-toggle {
    min-width: 4.6rem !important;
    min-height: 2.55rem !important;
    padding: 0.45rem 0.65rem !important;
    font-size: 0.82rem;
  }

  .header-cart-button {
    display: inline-flex;
    min-height: 2.55rem;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    color: var(--white);
    background: var(--plum);
    border: 1px solid rgba(229, 201, 135, 0.42);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(105, 35, 77, 0.18);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
  }
}

@media (max-width: 850px) {
  .mobile-bottom-nav {
    right: 1rem !important;
    left: 1rem !important;
    bottom: max(0.85rem, env(safe-area-inset-bottom)) !important;
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    min-width: 0 !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem !important;
    padding: 0.6rem !important;
    border-radius: 999px !important;
    transform: none !important;
  }

  .mobile-bottom-nav a {
    min-width: 0 !important;
    min-height: 3.55rem !important;
    font-size: 0.92rem !important;
    font-weight: 900 !important;
  }

  .mobile-bottom-nav a.is-active {
    box-shadow: 0 12px 28px rgba(105, 35, 77, 0.22);
  }
}

@media (max-width: 850px) {
  .mobile-bottom-nav {
    right: 0.85rem !important;
    bottom: max(0.35rem, env(safe-area-inset-bottom)) !important;
    left: 0.85rem !important;
    display: grid !important;
    width: calc(100% - 1.7rem) !important;
    max-width: calc(100% - 1.7rem) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0.22rem !important;
    padding: 0.42rem !important;
    border-radius: 999px !important;
  }

  .mobile-bottom-nav a {
    min-height: 2.85rem !important;
    padding: 0.25rem 0.1rem !important;
    font-size: 0.7rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .floating-cart {
    bottom: calc(max(0.35rem, env(safe-area-inset-bottom)) + 4.3rem) !important;
  }
}

@media (max-width: 380px) {
  .mobile-bottom-nav a {
    font-size: 0.62rem !important;
  }
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.75rem;
  padding: clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 15% 12%, rgba(229, 201, 135, 0.22), transparent 14rem),
    linear-gradient(135deg, rgba(244, 230, 234, 0.94), rgba(255, 250, 240, 0.96));
}

.intro-band div {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.45rem);
  text-align: right;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(105, 35, 77, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(50, 17, 38, 0.08);
}

.intro-band div:first-child {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(105, 35, 77, 0.98), rgba(50, 17, 38, 0.96)),
    var(--plum);
  border-color: rgba(229, 201, 135, 0.34);
}

.intro-band div:first-child::after {
  position: absolute;
  inset: auto -1.8rem -2.8rem auto;
  color: rgba(229, 201, 135, 0.12);
  content: "19";
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.intro-band strong {
  color: var(--plum);
  font-family: "Marhey", cursive;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.intro-band div:first-child strong {
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.intro-band span {
  color: var(--muted);
  font-family: "Marhey", cursive;
  line-height: 1.65;
}

.intro-band div:first-child span {
  color: rgba(255, 250, 240, 0.78);
}

@media (max-width: 850px) {
  .intro-band {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.7rem;
    padding: 1rem;
  }

  .intro-band div:first-child {
    grid-column: 1 / -1;
  }

  .intro-band div {
    padding: 1rem !important;
  }

  .intro-band strong {
    font-size: 0.95rem;
  }

  .intro-band span {
    font-size: 0.82rem;
  }
}
