/* ── RESET & TOKENS ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #2E6B2F;
  --green:       #7CB342;
  --green-mid:   #9CCC65;
  --green-light: #C8E0A0;
  --green-pale:  #F2F8E9;
  --orange:      #F4A23C;
  --orange-dark: #E08A2A;
  --cream:       #FBFDF6;
  --white:       #FFFFFF;
  --text:        #2B3A23;
  --text-mid:    #5E6F52;
  --text-light:  #94A687;
  --shadow-sm:   0 2px 8px rgba(40, 70, 20, 0.08);
  --shadow-md:   0 6px 24px rgba(40, 70, 20, 0.12);
  --shadow-lg:   0 16px 48px rgba(40, 70, 20, 0.16);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --font-head:   'Baloo 2', 'Poppins', sans-serif;
  --font-body:   'Poppins', system-ui, sans-serif;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--green-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(124, 179, 66, 0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 179, 66, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-small {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-small:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(251, 253, 246, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
}
.nav-logo-sweet { color: var(--white); transition: color 0.3s; }
.nav-logo-drop { color: var(--green-mid); transition: color 0.3s; }
#navbar.scrolled .nav-logo-sweet { color: var(--green-dark); }
#navbar.scrolled .nav-logo-drop { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--green-dark); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 3px 10px rgba(124,179,66,0.35);
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124,179,66,0.45) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .nav-hamburger span { background: var(--text); }

.nav-mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--green-pale);
  padding: 1rem 24px 1.5rem;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--green-pale);
  font-size: 1rem;
}
.nav-mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(150deg, #4E8C32 0%, #7CB342 45%, #9CCC65 75%, #6FA83A 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.02) 60px,
      rgba(255,255,255,0.02) 61px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 24px 80px;
  max-width: 720px;
}

/* Badge matching the logo: drop shape + tagline pill */
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.drop-shape {
  width: 160px;
  height: 150px;
  clip-path: polygon(50% 0%, 96% 42%, 80% 100%, 20% 100%, 4% 42%);
  background: linear-gradient(160deg, rgba(255,255,255,0.28), rgba(255,255,255,0.08));
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 18px 14px;
  animation: badgePulse 3s ease-in-out infinite;
}
.drop-emoji {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.drop-banner {
  margin-top: -10px;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 6px 22px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.35);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.88rem;
}
.trust-text { color: rgba(255,255,255,0.85); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ── BANNER STRIP ───────────────────────────────────── */
.banner-strip {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0 24px;
}
.separator { opacity: 0.4; }

/* ── SHOP / MENU ────────────────────────────────────── */
#shop {
  padding: 6rem 0;
  background: var(--white);
}

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--green-pale);
  border: 2px solid transparent;
  transition: var(--transition);
}
.tab-btn:hover { background: var(--green-light); color: var(--green-dark); }
.tab-btn.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(124,179,66,0.35);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--green-pale);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp 0.4s ease both;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-card-img {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Card image placeholders with produce-themed gradients */
.fruit-mixed    { background: linear-gradient(135deg, #F4A23C 0%, #E85D4A 50%, #F0C84A 100%); }
.fruit-apple    { background: linear-gradient(135deg, #E25C4A 0%, #C84838 50%, #F08070 100%); }
.fruit-banana   { background: linear-gradient(135deg, #F0D858 0%, #E8C838 50%, #F8E878 100%); }
.fruit-pear     { background: linear-gradient(135deg, #C8D858 0%, #A8C838 50%, #D8E878 100%); }
.veg-potato     { background: linear-gradient(135deg, #C8A878 0%, #A8885A 50%, #D8BC90 100%); }
.veg-carrot     { background: linear-gradient(135deg, #F4A23C 0%, #E08428 50%, #F8BC68 100%); }
.veg-onion      { background: linear-gradient(135deg, #C9A8C0 0%, #A888A0 50%, #E8D8E0 100%); }
.veg-pepper     { background: linear-gradient(135deg, #E85D4A 0%, #7CB342 50%, #F0D858 100%); }
.salad-lettuce  { background: linear-gradient(135deg, #9CCC65 0%, #7CB342 50%, #C8E0A0 100%); }
.salad-tomato   { background: linear-gradient(135deg, #E8584A 0%, #C8402F 50%, #F08070 100%); }
.salad-cucumber { background: linear-gradient(135deg, #7CB342 0%, #5E9530 50%, #9CCC65 100%); }
.salad-herbs    { background: linear-gradient(135deg, #5E9530 0%, #3E7320 50%, #7CB342 100%); }
.box-weekly     { background: linear-gradient(135deg, #7CB342 0%, #F4A23C 50%, #9CCC65 100%); }
.box-family     { background: linear-gradient(135deg, #6FA83A 0%, #4E8C32 50%, #9CCC65 100%); }
.box-fruit      { background: linear-gradient(135deg, #E85D4A 0%, #F4A23C 50%, #F0D858 100%); }
.box-custom     { background: linear-gradient(135deg, #F4A23C 0%, #E08A2A 50%, #F0C84A 100%); }

/* Illustrative shapes on card images */
.menu-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.08) 100%);
}

.card-img-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.bestseller-tag, .new-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bestseller-tag { background: var(--green); color: var(--white); }
.new-tag { background: var(--orange); color: var(--white); }

.menu-card-body { padding: 1.1rem; }
.menu-card-body h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.menu-card-body p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.5; }

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
}

.menu-cta {
  text-align: center;
  padding: 2rem;
  background: var(--green-pale);
  border-radius: var(--radius);
}
.menu-cta p { color: var(--text-mid); margin-bottom: 1rem; }

/* ── FEATURES ───────────────────────────────────────── */
#delivery {
  padding: 5rem 0;
  background: var(--green-pale);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--green-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.feature-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }

/* ── ABOUT ──────────────────────────────────────────── */
#about {
  padding: 6rem 0;
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #9CCC65 0%, #7CB342 40%, #4E8C32 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.about-img-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}
.about-img-badge .badge-sweet {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.about-img-badge .badge-drop-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--green-dark);
  line-height: 1;
}
.about-img-badge .badge-sub {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  margin-top: 6px;
  background: rgba(46,107,47,0.35);
  padding: 4px 14px;
  border-radius: 100px;
}

.about-text .section-tag { display: block; margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.75;
}
.about-text .btn { margin-top: 0.5rem; }

/* ── TESTIMONIALS ───────────────────────────────────── */
#testimonials {
  padding: 6rem 0;
  background: linear-gradient(135deg, #4E8C32 0%, #7CB342 100%);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }

.stars { font-size: 1rem; margin-bottom: 1rem; }

.testimonial-card p {
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.92rem; }
.testimonial-author span { color: rgba(255,255,255,0.7); font-size: 0.82rem; }

/* ── ORDER / CONTACT ────────────────────────────────── */
#order {
  padding: 6rem 0;
  background: var(--green-pale);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.15);
}
input::placeholder, textarea::placeholder { color: var(--text-light); }
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; }

.checkbox-group { flex-direction: row; align-items: center; gap: 0; margin-bottom: 1.5rem; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
}
.checkbox-label input { width: 18px; height: 18px; margin: 0; accent-color: var(--green); }

.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #EDFAF3;
  border: 1px solid #5CB88A;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.form-success span { font-size: 1.5rem; line-height: 1; }
.form-success strong { display: block; color: #1A7A4A; margin-bottom: 2px; }
.form-success p { color: #2D7A54; margin: 0; }
.form-success.show { display: flex; }

/* Contact card */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--green-pale);
}

.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.contact-list strong { display: block; font-size: 0.78rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-list a { color: var(--green); font-weight: 500; font-size: 0.95rem; }
.contact-list a:hover { color: var(--green-dark); }
.contact-list span { color: var(--text); font-size: 0.95rem; }

.hours-block {
  border-top: 1px solid var(--green-pale);
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.hours-block h4 { font-size: 0.85rem; color: var(--text-light); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.9rem; }
.hours-list span:first-child { color: var(--text-mid); }
.hours-list span:last-child { font-weight: 600; color: var(--text); }
.hours-note { margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

.delivery-note {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  border-left: 3px solid var(--green);
}
.delivery-note strong { color: var(--green-dark); }

/* ── MAP ────────────────────────────────────────────── */
#location { padding-bottom: 0; }
#location .container { padding-bottom: 3rem; padding-top: 4rem; }
.location-header { text-align: center; margin-bottom: 2rem; }
.location-header h2 { margin-bottom: 0.5rem; }
.location-header p { color: var(--text-mid); }

.map-container {
  height: 420px;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.95);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.footer-brand .nav-logo-text { font-size: 1.4rem; }
.footer-brand .nav-logo-sweet { color: var(--white); }
.footer-brand .nav-logo-drop { color: var(--green-mid); }

.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 280px; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--green); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }

.footer-links-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }

.footer-hours { gap: 0.5rem !important; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.88rem; }
.footer-hours span:first-child { color: rgba(255,255,255,0.5); }
.footer-hours span:last-child { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer-bottom {
  padding: 1.25rem 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  max-width: 1160px;
  margin: 0 auto;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .about-container { gap: 3rem; }
  .order-layout { grid-template-columns: 1fr; }
  .order-aside { max-width: 500px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .form-row { grid-template-columns: 1fr; }

  .banner-inner {
    gap: 0.75rem;
  }
  .banner-inner .separator { display: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .order-form { padding: 1.5rem; }
}

@media (max-width: 380px) {
  .menu-grid { grid-template-columns: 1fr; }
  .drop-shape { width: 130px; height: 122px; }
  .drop-emoji { font-size: 1.3rem; }
}
