:root {
  --maroon: #7A1220;
  --maroon-deep: #4A0D14;
  --gold: #C89B3C;
  --gold-soft: #E7D4A6;
  --cream: #FBF5E9;
  --paper: #FFFDF8;
  --ink: #2B1B12;
  --ink-soft: #6E5B4E;
  --line: #E7DCC8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
}

h1, h2 { font-family: 'Fraunces', Georgia, serif; color: var(--maroon-deep); }

/* Header */
.site-header {
  background: rgba(251,245,233,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 10px 32px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 19px;
  color: var(--maroon-deep);
  display: flex; flex-direction: column; line-height: 1.1;
}
.brand-name em {
  font-style: normal; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.header-nav { display: flex; gap: 28px; font-weight: 600; font-size: 14px; }
.header-nav a { color: var(--ink); text-decoration: none; }
.header-nav a:hover { color: var(--maroon); }

.cart-btn {
  background: var(--maroon);
  color: white;
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.15s ease;
}
.cart-btn:hover { transform: translateY(-1px); }

.header-right { display: flex; align-items: center; gap: 12px; }
.mobile-nav-toggle {
  display: none;
  background: none; border: 1.5px solid var(--line); border-radius: 10px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  color: var(--maroon-deep); cursor: pointer; flex-shrink: 0;
}
.mobile-nav-toggle:hover { border-color: var(--gold); }
#cartCount {
  background: var(--gold);
  color: var(--maroon-deep);
  min-width: 20px; height: 20px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; padding: 0 4px;
}

/* i added this */
.promo-banner {
  background: var(--maroon-deep);
  color: var(--gold-soft);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 16px;
}
.promo-banner strong { color: var(--gold); letter-spacing: 0.03em; }

.hero-features {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.feature-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--maroon-deep);
}


/* Hero */
.hero {
  position: relative;
  height: 400px;
  padding: 90px 24px 24px;
  overflow: hidden;
  text-align: left;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  z-index: -1;
}

.cloud { animation: drift-cloud linear infinite; }
.cloud-1 { animation-duration: 38s; }
.cloud-2 { animation-duration: 52s; animation-delay: -10s; }
.cloud-3 { animation-duration: 30s; animation-delay: -18s; }
@keyframes drift-cloud {
  0%   { transform: translateX(-80px); }
  100% { transform: translateX(1280px); }
}

.bike { animation: ride linear infinite; }
.bike-1 { animation-duration: 14s; }
.bike-2 { animation-duration: 19s; animation-delay: -7s; }
@keyframes ride {
  0%   { transform: translateX(-30px); }
  100% { transform: translateX(1230px); }
}

.hero-inner {
  max-width: 720px;
  margin: 0;
}
.eyebrow {
  font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); font-weight: 800; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  transition: opacity 0.25s ease;
  max-width: 380px;
  margin-bottom: 0;
}
.hero h1 em { font-style: italic; color: var(--maroon); font-weight: 600; }
.hero-sub {
  margin: 22px auto 34px; max-width: 480px;
  color: var(--ink-soft); font-size: 17px; line-height: 1.6;
}
.btn-primary {
  display: inline-block;
  background: var(--maroon);
  color: white;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 14px 30px -10px rgba(74,13,20,0.35);
  transition: transform 0.15s ease;
}
.btn-primary:hover { transform: translateY(-2px); }

/* Menu section */
main { max-width: 1100px; margin: 0 auto; padding: 60px 24px 40px; }
.menu-head { text-align: center; margin-bottom: 36px; }
.section-eyebrow {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 800; margin-bottom: 8px;
}
.menu-head h2 { font-size: clamp(26px, 4vw, 34px); }

.menu-search {
  display: flex; align-items: center; gap: 10px;
  max-width: 420px; margin: 0 auto 20px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px;
}
.menu-search-icon { font-size: 14px; opacity: 0.6; }
.menu-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 14px; color: inherit;
}
.menu-search input::placeholder { color: var(--ink-soft); }

.category-tabs {
  display: flex; gap: 10px; overflow-x: auto;
  margin-bottom: 32px; padding-bottom: 10px;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.tab {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.tab.active { background: var(--maroon); color: white; border-color: var(--maroon); }
.tab:hover:not(.active) { border-color: var(--gold); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.menu-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(74,13,20,0.25);
}
.menu-card-media { position: relative; height: 170px; overflow: hidden; }
.menu-card-img {
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
}
.menu-card-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--paper);
  transition: transform 0.3s ease;
}
.menu-card:hover .menu-card-photo { transform: scale(1.05); }

.discount-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 11px; font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.menu-card-body { padding: 18px; }
.menu-card h4 { font-family: 'Fraunces', serif; color: var(--maroon-deep); font-size: 18px; margin-bottom: 6px; }
.menu-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 16px; }

.menu-card-foot { display: flex; justify-content: space-between; align-items: center; }
.price-group { display: flex; align-items: baseline; gap: 8px; }
.price { font-weight: 800; color: var(--maroon); font-size: 15px; }
.price-original { font-size: 12.5px; color: var(--ink-soft); text-decoration: line-through; }

.add-btn {
  background: transparent;
  color: var(--maroon-deep);
  border: 2px solid var(--maroon-deep);
  padding: 8px 17px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.add-btn:hover { background: var(--maroon-deep); color: white; }

.loading { color: var(--ink-soft); grid-column: 1/-1; text-align: center; padding: 40px; }

/* Footer */
footer { background: var(--maroon-deep); color: var(--gold-soft); padding: 44px 24px 28px; margin-top: 60px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-title { font-family: 'Fraunces', serif; color: white; font-size: 18px; }
.footer-tag { font-size: 12.5px; margin-top: 2px; }
.footer-contact p { font-size: 13.5px; margin-bottom: 6px; }
.footer-contact a { color: white; }

/* Footer: app badges + social icons */
.footer-bottom-row {
  max-width: 1100px; margin: 30px auto 0; padding-top: 26px;
  border-top: 1px solid rgba(231,212,166,0.25);
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: space-between; align-items: center;
}
.footer-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.app-badge-img { height: 40px; width: auto; display: block; transition: transform 0.15s ease; }
.footer-badges a:hover .app-badge-img { transform: translateY(-1px); }

.footer-social { display: flex; align-items: center; gap: 14px; }
.social-icon-img { height: 32px; width: auto; display: block; transition: transform 0.15s ease; }
.footer-social a:hover .social-icon-img { transform: translateY(-1px); }

@media (max-width: 1024px) {
  .header-inner { flex-wrap: wrap; }
  .mobile-nav-toggle { display: flex; }

  .header-nav {
    display: none;
    order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--maroon-deep); border-radius: 14px;
    margin-top: 14px; padding: 8px;
    max-height: 70vh; overflow-y: auto;
  }
  .header-nav.mobile-open { display: flex; }
  .header-nav > a {
    color: var(--gold-soft); padding: 14px 12px;
    border-bottom: 1px solid rgba(251,245,233,0.14);
  }
  .header-nav > a:hover { color: white; }
  .header-nav > .dropdown:last-child > .dropdown-toggle { border-bottom: 1px solid rgba(251,245,233,0.14); }

  .header-nav .dropdown-toggle {
    width: 100%; color: var(--gold-soft);
    padding: 14px 12px; border-bottom: 1px solid rgba(251,245,233,0.14);
    justify-content: space-between;
  }
  .header-nav .dropdown-toggle:hover { color: white; }

  .header-nav .dropdown-menu {
    position: static; transform: none;
    display: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: rgba(43,27,18,0.35); box-shadow: none; border: none;
    border-radius: 0; min-width: 0; padding: 4px 4px 4px 20px;
  }
  .header-nav .dropdown-menu.open { display: flex; flex-direction: column; }
  .header-nav .dropdown-item { color: var(--gold-soft); }
  .header-nav .dropdown-item:hover { background: rgba(251,245,233,0.08); color: white; }
  .header-nav .dropdown-item-primary { background: var(--gold); color: var(--maroon-deep) !important; }
  .header-nav .dropdown-item-primary:hover { background: var(--gold); color: var(--maroon-deep) !important; }
}

@media (max-width: 600px) {
  .site-header { padding: 8px 16px; }
  .brand-logo { height: 34px; }
  .brand-name { font-size: 15px; }
  .brand-name em { font-size: 8px; }
  .header-right { gap: 8px; }
  .cart-btn { padding: 8px 12px; font-size: 12.5px; gap: 5px; }
  .cart-label { display: none; }
  .mobile-nav-toggle { width: 34px; height: 34px; }
  .mobile-nav-toggle svg { width: 18px; height: 18px; }
}




.header-nav { position: relative; align-items: center; }

.dropdown { position: relative; }

.dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none;
  font-family: inherit; font-weight: 600; font-size: 14px;
  color: var(--ink); cursor: pointer;
  padding: 6px 2px;
}
.dropdown-toggle:hover { color: var(--maroon); }
.dropdown-toggle .chev { transition: transform 0.15s ease; }
.dropdown-toggle.open .chev { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 36px -14px rgba(74,13,20,0.25);
  min-width: 190px;
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: all 0.15s ease;
  z-index: 30;
}
.dropdown-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none; border: none;
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}
.dropdown-item:hover { background: var(--cream); color: var(--maroon); }
.dropdown-item-primary {
  background: var(--maroon);
  color: white !important;
  margin-bottom: 4px;
}
.dropdown-item-primary:hover { background: var(--maroon-deep); color: white !important; }



.login-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.login-link:hover { color: var(--maroon); }


.login-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -46%);
  width: min(420px, 92vw);
  max-height: 88vh; overflow-y: auto;
  background: var(--paper);
  border-radius: 20px;
  padding: 36px 30px 28px;
  box-shadow: 0 30px 60px -20px rgba(43,27,18,0.45);
  z-index: 71;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.login-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }

.login-modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; font-size: 26px; color: var(--ink-soft); cursor: pointer;
}
.login-modal h3 { font-size: 26px; text-align: center; margin-bottom: 8px; }
.login-modal-sub { text-align: center; color: var(--ink-soft); font-size: 14px; margin-bottom: 26px; }

.phone-row { display: flex; gap: 10px; margin-bottom: 16px; }
.prefix-select, .phone-input {
  font-family: inherit; font-size: 14.5px;
  padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
}
.prefix-select { flex: 0 0 100px; }
.phone-input { flex: 1; }

.login-legal { font-size: 11.5px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 20px; }
.login-legal a { color: var(--maroon); text-decoration: underline; }
.login-legal-bottom { margin-top: 18px; margin-bottom: 0; }

.otp-row { display: flex; gap: 12px; margin-bottom: 22px; }
.otp-btn {
  flex: 1; padding: 13px; border-radius: 999px;
  font-family: inherit; font-weight: 700; font-size: 14px; cursor: pointer;
  border: 2px solid var(--line); background: var(--paper); color: var(--ink);
}
.otp-btn-primary { background: var(--maroon); border-color: var(--maroon); color: white; }

.or-divider { text-align: center; position: relative; margin-bottom: 20px; color: var(--ink-soft); font-size: 13px; }
.or-divider::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  border-top: 1px solid var(--line); z-index: 0;
}
.or-divider span { background: var(--paper); padding: 0 12px; position: relative; z-index: 1; }

.oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px; margin-bottom: 12px;
  border-radius: 999px; border: 2px solid var(--line); background: var(--paper);
  font-family: inherit; font-weight: 700; font-size: 14px; color: var(--ink); cursor: pointer;
}
.oauth-btn:hover { border-color: var(--gold); }


.cart-overlay, .modal-overlay {
  position: fixed; inset: 0; background: rgba(43,27,18,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 60;
}
.cart-overlay.open, .modal-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 100%);
  background: var(--cream); z-index: 61; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-inner { display: flex; flex-direction: column; height: 100%; padding: 24px; }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.icon-btn { background: none; border: none; font-size: 26px; color: var(--ink-soft); cursor: pointer; }

.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.cart-item-name { font-weight: 700; color: var(--maroon-deep); font-size: 14px; }
.cart-item-meta { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.cart-item-remove { background: none; border: none; color: var(--ink-soft); font-size: 11px; text-decoration: underline; cursor: pointer; margin-top: 6px; padding: 0; }
.cart-item-price { font-weight: 700; white-space: nowrap; }
.cart-empty { color: var(--ink-soft); text-align: center; margin-top: 40px; display: none; }

.cart-totals { border-top: 2px dashed var(--gold-soft); margin-top: 14px; padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.totals-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); }
.totals-row-total { font-size: 17px; font-weight: 800; color: var(--maroon-deep); margin-top: 4px; }
.btn-block { width: 100%; border: none; margin-top: 16px; cursor: pointer; }
.btn-block:disabled { opacity: 0.6; cursor: not-allowed; }

.checkout-modal {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -46%);
  width: min(440px, 92vw); max-height: 88vh; overflow-y: auto;
  background: var(--paper); border-radius: 20px; padding: 32px 28px 26px;
  box-shadow: 0 30px 60px -20px rgba(43,27,18,0.45);
  z-index: 71; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.checkout-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.checkout-modal h3 { margin-bottom: 18px; }

.promo-popup {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -46%);
  max-width: min(420px, 92vw); max-height: 88vh;
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(43,27,18,0.45);
  z-index: 71; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  line-height: 0;
}
.promo-popup.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.promo-popup-img {
  display: block; width: auto; height: auto;
  max-width: min(420px, 92vw); max-height: 88vh;
  border-radius: 20px;
}
.promo-popup-close {
  position: absolute; top: auto; bottom: -14px; right: -14px; z-index: 1;
  background: var(--paper); color: var(--ink); border-radius: 10px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  box-shadow: 0 6px 16px -4px rgba(43,27,18,0.5);
}
.promo-popup-close:hover { background: var(--cream); }

#checkoutForm { display: flex; flex-direction: column; gap: 14px; }
#checkoutForm label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--maroon-deep); }
.opt { font-weight: 400; color: var(--ink-soft); font-size: 11.5px; }
#checkoutForm input, #checkoutForm select, #checkoutForm textarea {
  font-family: inherit; font-size: 14.5px; padding: 11px 13px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-totals { border-top: 2px dashed var(--gold-soft); border-bottom: 2px dashed var(--gold-soft); padding: 12px 0; margin: 4px 0; display: flex; flex-direction: column; gap: 6px; }

.confirm-modal { text-align: center; }
.confirm-check {
  width: 56px; height: 56px; border-radius: 50%; background: #5C7A4A; color: white;
  font-size: 28px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.confirm-order-no { font-weight: 700; color: var(--maroon); margin: 6px 0 16px; }
.confirm-summary { text-align: left; background: var(--cream); border-radius: 10px; padding: 14px; font-size: 13.5px; margin-bottom: 8px; display: flex; flex-direction: column; gap: 5px; }

@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }



.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--maroon-deep);
  color: var(--gold-soft);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 16px 36px -12px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 100;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.email-auth-form { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.email-auth-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--maroon-deep); }
.email-auth-form input {
  font-family: inherit; font-size: 14.5px; padding: 11px 13px; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
}
.auth-toggle { text-align: center; font-size: 13px; color: var(--ink-soft); }
.auth-toggle a { color: var(--maroon); font-weight: 700; text-decoration: none; margin-left: 4px; }

.user-menu-name { font-weight: 700; color: var(--maroon-deep); padding: 10px 12px; font-size: 13.5px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }


.trust-strip {
  max-width: 1100px; margin: 0 auto; padding: 20px 24px 50px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-item strong { color: var(--maroon-deep); font-size: 14.5px; display: block; margin-bottom: 3px; }
.trust-item p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }

.testimonials { background: var(--paper); padding: 60px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonials h2 { font-size: clamp(24px, 4vw, 32px); margin-bottom: 34px; }
.testimonial-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.quote { font-size: 14px; color: var(--ink); line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.reviewer { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; }

.delivery-search {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  display: flex; flex-wrap: wrap; gap: 10px; max-width: 620px; margin: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 10px; box-shadow: 0 16px 36px -18px rgba(74,13,20,0.25);
}
.delivery-search-field {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-right: 1px solid var(--line);
}
.pin-icon { font-size: 16px; }
#heroAddressInput { border: none; outline: none; font-family: inherit; font-size: 14px; width: 100%; background: transparent; color: var(--ink); }

.delivery-time-dropdown { position: relative; }
.time-toggle {
  background: none; border: none; font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); padding: 10px 12px; cursor: pointer; white-space: nowrap;
}
.time-menu {
  position: absolute; top: calc(100% + 8px); left: 0; background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 16px 30px -14px rgba(0,0,0,0.2);
  min-width: 190px; padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.15s ease; z-index: 20;
}
.time-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.time-option {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 10px 12px; border-radius: 8px; font-family: inherit; font-size: 13.5px; cursor: pointer; color: var(--ink);
}
.time-option:hover { background: var(--cream); }

.search-order-btn {
  background: var(--maroon); color: white; border: none; padding: 12px 24px;
  border-radius: 12px; font-weight: 700; font-size: 14px; cursor: pointer; white-space: nowrap;
}
.search-order-btn:hover { background: var(--maroon-deep); }

@media (max-width: 560px) {
  .delivery-search { flex-direction: column; }
  .delivery-search-field { border-right: none; border-bottom: 1px solid var(--line); }
}