@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #032b32;
  --bg-deep: #011e24;
  --surface: #073a42;
  --surface-soft: #0a4650;
  --line: rgba(93, 225, 242, 0.18);
  --cyan: #61dff0;
  --cyan-strong: #23bed5;
  --orange: #ff3b08;
  --orange-soft: #ff6b40;
  --white: #f7fcfd;
  --muted: #a9c7cb;
  --green: #23d366;
  --shadow: 0 24px 70px rgba(0, 11, 14, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

[hidden],
.form-field[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 8%, rgba(27, 188, 211, 0.13), transparent 30rem),
    linear-gradient(180deg, #032e35 0%, var(--bg-deep) 100%);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
  overflow: clip;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: 38px max(24px, calc((100vw - 1180px) / 2)) 32px;
  background:
    linear-gradient(110deg, rgba(1, 27, 32, 0.96), rgba(4, 59, 68, 0.88)),
    repeating-radial-gradient(circle at 85% 30%, transparent 0 32px, rgba(97, 223, 240, 0.04) 34px 36px);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(1, 30, 36, 0.72));
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
}

.hero-glow-one {
  width: 330px;
  height: 330px;
  top: -110px;
  right: -80px;
  background: rgba(35, 190, 213, 0.22);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  bottom: -130px;
  left: 8%;
  background: rgba(255, 59, 8, 0.12);
}

.hero-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.brand-character {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(97, 223, 240, 0.38);
  box-shadow: 0 24px 70px rgba(0, 9, 12, 0.42), 0 0 0 12px rgba(97, 223, 240, 0.035);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-description {
  margin: 18px 0 0;
  max-width: 620px;
  color: #d3e6e8;
  font-size: 1.06rem;
  line-height: 1.9;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px;
  color: #d7ecef;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: 0.82rem;
}

.info-badge svg {
  width: 20px;
  min-width: 20px;
  fill: var(--cyan);
}

.promo-badge {
  color: #fff4ee;
  background: rgba(255, 59, 8, 0.09);
  border-color: rgba(255, 107, 64, 0.2);
}

.promo-badge svg {
  fill: var(--orange-soft);
}

.sandwich-badge svg {
  fill: var(--cyan);
}

.category-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  padding: 13px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(1, 30, 36, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.category-tabs {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid rgba(97, 223, 240, 0.13);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.category-tab:hover {
  color: var(--white);
  border-color: rgba(97, 223, 240, 0.32);
}

.category-tab.active {
  color: #00242a;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 9px 24px rgba(35, 190, 213, 0.2);
}

.menu-section {
  width: min(calc(100% - 40px), 1180px);
  min-height: 660px;
  margin: 0 auto;
  padding: 56px 0 82px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.section-count {
  min-width: 92px;
  padding: 10px 14px;
  color: var(--cyan);
  background: rgba(97, 223, 240, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  min-height: 136px;
  padding: 17px 18px;
  background: linear-gradient(145deg, rgba(11, 69, 79, 0.88), rgba(5, 48, 56, 0.98));
  border: 1px solid rgba(97, 223, 240, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(0, 15, 18, 0.14);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  top: -75px;
  left: -60px;
  border-radius: 50%;
  background: rgba(97, 223, 240, 0.06);
}

.menu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(97, 223, 240, 0.26);
  box-shadow: 0 17px 42px rgba(0, 13, 16, 0.22);
}

.menu-card-main {
  min-width: 0;
}

.menu-card h3 {
  margin: 0 0 9px;
  color: var(--cyan);
  font-size: 1.22rem;
  line-height: 1.45;
}

.ingredients {
  margin: 0;
  color: #c4d9dc;
  font-size: 0.9rem;
  line-height: 1.72;
}

.menu-card-side {
  min-width: 122px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.price {
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 900;
  white-space: nowrap;
}

.add-button,
.qty-control {
  min-height: 42px;
  border-radius: 999px;
}

.add-button {
  min-width: 118px;
  padding: 0 17px;
  border: 0;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 59, 8, 0.2);
  transition: 160ms ease;
}

.add-button:hover,
.add-button:focus-visible {
  background: var(--orange-soft);
  transform: translateY(-1px);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(97, 223, 240, 0.23);
  background: rgba(1, 30, 36, 0.7);
}

.qty-control button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.45rem;
  cursor: pointer;
}

.qty-control button:hover,
.qty-control button:focus-visible {
  background: rgba(97, 223, 240, 0.1);
}

.qty-control span {
  width: 38px;
  text-align: center;
  font-weight: 900;
}

.contact-strip {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 34px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(120deg, rgba(255, 59, 8, 0.16), rgba(97, 223, 240, 0.07));
  border: 1px solid rgba(255, 107, 64, 0.24);
  border-radius: var(--radius-md);
}

.contact-strip p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-strip a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.contact-strip > div > a {
  font-size: 1.35rem;
}

.whatsapp-link {
  min-height: 47px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  border-radius: 999px;
}

.whatsapp-link svg {
  width: 22px;
  fill: currentColor;
}

.site-footer {
  padding: 25px 20px 108px;
  color: #6f999e;
  border-top: 1px solid rgba(97, 223, 240, 0.08);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.floating-cart {
  position: fixed;
  z-index: 30;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: max(18px, env(safe-area-inset-bottom));
  min-width: 240px;
  height: 66px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  color: var(--white);
  background: rgba(255, 59, 8, 0.97);
  box-shadow: 0 18px 50px rgba(0, 9, 12, 0.5), 0 10px 30px rgba(255, 59, 8, 0.23);
  cursor: pointer;
  transition: 180ms ease;
}

.floating-cart:hover,
.floating-cart:focus-visible {
  transform: translateY(-3px);
  background: var(--orange-soft);
}

.floating-cart.is-empty {
  background: rgba(8, 65, 75, 0.96);
  box-shadow: 0 18px 50px rgba(0, 9, 12, 0.34);
}

.cart-icon-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.cart-icon-wrap svg {
  width: 26px;
  fill: currentColor;
}

.cart-count {
  position: absolute;
  top: -13px;
  right: -10px;
  min-width: 23px;
  height: 23px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  color: var(--bg-deep);
  background: var(--cyan);
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
}

.is-empty .cart-count {
  border-color: var(--surface-soft);
}

.cart-button-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.cart-button-copy small {
  opacity: 0.78;
}

.cart-button-copy strong {
  font-size: 1rem;
}

.cart-arrow {
  font-size: 1.4rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  justify-items: end;
  direction: ltr;
  background: rgba(0, 10, 13, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cart-overlay[hidden] {
  display: none;
}

.cart-panel {
  width: min(100%, 560px);
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #062f36;
  border-left: 1px solid var(--line);
  direction: rtl;
  box-shadow: var(--shadow);
  animation: cart-enter 220ms ease both;
}

@keyframes cart-enter {
  from { transform: translateX(35px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.cart-handle {
  display: none;
}

.cart-header {
  padding: 25px 25px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-header p {
  margin: 0 0 5px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.65rem;
}

.icon-button {
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cart-body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 25px 24px;
}

.cart-items {
  display: grid;
  gap: 11px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(97, 223, 240, 0.1);
  border-radius: var(--radius-sm);
}

.cart-item h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.97rem;
}

.cart-item p {
  margin: 0;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
}

.empty-cart {
  padding: 50px 22px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed rgba(97, 223, 240, 0.18);
  border-radius: var(--radius-md);
}

.empty-cart svg {
  width: 50px;
  margin-bottom: 12px;
  fill: rgba(97, 223, 240, 0.55);
}

.empty-cart h3 {
  margin: 0 0 8px;
  color: var(--white);
}

.empty-cart p {
  margin: 0;
  line-height: 1.75;
}

.order-details {
  margin-top: 26px;
  padding-top: 24px;
  display: grid;
  gap: 19px;
  border-top: 1px solid var(--line);
}

.order-details.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.order-type-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.order-type-group legend,
.form-field > span {
  margin-bottom: 11px;
  color: #e9f6f7;
  font-size: 0.9rem;
  font-weight: 800;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.order-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-option span {
  min-height: 78px;
  padding: 9px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(97, 223, 240, 0.13);
  border-radius: 13px;
  font-size: 0.77rem;
  font-weight: 800;
  cursor: pointer;
  transition: 160ms ease;
}

.order-option svg {
  width: 24px;
  fill: currentColor;
}

.order-option input:checked + span {
  color: var(--bg-deep);
  background: var(--cyan);
  border-color: var(--cyan);
}

.order-option input:focus-visible + span {
  outline: 2px solid var(--orange-soft);
  outline-offset: 2px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field > span small {
  color: var(--muted);
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(1, 26, 31, 0.62);
  border: 1px solid rgba(97, 223, 240, 0.15);
  border-radius: 12px;
  outline: 0;
  resize: vertical;
  transition: 160ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(97, 223, 240, 0.09);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #70969b;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  color: var(--white);
  background: #062f36;
}

.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: #ff9d81;
  font-size: 0.76rem;
}

.free-delivery-note {
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d7edef;
  background: rgba(97, 223, 240, 0.06);
  border: 1px solid rgba(97, 223, 240, 0.11);
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.free-delivery-note svg {
  width: 22px;
  min-width: 22px;
  fill: var(--cyan);
}

.cart-footer {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  padding: 16px 25px calc(18px + env(safe-area-inset-bottom));
  background: rgba(2, 37, 43, 0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(0, 14, 17, 0.23);
}

.cart-summary {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-summary strong {
  color: var(--white);
  font-size: 1.35rem;
}

.order-button {
  width: 100%;
  min-height: 54px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
  transition: 160ms ease;
}

.order-button:hover,
.order-button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.order-button:disabled {
  color: #8eabad;
  background: #174850;
  cursor: not-allowed;
  transform: none;
}

.order-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toast {
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 100px;
  max-width: calc(100vw - 36px);
  padding: 11px 16px;
  color: var(--white);
  background: #0b4d56;
  border: 1px solid rgba(97, 223, 240, 0.2);
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: 200ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-content {
    grid-template-columns: 150px 1fr;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 3.25rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-badges {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .hero {
    padding: 22px 20px 26px;
  }

  .hero-content {
    grid-template-columns: 98px 1fr;
    gap: 16px;
  }

  .brand-character {
    align-self: start;
  }

  .eyebrow {
    margin-bottom: 5px;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
    line-height: 1.18;
  }

  .hero-description {
    grid-column: 1 / -1;
    margin-top: 8px;
    font-size: 0.87rem;
  }

  .hero-badges {
    margin-top: 4px;
    display: grid;
    gap: 8px;
  }

  .info-badge {
    width: 100%;
    justify-content: flex-start;
    border-radius: 13px;
    line-height: 1.6;
  }

  .category-nav {
    padding: 10px 14px;
  }

  .category-tab {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.84rem;
  }

  .menu-section {
    width: min(calc(100% - 28px), 1180px);
    min-height: 600px;
    padding: 38px 0 65px;
  }

  .section-heading {
    align-items: center;
    margin-bottom: 17px;
  }

  .section-kicker {
    font-size: 0.75rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-count {
    min-width: auto;
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .menu-card {
    min-height: 0;
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 17px;
  }

  .menu-card h3 {
    margin-bottom: 6px;
    font-size: 1.08rem;
  }

  .ingredients {
    font-size: 0.82rem;
    line-height: 1.8;
  }

  .menu-card-side {
    min-width: 0;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .price {
    font-size: 0.98rem;
  }

  .add-button {
    min-width: 112px;
  }

  .contact-strip {
    width: min(calc(100% - 28px), 1180px);
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
  }

  .whatsapp-link {
    justify-content: center;
  }

  .floating-cart {
    right: 14px;
    left: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: auto;
    min-width: 0;
  }

  .cart-overlay {
    align-items: end;
  }

  .cart-panel {
    width: 100%;
    height: min(92vh, 820px);
    height: min(92dvh, 820px);
    max-height: 92dvh;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    animation-name: cart-enter-mobile;
  }

  @keyframes cart-enter-mobile {
    from { transform: translateY(45px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .cart-handle {
    width: 46px;
    height: 4px;
    margin: 9px auto -4px;
    display: block;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 99px;
  }

  .cart-header {
    padding: 18px 17px 14px;
  }

  .cart-body {
    padding: 14px 17px 20px;
  }

  .cart-footer {
    padding: 14px 17px calc(15px + env(safe-area-inset-bottom));
  }

  .order-options {
    gap: 6px;
  }

  .order-option span {
    min-height: 72px;
    font-size: 0.71rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
