/* ============================================
   OWN YOUR ORDER — OUTSTANDING FOOTER
   Color Palette: Green #4CAF50, Orange #FF7043,
   Dark #0f1a0f, Black #1a1a1a, White #FAFAFA
   Font: Bricolage Grotesque + Plus Jakarta Sans
   ============================================ */

:root {
  --green:        #4CAF50;
  --green-light:  #6fcf73;
  --green-dark:   #2e7d32;
  --orange:       #FF7043;
  --orange-light: #ff9a7a;
  --bg-deep:      #0a120a;
  --bg-dark:      #0f1a0f;
  --bg-card:      #162016;
  --bg-card2:     #1a2a1a;
  --text-white:   #f5f5f0;
  --text-muted:   #8aab8a;
  --text-dim:     #5a7a5a;
  --divider:      rgba(76, 175, 80, 0.15);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: #1a2a1a;
}

/* ── PAGE MOCK ── */
.page-mock {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2a1a 0%, #0f1a0f 100%);
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   FOOTER WAVE
══════════════════════════════════════════ */
.footer-wave {
  line-height: 0;
  background: #1a2a1a;
}
.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ══════════════════════════════════════════
   FOOTER BODY
══════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--bg-deep);
  font-family: var(--font-body);
}

.footer-body {
  position: relative;
  overflow: hidden;
  padding: 64px 5% 48px;
  background: var(--bg-dark);
}

/* ── Floating orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  top: -100px; left: -80px;
}
.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,112,67,0.10) 0%, transparent 70%);
  bottom: 0; right: 10%;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(76,175,80,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ══════════════════════════════════════════
   FOOTER GRID
══════════════════════════════════════════ */
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr auto 1fr auto 1fr auto 1.4fr;
  gap: 0;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto 56px;
}

/* ── Vertical dividers ── */
.v-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(76,175,80,0.3) 20%,
    rgba(76,175,80,0.3) 80%,
    transparent 100%
  );
  margin: 0 40px;
}

/* ══════════════════════════════════════════
   COL 1 — BRAND
══════════════════════════════════════════ */
.footer-brand {
  padding-right: 16px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.logo-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(76,175,80,0.08);
  border: 1.5px solid rgba(76,175,80,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-icon:hover {
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(76,175,80,0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-own {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

.logo-order {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-swoosh {
  margin-top: 2px;
}

.brand-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 260px;
}

/* ── Social row ── */
.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76,175,80,0.3);
}

/* ══════════════════════════════════════════
   COLUMN HEADINGS
══════════════════════════════════════════ */
.col-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.heading-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255,112,67,0.6);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   COL 2 — QUICK LINKS
══════════════════════════════════════════ */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 0;
}

.footer-links li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: var(--green);
  margin-right: 0;
  transition: width 0.25s ease, margin-right 0.25s ease;
  vertical-align: middle;
}

.footer-links li a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-links li a:hover::before {
  width: 14px;
  margin-right: 8px;
}

/* ══════════════════════════════════════════
   COL 3 — HOURS
══════════════════════════════════════════ */
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.hours-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
}
.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.time {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.time.closed {
  color: var(--orange);
  font-weight: 500;
}

/* ── App badge ── */
.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--green);
}
.app-badge:hover {
  border-color: var(--green);
  background: rgba(76,175,80,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,0.15);
}
.badge-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-main {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ══════════════════════════════════════════
   COL 4 — CONTACT
══════════════════════════════════════════ */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.25s ease;
}
.contact-item:hover .contact-icon {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(76,175,80,0.3);
}

.contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-link {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.contact-link:hover {
  color: var(--green-light);
}

.get-directions {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.get-directions:hover {
  color: var(--orange-light);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════
   NEWSLETTER STRIP
══════════════════════════════════════════ */
.newsletter-strip {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.newsletter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(76,175,80,0.06) 0%,
    transparent 50%,
    rgba(255,112,67,0.04) 100%
  );
  pointer-events: none;
}

/* Decorative corner accent */
.newsletter-strip::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,112,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.nl-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(255,112,67,0.3));
}

.nl-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.nl-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nl-form {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.nl-input {
  width: 280px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(76,175,80,0.25);
  border-radius: 10px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.25s ease;
}
.nl-input::placeholder { color: var(--text-dim); }
.nl-input:focus {
  border-color: var(--green);
  background: rgba(76,175,80,0.06);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
}

.nl-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.nl-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(76,175,80,0.4);
}
.nl-btn:hover::after { opacity: 1; }
.nl-btn:active { transform: translateY(0); }

/* ══════════════════════════════════════════
   FOOTER BOTTOM BAR
══════════════════════════════════════════ */
.footer-bottom {
  background: var(--bg-deep);
  border-top: 1px solid rgba(76,175,80,0.12);
  padding: 18px 5%;
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bottom-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.bottom-links a:hover { color: var(--green-light); }
.sep {
  color: var(--text-dim);
  font-size: 0.78rem;
}

.powered {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.powered strong {
  color: var(--orange);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .v-divider { display: none; }
  .footer-col { padding: 0; }
}

@media (max-width: 700px) {
  .footer-body { padding: 48px 6% 40px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .newsletter-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .nl-form { flex-direction: column; width: 100%; }
  .nl-input { width: 100%; }
  .nl-btn { width: 100%; text-align: center; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}