/* =========================================
   TRAZE COFFEE — CRED-INSPIRED CSS
   Hero Video + All Coded Sections
   ========================================= */

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-red: #b83225;
  --deep-charcoal: #281e1d;
  --warm-cream: #e4dcc8;
  --accent-teal: #207a7e;
  --burnt-orange: #c47134;
  --pure-white: #ffffff;
  --off-white: #fafafa;
  --text-light: rgba(40, 30, 29, 0.7);
  --text-muted: rgba(40, 30, 29, 0.5);
  --light-gray: #f5f5f5;
  --medium-gray: #999;
  --dark-red: #a02a1f;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 12px rgba(40, 30, 29, 0.08);
  --shadow-medium: 0 8px 24px rgba(40, 30, 29, 0.12);
  --shadow-strong: 0 16px 48px rgba(40, 30, 29, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--deep-charcoal);
  background: var(--pure-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(40,30,29,0.06);
  z-index: 1000;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: var(--transition);
}

.nav-brand:hover {
  transform: translateY(-1px);
}

.nav-logo {
  width: 197px;
  height: 197px;
  background-image: url('assets/Logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
/*
.logo-animated {
  animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
  0%,100% { transform: scale(1.2);}
  50% { transform: scale(1.4);}
}
*/
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-charcoal);
  letter-spacing: -0.5px;
  line-height: 1;
}

.nav-brand-tagline {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-charcoal);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--accent-teal);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-teal);
}

.nav-link:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--pure-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #a02a1f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--accent-teal);
  color: var(--pure-white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: #1a6569;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.btn-outline:hover {
  background: var(--pure-white);
  color: var(--deep-charcoal);
}

.btn-outline-dark {
  background: transparent;
  color: var(--deep-charcoal);
  border: 2px solid var(--deep-charcoal);
}

.btn-outline-dark:hover {
  background: var(--deep-charcoal);
  color: var(--pure-white);
}

.btn-hero {
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c73e2f 100%);
  color: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.btn-hero:hover {
  background: linear-gradient(135deg, #a02a1f 0%, var(--primary-red) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--deep-charcoal);
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-background-video {
  position: absolute;
  top: 93%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.4) saturate(1.1);
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  color: var(--pure-white);
  animation: fadeInUp 0.8s ease-out;
  margin-top: -88px;
  padding-top: 280px;
}

.hero-brand-showcase {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-logo {
  width: 120px; height: 120px;
  background-image: url('assets/Logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-md);
  animation: logoPulse 0s infinite;
  flex-shrink: 0;
}

.hero-brand-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-brand-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--pure-white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.hero-brand-tagline {
  font-size: 14px;
  color: var(--warm-cream);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: -3px;
  color: var(--pure-white);
}

.dynamic-text {
  color: var(--accent-teal);
  display: inline-block;
  animation: dynamicFade 0.7s ease-in-out;
}

@keyframes dynamicFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--warm-cream);
  margin-bottom: 48px;
  opacity: 0.9;
  max-width: 520px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

/* PROOF BAR */
.proof-bar {
  background: var(--warm-cream);
  padding: 80px 0;
  position: relative;
}

.proof-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(228,220,200,0.8) 100%);
}

.proof-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
  position: relative;
  z-index: 1;
}

.proof-stat {
  text-align: center;
  padding: 32px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.proof-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  background: rgba(255,255,255,0.8);
}

.proof-number {
  font-size: 60px;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.proof-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTIONS */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--deep-charcoal);
  margin-bottom: 16px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--pure-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.step {
  text-align: center;
  padding: 48px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(228,220,200,0.3) 100%);
  opacity: 0;
  transition: var(--transition);
}

.step:hover::before {
  opacity: 1;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, #1a6569 100%);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  margin: 0 auto 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.step:hover .step-number {
  background: linear-gradient(135deg, var(--primary-red) 0%, #a02a1f 100%);
  transform: scale(1.1);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--deep-charcoal);
}

.step-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

/* SPOTLIGHT */
.spotlight {
  background: var(--warm-cream);
  position: relative;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--warm-cream) 0%, rgba(228,220,200,0.8) 100%);
}

.spotlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spotlight-text {
  padding: 32px;
}

.spotlight-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--deep-charcoal);
}

.spotlight-text h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--accent-teal);
  letter-spacing: -1px;
}

.spotlight-text p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.spotlight-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.coffee-bean-showcase {
  width: 160px;
  height: 220px;
  background: linear-gradient(135deg, var(--burnt-orange) 0%, #a85a28 50%, #8b4a20 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  animation: rotate 12s linear infinite;
  box-shadow: var(--shadow-medium);
}

.coffee-bean-showcase::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 3px;
  background: var(--deep-charcoal);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* PRICING */
.pricing {
  background: var(--pure-white);
}

.pricing-comparison {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--accent-teal);
  transform: scaleX(0);
  transition: var(--transition);
}

.pricing-card.us::before {
  background: linear-gradient(90deg, var(--accent-teal) 0%, #1a6569 100%);
}

.pricing-card.them::before {
  background: linear-gradient(90deg, var(--burnt-orange) 0%, #a85a28 100%);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}

.card-header {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--deep-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-price {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-card.us .card-price {
  color: var(--primary-red); /* This is #b83225 in your :root */
}

.pricing-card.them .card-price {
    color: #faa86c; /* washed orange */
}

.card-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.vs-divider {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-tagline {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-top: 48px;
}

/* COMMUNITY */
.community {
  background: var(--warm-cream);
}

.community-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.community-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 360px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.community-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--primary-red) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-soft);
}

.community-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-charcoal);
}

.community-info p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-teal);
  opacity: 1;
  transform: scale(1.2);
}

/* FOOTER */
.footer {
  background: var(--deep-charcoal);
  color: var(--pure-white);
  padding: 80px 0 32px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  background-image: url('assets/Logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-md);
  animation: logoPulse 2s infinite;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--pure-white);
}

.footer-tagline {
  color: var(--warm-cream);
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--pure-white);
  font-size: 16px;
}

.footer-column a {
  display: block;
  color: var(--warm-cream);
  text-decoration: none;
  opacity: 0.8;
  margin-bottom: 8px;
  transition: var(--transition);
  font-size: 14px;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--accent-teal);
  transform: translateX(4px);
}

.footer-app h4 {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--pure-white);
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-badge {
  background: var(--accent-teal);
  color: var(--pure-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.app-badge:hover {
  background: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  color: var(--warm-cream);
  opacity: 0.6;
  font-size: 14px;
}

/* ANIMATIONS */
@keyframes rotate {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-center-content { 
    min-height: 100vh; 
    margin-top: -72px;
    padding-top: 180px;
  }
  .hero-logo { width: 90px; height: 90px; }
  .hero-title { font-size: 2.5rem; }
  .spotlight-content { grid-template-columns: 1fr; text-align: center; gap: 48px;}
  .pricing-comparison { flex-direction: column; gap: 32px;}
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  .nav-container { height: 72px; }
  .nav-logo { width: 58px; height: 58px; }
  .hero-center-content { 
    min-height: 100vh; 
    margin-top: -72px;
    padding-top: 140px;
  }
  .hero-brand-showcase { flex-direction: column; text-align: center;}
  .hero-logo { width: 80px; height: 80px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; gap: 16px; }
  .proof-container { grid-template-columns: 1fr; gap: 32px;}
  .steps-grid { grid-template-columns: 1fr; gap: 32px;}
  .footer-container { grid-template-columns: 1fr; gap: 48px; text-align: center;}
  .footer-links { grid-template-columns: 1fr; gap: 32px;}
}

@media (max-width: 480px) {
  .container { padding: 0 16px;}
  .section { padding: 64px 0;}
  .community-card { min-width: 300px; padding: 24px;}
  .btn-hero { padding: 16px 32px; font-size: 16px;}
  .hero-title { font-size: 1.8rem;}
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.modal { position:fixed; top:0; left:0; width:100vw; height:100vh; background:rgba(0,0,0,0.7); display:flex; align-items:center; justify-content:center; z-index:10000; }
.modal-content { background: #fff; padding:32px; border-radius:16px; min-width:300px; width: 100%; max-width: 500px; max-height: 85vh; overflow: auto; position:relative; }
.close { position:absolute; top:16px; right:16px; font-size:2rem; cursor:pointer; }

/* MENU MODAL STYLES */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 30, 29, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
}

.menu-modal-content {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-strong);
  animation: slideUp 0.3s ease-out;
}

.menu-close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-red);
  color: var(--pure-white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.menu-close-btn:hover {
  background: #a02a1f;
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.menu-header {
  text-align: center;
  padding: 48px 32px 32px;
  border-bottom: 2px solid var(--warm-cream);
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--warm-cream) 100%);
}

.menu-logo {
  width: 80px;
  height: 80px;
  background-image: url('assets/Logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.menu-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.menu-header p {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MENU SEARCH STYLES */
.menu-search-container {
  position: relative;
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.menu-search-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--warm-cream);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: var(--font-primary);
  background: var(--pure-white);
  color: var(--deep-charcoal);
  transition: var(--transition);
  outline: none;
}

.menu-search-input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(32, 122, 126, 0.1);
}

.menu-search-input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--pure-white);
  border: 2px solid var(--warm-cream);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: var(--shadow-medium);
}

.suggestion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid rgba(40, 30, 29, 0.05);
}

.suggestion-item:hover,
.suggestion-item.selected {
  background: var(--warm-cream);
  transform: translateX(4px);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.suggestion-name {
  font-weight: 600;
  color: var(--deep-charcoal);
  font-size: 16px;
}

.suggestion-name mark {
  background: var(--accent-teal);
  color: var(--pure-white);
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 700;
}

.suggestion-category {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.suggestion-price {
  font-weight: 700;
  color: var(--primary-red);
  font-size: 14px;
  white-space: nowrap;
}

/* No Results Message */
.no-results-message {
  display: none;
  text-align: center;
  padding: 64px 32px;
  color: var(--text-light);
}

.no-results-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 16px;
}

.no-results-content p {
  font-size: 16px;
  line-height: 1.6;
}

.menu-categories {
  padding: 0 32px 32px;
  display: grid;
  gap: 40px;
}

.menu-category {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.menu-category:hover {
  background: var(--warm-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.category-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal) 0%, var(--primary-red) 100%);
  border-radius: 2px;
}

.menu-items {
  display: grid;
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--pure-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.menu-item:hover {
  border-color: var(--accent-teal);
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

.item-info {
  flex: 1;
}

.item-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin: 0;
}

.item-prices {
  display: flex;
  gap: 12px;
  align-items: center;
}

.price {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hot-price {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c73e2f 100%);
  color: var(--pure-white);
}

.cold-price {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #1a6569 100%);
  color: var(--pure-white);
}

.menu-category.extras .price {
  background: linear-gradient(135deg, var(--burnt-orange) 0%, #a85a28 100%);
  color: var(--pure-white);
}

/* Menu Modal Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(50px) scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

/* Menu Modal Responsive Design */
@media (max-width: 768px) {
  .menu-modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .menu-header {
    padding: 40px 20px 24px;
  }
  
  .menu-logo {
    width: 60px;
    height: 60px;
  }
  
  .menu-header h2 {
    font-size: 2rem;
  }
  
  .menu-categories {
    padding: 0 20px 20px;
    gap: 24px;
  }
  
  .menu-category {
    padding: 20px;
  }
  
  .category-title {
    font-size: 1.4rem;
  }
  
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .item-prices {
    width: 100%;
    justify-content: flex-end;
  }

  .menu-search-container {
    margin-top: 24px;
  }

  .menu-search-input {
    padding: 14px 16px;
    font-size: 15px;
  }

  .suggestion-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 20px;
  }

  .suggestion-price {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .menu-close-btn {
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .menu-header h2 {
    font-size: 1.8rem;
  }
  
  .item-prices {
    flex-direction: column;
    gap: 8px;
  }
  
  .price {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ORDER SYSTEM STYLES */
.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 30, 29, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  animation: fadeIn 0.3s ease-out;
}

.order-modal-content {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  width: 95%;
  max-width: 1000px;
  max-height: 95vh;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.order-close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary-red);
  color: var(--pure-white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.order-close-btn:hover {
  background: #a02a1f;
  transform: scale(1.1);
}

.order-header {
  text-align: center;
  padding: 48px 32px 24px;
  border-bottom: 2px solid var(--warm-cream);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--warm-cream) 100%);
}

.order-logo {
  width: 80px;
  height: 80px;
  background-color: var(--warm-cream);
  background-image: url('assets/Logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 10;
}

.order-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.order-header p {
  color: var(--text-light);
  font-size: 18px;
}

.order-tabs {
  display: flex;
  background: var(--off-white);
  border-bottom: 2px solid var(--warm-cream);
}

.tab-btn {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-btn.active {
  color: var(--primary-red);
  background: var(--pure-white);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-red);
}

.order-content {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Order Search */
.order-search-container {
  margin-bottom: 32px;
}

.order-search-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--warm-cream);
  border-radius: var(--radius-md);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.order-search-input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(32, 122, 126, 0.1);
}

/* Order Menu */
.order-menu-categories {
  display: grid;
  gap: 32px;
}

.order-category {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.order-category-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.order-items {
  display: grid;
  gap: 16px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--pure-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.order-item:hover {
  border-color: var(--accent-teal);
  transform: translateX(4px);
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.order-item-prices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.order-price-btn {
  padding: 8px 16px;
  border: 2px solid var(--accent-teal);
  background: transparent;
  color: var(--accent-teal);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.order-price-btn:hover {
  background: var(--accent-teal);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.order-price-btn.hot {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.order-price-btn.hot:hover {
  background: var(--primary-red);
  color: var(--pure-white);
}

/* Cart Styles */
.empty-cart {
  text-align: center;
  padding: 64px 32px;
  color: var(--text-light);
}

.empty-cart h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 16px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.cart-item-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 4px;
}

.cart-item-type {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: 2px solid var(--accent-teal);
  background: transparent;
  color: var(--accent-teal);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.quantity-btn:hover {
  background: var(--accent-teal);
  color: var(--pure-white);
}

.quantity {
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.remove-btn {
  padding: 6px 12px;
  background: var(--primary-red);
  color: var(--pure-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition);
}

.remove-btn:hover {
  background: #a02a1f;
}

.cart-item-total {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-red);
}

.cart-summary {
  margin-top: 32px;
  padding: 24px;
  background: var(--warm-cream);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cart-total {
  font-size: 24px;
  font-weight: 800;
  color: var(--deep-charcoal);
  margin-bottom: 24px;
}

/* Checkout Styles */
.checkout-form {
  max-width: 600px;
  margin: 0 auto;
}

.customer-details,
.payment-section,
.order-summary-checkout {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.customer-details h3,
.payment-section h3,
.order-summary-checkout h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 20px;
}

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

.customer-details input,
.customer-details textarea,
.payment-details input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--warm-cream);
  border-radius: var(--radius-sm);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}

.customer-details input:focus,
.customer-details textarea:focus,
.payment-details input:focus {
  border-color: var(--accent-teal);
}

.customer-details textarea {
  resize: vertical;
  min-height: 80px;
  grid-column: 1 / -1;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--pure-white);
  border: 2px solid var(--warm-cream);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.payment-option:hover {
  border-color: var(--accent-teal);
}

.payment-option input[type="radio"] {
  margin-right: 12px;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.payment-icon {
  font-size: 20px;
}

.payment-details {
  margin-top: 16px;
}

.upi-apps {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.upi-app {
  flex: 1;
  padding: 12px;
  background: var(--accent-teal);
  color: var(--pure-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.upi-app:hover {
  background: #1a6569;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--warm-cream);
}

.checkout-total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--primary-red);
  font-size: 20px;
  text-align: right;
}

/* Order Confirmation */
.order-confirmation {
  text-align: center;
  padding: 64px 32px;
}

.confirmation-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.order-confirmation h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deep-charcoal);
  margin-bottom: 16px;
}

.order-details {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}

.order-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.pickup-time {
  margin-bottom: 16px;
  color: var(--text-light);
}

.order-total {
  font-size: 20px;
  color: var(--deep-charcoal);
}

.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* Cart Feedback */
.cart-feedback {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--accent-teal);
  color: var(--pure-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 10002;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Order System */
@media (max-width: 768px) {
  .order-modal-content {
    width: 98%;
    max-height: 98vh;
  }

  .order-header {
    padding: 40px 20px 20px;
  }
  
  .order-logo {
    width: 60px;
    height: 60px;
  }

  .order-header h2 {
    font-size: 2rem;
  }

  .order-content {
    padding: 20px;
  }

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

  .payment-options {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cart-item-controls {
    align-self: flex-end;
  }

  .confirmation-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .order-close-btn {
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .order-item-prices {
    align-self: flex-end;
  }
}

/* AUTH MODAL STYLES */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}

.auth-modal-content {
  background: var(--pure-white);
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideInUp 0.3s ease-out;
  box-shadow: var(--shadow-strong);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--deep-charcoal);
  z-index: 1001;
}

.auth-header {
  text-align: center;
  padding: 40px 32px 24px;
  border-bottom: 2px solid var(--warm-cream);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--warm-cream) 100%);
}

.auth-logo {
  width: 80px;
  height: 80px;
  background-image: url('assets/Logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.auth-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--medium-gray);
  font-size: 16px;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--light-gray);
}

.auth-tab-btn {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--medium-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab-btn.active {
  color: var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
}

.auth-content {
  padding: 32px;
}

.benefits-section {
  margin-bottom: 32px;
}

.benefits-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 20px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 8px;
}

.benefit-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pure-white);
  border-radius: 50%;
}

.benefit-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 12px;
  color: var(--medium-gray);
  line-height: 1.4;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-form input {
  padding: 16px;
  border: 2px solid var(--warm-cream);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-family: var(--font-primary);
  background: var(--pure-white);
  color: var(--deep-charcoal);
  transition: all 0.3s ease;
  outline: none;
}

.auth-form input:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(32, 122, 126, 0.1);
  transform: translateY(-1px);
}

.auth-form input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.form-error {
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 500;
  display: none;
  margin-top: 4px;
}

.checkbox-group {
  margin: 8px 0;
}

.terms-link,
.privacy-link {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.terms-link:hover,
.privacy-link:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--deep-charcoal);
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 16px;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-teal);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  font-size: 14px;
  font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label:hover .checkmark {
  border-color: var(--primary-red);
  transform: scale(1.1);
}

.auth-submit-btn {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c73e2f 100%);
  color: var(--pure-white);
  border: none;
  padding: 18px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  margin-top: 8px;
}

.auth-submit-btn:hover {
  background: linear-gradient(135deg, #a02a1f 0%, var(--primary-red) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.auth-submit-btn:disabled {
  background: var(--medium-gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-tab-content {
  display: none;
}

.auth-tab-content.active {
  display: block;
}

.welcome-back {
  text-align: center;
  padding: 20px 0;
}

.welcome-back h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.welcome-back p {
  color: var(--medium-gray);
  font-size: 16px;
}

.account-summary {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

.summary-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-red);
}

.summary-label {
  font-size: 14px;
  color: var(--medium-gray);
  margin-top: 4px;
}

.success-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-secondary {
  background: var(--medium-gray);
  color: var(--pure-white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--deep-charcoal);
}

/* Mobile Auth Modal */
@media (max-width: 768px) {
  .auth-modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .auth-header {
    padding: 32px 24px 20px;
  }
  
  .auth-logo {
    width: 60px;
    height: 60px;
  }
  
  .auth-header h2 {
    font-size: 24px;
  }
  
  .auth-content {
    padding: 24px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .benefit-item {
    padding: 10px;
  }
  
  .benefit-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
  
  .benefit-text h4 {
    font-size: 13px;
  }
  
  .benefit-text p {
    font-size: 11px;
  }
  
  .auth-form input {
    padding: 14px;
    font-size: 16px;
  }
  
  .btn-auth {
    padding: 14px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .auth-modal-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 100vh;
  }
  
  .auth-header {
    padding: 24px 20px 16px;
  }
  
  .auth-content {
    padding: 20px;
  }
  
  .benefits-section h3 {
    font-size: 18px;
  }
  
  .success-actions {
    flex-direction: column;
  }
}
