/* ========================================
   FRESH HOT BREAD - REDESIGNED STYLES
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #FDF6E8;
  overflow-x: hidden;
}

body.cart-open {
  overflow: hidden;
}

/* === CSS VARIABLES === */
:root {
  --burgundy: #960909;
  --burgundy-dark: #6B0707;
  --burgundy-light: #B91C1C;
  --cream: #FDF6E8;
  --cream-dark: #F5E6D3;
  --warm-white: #FFFEF9;
  --gold: #D4A84B;
  --charcoal: #2C2C2C;
  --text-gray: #555;
  --text-light: #777;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s ease;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

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

/* === PAGE LOADER === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-bread {
  width: 80px;
  height: 80px;
  animation: bounce 1s ease-in-out infinite;
  margin: 0 auto;
}

.loader-bread img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-content p {
  margin-top: 1rem;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 246, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(150, 9, 9, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  box-shadow: var(--shadow-soft);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(150, 9, 9, 0.15);
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

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

.logo-text span {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
}

.logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--burgundy);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--burgundy);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ========================================
   DESKTOP TEXT LOGO - ADD THIS TO YOUR styles.css
   Add this BEFORE the "MOBILE LOGO TEXT" section (around line 249)
   ======================================== */

/* === DESKTOP TEXT LOGO === */
/* Hide logo image on ALL screens */
.logo img {
  display: none !important;
}

/* Hide old logo text on ALL screens */
.logo-text {
  display: none !important;
}

/* Show the colorful text logo on desktop */
.logo-mobile-text {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  
}

.logo-mobile-text .line1,
.logo-mobile-text .line2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Colors - Desktop */
.logo-mobile-text .line1 .fresh {
  color: #960909; /* Gold */
}

.logo-mobile-text .line1 .hot {
  color: #960909; /* Maroon */
}

.logo-mobile-text .line2 .bread {
  color: #960909; /* Maroon */
}

.logo-mobile-text .line2 .all-day {
  color: #960909; /* Blue */
}

/* Desktop layout */
@media (min-width: 901px) {
  .navbar {
    justify-content: flex-start;
    gap: 0;
  }
  
  .logo {
    flex: 0 0 auto;
  }
  
  .nav-links {
    flex: 1;
    justify-content: center;
  }
  
  .nav-right {
    flex: 0 0 auto;
  }
  
  .logo-mobile-text {
    flex-direction: row;
    gap: 10px;
  }
  
  .logo-mobile-text .line1,
  .logo-mobile-text .line2 {
    font-size: 3rem;
  }
}


/* ========================================
   THEN KEEP YOUR EXISTING MOBILE STYLES BELOW
   (The @media (max-width: 900px) section)
   Just REMOVE these lines from the mobile section
   since we now hide them globally:
   
   DELETE THESE FROM THE MOBILE SECTION:
   - .logo img { display: none !important; }
   - .logo-text { display: none !important; }
   ======================================== */

/* ========================================
   MOBILE LOGO TEXT - TRUE FULL WIDTH CENTERED
   Replaces all previous mobile logo fixes
   ======================================== */

/* Hide mobile logo text by default */
.logo-mobile-text {
  display: none;
}

/* =====================
   TABLET VIEW FIX
   ===================== */
@media (max-width: 900px) and (min-width: 601px) {
  .logo-mobile-text {
    flex-direction: row;  /* One line instead of two */
    gap: 8px;
  }
  
  .logo-mobile-text .line1,
  .logo-mobile-text .line2 {
    font-size: 1.2rem;
  }
}
/* =====================
   MOBILE NAV FIX
   ===================== */
@media (max-width: 900px) {

  /* Navbar setup */
  .navbar {
    position: relative;
    justify-content: space-between;
  }

   .nav-left {
    position: relative;
    z-index: 2;
  }

  .nav-right {
    margin-left: auto;
  }

  /* Logo becomes full-width overlay */
  .logo {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none; /* allows nav buttons to be clickable */
  }

  /* Show mobile logo text */
  .logo-mobile-text {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    line-height: 1.15;
    text-decoration: none;
  }

  /* Typography */
  .logo-mobile-text .line1,
  .logo-mobile-text .line2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  /* Colors */
  .logo-mobile-text .line1 .fresh {
    color: #960909; /* Gold */
  }

  .logo-mobile-text .line1 .hot {
    color: #960909; /* Maroon */
  }

  .logo-mobile-text .line2 .bread {
    color: #960909; /* Maroon */
  }

  .logo-mobile-text .line2 .all-day {
    color: #960909; /* Blue */
  }

  /* Keep nav-right clickable */
  .nav-right {
    position: relative;
    z-index: 2;
    gap: 8px;
  }
}

/* =====================
   SMALLER SCREENS
   ===================== */
@media (max-width: 600px) {
  .logo-mobile-text .line1,
  .logo-mobile-text .line2 {
    font-size: clamp(1.3rem, 6vw, 2.1rem);

  }

  .navbar {
    padding: 0 16px;
    height: 65px;
  }
}

@media (max-width: 380px) {
  .logo-mobile-text .line1,
  .logo-mobile-text .line2 {
    font-size: 1rem;
  }

  .navbar {
    padding: 0 12px;
  }
}


/* === SPECIAL BADGE VISIBILITY === */
.special-badge {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.special-badge.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none !important;
}

.cart-toggle {
  position: relative;
  background: var(--warm-white);
  border: 2px solid rgba(150, 9, 9, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--burgundy);
}

.cart-toggle:hover {
  background: var(--burgundy);
  color: white;
  border-color: var(--burgundy);
  transform: scale(1.05);
}

.cart-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--burgundy);
  border-radius: 50%;
  border: 2px solid var(--warm-white);
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-dot.show {
  opacity: 1;
  transform: scale(1);
}

/* === MINI CART === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

#mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: var(--warm-white);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

#mini-cart.show {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h4 {
  font-size: 1.5rem;
  color: var(--burgundy);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-gray);
  transition: var(--transition);
  border-radius: 50%;
}

.cart-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--burgundy);
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  list-style: none;
}

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

.cart-item.removing {
  opacity: 0;
  transform: translateX(50px);
}

.cart-item span:first-child {
  flex: 1;
  font-weight: 500;
  color: var(--charcoal);
}

.cart-item .item-price {
  font-weight: 600;
  color: var(--burgundy);
  font-size: 0.95rem;
}

.remove-btn {
  background: var(--burgundy);
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-btn:hover {
  background: var(--burgundy-dark);
  transform: scale(1.1);
}

.cart-empty {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  padding: 40px 24px;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.cart-total-row span {
  color: var(--burgundy);
}

.checkout-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--burgundy);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.checkout-btn:hover:not(:disabled) {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(150, 9, 9, 0.3);
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 48px;
}

.hero-text {
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1;
}

.hero h1 .highlight {
  color: var(--burgundy);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--burgundy);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(150, 9, 9, 0.3);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(150, 9, 9, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(150, 9, 9, 0.08);
  color: var(--burgundy);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 550px;
  height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--burgundy);
  box-shadow: var(--shadow-strong);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--warm-white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  text-align: center;
  border: 1px solid rgba(150, 9, 9, 0.1);
}

.special-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.special-discount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--burgundy);
}

.special-today {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 1px;
}

.hero-quote {
  padding: 32px 48px;
  text-align: center;
  background: var(--cream-dark);
}

.hero-quote p {
  font-family: 'Caveat', cursive;
  font-size: 1.75rem;
  color: var(--burgundy);
  font-style: italic;
}

/* === FEATURES SECTION === */
.features {
  padding: 100px 0;
  background: var(--warm-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 24px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--burgundy);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* === COFFEE SECTION - LIGHT & CLEAN THEME === */
.coffee-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFFEF9 0%, #F5E6D3 100%);
  position: relative;
  overflow: hidden;
}

.coffee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23960909' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.coffee-text {
  color: #2C2C2C;
}

.coffee-tag {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: #960909;
  margin-bottom: 12px;
}

.coffee-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2C2C2C;
  margin-bottom: 20px;
  line-height: 1.2;
}

.coffee-text > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

/* Coffee Pricing */
.coffee-prices {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(150, 9, 9, 0.1);
}

.coffee-price-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.coffee-price-item .size {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2C2C2C;
  min-width: 60px;
}

.coffee-price-item .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(150, 9, 9, 0.3);
  margin: 0 12px;
  height: 1px;
}

.coffee-price-item .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #960909;
}

.tax-note {
  font-size: 0.9rem !important;
  color: #777 !important;
  margin-bottom: 20px !important;
  font-style: italic;
}

.coffee-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.coffee-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 16px;
  border-radius: 50px;
  color: #2C2C2C;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(150, 9, 9, 0.1);
}

.coffee-feature svg {
  color: #960909;
}

/* Coffee Images */
.coffee-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coffee-image-wrapper {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  border: 4px solid white;
}

.coffee-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coffee-menu-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid white;
  transform: rotate(3deg);
  transition: transform 0.3s ease;
  background: white;
}

.coffee-menu-card:hover {
  transform: rotate(0deg) scale(1.05);
}

.coffee-menu-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Coffee responsive */
@media (max-width: 900px) {
  .coffee-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .coffee-image {
    order: -1;
  }
  
  .coffee-image-wrapper {
    max-width: 350px;
    aspect-ratio: 4/5;
  }
  
  .coffee-features {
    justify-content: center;
  }
  
  .coffee-menu-card {
    right: 10%;
    bottom: -10px;
    width: 140px;
  }
  
  .coffee-prices {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .coffee-section {
    padding: 60px 0;
  }
  
  .coffee-text h2 {
    font-size: 2rem;
  }
  
  .coffee-image-wrapper {
    max-width: 280px;
  }
  
  .coffee-menu-card {
    width: 120px;
    right: 5%;
  }
  
  .coffee-price-item .size {
    font-size: 1rem;
  }
  
  .coffee-price-item .price {
    font-size: 1.1rem;
  }
}

/* === MISSION SECTION === */
.mission {
  padding: 100px 0;
  background: var(--burgundy);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.mission .section-tag {
  color: var(--gold);
}

.mission h2 {
  font-size: 2.75rem;
  color: white;
  margin-bottom: 32px;
}

.mission p {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 24px;
}

.mission p:last-child {
  margin-bottom: 0;
}

/* === SECTION COMMON STYLES === */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === MENU SECTION === */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-medium);
  max-width: 900px;
  margin: 0 auto;
}

.product-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.product-header h3 {
  font-size: 2rem;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
}

.product-desc {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.quantity-group {
  margin-bottom: 24px;
}

.quantity-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.quantity-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  background: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23960909' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: var(--transition);
}

.quantity-select:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(150, 9, 9, 0.1);
}

.add-to-cart {
  width: 100%;
  padding: 18px 32px;
  background: var(--burgundy);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(150, 9, 9, 0.25);
}

.add-to-cart:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(150, 9, 9, 0.35);
}

.add-to-cart.added {
  background: #2F855A;
}

/* === DELIVERY OPTIONS === */
.delivery-options {
  margin-top: 60px;
  text-align: center;
}

.delivery-header {
  margin-bottom: 40px;
}

.delivery-header h3 {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.delivery-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.delivery-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

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

.pickup-card:hover {
  border-color: var(--burgundy);
}

.doordash-card:hover {
  border-color: #FF3008;
}

.delivery-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(150, 9, 9, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: var(--transition);
}

.doordash-icon {
  background: rgba(255, 48, 8, 0.08);
  color: #FF3008;
}

.delivery-card:hover .delivery-icon {
  transform: scale(1.1);
}

.delivery-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.delivery-card > p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.delivery-perks {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.delivery-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.delivery-perks li svg {
  color: #2F855A;
  flex-shrink: 0;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.pickup-btn {
  background: var(--burgundy);
  color: white;
  box-shadow: 0 6px 20px rgba(150, 9, 9, 0.25);
}

.pickup-btn:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(150, 9, 9, 0.35);
}

.doordash-btn {
  background: #FF3008;
  color: white;
  box-shadow: 0 6px 20px rgba(255, 48, 8, 0.25);
}

.doordash-btn:hover {
  background: #E02B07;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 48, 8, 0.35);
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.testimonial-rating {
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--burgundy);
}

/* === GALLERY SECTION === */
.gallery-section {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(150, 9, 9, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* === FAQ SECTION === */
.faq-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  padding: 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: rgba(150, 9, 9, 0.03);
}

.faq-icon {
  color: var(--burgundy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 24px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--warm-white);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(150, 9, 9, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--burgundy);
}

.contact-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-card a {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--burgundy-dark);
}

/* === FOOTER === */
.footer {
  background: var(--burgundy);
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.footer-brand-text h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 4px;
}

.footer-brand-text p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background: white;
  color: var(--burgundy);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(150, 9, 9, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #2F855A;
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(47, 133, 90, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* === FADE IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === PAYMENT FORM STYLES === */
.payment-section {
  display: none;
  padding: 24px;
  background: var(--warm-white);
}

.payment-section.active {
  display: block;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.payment-header h4 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0;
  flex: 1;
  text-align: center;
  padding-right: 60px;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.back-btn:hover {
  background: rgba(150, 9, 9, 0.08);
}

#payment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input {
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(150, 9, 9, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

.pickup-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(150, 9, 9, 0.05);
  border-radius: var(--radius-md);
  color: var(--burgundy);
  font-size: 0.9rem;
  margin: 8px 0;
}

.pickup-notice svg {
  flex-shrink: 0;
}

.submit-payment-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--burgundy);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(150, 9, 9, 0.25);
  margin-top: 8px;
}

.submit-payment-btn:hover:not(:disabled) {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(150, 9, 9, 0.35);
}

.submit-payment-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.payment-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2F855A, #48BB78);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(47, 133, 90, 0.3);
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.payment-success h4 {
  font-size: 1.75rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.payment-success p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.payment-success .success-details {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.close-success-btn {
  padding: 14px 40px;
  background: var(--burgundy);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.close-success-btn:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
    padding: 40px 32px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-image-wrapper {
    width: 350px;
    height: 350px;
  }
  
  .features-grid {
    gap: 24px;
  }
  
  .product-card {
    gap: 32px;
    padding: 32px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .delivery-cards {
    gap: 24px;
  }
}

/* Tablet Portrait & Large Mobile */
@media (max-width: 900px) {
  .navbar {
    padding: 0 24px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    gap: 8px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  
  .nav-links a:hover {
    background: rgba(150, 9, 9, 0.05);
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .logo-text {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }
  
  .hero-text {
    max-width: 100%;
    order: 2;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-image-wrapper {
    width: 300px;
    height: 300px;
  }
  
  .special-badge {
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .mission h2 {
    font-size: 2.25rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .product-card {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .product-image img {
    min-height: 280px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .delivery-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .delivery-header h3 {
    font-size: 1.75rem;
  }
  
  .delivery-cards p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .navbar {
    height: 70px;
  }
  
  .logo img {
    width: 44px;
    height: 44px;
  }
  
  .cart-toggle {
    width: 42px;
    height: 42px;
  }
  
  .hero {
    padding-top: 70px;
  }
  
  .hero-content {
    padding: 32px 20px;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-image-wrapper {
    width: 260px;
    height: 260px;
  }
  
  .special-badge {
    padding: 16px 20px;
  }
  
  .special-discount {
    font-size: 1.5rem;
  }
  
  .hero-quote {
    padding: 24px 20px;
  }
  
  .hero-quote p {
    font-size: 1.4rem;
  }
  
  .features,
  .mission,
  .menu-section,
  .testimonials-section,
  .gallery-section,
  .faq-section,
  .contact-section {
    padding: 70px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .mission h2 {
    font-size: 2rem;
  }
  
  .mission p {
    font-size: 1rem;
  }
  
  .product-card {
    padding: 24px;
  }
  
  .product-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .product-header h3 {
    font-size: 1.5rem;
  }
  
  .product-price {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
  }
  
  #mini-cart {
    width: 100%;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  
  .toast {
    left: 20px;
    right: 20px;
    transform: translateX(0) translateY(100px);
    justify-content: center;
  }
  
  .toast.show {
    transform: translateX(0) translateY(0);
  }
  
  .delivery-options {
    margin-top: 48px;
  }
  
  .delivery-card {
    padding: 32px 24px;
  }
  
  .delivery-header h3 {
    font-size: 1.5rem;
  }
  
  .delivery-icon {
    width: 70px;
    height: 70px;
  }
  
  .delivery-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .payment-section {
    padding: 16px;
  }
  
  .payment-header h4 {
    font-size: 1rem;
    padding-right: 0;
  }
  
  .form-group input {
    padding: 12px 14px;
    font-size: 16px;
  }
  
  .submit-payment-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .payment-success {
    padding: 30px 16px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .payment-success h4 {
    font-size: 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-image-wrapper {
    width: 220px;
    height: 220px;
  }
  
  .btn-primary {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  
  .btn-secondary {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}
/* === PHOTOGRAPHY SECTION === */
.photography-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.photography-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(150, 9, 9, 0.1);
  box-shadow: var(--shadow-medium);
  max-width: 950px;
  margin: 0 auto;
}

.photography-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 3px solid white;
}

.photography-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.photography-card:hover .photography-image img {
  transform: scale(1.03);
}

.photography-info {
  color: var(--charcoal);
}

.photography-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.photography-info > p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.photography-details {
  list-style: none;
  margin-bottom: 28px;
}

.photography-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--charcoal);
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.photography-details li:last-child {
  border-bottom: none;
}

.photography-details li svg {
  color: var(--burgundy);
  flex-shrink: 0;
}

.photography-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--burgundy);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(150, 9, 9, 0.3);
}

.photography-btn:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(150, 9, 9, 0.4);
}

/* Photography responsive */
@media (max-width: 900px) {
  .photography-card {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 32px;
  }
  
  .photography-details {
    display: inline-block;
    text-align: left;
  }
  
  .photography-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .photography-section {
    padding: 70px 0;
  }
  
  .photography-card {
    padding: 24px;
  }
  
  .photography-info h3 {
    font-size: 1.5rem;
  }
}
/* Order Notice */
.order-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(212, 168, 75, 0.15);
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #8B6914;
}

.order-notice svg {
  flex-shrink: 0;
  color: #D4A84B;
}
/* ========================================
   LOCATION & MAP SECTION
   ======================================== */

.location-section {
  margin-top: 60px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-container {
  min-height: 350px;
  background: var(--cream-dark);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.directions-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.directions-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.directions-address {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.directions-landmarks h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.directions-landmarks ul {
  list-style: none;
  margin-bottom: 24px;
}

.directions-landmarks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-gray);
  font-size: 1rem;
}

.directions-landmarks li svg {
  color: #2F855A;
  flex-shrink: 0;
}

.directions-landmarks li strong {
  color: var(--charcoal);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--burgundy);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(150, 9, 9, 0.3);
}

.directions-btn:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(150, 9, 9, 0.4);
}

/* Mobile */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    min-height: 280px;
  }
  
  .directions-card {
    padding: 32px 24px;
  }
}
/* ========================================
   NAVBAR NUCLEAR FIX - REPLACE EVERYTHING AT END OF CSS
   Delete any previous navbar fixes and use ONLY this
   ======================================== */

/* Base nav-links - ALWAYS flex on desktop */
@media (min-width: 901px) {
  .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 48px !important;
  }
  
  .logo {
    flex: 0 0 auto !important;
    max-width: 350px !important;
  }
  
  ul.nav-links,
  .nav-links {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 32px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .nav-right {
    flex: 0 0 auto !important;
  }
  
  .hamburger {
    display: none !important;
  }
}

/* Tablet & Mobile - HIDE nav links, SHOW hamburger */
@media (max-width: 900px) {
  ul.nav-links,
  .nav-links {
    display: none !important;
    position: static !important;
    left: auto !important;
    transform: none !important;
  }
  
  ul.nav-links.active,
  .nav-links.active {
    display: flex !important;
    position: absolute !important;
    top: 100% !important;
    left: 16px !important;
    right: 16px !important;
    background: white !important;
    flex-direction: column !important;
    padding: 24px !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    gap: 8px !important;
    z-index: 100 !important;
  }
  
  .hamburger {
    display: flex !important;
  }
}