/* 
 * Alkama's Cake & Bake - Design System & Modern Stylesheet
 * Colors: Deep Chocolate Brown (#1E120E), Warm Soft Cream (#FAF5EE), Warm Latte (#E8D8C8), Gold (#D4AF37)
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #1E120E;
  --bg-dark-card: rgba(36, 22, 17, 0.75);
  --bg-dark-card-hover: rgba(48, 30, 23, 0.85);
  --bg-cream: #FAF5EE;
  --bg-cream-card: #FFFFFF;
  --bg-latte: #E8D8C8;
  --bg-latte-soft: #F4ECE1;
  
  --text-light: #F9F5F0;
  --text-muted-light: #D5C5B5;
  --text-dark: #2A1A14;
  --text-muted-dark: #6E5B52;
  
  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-gold-dark: #AA771C;
  --accent-latte: #CDB8A5;
  --accent-bronze: #8C6239;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Glassmorphism */
  --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-light: 0 12px 32px rgba(42, 26, 20, 0.08);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.25);
  --glass-border-dark: rgba(232, 216, 200, 0.12);
  --glass-border-light: rgba(42, 26, 20, 0.08);
  
  /* Layout & Transitions */
  --radius-lg: 28px 12px 28px 12px;
  --radius-md: 20px 8px 20px 8px;
  --radius-pill: 9999px;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #3A251D;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.text-gold {
  color: var(--accent-gold);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF0C3 0%, var(--accent-gold) 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition);
  background: rgba(30, 18, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border-dark);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-light);
}

.logo-monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: var(--shadow-gold);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-light);
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

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

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

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 60%, var(--accent-bronze) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-outline-latte {
  background: transparent;
  color: var(--bg-latte);
  border: 1.5px solid var(--accent-latte);
}

.btn-outline-latte:hover {
  background: rgba(232, 216, 200, 0.1);
  color: var(--text-light);
  border-color: var(--accent-gold);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding: 10rem 2rem 5rem;
  background: radial-gradient(circle at 80% 20%, rgba(60, 36, 27, 0.6) 0%, var(--bg-dark) 70%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(232, 216, 200, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-pill);
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted-light);
  margin-bottom: 2.25rem;
  font-weight: 400;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border-dark);
  box-shadow: var(--shadow-dark);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: var(--transition);
}

.hero-visual-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: rgba(212, 175, 55, 0.4);
}

.hero-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(30, 18, 14, 0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-card-tag {
  background: rgba(212, 175, 55, 0.9);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sticky Filter Bar */
.filter-bar-wrapper {
  position: sticky;
  top: 76px;
  z-index: 900;
  background: rgba(24, 14, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232, 216, 200, 0.08);
  border-bottom: 1px solid rgba(232, 216, 200, 0.08);
  padding: 0.85rem 1rem;
}

.filter-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar-container::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  background: rgba(232, 216, 200, 0.06);
  border: 1px solid rgba(232, 216, 200, 0.12);
  color: var(--text-muted-light);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(232, 216, 200, 0.15);
  color: var(--text-light);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
  color: var(--bg-dark);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Menu Layout & Sections */
.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 2rem;
}

.section-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 6rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.section-cream .section-label {
  color: var(--accent-bronze);
}

.section-title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted-light);
}

.section-cream .section-subtitle {
  color: var(--text-muted-dark);
}

/* Sub-category Header */
.subcategory-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 1.75rem;
}

.subcategory-title {
  font-size: 2rem;
  color: var(--text-light);
  white-space: nowrap;
}

.subcategory-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.4), transparent);
}

/* Product Cards Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Organic Curved Product Card - Dark Mode */
.product-card-dark {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.product-card-dark:hover {
  transform: translateY(-6px);
  background: var(--bg-dark-card-hover);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.item-name {
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--text-light);
}

.section-cream .item-name {
  color: var(--text-dark);
}

.badge-tag {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge-gold {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: var(--bg-dark);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.badge-signature {
  background: rgba(232, 216, 200, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.item-desc {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.section-cream .item-desc {
  color: var(--text-muted-dark);
}

/* Portion / Price Selector */
.price-selector-box {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  border: 1px solid rgba(232, 216, 200, 0.08);
  margin-bottom: 1.25rem;
}

.section-cream .price-selector-box {
  background: var(--bg-latte-soft);
  border-color: rgba(42, 26, 20, 0.06);
}

.portion-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.portion-btn {
  padding: 0.5rem;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted-light);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-cream .portion-btn {
  color: var(--text-muted-dark);
}

.portion-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.section-cream .portion-btn.active {
  background: #FFFFFF;
  border-color: var(--accent-bronze);
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.portion-price {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.card-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.btn-add-order {
  width: 100%;
  padding: 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(232, 216, 200, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-add-order:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.section-cream .btn-add-order {
  background: var(--bg-dark);
  color: var(--bg-cream);
  border-color: var(--bg-dark);
}

.section-cream .btn-add-order:hover {
  background: var(--accent-bronze);
  color: var(--text-light);
  border-color: var(--accent-bronze);
}

/* Cream Section Banner Note */
.bento-banner {
  max-width: 1280px;
  margin: 0 auto 3rem;
  background: linear-gradient(135deg, #2A1A14 0%, #1E120E 100%);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-light);
}

.bento-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bento-icon {
  font-size: 2rem;
}

.bento-text {
  font-size: 1.15rem;
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
}

/* Organic Curved Card - Light Cream Mode */
.product-card-cream {
  background: var(--bg-cream-card);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.product-card-cream:hover {
  transform: translateY(-6px);
  border-color: var(--accent-latte);
  box-shadow: 0 16px 36px rgba(42, 26, 20, 0.12);
}

/* Tea Cakes & Simple Items Grid */
.simple-item-card {
  background: var(--bg-cream-card);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.simple-item-card:hover {
  border-color: var(--accent-bronze);
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.simple-item-name {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--text-dark);
}

.simple-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-bronze);
}

/* About & Order Section Layout */
.about-order-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}

.about-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-pill {
  background: rgba(232, 216, 200, 0.06);
  border: 1px solid rgba(232, 216, 200, 0.1);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-muted-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* Order Form Card */
.order-form-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: rgba(15, 8, 5, 0.6);
  border: 1px solid rgba(232, 216, 200, 0.15);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(15, 8, 5, 0.85);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-whatsapp-submit {
  width: 100%;
  padding: 1.1rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

/* Footer Section */
.footer {
  background: #140C09;
  color: var(--text-muted-light);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--glass-border-dark);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  margin-top: 0.75rem;
  max-width: 360px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-info-item a {
  color: var(--text-muted-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-info-item a:hover {
  color: var(--accent-gold-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 216, 200, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* Category Filter Transition Utilities */
.menu-category-section {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-category-section.hidden {
  display: none !important;
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-dark);
  color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-dark);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries & Mobile Optimizations */
@media (max-width: 1024px) {
  .hero-section {
    padding-top: 8rem;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .about-order-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.85rem 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .logo-monogram {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }
  .btn-pill {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .hero-section {
    padding: 6.5rem 1.25rem 4rem;
  }
  .hero-title {
    font-size: clamp(2.1rem, 7.5vw, 2.8rem);
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  .hero-actions .btn-pill {
    width: 100%;
  }
  .hero-visual-img {
    height: clamp(280px, 60vw, 380px);
  }
  
  .filter-bar-wrapper {
    top: 62px;
    padding: 0.65rem 0.5rem;
  }
  .filter-bar-container {
    justify-content: flex-start;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.825rem;
  }

  .section-dark, .section-cream {
    padding: 4rem 1.25rem;
  }
  .section-title {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.25rem;
  }
  
  .product-card-dark, .product-card-cream {
    padding: 1.25rem;
    border-radius: 20px 8px 20px 8px;
  }
  .item-name {
    font-size: 1.3rem;
  }
  .subcategory-title {
    font-size: 1.6rem;
  }

  .bento-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }
  .bento-banner-content {
    flex-direction: column;
  }

  .about-card, .order-form-card {
    padding: 1.5rem 1.25rem;
    border-radius: 20px 8px 20px 8px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .form-input, .form-textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS Safari */
    padding: 0.85rem;
  }

  .footer {
    padding: 3rem 1.25rem 1.5rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .toast-msg {
    left: 1rem;
    right: 1rem;
    bottom: 1.25rem;
    justify-content: center;
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .portion-options {
    grid-template-columns: 1fr;
  }
  .simple-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .simple-item-card .btn-add-order {
    width: 100%;
  }
}

