:root {
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --text: #111111;
  --muted: #6b6b6f;
  --accent: #ff7b00;
  --card-bg: rgba(255, 255, 255, 0.95);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

body.dark {
  --bg: #050505;
  --bg-alt: #101012;
  --text: #f5f5f7;
  --muted: #a0a0aa;
  --card-bg: rgba(16, 16, 20, 0.96);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0, var(--bg) 55%);
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}

/* subtle page fade (doesn't affect layout) */
.main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px 60px;
  animation: pageFadeIn 0.5s ease-out;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

body.dark .header {
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), rgba(8,8,8,0.8));
  border-bottom-color: rgba(255,255,255,0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Site text */
.site-text {
  display: flex;
  flex-direction: column;
}

.site-name {
  font-weight: 600;
  font-size: 1rem;
}

.site-tagline {
  font-size: 0.75rem;
  color: var(--muted);
}

/* NAV - base look */
/* NAV - base look (desktop) */
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.18s ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

body.dark .nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
}

/* Active (current page) */
.nav a.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* ----------------------------- */
/* MOBILE – 2 ROW NAV, NO SCROLL */
/* ----------------------------- */
@media (max-width: 768px) {
  .nav {
    width: 100%;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    flex-wrap: wrap;              /* 👈 allow 2 rows */
    justify-content: center;
    overflow-x: visible;          /* no scroll */
  }

  body.dark .nav {
    background: rgba(14, 14, 16, 0.94);
  }

  .nav a {
    font-size: 0.8rem;
    padding: 2px 4px;
  }

  /* Download Menu on its own line, full width & centered */
  .nav .nav-download {
    margin-top: 4px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}


/* Theme toggle */
.theme-toggle {
  border-radius: 999px;
  border: none;
  padding: 6px 10px;
  font-size: 0.9rem;
  cursor: pointer;
  background: rgba(0,0,0,0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px) scale(1.03);
}

body.dark .theme-toggle {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
}

/* make both hero columns act like equal-height cards */
.hero-text,
.hero-images {
  display: flex;
  flex-direction: column;
}

.hero-text.card,
.hero-images.card {
  min-height: 260px; /* same as base image height */
}

.hero h1 {
  margin: 8px 0 12px;
  font-size: 2rem;
}

.hero p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* small accent pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.78rem;
  border-radius: 999px;
  background: rgba(255, 123, 0, 0.15); /* slightly richer soft orange */
  color: var(--accent); /* makes text match brand color */
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-tags span {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Buttons */
.hero-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,0.2);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  background: rgba(0,0,0,0.03);
}

body.dark .btn.ghost {
  border-color: rgba(255,255,255,0.2);
}

/* Slider */
.hero-images {
  padding: 0;
  overflow: hidden;
}

/* slider fills remaining height inside card */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  flex: 1;
}

/* keep layout the same, add gentle fade */
.slide {
  min-width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  display: block;
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  max-height: 280px; /* safety limit */
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* dots unchanged size, just nicer look */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 2px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.dot.active {
  width: 16px;
  background: var(--accent);
  transform: translateY(-1px);
}

.slider-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 14px;
}

/* Sections */
.section {
  margin-top: 26px;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

/* Reset old menu card styles so new design can apply */
.menu-item {
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.pretty-card {
  background: var(--card-bg);
  padding: 15px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: 0.25s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.pretty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.menu-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-icon {
  font-size: 1.4rem;
  opacity: 0.8;
}

.menu-name {
  font-weight: 600;
  font-size: 1rem;
}

.menu-bottom {
  margin-top: 6px;
}

.menu-price {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.beautiful-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}




/* Map & QR */
.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.qr-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.qr-box {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  border: 2px dashed rgba(0,0,0,0.3);
}

.qr-text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Forms & tables */
form {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.9);
}

body.dark input[type="text"],
body.dark input[type="email"],
body.dark textarea,
body.dark select {
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.success-message {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(46, 204, 113, 0.15);
  color: #1e8449;
  font-size: 0.85rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 10px;
}

.table th,
.table td {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 8px 6px;
  text-align: left;
}

body.dark .table th,
body.dark .table td {
  border-color: rgba(255,255,255,0.1);
}

/* Footer */
/* Footer Base */
.footer {
  margin-top: 40px;
  padding: 24px 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.04), transparent);
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.82rem;
  color: var(--muted);
}

body.dark .footer {
  background: linear-gradient(to top, rgba(255,255,255,0.02), transparent);
  border-top-color: rgba(255,255,255,0.12);
}

/* Grid Layout */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items: flex-start;
}

/* Footer Links */
.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 2px 0;
  transition: color 0.2s ease, transform 0.1s ease;
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

/* Align Contact Column on Desktop */
@media (min-width: 769px) {
  .footer-contact {
    text-align: right;
  }
}

/* Headings */
.footer-heading {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

/* Brand Section */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.footer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Contact Text */
.footer-text {
  margin: 3px 0;
}

/* Contact info links – premium look */
.contact-info-area a {
  color: #8a5a2f;                /* warm brown, elegant */
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-info-area a:hover {
  color: var(--accent);          /* your orange highlight */
  opacity: 0.9;
}

/* Dark mode – soft warm cream */
body.dark .contact-info-area a {
  color: #f3d2a2;                /* warm light cream */
}

body.dark .contact-info-area a:hover {
  color: var(--accent);
}
/* Google review button – natural, theme-friendly */
/* Google review button – light theme: black text */
.google-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;                 /* 👉 dark black text */
  text-decoration: none;
  gap: 6px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.google-review-btn:hover {
  background: rgba(255, 123, 0, 0.10);  /* soft orange tint */
  border-color: rgba(255, 123, 0, 0.35);
  color: #111111;                       /* stay black on hover */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

/* Dark mode – keep it elegant */
body.dark .google-review-btn {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 24, 0.95);
  color: #f0f0f0;
}

body.dark .google-review-btn:hover {
  background: rgba(255, 123, 0, 0.20);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}


/* Footer Bottom (Centered on Desktop) */
.footer-bottom {
  max-width: 1100px;
  margin: 12px auto 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,0.08);

  display: flex;
  justify-content: center;     /* center alignment */
  gap: 20px;                   /* spacing */
}

body.dark .footer-bottom {
  border-top-color: rgba(255,255,255,0.12);
}

/* Award Card */
.footer-award-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0,0,0,0.02);
}

body.dark .footer-award-card {
  background: rgba(255,255,255,0.03);
}

.footer-award-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.footer-award-text {
  font-size: 0.8rem;
}

.footer-award-title {
  font-weight: 600;
}

.footer-award-year {
  color: var(--muted);
}

.footer-award-note {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Mobile Layout */
/* ---------------------------
   MOBILE FOOTER (Beautiful Layout)
---------------------------- */
@media (max-width: 768px) {

  /* Stack columns neatly */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;                          /* more breathing space */
    padding: 10px 0;
  }

  /* Each column grouped visually */
  .footer-col {
    padding: 12px 0;
    border-radius: 12px;
    background: rgba(0,0,0,0.03);        /* soft highlight panel */
  }

  body.dark .footer-col {
    background: rgba(255,255,255,0.04);
  }

  /* Heading spacing */
  .footer-heading {
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
  }

  /* Better spacing between items */
  .footer-text {
    margin: 4px 0;
    line-height: 1.4;
  }

  /* Award card centered */
  .footer-award-card {
    justify-content: center;
    margin-top: 12px;
    padding: 12px;
  }

  .footer-award-img {
    width: 56px;
    height: 56px;
  }

  /* Divider between footer sections */
  .footer-col:not(:last-child) {
    border-bottom: 1px dashed rgba(0,0,0,0.08);
  }

  body.dark .footer-col:not(:last-child) {
    border-bottom-color: rgba(255,255,255,0.12);
  }

  /* Footer bottom — cleaner, spaced out */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
    padding-top: 12px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .hero-text.card,
  .hero-images.card {
    min-height: auto; /* avoid too tall cards on mobile */
  }

  .slide img {
    height: 220px;
    max-height: 220px;
  }
}

/* Menu CSS */

/* Premium Menu Cards */
.menu-section h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.beautiful-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.pretty-card {
  background: var(--card-bg);
  padding: 15px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: 0.25s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.pretty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.menu-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-icon {
  font-size: 1.3rem;
  opacity: 0.8;
}

.menu-name {
  font-weight: 600;
  font-size: 1rem;
}

.menu-bottom {
  margin-top: 6px;
}

.menu-price {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

/* Google Map */

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  align-items: flex-start;
}

.branch-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.branch-card p {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ABOUT PAGE STYLES */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.about-hero-text h1 {
  margin-top: 0;
  font-size: 1.8rem;
}

.about-hero-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-hero-img {
  border-radius: 18px;                /* round corner frame */
  overflow: hidden;                   /* image clipped to these corners */
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #f5f5f7, #ece7dd);
}


.about-hero-img img {
  width: 100%;
  height: auto;          /* show full image */
  max-height: 360px;     /* nice size on desktop */
  object-fit: contain;   /* no cropping */
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .about-hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-hero-img {
    order: 1;
  }

  .about-hero-text {
    order: 2;
  }

  .about-hero-img img {
    max-height: 320px;   /* was smaller before – now a bit taller */
  }
}


/* SPECIALITY GRID */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.about-feature {
  text-align: center;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow: var(--shadow-soft);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: inline-block;
}

.about-feature h3 {
  margin: 6px 0;
  font-size: 1rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ABOUT SLIDER */
/* Slider container */
.about-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;     /* auto height, responsive */
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.20);
}

/* Each slide as background image */
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blurred filler background */
.about-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(22px) brightness(0.6);
  transform: scale(1.1);
}

/* Actual main image centered */
.about-slide img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  border-radius: 16px;
}

/* Active slide */
.about-slide.active {
  opacity: 1;
}


/* Active slide visible */
.about-slide.active {
  opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about-slider {
    aspect-ratio: 4 / 3;      /* Slightly taller on mobile */
    border-radius: 14px;
  }
}



/* CONTACT PAGE GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: flex-start;
}

/* FORM AREA */
.contact-form-area h2 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form textarea {
  resize: none;
  min-height: 80px;
}

/* RIGHT SIDE INFO */
.contact-info-area {
  padding: 10px;
}

.contact-info-list p {
  margin: 10px 0;
  font-size: 0.9rem;
}

.google-review-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #ffb400;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.google-review-btn:hover {
  background: #ffaa00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ORDER PAGE GRID */
.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: flex-start;
}

/* FORM LEFT SIDE */
.order-form-area h2 {
  margin-top: 0;
}

.order-form {
  display: grid;
  gap: 14px;
}

.order-form textarea {
  resize: none;
  min-height: 80px;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

/* RIGHT SIDE */
.order-info-area {
  padding: 10px;
}

.order-note-box {
  margin-top: 20px;
  padding: 12px;
  border-radius: 12px;
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.order-note-box ul {
  padding-left: 18px;
  margin: 6px 0 0;
}

.order-note-box li {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
}

/* Google Maps icon */
.gmap-icon {
  color: var(--accent);
  font-size: 1rem;
}

.gmap-icon-small {
  font-size: 0.9rem;
  margin-right: 4px;
}

/* Map link styling */
.gmap-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1a73e8; /* Google Blue */
  text-decoration: none;
}

.gmap-link:hover {
  text-decoration: underline;
  color: var(--accent);
}

/* Dark theme adjustments */
body.dark .gmap-link {
  color: #8ab4f8; /* Google blue for dark mode */
}

body.dark .gmap-link:hover {
  color: var(--accent);
}

/* Multi-Items */

/* Multi-item order list */
.multi-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each item row */
.item-row {
  display: grid;
  grid-template-columns: 22px 1fr 90px; /* checkbox | name | qty */
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}

body.dark .item-row {
  background: rgba(255, 255, 255, 0.06);
}

/* Checkbox */
.item-check {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Item name */
.item-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* Quantity input */
.item-qty {
  width: 100%;
  padding: 6px 8px;
  font-size: 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  text-align: center;
}

body.dark .item-qty {
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .item-row {
    grid-template-columns: 22px 1fr 70px;
    padding: 10px;
  }

  .item-name {
    font-size: 0.8rem;
  }

  .item-qty {
    font-size: 0.75rem;
    padding: 6px;
  }
}

