﻿:root {
  --ink: #0f172a;
  --text: #0f172a;
  --muted: #5b6473;
  --bg: #f7fafc;
  --surface: #ffffff;
  --stone: #e2e8f0;
  --green: #16a34a;
  --green-soft: #e6f7ee;
  --red: #ef4444;
  --amber: #f59e0b;
  --card: #ffffff;
  --shadow: 0 22px 60px -28px rgba(15, 23, 42, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Nunito', Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #fef7ed 0%, transparent 40%),
    radial-gradient(circle at 85% 0%, #e8f6ff 0%, transparent 35%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Manrope', sans-serif;
  letter-spacing: -0.01em;
}

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.icon-btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.page-shell {
  min-height: 100vh;
}

.page-shell__content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

.container--wide {
  max-width: 1180px;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--green);
  margin: 0 0 0.35rem;
}

.muted {
  color: var(--muted);
}

.link-quiet {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.link-quiet:hover {
  color: var(--green);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #f0f2f6;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.pill--accent {
  background: #ffe8d2;
  color: var(--red);
}

.pill--soft {
  background: var(--green-soft);
  color: var(--green);
}

.btn {
  border-radius: 12px;
  font-weight: 800;
  padding: 0.82rem 1.2rem;
  border: 1px solid transparent;
  box-shadow: none;
}

.btn-sm {
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #c43b38;
  border-color: #c43b38;
  color: #fff;
}

.btn-ghost,
.btn-outline-light {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stone);
}

.btn-ghost:hover,
.btn-outline-light:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-soft);
}

.section {
  padding: 72px 0;
}

.section--light {
  background: #fff;
}

.section--accent {
  background: #f4f7ff;
}

.section--strip {
  background: linear-gradient(90deg, #faf5ec 0%, #f5f8ff 100%);
}

.section--cta {
  background: linear-gradient(120deg, #f1f5f9 0%, #e8f5ff 100%);
  color: var(--ink);
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.section-heading p {
  margin: 0;
}

.site-head {
  background: url('/images/Banner/pico1.png') center/cover no-repeat;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 2px solid #dce7d8;
  min-height: 180px;
}

.site-head__grid {
  display: flex;
}

.site-head__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a7b3b 0%, #e23c32 100%);
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.site-head__eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 800;
}

.site-head__title {
  margin: 0.1rem 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.site-head__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--ink);
  font-weight: 700;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 12px 40px -28px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
}

.site-nav__logo {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.site-nav__link:hover {
  color: var(--ink);
  background: #f6f8fb;
}

.site-nav__link.is-active {
  color: var(--green);
  background: #f0f8f0;
  border-color: #d8ead8;
}

.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #222;
  padding: 0;
}

.icon-btn:hover {
  background: #f5f5f5;
}

.icon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #d32f2f;
  color: #fff;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  padding: 0 6px;
}

.page-content {
  flex: 1;
}

.hero {
  padding-top: 72px;
  background: radial-gradient(circle at 25% 20%, #f7fffb 0%, transparent 45%), radial-gradient(circle at 80% 10%, #fff3ee 0%, transparent 40%);
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero__text h1 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero__title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero__lead {
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.hero__cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__facts {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero__card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  border-left: 6px solid var(--green);
}

.hero__note {
  background: #fff;
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.hero--menu {
  background: radial-gradient(circle at 35% 20%, #fff5eb 0%, transparent 40%), radial-gradient(circle at 85% 15%, #edf8ef 0%, transparent 35%);
}

.hero__content--split {
  grid-template-columns: minmax(260px, 1fr) 320px;
}

.hero__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.favorite-card {
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}

.favorite-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.favorite-card__price {
  font-weight: 800;
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step-card {
  background: linear-gradient(180deg, #0f172a 0%, #132135 100%);
  color: #e5e7eb;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.step-card h3 {
  margin: 0 0 0.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-panel {
  background: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.info-panel h3 {
  margin: 0 0 0.75rem;
}

.info-panel a {
  color: var(--ink);
}

.info-panel__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.opening-hours {
  margin: 0;
}

.opening-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--stone);
}

.opening-hours__row:last-child {
  border-bottom: none;
}

.cta-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a7b3b 0%, #e23c32 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.cta-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.menu-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5ebdf;
  box-shadow: 0 18px 48px -28px rgba(15, 23, 42, 0.4);
  overflow: hidden;
}

.menu-card--wide {
  grid-column: 1 / -1;
}

.menu-card__body {
  padding: 1.25rem;
  border-top: 4px solid var(--green-soft);
}

.menu-card__header h2 {
  margin: 0 0 0.5rem;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--stone);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__price {
  font-weight: 800;
  color: var(--ink);
}

.menu-table {
  width: 100%;
  border: 1px solid var(--stone);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  --cols: 4;
}

.menu-table__grid {
  display: grid;
  grid-template-columns: 80px 1.8fr repeat(var(--cols), minmax(110px, 1fr));
  align-items: center;
}

.menu-table__head {
  background: var(--green-soft);
  font-weight: 800;
  border-bottom: 1px solid var(--stone);
}

.menu-table__row:nth-child(even) {
  background: #fbfdf9;
}

.menu-table__cell {
  padding: 0.75rem 0.85rem;
  border-right: 1px solid var(--stone);
  font-size: 0.95rem;
}

.menu-table__cell:last-child {
  border-right: none;
}

.menu-table__row:last-child .menu-table__cell {
  border-bottom: none;
}

.menu-table__cell--wide {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-item__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.menu-item__title strong {
  font-size: 1rem;
}

.menu-item__title .pill {
  padding: 0.25rem 0.55rem;
  font-size: 0.85rem;
}

.menu-notes {
  list-style: none;
  padding: 0.75rem 0 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  display: grid;
  gap: 0.25rem;
}

.menu-list {
  display: none;
}

.menu-list__item {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.menu-list__header {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.menu-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.menu-list__select {
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

.menu-list__price {
  font-weight: 800;
  color: var(--ink);
}

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #f2c8c8;
  background: #fff3f3;
  color: #7f1d1d;
  font-weight: 600;
}

.alert-error {
  border-color: #f2c8c8;
}

.alert-success {
  border-color: #b6e3c3;
  background: #ecfdf3;
  color: #166534;
}

.checkout {
  padding: 24px 0 72px;
  display: grid;
  gap: 24px;
}

.checkout__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

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

.row.line {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--stone);
}

.row.line:last-child {
  border-bottom: none;
}

.spacer {
  flex: 1;
}

.stack {
  display: grid;
  gap: 0.85rem;
}

.stack label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.stack input,
.stack select,
.stack textarea {
  border-radius: 10px;
  border: 1px solid var(--stone);
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
}

.address-block .row {
  align-items: flex-start;
}

.modal-open {
  overflow: hidden;
}

.extras {
  background: #f7fff6;
  color: var(--ink);
}

.extras__card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
}

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  background: #e8f4e8;
  color: var(--ink);
  padding: 32px 0 18px;
  border-top: 1px solid #d3e1d3;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: center;
}

.footer-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-footer__brand {
  margin: 0 0 0.2rem;
  font-weight: 800;
  color: var(--ink);
}

.footer-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid #d3e1d3;
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  font-size: 0.95rem;
}
.footer-powered-link {
  color: #d11c1c;
  font-weight: 700;
}
.footer-powered-link:hover {
  color: #b11515;
}

@media (max-width: 768px) {
  .site-head {
    background: #ffffff;
    min-height: auto;
    padding: 10px 0;
  }

  .site-nav__inner {
    flex-wrap: wrap;
  }

  .site-nav__cta {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__content--split {
    grid-template-columns: 1fr;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .cta-card__actions {
    justify-content: flex-start;
  }

  .menu-table__head,
  .menu-table__row {
    grid-template-columns: 60px 1fr 1fr;
  }

  .menu-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu-table__grid {
    min-width: 640px;
  }

  .menu-card {
    overflow: hidden;
  }

  .menu-table--desktop {
    display: none;
  }

  .menu-list--mobile {
    display: grid;
    gap: 1rem;
  }

  .checkout {
    padding: 16px 0 56px;
  }

  .row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .menu-table__table,
  .menu-table__table thead,
  .menu-table__table tbody,
  .menu-table__table th,
  .menu-table__table td,
  .menu-table__table tr {
    display: block;
    width: 100%;
  }

  .menu-table__table thead {
    display: none;
  }

  .menu-table__table tr {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .menu-table__table td {
    border: none;
    padding: 0.4rem 0;
  }

  .menu-table__table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 0.2rem;
  }
}

.admin-page {
  padding: 24px 0 80px;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-head__actions {
  display: flex;
  gap: 0.75rem;
}

.admin-grid {
  display: grid;
  gap: 1.5rem;
}

.order-card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: grid;
  gap: 1.2rem;
}

.order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.order-id {
  font-weight: 700;
  font-size: 1.1rem;
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.order-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.85rem;
}

.order-pill--accent {
  background: var(--green-soft);
  color: var(--green);
}

.order-items {
  display: grid;
  gap: 0.6rem;
}

.order-items__title {
  font-weight: 700;
  font-size: 1rem;
}

.order-items__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.order-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eef2f7;
}

.order-item:last-child {
  border-bottom: none;
}

.order-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  margin-right: 6px;
}

.order-dot--warn {
  background: var(--red);
}

.order-form {
  display: grid;
  gap: 0.8rem;
}

.order-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.order-form input,
.order-form select {
  border-radius: 12px;
  border: 1px solid var(--stone);
  padding: 0.7rem 0.8rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .admin-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
