:root {
  /* ====== BRAND COLORS ====== */
  --coffee: #5a3825;
  --coffee-dark: #3e261a;
  --light-cream: #fdfaf6;
  --dark: #2d1c13;

  /* ====== ACCENT & STATUS COLORS ====== */
  --accent: #b58b60;
  --accent-light: #d8b892;
  --error: #d9534f;
  --success: #5cb85c;
  --text-muted: #555;

  /* ====== NEUTRALS ====== */
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray: #ccc;
  --black: #000000;

  /* ====== UI ELEMENTS ====== */
  --border-radius: 12px;
  --shadow-light: 0 3px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 14px 28px rgba(0, 0, 0, 0.15);
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.4s ease;

  /* ====== GRADIENTS ====== */
  --coffee-gradient: linear-gradient(135deg, #5a3825 0%, #b58b60 100%);
  --cream-gradient: linear-gradient(135deg, #fffdf8 0%, #f5e8d8 100%);

  /* ====== SCROLL TO TOP BUTTON ====== */
  --scroll-btn-bg: var(--coffee);
  --scroll-btn-hover: var(--coffee-dark);
  --scroll-btn-color: #fff;

  /* ====== TYPOGRAPHY ====== */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Lora', serif;
  --font-size-base: 16px;
  --font-size-heading: 36px;

  /* ====== MENU CARD COLORS ====== */
  --card-bg: var(--white);
  --card-shadow: var(--shadow-light);
  --card-hover-shadow: var(--shadow-hover);
  --card-border-radius: var(--border-radius);
}

/* ====== GLOBAL SETTINGS ====== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  background-color: var(--light-cream);
  margin: 0;
  padding: 0;
}

/* ====== SCROLL TO TOP BUTTON ====== */
#scrollToTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: var(--scroll-btn-bg);
  color: var(--scroll-btn-color);
  border: none;
  padding: 12px 15px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-light);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: var(--scroll-btn-hover);
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.menu-heading span {
  font-weight: normal;
}

.menu-subheading {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--coffee);
  margin: 40px 0 20px;
  text-align: left;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 6px;
}

/* ====== MENU SECTION CONTAINERS ====== */
.menu-section {
  margin-bottom: 60px;
}

.menu-section .cart-grid {
  margin-top: 20px;
}

/* Coffee section background */
.menu-section.coffee {
  background: linear-gradient(to bottom, #fffdf8 0%, #f5e8d8 100%);
  padding: 40px 20px;
  border-radius: var(--border-radius);
}

/* Soda section background */
.menu-section.soda {
  background: linear-gradient(to bottom, #fef8f2 0%, #f0e5dc 100%);
  padding: 40px 20px;
  border-radius: var(--border-radius);
}

/* Fade-in animation */
.menu-section.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====== GLOBAL SECTION TITLES ====== */
.section-container h2{
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--coffee);
  text-align: center;
  margin-bottom: 10px;
  border-bottom: none;
}

.section-container h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background: var(--accent);
  margin:10px auto 40px;
  border-radius:3px;
}