/* ==================================================================== */
/* THE APARTMENT BREW CO. — COMPREHENSIVE DESIGN SYSTEM & STYLESHEET    */
/* ==================================================================== */
  
:root {
  --bg: #141312;
  --bg-elevated: #1a1816;
  --card-bg: #1f1d1a;
  --card-inner: #151413;
  --card-border: #332f2b;
  --card-border-glow: rgba(212, 163, 115, 0.3);
  --accent: #d4a373;
  --accent-hover: #b08968;
  --accent-light: rgba(212, 163, 115, 0.15);
  --accent-glow: rgba(212, 163, 115, 0.4);
  --text: #fefae0;
  --text-muted: #9c9589;
  --text-dim: #7d766b;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebc57;
  --success: #2d6a4f;
  --success-light: #95d5b2;
  --error: #e63946;
  --error-light: #ff8fa3;
  --info-blue: #90e0ef;
  --badge-bg: rgba(144, 224, 239, 0.1);
  --gradient-gold: linear-gradient(135deg, #d4a373 0%, #faedcd 50%, #b08968 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, rgba(212, 163, 115, 0.18) 0%, transparent 70%);
}
  
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-tap-highlight-color: transparent;
}
  
body {
  background-color: var(--bg);
  color: var(--text);
  padding: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
  
/* Subtle Animated Ambient Background Orbs */
body::before {
  content: '';
  position: fixed;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 163, 115, 0.09) 0%, rgba(45, 106, 79, 0.04) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: ambientFloat 14s ease-in-out infinite alternate;
}
  
@keyframes ambientFloat {
  0% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateX(-45%) translateY(40px) scale(1.1); opacity: 1; }
  100% { transform: translateX(-55%) translateY(-20px) scale(0.95); opacity: 0.85; }
}
  
.container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
  
/* ==================================================================== */
/* Sticky Top Header & Animated Hamburger Navigation                   */
/* ==================================================================== */
  
.site-header-sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(20, 19, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  z-index: 1000;
  padding: 12px 18px;
  margin-bottom: 12px;
  display: block;
}
  
.header-inner {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
  
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
  
.logo-text {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
  
.logo-sub {
  font-size: 0.64rem;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}
  
.nav-hamburger-btn {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
  
.nav-hamburger-btn:hover {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.12);
  transform: scale(1.04);
}
  
.hamburger-bar {
  width: 18px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
  
.nav-hamburger-btn.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
  
.nav-hamburger-btn.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
  
.nav-hamburger-btn.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
  
/* Navigation Drawer & Backdrop */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
  
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}
  
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #191715;
  border-left: 1px solid var(--card-border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 16px;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.75);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
  
.nav-drawer.open {
  right: 0;
}
  
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
  
.drawer-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
  
.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s ease;
}
  
.drawer-close-btn:hover {
  color: var(--text);
}
  
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
  
.drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #dfd8c8;
  text-decoration: none;
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  transition: all 0.2s ease;
}
  
.drawer-link:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(212, 163, 115, 0.08);
  transform: translateX(4px);
}
  
.drawer-link.active {
  background: rgba(212, 163, 115, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
  
.drawer-footer {
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
  margin-top: 14px;
  text-align: center;
}
  
.drawer-footer-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}
  
/* ==================================================================== */
/* Cards & Core Structure                                              */
/* ==================================================================== */
  
.header-card {
  background: linear-gradient(160deg, #25221e 0%, #1a1816 100%);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.45);
  position: relative;
  overflow: hidden;
}
  
.section-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  position: relative;
}
  
.section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  
.section-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
  
/* ==================================================================== */
/* HERO SECTION: Streamlined Clean Design                               */
/* ==================================================================== */
  
.hero-visual-card {
  background: linear-gradient(175deg, #28241f 0%, #181614 100%);
  border: 1px solid rgba(212, 163, 115, 0.28);
  border-radius: 18px;
  padding: 24px 18px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
  
.hero-visual-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
  
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.35);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
  
.hero-main-title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
  
.hero-gradient-text {
  background-clip: text;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
  
.hero-lead-text {
  font-size: 0.85rem;
  color: #dfd8c8;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto 18px;
}
  
/* Dual Primary CTA Cluster */
.hero-cta-cluster {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
}
  
.btn-hero-primary {
  background: var(--gradient-gold);
  color: #141312;
  font-size: 0.96rem;
  font-weight: 800;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
  
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(212, 163, 115, 0.5);
  filter: brightness(1.05);
}
  
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--card-border);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
  
.btn-hero-secondary:hover {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.08);
  color: var(--accent);
  transform: translateY(-1px);
}
  
/* Value Highlights Grid */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
  
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6px 2px;
}
  
.stat-icon {
  font-size: 1.15rem;
  margin-bottom: 2px;
}
  
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.25;
}

/* ==================================================================== */
/* SENSORY EXTRACTION BOLD REDESIGN STYLES                              */
/* ==================================================================== */
.sensory-legend-bar {
  display: flex;
  justify-content: space-between;
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot.dot-flash {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.legend-dot.dot-cold {
  background: #55504a;
}

.sensory-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 460px) {
  .sensory-grid-cards {
    grid-template-columns: 1fr;
  }
}

.sensory-stat-card {
  background: var(--card-inner);
  border: 1.5px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.sensory-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sensory-stat-card.card-aroma {
  border-color: rgba(246, 145, 179, 0.25);
  background: linear-gradient(170deg, rgba(246, 145, 179, 0.06) 0%, rgba(31, 29, 26, 0.95) 100%);
}
.sensory-stat-card.card-aroma:hover {
  border-color: #f691b3;
  box-shadow: 0 4px 20px rgba(246, 145, 179, 0.15);
}

.sensory-stat-card.card-acidity {
  border-color: rgba(244, 162, 97, 0.25);
  background: linear-gradient(170deg, rgba(244, 162, 97, 0.06) 0%, rgba(31, 29, 26, 0.95) 100%);
}
.sensory-stat-card.card-acidity:hover {
  border-color: #f4a261;
  box-shadow: 0 4px 20px rgba(244, 162, 97, 0.15);
}

.sensory-stat-card.card-sweetness {
  border-color: rgba(212, 163, 115, 0.25);
  background: linear-gradient(170deg, rgba(212, 163, 115, 0.06) 0%, rgba(31, 29, 26, 0.95) 100%);
}
.sensory-stat-card.card-sweetness:hover {
  border-color: #d4a373;
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.15);
}

.sensory-stat-card.card-clarity {
  border-color: rgba(144, 224, 239, 0.25);
  background: linear-gradient(170deg, rgba(144, 224, 239, 0.06) 0%, rgba(31, 29, 26, 0.95) 100%);
}
.sensory-stat-card.card-clarity:hover {
  border-color: #90e0ef;
  box-shadow: 0 4px 20px rgba(144, 224, 239, 0.15);
}

.stat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-icon-badge {
  font-size: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-huge-multiplier {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}

.text-gradient-berry {
  background-clip: text;
  background: linear-gradient(135deg, #ff8fa3 0%, #f691b3 50%, #c97bb7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(246, 145, 179, 0.35));
}

.text-gradient-citrus {
  background-clip: text;
  background: linear-gradient(135deg, #ffd166 0%, #f4a261 60%, #e76f51 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(244, 162, 97, 0.35));
}

.text-gradient-amber {
  background-clip: text;
  background: linear-gradient(135deg, #faedcd 0%, #d4a373 50%, #b08968 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(212, 163, 115, 0.35));
}

.text-gradient-cyan {
  background-clip: text;
  background: linear-gradient(135deg, #caf0f8 0%, #90e0ef 50%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(144, 224, 239, 0.35));
}

.stat-card-label {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 2px;
  line-height: 1.25;
}

.stat-card-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 4px;
}

.stat-mini-bar-track {
  height: 12px;
  background: #141312;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2px;
}

.stat-bar-flash {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 2px;
}

.bg-gradient-berry { background: linear-gradient(90deg, #ff8fa3, #f691b3); box-shadow: 0 0 6px rgba(246, 145, 179, 0.5); }
.bg-gradient-citrus { background: linear-gradient(90deg, #ffd166, #e76f51); box-shadow: 0 0 6px rgba(244, 162, 97, 0.5); }
.bg-gradient-amber { background: linear-gradient(90deg, #faedcd, #d4a373); box-shadow: 0 0 6px rgba(212, 163, 115, 0.5); }
.bg-gradient-cyan { background: linear-gradient(90deg, #caf0f8, #00b4d8); box-shadow: 0 0 6px rgba(144, 224, 239, 0.5); }

.stat-bar-cold {
  height: 3px;
  background: #44403c;
  border-radius: 2px;
}

.stat-comparison-note {
  display: flex;
  justify-content: space-between;
  font-size: 0.64rem;
  margin-top: 2px;
}

.note-flash {
  font-weight: 700;
  color: var(--text);
}

.note-cold {
  color: #7d766b;
}
/* ==================================================================== */
/* 48-HOUR FRESHNESS CURVE & TIMELINE STYLES                           */
/* ==================================================================== */

.freshness-graph-wrapper {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 12px 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.freshness-curve-svg {
  width: 100%;
  height: auto;
  display: block;
}

.timeline-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 460px) {
  .timeline-summary-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-point-card {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tp-time {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
}

.tp-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.tp-desc {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.35;
}
  
/* ==================================================================== */
/* INTERACTIVE CRAFT BREW VISUALIZER (3-STEP EXTRACTION FLOW)           */
/* ==================================================================== */
  
.craft-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
  
.craft-flow-step {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
  
.craft-flow-step:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: rgba(212, 163, 115, 0.04);
}
  
.flow-step-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
  
.flow-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.15);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
}
  
.flow-step-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text);
}
  
.flow-step-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}
  
.flow-step-tag {
  font-size: 0.66rem;
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
  
/* ==================================================================== */
/* ==================================================================== */
/* ==================================================================== */
/* VISUAL ACTIVE HARVESTS CARDS & EXPANDABLE ACCORDION SYSTEM          */
/* ==================================================================== */
.harvest-preview-card {
  background: var(--card-inner);
  border: 1.5px solid var(--card-border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  margin-top: 10px;
  cursor: pointer;
  position: relative;
}

.harvest-preview-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  background: rgba(212, 163, 115, 0.04);
}

.harvest-preview-card.active {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.08);
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.2);
}

.harvest-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.harvest-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.harvest-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.3px;
}

.harvest-origin {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 1px;
}

.harvest-notes {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 4px;
}

.harvest-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.harvest-tag {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(212, 163, 115, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.harvest-tag.tag-ratnagiri {
  background: rgba(231, 111, 81, 0.15);
  border-color: #e76f51;
  color: #e76f51;
}

.harvest-tag.tag-banana {
  background: rgba(42, 157, 143, 0.15);
  border-color: #2a9d8f;
  color: #2a9d8f;
}

.harvest-tag.tag-mix {
  background: rgba(212, 163, 115, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.harvest-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  background: #141312;
  position: relative;
  transition: all 0.2s ease;
}

.harvest-preview-card.active .harvest-radio-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 8px rgba(212, 163, 115, 0.6);
}

.harvest-preview-card.active .harvest-radio-dot::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #141312;
}

/* Accordion Expansion */
.harvest-expanded-content {
  display: none;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  animation: fadeIn 0.3s ease;
}

.harvest-preview-card.active .harvest-expanded-content {
  display: block;
}

/* Mix & Match Split Details */
.mix-split-box {
  background: var(--card-inner);
  border: 1px solid rgba(212, 163, 115, 0.25);
  border-radius: 10px;
  padding: 12px;
}

.mix-split-desc {
  font-size: 0.78rem;
  color: #dfd8c8;
  line-height: 1.4;
}

.mix-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.mix-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
}
  
/* ==================================================================== */
/* VISUAL COMPARISON CARDS                                              */
/* ==================================================================== */
  
.comparison-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
  
.comp-card {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
  
.comp-card.highlighted-comp {
  border: 1.5px solid var(--accent);
  background: rgba(212, 163, 115, 0.06);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.15);
  position: relative;
}
  
.comp-badge-top {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--accent);
  color: #141312;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}
  
.comp-card-header {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
  
.comp-points-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
  
.comp-point-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}
  
.comp-point-item.positive {
  color: #fefae0;
}
  
.comp-point-item.positive span.icon {
  color: var(--success-light);
  font-weight: 800;
}
  
.comp-point-item.negative span.icon {
  color: var(--error-light);
}
  
/* ==================================================================== */
/* COMMUNITY REVIEWS / SOCIAL PROOF                                     */
/* ==================================================================== */
  
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
  
.review-card {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
  
.review-stars {
  color: #f4a261;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
  
.review-quote {
  font-size: 0.8rem;
  color: #dfd8c8;
  line-height: 1.45;
  font-style: italic;
}
  
.review-author {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
  
.review-author strong {
  color: var(--accent);
}
  
/* Live Drop & Scarcity Elements */
.drop-banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  border: 1px solid rgba(212, 163, 115, 0.4);
  color: var(--accent);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 10px;
  font-weight: 700;
}
  
.countdown-timer {
  display: block;
  font-size: 0.76rem;
  color: var(--info-blue);
  margin-top: 6px;
  font-weight: 600;
}
  
.scarcity-bar-container {
  margin-top: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: left;
}
  
.scarcity-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 600;
}
  
.scarcity-progress-track {
  height: 6px;
  background: #2a2724;
  border-radius: 3px;
  overflow: hidden;
}
  
.scarcity-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), #e76f51);
  transform-origin: left;
  will-change: transform;
  transform: scaleX(0);
  border-radius: 3px;
  transition: transform 0.4s ease;
}
  
.geo-badge {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--card-border);
  color: var(--text-muted);
  font-size: 0.74rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 10px;
  line-height: 1.35;
}
  
.craft-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(212, 163, 115, 0.12);
  border: 1px solid rgba(212, 163, 115, 0.35);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-top: 10px;
  text-align: center;
  line-height: 1.35;
}
  
/* ==================================================================== */
/* STREAMLINED ORDERING & SERVICES HUB STYLES                          */
/* ==================================================================== */

.streamlined-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

@media (max-width: 460px) {
  .streamlined-hub-grid {
    grid-template-columns: 1fr;
  }
}

.streamlined-hub-card {
  background: var(--card-inner);
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: all 0.25s ease;
}

.streamlined-hub-card:hover {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.06);
  transform: translateY(-2px);
}

.sh-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sh-icon {
  font-size: 1.1rem;
}

.sh-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text);
}

.sh-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.sh-cta {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.streamlined-sub-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.sub-link-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--card-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.sub-link-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 163, 115, 0.06);
}

/* ==================================================================== */
/* WIZARD, LOTS, PACKS & FORMS STYLES (Retained for other pages)        */
/* ==================================================================== */
  
.wizard-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 10px 6px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 16px;
}
  
.wizard-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 2;
  flex: 1 1 0;
  text-align: center;
}
  
.node-circle {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #2a2724;
  color: var(--text-muted);
  border: 2px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  transition: all 0.3s ease;
}
  
.node-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
  
.wizard-node-line {
  flex: 0.5 1 0;
  min-width: 4px;
  height: 2px;
  background: #2a2724;
  margin: 0 2px 14px;
  transition: background 0.3s ease;
}
  
.wizard-step-node.node-active .node-circle {
  background: var(--accent);
  color: #141312;
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(212, 163, 115, 0.6);
}
  
.wizard-step-node.node-active .node-label {
  color: var(--accent);
  font-weight: 800;
}
  
.wizard-step-node.node-completed .node-circle {
  background: var(--success);
  border-color: var(--success-light);
  color: #ffffff;
}
  
.wizard-step-node.node-completed .node-label {
  color: var(--success-light);
}
  
.wizard-node-line.line-completed {
  background: var(--success);
}
  
.wizard-nav-btns {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
  
.wizard-nav-btns .btn-secondary {
  flex: 1;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
  
.wizard-nav-btns .btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}
  
.wizard-nav-btns .btn-pay {
  flex: 2;
  margin-top: 0;
}
  
/* Coffee Lot Grid & Cards */
.lot-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  width: 100%;
}
  
.lot-card {
  background: var(--card-inner);
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
  
.lot-card:hover {
  border-color: rgba(212, 163, 115, 0.5);
  transform: translateY(-1px);
}
  
.lot-card.active {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.08);
  box-shadow: 0 2px 12px rgba(212, 163, 115, 0.15);
}
  
.lot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
  
.lot-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
  
.lot-tag {
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 12px;
  background: #2a2724;
  color: var(--accent);
  font-weight: 600;
  border: 1px solid var(--card-border);
}
  
.lot-notes {
  font-size: 0.78rem;
  color: #dfd8c8;
  margin-bottom: 6px;
}
  
.flavor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
  
.flavor-pill {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}
  
.sensory-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #262320;
  font-size: 0.68rem;
  color: var(--text-muted);
}
  
.meter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
  
.meter-bar {
  flex: 1;
  height: 4px;
  background: #2a2724;
  border-radius: 2px;
  overflow: hidden;
}
  
.meter-fill {
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  will-change: transform;
  transition: transform 0.3s ease;
}
  
/* Pack Selection Grids */
.pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
}
  
.pack-option {
  background: var(--card-inner);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 10px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}
  
.pack-option:hover {
  border-color: rgba(212, 163, 115, 0.5);
  transform: translateY(-1px);
}
  
.pack-option.active {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.12);
  box-shadow: 0 2px 10px rgba(212, 163, 115, 0.2);
}
  
.pack-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: var(--accent);
  color: #141312;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}
  
.pack-name {
  font-size: 0.82rem;
  font-weight: 700;
}
  
.pack-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  margin: 4px 0 2px;
}
  
.pack-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
}
  
.pack-option.pack-disabled {
  opacity: 0.45;
  cursor: not-allowed !important;
  border-color: #383430 !important;
  background: rgba(255, 255, 255, 0.02) !important;
}
  
.pack-disabled-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  background: #e63946;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
}
  
/* Custom Splitter Card */
.custom-splitter-card {
  background: rgba(212, 163, 115, 0.06);
  border: 1.5px dashed var(--accent);
  border-radius: 12px;
  padding: 14px;
  margin-top: 12px;
  animation: fadeIn 0.3s ease;
  width: 100%;
}
  
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
  
.splitter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 163, 115, 0.2);
}
  
.splitter-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}
  
.splitter-tally {
  font-size: 0.74rem;
  color: var(--text-muted);
}
  
.splitter-tally strong {
  color: var(--text);
}
  
.splitter-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
  
.splitter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 12px;
}
  
.splitter-lot-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
  
.splitter-lot-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
  
.splitter-lot-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}
  
.qty-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #141312;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 2px 4px;
}
  
.stepper-btn {
  background: #2a2724;
  color: var(--text);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  width: 26px;
  height: 26px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
  
.stepper-btn:hover {
  background: var(--accent);
  color: #141312;
  border-color: var(--accent);
}
  
.stepper-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 18px;
  text-align: center;
}
  
.splitter-ratio-bar {
  display: flex;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 12px;
  background: #2a2724;
}
  
.ratio-segment {
  height: 100%;
  transition: width 0.3s ease;
}
  
.ratio-ratnagiri { background: #e76f51; }
.ratio-thogarihunkal { background: #2a9d8f; }
  
/* Pricing & Summary */
.summary-box {
  background: var(--card-inner);
  border: 1px dashed var(--card-border);
  border-radius: 10px;
  padding: 14px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
  
.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px dashed #262320;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
  
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
  
.summary-discount {
  color: var(--success-light);
  font-weight: 700;
}
  
.summary-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
  
.summary-total {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
  
/* Coupon Box */
.coupon-input-group {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
  
.coupon-input-group input {
  flex: 1;
  background: #141312;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
  
.coupon-input-group input:focus {
  border-color: var(--accent);
}
  
.btn-coupon {
  background: var(--accent);
  color: #141312;
  border: none;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
  
.btn-coupon:hover { opacity: 0.9; }
  
.btn-coupon-remove {
  background: rgba(230, 57, 70, 0.15);
  color: var(--error-light);
  border: 1px solid var(--error);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
  
.coupon-status {
  font-size: 0.75rem;
  margin-top: 6px;
  font-weight: 600;
}
  
.coupon-status.coupon-valid { color: var(--success-light); }
.coupon-status.coupon-invalid { color: var(--error-light); }
  
/* Forms & Inputs */
.form-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
  
label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}
  
input, select, textarea {
  background: #141312;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}
  
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
}
  
.input-valid { border-color: var(--success) !important; }
.input-invalid { border-color: var(--error) !important; }
  
.field-error {
  color: var(--error-light);
  font-size: 0.72rem;
  display: none;
  margin-top: 2px;
}
  
.pin-status {
  font-size: 0.75rem;
  margin-top: 3px;
  font-weight: 600;
}
  
.pin-valid { color: var(--success-light); }
.pin-invalid { color: var(--error-light); }
  
/* Action Buttons */
.btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.1s ease;
}
  
.btn:hover { opacity: 0.92; }
.btn:active { transform: scale(0.99); }
  
.btn-pay {
  background: var(--accent);
  color: #141312;
  margin-top: 14px;
}
  
.btn-pay:disabled {
  background: #383430;
  color: #777;
  cursor: not-allowed;
  opacity: 0.7;
}
  
.btn-calendar {
  background: #1a73e8;
  color: #fff;
  margin-top: 10px;
}
  
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  margin-top: 10px;
}
  
.btn-secondary {
  background: #2a2724;
  color: var(--text);
  border: 1px solid var(--card-border);
  margin-top: 10px;
}
  
/* Post-Purchase Confirmation */
#confirmationView {
  display: none;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
  
.success-badge {
  background: rgba(45, 106, 79, 0.25);
  border: 1px solid var(--success);
  color: var(--success-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
}
  
.receipt-details {
  background: var(--card-inner);
  border-radius: 10px;
  border: 1px solid var(--card-border);
  padding: 16px;
  margin: 16px 0;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
  
.receipt-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #262320;
  padding-bottom: 8px;
}
  
.receipt-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
  
.receipt-label { color: var(--text-muted); }
.receipt-val { font-weight: 700; text-align: right; }
  
.freshness-alert {
  background: rgba(144, 224, 239, 0.08);
  border: 1px solid rgba(144, 224, 239, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #caf0f8;
  line-height: 1.4;
  margin: 12px 0;
  text-align: left;
}
  
/* Order Review Card */
.order-review-card {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
  
.review-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px dashed #262320;
  padding-bottom: 6px;
}
  
.review-row strong {
  color: var(--text);
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}
  
.review-total-row {
  border-bottom: none;
  padding-top: 4px;
  font-size: 0.95rem;
  font-weight: 800;
}
  
/* Mode Switches & Tabs */
.mode-tab {
  padding: 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-muted);
  border: none;
  background: transparent;
  transition: all 0.2s ease;
}
  
.mode-tab.active {
  background: var(--card-bg);
  color: var(--accent);
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
  
/* Tracker Input Group */
.tracker-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
  
.tracker-input-group input {
  flex: 1;
  background: #141312;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  outline: none;
  transition: border-color 0.2s ease;
}
  
.tracker-input-group input:focus {
  border-color: var(--accent);
}
  
.btn-track {
  background: var(--accent);
  color: #141312;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
  
.track-status-msg {
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 600;
}
  
.track-status-msg.msg-error {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid var(--error);
  color: var(--error-light);
}
  
.track-status-msg.msg-info {
  background: rgba(144, 224, 239, 0.08);
  border: 1px solid rgba(144, 224, 239, 0.25);
  color: var(--info-blue);
}
  
.track-status-msg.msg-success {
  background: rgba(45, 106, 79, 0.25);
  border: 1px solid var(--success);
  color: var(--success-light);
}
  
/* Stepper Component */
.timeline-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 14px;
}
  
.stepper-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
  
.step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
  
.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2a2724;
  color: var(--text-muted);
  border: 2px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  transition: all 0.3s ease;
}
  
.stepper-line {
  width: 2px;
  height: 24px;
  background: #2a2724;
  margin-left: 15px;
  transition: background-color 0.3s ease;
}
  
.step-info {
  flex: 1;
  padding-top: 4px;
}
  
.step-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
  
.step-desc {
  font-size: 0.72rem;
  color: #7d766b;
  margin-top: 2px;
  line-height: 1.3;
}
  
.stepper-step.step-completed .step-icon {
  background: var(--success);
  border-color: var(--success-light);
  color: #ffffff;
}
  
.stepper-step.step-completed .step-title {
  color: var(--success-light);
}
  
.stepper-line.line-completed {
  background: var(--success);
}
  
.stepper-step.step-active .step-icon {
  background: var(--accent);
  border-color: #ffffff;
  color: #141312;
  box-shadow: 0 0 12px rgba(212, 163, 115, 0.6);
  animation: pulseAmber 1.8s infinite;
}
  
@keyframes pulseAmber {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(212, 163, 115, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 163, 115, 0); }
}
  
.stepper-step.step-active .step-title {
  color: var(--accent);
  font-weight: 800;
}
  
.stepper-step.step-active .step-desc {
  color: #dfd8c8;
}
  
/* Tracker Summary Card */
.tracker-summary-card {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
}
  
.tracker-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #262320;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
  
.tracker-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
  
.tracker-badge.status-preordered { background: rgba(212, 163, 115, 0.15); border: 1px solid var(--accent); color: var(--accent); }
.tracker-badge.status-brewing { background: rgba(144, 224, 239, 0.15); border: 1px solid var(--info-blue); color: var(--info-blue); }
.tracker-badge.status-dispatched { background: rgba(231, 111, 81, 0.15); border: 1px solid #e76f51; color: #e76f51; }
.tracker-badge.status-delivered { background: rgba(45, 106, 79, 0.25); border: 1px solid var(--success); color: var(--success-light); }
  
.tracker-order-id {
  font-family: monospace;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text);
}
  
.tracker-details-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
  
.tracker-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
  
.tracker-detail-row strong {
  color: var(--text);
  text-align: right;
  max-width: 65%;
  word-break: break-word;
}


/* ==================================================================== */
/* PREMIUM ORDER MODE SWITCHER (Segmented Control Tabs)                 */
/* ==================================================================== */
.order-mode-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #151413;
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 16px;
}

.mode-switch-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.mode-switch-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.mode-switch-tab.active {
  background: linear-gradient(160deg, #28241f 0%, #1a1816 100%);
  color: var(--accent);
  border: 1px solid rgba(212, 163, 115, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.mode-tab-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.mode-tab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.25;
}

.mode-tab-text small {
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--text-dim);
}

.mode-switch-tab.active .mode-tab-text small {
  color: var(--text-muted);
}

.order-mode-subtext {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: -6px;
  margin-bottom: 14px;
}

.order-mode-subtext a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.order-mode-subtext a:hover {
  text-decoration: underline;
}
/* ==================================================================== */
/* ORDERS GATEWAY & SENSORY SELECTION COMPONENTS (orders.html)          */
/* ==================================================================== */

.quiz-matcher-card {
  background: linear-gradient(160deg, #24201c 0%, #151413 100%);
  border: 1.5px solid rgba(212, 163, 115, 0.3);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

.quiz-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.quiz-subtitle {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.quiz-pill-btn {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s ease;
  text-align: left;
}

.quiz-pill-btn:hover {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.08);
  transform: translateX(3px);
}

.quiz-pill-btn.active {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.15);
  box-shadow: 0 0 12px rgba(212, 163, 115, 0.25);
}

/* Flavor Swatches & Aroma Rings */
.flavor-swatches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 0;
}

.flavor-swatch {
  border-radius: 8px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}

.flavor-swatch:hover {
  transform: translateY(-2px);
}

.swatch-berry {
  background: linear-gradient(145deg, rgba(230, 57, 70, 0.15) 0%, rgba(31, 29, 26, 0.9) 100%);
  border-color: rgba(230, 57, 70, 0.35);
}

.swatch-stonefruit {
  background: linear-gradient(145deg, rgba(244, 162, 97, 0.15) 0%, rgba(31, 29, 26, 0.9) 100%);
  border-color: rgba(244, 162, 97, 0.35);
}

.swatch-cacao {
  background: linear-gradient(145deg, rgba(212, 163, 115, 0.15) 0%, rgba(31, 29, 26, 0.9) 100%);
  border-color: rgba(212, 163, 115, 0.35);
}

.swatch-blossom {
  background: linear-gradient(145deg, rgba(255, 209, 102, 0.15) 0%, rgba(31, 29, 26, 0.9) 100%);
  border-color: rgba(255, 209, 102, 0.35);
}

.swatch-apple {
  background: linear-gradient(145deg, rgba(149, 213, 178, 0.15) 0%, rgba(31, 29, 26, 0.9) 100%);
  border-color: rgba(149, 213, 178, 0.35);
}

.swatch-jasmine {
  background: linear-gradient(145deg, rgba(144, 224, 239, 0.15) 0%, rgba(31, 29, 26, 0.9) 100%);
  border-color: rgba(144, 224, 239, 0.35);
}

.swatch-icon {
  font-size: 1.15rem;
}

.swatch-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

/* Roast & Fermentation Spectrum Meters */
.spectrum-meter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #141312;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 10px 0;
}

.spectrum-meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spectrum-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
}

.spectrum-header strong {
  color: var(--accent);
}

.spectrum-track {
  height: 6px;
  background: #25221e;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.spectrum-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.fill-roast {
  background: linear-gradient(90deg, #ffd166 0%, #d4a373 50%, #b08968 100%);
}

.fill-ferment-lot1 {
  background: linear-gradient(90deg, #d4a373 0%, #e76f51 60%, #b5179e 100%);
}

.fill-ferment-lot2 {
  background: linear-gradient(90deg, #ffd166 0%, #2a9d8f 60%, #00b4d8 100%);
}

.spectrum-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: #7d766b;
}

/* Mouthfeel & Viscosity Gauge */
.viscosity-meter-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--card-border);
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.viscosity-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.viscosity-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}

.viscosity-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.viscosity-bar {
  width: 90px;
  height: 6px;
  background: #25221e;
  border-radius: 3px;
  overflow: hidden;
}

.viscosity-fill {
  height: 100%;
  border-radius: 3px;
}

.viscosity-lot1 {
  background: linear-gradient(90deg, #d4a373, #e76f51);
  width: 75%;
}

.viscosity-lot2 {
  background: linear-gradient(90deg, #2a9d8f, #00b4d8);
  width: 55%;
}

/* Destination Order Branching Cards */
.destination-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

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

.destination-order-card {
  background: linear-gradient(165deg, #25221e 0%, #171513 100%);
  border: 1.5px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.destination-order-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.destination-order-card.card-personal {
  border-color: rgba(212, 163, 115, 0.35);
}

.destination-order-card.card-personal:hover {
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.2);
}

.destination-order-card.card-corporate {
  border-color: rgba(144, 224, 239, 0.35);
}

.destination-order-card.card-corporate:hover {
  border-color: var(--info-blue);
  box-shadow: 0 8px 24px rgba(144, 224, 239, 0.2);
}

.dest-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dest-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.dest-card-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

.badge-personal {
  background: rgba(212, 163, 115, 0.18);
  color: var(--accent);
  border: 1px solid rgba(212, 163, 115, 0.4);
}

.badge-corporate {
  background: rgba(144, 224, 239, 0.18);
  color: var(--info-blue);
  border: 1px solid rgba(144, 224, 239, 0.4);
}

.dest-card-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.dest-card-cta {
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.cta-personal {
  background: var(--gradient-gold);
  color: #141312;
}

.cta-corporate {
  background: rgba(144, 224, 239, 0.15);
  color: var(--info-blue);
  border: 1px solid var(--info-blue);
}

.cta-corporate:hover {
  background: var(--info-blue);
  color: #141312;
}

/* ==================================================================== */
/* SENSORY MENU & COMPARISON HUB DESIGN SYSTEM */
/* ==================================================================== */

.quiz-container {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz-question-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.quiz-option-btn {
  background: #191715;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 10px;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quiz-option-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(212, 163, 115, 0.08);
}

.quiz-option-btn.active {
  border-color: var(--accent);
  background: rgba(212, 163, 115, 0.15);
  color: var(--text);
  box-shadow: 0 0 12px rgba(212, 163, 115, 0.25);
}

.quiz-result-box {
  border-radius: 10px;
  padding: 14px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.quiz-result-box.result-ratnagiri {
  background: linear-gradient(135deg, rgba(231, 111, 81, 0.15) 0%, rgba(212, 163, 115, 0.08) 100%);
  border: 1.5px solid #e76f51;
  box-shadow: 0 0 20px rgba(231, 111, 81, 0.2);
}

.quiz-result-box.result-banana {
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.15) 0%, rgba(0, 180, 216, 0.08) 100%);
  border: 1.5px solid #2a9d8f;
  box-shadow: 0 0 20px rgba(42, 157, 143, 0.2);
}

.quiz-result-box.result-mix {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.18) 0%, rgba(164, 121, 226, 0.1) 100%);
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.25);
}

.spectrum-comparison-card {
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spectrum-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spectrum-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
}

.spectrum-double-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bar-track-single {
  height: 10px;
  background: #23201d;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.bar-fill-lot1 {
  height: 100%;
  background: linear-gradient(90deg, #e76f51 0%, #f4a261 100%);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(231, 111, 81, 0.5);
  transition: width 0.5s ease;
}

.bar-fill-lot2 {
  height: 100%;
  background: linear-gradient(90deg, #2a9d8f 0%, #00b4d8 100%);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(42, 157, 143, 0.5);
  transition: width 0.5s ease;
}

.spectrum-metric-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.pairing-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pairing-card {
  background: var(--card-inner);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pairing-card.card-ratnagiri {
  border: 1px solid rgba(231, 111, 81, 0.35);
  background: linear-gradient(165deg, rgba(231, 111, 81, 0.06) 0%, #151413 100%);
}

.pairing-card.card-banana {
  border: 1px solid rgba(42, 157, 143, 0.35);
  background: linear-gradient(165deg, rgba(42, 157, 143, 0.06) 0%, #151413 100%);
}

.pairing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pairing-badge-lot1 {
  background: rgba(231, 111, 81, 0.2);
  color: #e76f51;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(231, 111, 81, 0.4);
}

.pairing-badge-lot2 {
  background: rgba(42, 157, 143, 0.2);
  color: #2a9d8f;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(42, 157, 143, 0.4);
}

.pairing-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.pairing-list-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.pairing-list-item strong {
  color: var(--text);
}
