/* =============================================
   BRANCH'S — ORDER PAGE
   ============================================= */

/* ---- HERO ---- */
.order-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.order-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.order-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,0,0.95) 0%, rgba(44,26,0,0.5) 55%, rgba(44,26,0,0.15) 100%);
  z-index: 1;
}

.order-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw 56px;
}

.order-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #C8860A;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.order-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(44px, 7vw, 72px);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 12px;
}

.order-hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(44,26,0,0.6);
  text-transform: uppercase;
  margin: 0;
}

/* ---- STATUS BAR ---- */
.order-status-bar {
  background: #3D2400;
  border-bottom: 1px solid rgba(200,134,10,0.15);
  padding: 12px 6vw;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  flex-wrap: wrap;
}

.order-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #aaa;
  flex-shrink: 0;
}

.order-status-dot.is-open {
  background: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46,204,113,0.2);
  animation: pulseDot 2s infinite;
}

.order-status-dot.is-closed {
  background: #e74c3c;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46,204,113,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(46,204,113,0.08); }
}

.order-status-sep {
  color: rgba(44,26,0,0.25);
}

.order-status-bar a {
  color: #C8860A;
  text-decoration: none;
}

.order-status-bar a:hover {
  text-decoration: underline;
}

/* ---- ORDER OPTIONS ---- */
.order-options {
  background: #2C1A00;
  padding: 90px 6vw;
}

.order-options-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #C8860A;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.15;
}

.order-options-intro {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: rgba(44,26,0,0.6);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.order-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.order-card {
  background: #3D2400;
  border: 1px solid rgba(200,134,10,0.12);
  border-radius: 3px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.order-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.order-card:hover {
  border-color: rgba(200,134,10,0.35);
  transform: translateY(-4px);
}

.order-card-featured {
  border-color: rgba(200,134,10,0.4);
  background: linear-gradient(160deg, #1e2d40 0%, #3D2400 100%);
}

.order-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #C8860A;
  color: #2C1A00;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.order-card-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 14px;
}

.order-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.order-card p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(44,26,0,0.6);
  line-height: 1.65;
  margin: 0 0 20px;
}

.order-card-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.order-card-perks li {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(44,26,0,0.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(200,134,10,0.08);
}

.order-card-perks li:last-child {
  border-bottom: none;
}

.order-btn-primary {
  display: block;
  padding: 14px 24px;
  background: #C8860A;
  color: #2C1A00;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-bottom: 10px;
}

.order-btn-primary:hover {
  background: #f5d76e;
  transform: translateY(-2px);
}

.order-btn-secondary {
  display: block;
  padding: 13px 24px;
  background: transparent;
  border: 1px solid rgba(200,134,10,0.5);
  color: #C8860A;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 10px;
}

.order-btn-secondary:hover {
  background: #C8860A;
  color: #2C1A00;
}

.order-card-note {
  font-family: 'Lato', sans-serif;
  font-size: 11px !important;
  color: rgba(44,26,0,0.35) !important;
  margin: 0 !important;
  font-style: italic;
}

/* ---- MENU PREVIEW ---- */
.order-menu-preview {
  background: #3D2400;
  padding: 90px 6vw;
}

.order-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.order-menu-intro {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: rgba(44,26,0,0.6);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.order-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.order-menu-card {
  background: #2C1A00;
  border: 1px solid rgba(200,134,10,0.1);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.order-menu-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.order-menu-card:hover {
  border-color: rgba(200,134,10,0.35);
  transform: translateY(-3px);
}

.order-menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.order-menu-card:hover img {
  filter: brightness(1);
}

.order-menu-card-body {
  padding: 18px 18px 20px;
}

.order-menu-tag {
  display: inline-block;
  background: rgba(200,134,10,0.12);
  border: 1px solid rgba(200,134,10,0.25);
  color: #C8860A;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.order-menu-card-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.order-menu-card-body p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(44,26,0,0.55);
  line-height: 1.6;
  margin: 0;
}

.order-menu-cta {
  text-align: center;
}

/* ---- ORDER INFO ---- */
.order-info-section {
  background: #2C1A00;
  padding: 72px 6vw;
}

.order-info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.order-info-card {
  background: #3D2400;
  border: 1px solid rgba(200,134,10,0.12);
  border-radius: 3px;
  padding: 28px 22px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}

.order-info-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.order-info-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.order-info-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C8860A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.order-info-card p {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin: 0;
}

.order-info-link {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #C8860A;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,134,10,0.35);
  padding-bottom: 1px;
}

.order-info-link:hover {
  border-color: #C8860A;
}

/* ---- CTA STRIP ---- */
.order-cta-strip {
  background: linear-gradient(135deg, #3D2400 0%, #0e1620 100%);
  border-top: 1px solid rgba(200,134,10,0.2);
  padding: 80px 6vw;
  text-align: center;
}

.order-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.order-cta-strip h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(28px, 4.5vw, 44px);
  color: #fff;
  margin: 0 0 12px;
}

.order-cta-strip p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: rgba(44,26,0,0.6);
  margin: 0 0 32px;
}

.order-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-block;
  padding: 14px 28px;
  background: #C8860A;
  color: #2C1A00;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-gold:hover {
  background: #f5d76e;
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-block;
  padding: 13px 28px;
  background: transparent;
  border: 1px solid #C8860A;
  color: #C8860A;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-gold:hover {
  background: #C8860A;
  color: #2C1A00;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .order-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .order-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .order-menu-grid {
    grid-template-columns: 1fr;
  }

  .order-info-grid {
    grid-template-columns: 1fr;
  }

  .order-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* Option 1 overrides */
.order-page { background: #FFF8EE !important; }
.order-hero { background: linear-gradient(135deg, rgba(44,26,0,0.85), rgba(61,36,0,0.75)), url('../images/brownie-sundae.jpg') center/cover !important; }
.order-methods { background: #FFF0D6 !important; }
.order-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }
.order-card:hover { border-color: #C8860A !important; }
.order-card.featured { background: #2C1A00 !important; border-color: #C8860A !important; }
.order-card h3 { color: #2C1A00 !important; }
.order-card.featured h3 { color: #ffffff !important; }
.order-card p { color: #6B4200 !important; }
.order-card.featured p { color: rgba(255,255,255,0.8) !important; }
.menu-preview { background: #FFF8EE !important; }
.preview-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }
.preview-card:hover { border-color: #C8860A !important; }
.preview-card h4 { color: #2C1A00 !important; }
.preview-card p { color: #6B4200 !important; }
.info-section { background: #FFF0D6 !important; }
.info-card { background: #ffffff !important; border: 1px solid #F0D9A8 !important; }

/* Order page contrast fixes */
.order-hero-title, .order-hero-subtitle { color: #ffffff!important; }
.order-method-card h3 { color: #2C1A00!important; font-weight: 700; }
.order-method-card p { color: #2C1A00!important; }
.order-method-card .method-icon { color: #C8860A!important; }
.order-method-card.featured h3 { color: #ffffff!important; }
.order-method-card.featured p { color: #e8d5b0!important; }
.menu-preview-item h3 { color: #2C1A00!important; }
.menu-preview-item p { color: #2C1A00!important; }
.order-info-card h3 { color: #2C1A00!important; font-weight: 700; }
.order-info-card p { color: #2C1A00!important; }
.order-info-icon { color: #C8860A!important; }
.live-status-bar { color: #ffffff!important; }

.order-method-card.featured h3 { color: #ffffff!important; }
.order-method-card.featured p { color: #e8d5b0!important; }
.order-info-icon { color: #C8860A!important; }
.live-status-bar { color: #ffffff!important; }


/* ============================================================
   ORDER PAGE — DEFINITIVE CONTRAST FIX
   ============================================================ */

/* Live status bar — dark bg */
.live-status-bar { background: #2C1A00 !important; }
.live-status-bar p { color: rgba(255,255,255,0.85) !important; }
.status-dot.open { background: #4CAF50 !important; }
.status-dot.closed { background: #ff6b6b !important; }
.status-text.open { color: #4CAF50 !important; }
.status-text.closed { color: #ff6b6b !important; }

/* Order methods — light bg */
.order-methods { background: #FFF8EE !important; }
.order-methods .section-eyebrow { color: #C8860A !important; }
.order-methods h2 { color: #2C1A00 !important; }
.order-methods .section-desc { color: #5A3800 !important; }
.method-card { background: #ffffff !important; border-color: #F0D9A8 !important; }
.method-card .method-icon { color: #C8860A !important; }
.method-card h3 { color: #2C1A00 !important; }
.method-card p { color: #5A3800 !important; }
/* Featured method card — dark bg */
.method-card.featured { background: #2C1A00 !important; border-color: #C8860A !important; }
.method-card.featured .method-icon { color: #C8860A !important; }
.method-card.featured h3 { color: #C8860A !important; }
.method-card.featured p { color: rgba(255,255,255,0.82) !important; }
.method-card.featured .recommended-badge { background: #C8860A !important; color: #ffffff !important; }

/* Menu preview — dark bg */
.order-menu-preview { background: #2C1A00 !important; }
.order-menu-preview .section-eyebrow { color: #C8860A !important; }
.order-menu-preview h2 { color: #ffffff !important; }
.order-menu-preview .section-desc { color: rgba(255,255,255,0.82) !important; }
.preview-card { background: rgba(255,255,255,0.07) !important; border-color: rgba(200,134,10,0.25) !important; }
.preview-card h4 { color: #ffffff !important; }
.preview-card p { color: rgba(255,255,255,0.82) !important; }
.preview-card .preview-price { color: #C8860A !important; }

/* Order info — light bg */
.order-info { background: #FFF0D6 !important; }
.order-info .section-eyebrow { color: #C8860A !important; }
.order-info h2 { color: #2C1A00 !important; }
.info-card { background: #ffffff !important; border-color: #F0D9A8 !important; }
.info-card .info-icon { color: #C8860A !important; }
.info-card h4 { color: #2C1A00 !important; }
.info-card p, .info-card li { color: #5A3800 !important; }

/* Order CTA — dark bg */
.order-cta { background: #2C1A00 !important; }
.order-cta .section-eyebrow { color: #C8860A !important; }
.order-cta h2 { color: #ffffff !important; }
.order-cta p { color: rgba(255,255,255,0.82) !important; }

/* ===== WHITE TEXT OVERRIDES FOR DARK SECTIONS ===== */
.order-hero-sub { color: rgba(255,255,255,0.7) !important; }
.order-methods .section-eyebrow { color: #C8860A !important; }
.order-methods .section-title { color: #fff !important; }
.order-methods .section-desc { color: rgba(255,255,255,0.7) !important; }
.method-card .method-title { color: #fff !important; }
.method-card .method-desc { color: rgba(255,255,255,0.72) !important; }
.method-card .method-step { color: rgba(255,255,255,0.6) !important; }
.menu-preview .section-eyebrow { color: #C8860A !important; }
.menu-preview .section-title { color: #fff !important; }
.menu-preview .section-desc { color: rgba(255,255,255,0.7) !important; }
.order-info .section-eyebrow { color: #C8860A !important; }
.order-info .section-title { color: #fff !important; }
.oinfo-label { color: rgba(255,255,255,0.55) !important; }
.oinfo-value { color: #fff !important; }

