/* ==========================================================================
   POP PIE ANGONO - DESIGN SYSTEM & STYLESHEET
   Version: 1.0.0
   ========================================================================== */

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

:root {
  /* Color Palette - Warm Bakery & Modern Aesthetic */
  --primary-gold: #e67e22;
  --primary-hover: #d35400;
  --crust-dark: #2c1810;
  --crust-warm: #4a2511;
  --crust-amber: #f39c12;
  --bg-cream: #fffdf9;
  --bg-card: #ffffff;
  --bg-warm-light: #fef8f0;
  --bg-warm-accent: #fbebd8;
  --text-dark: #1f1917;
  --text-muted: #6e6259;
  --text-light: #f8f6f0;
  --border-light: #f0e4d4;

  /* Accent Colors */
  --ube-purple: #8e44ad;
  --ube-light: #f4ecf7;
  --gcash-green: #00a859;
  --mango-gold: #f1c40f;
  
  /* Utilities */
  --shadow-sm: 0 4px 12px rgba(44, 24, 16, 0.05);
  --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 16px 36px rgba(44, 24, 16, 0.12);
  --shadow-glow: 0 0 25px rgba(230, 126, 34, 0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, .brand-font {
  font-family: 'Playfair Display', Georgia, serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Common */
.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  background: var(--bg-warm-accent);
  color: var(--crust-warm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--crust-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 40px auto;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), #d35400);
  color: #ffffff;
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(211, 84, 0, 0.35);
  background: linear-gradient(135deg, #f39c12, var(--primary-gold));
}

.btn-secondary {
  background: var(--bg-warm-light);
  color: var(--crust-dark);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-warm-accent);
  color: var(--crust-warm);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1eb956;
}

.btn-messenger {
  background: #0084FF;
  color: #fff;
}

.btn-messenger:hover {
  background: #0072e0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-reset {
  background: #ffebee;
  color: #c62828;
  border: 1.5px solid #ffcdd2;
}

.btn-reset:hover {
  background: #ffcdd2;
  color: #b71c1c;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--primary-gold);
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--crust-dark);
  white-space: nowrap;
  line-height: 1;
}

.brand-text span {
  color: var(--primary-gold);
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold);
}

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

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

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

.mobile-status-item {
  display: none;
}

.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.store-status-badge.closed {
  background: #ffebee;
  color: #c62828;
  border-color: #ef9a9a;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
  animation: pulse 2s infinite;
}

.closed .status-dot {
  background: #c62828;
  box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.2);
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--crust-dark);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 140px;
  padding-bottom: 90px;
  background: radial-gradient(circle at 80% 20%, #fde6d2 0%, var(--bg-cream) 60%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 126, 34, 0.12);
  color: var(--crust-warm);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--crust-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-title span {
  color: var(--primary-gold);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--crust-warm);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-warm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-media {
  position: relative;
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.hero-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-box:hover img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.floating-card.top-right {
  top: -20px;
  right: -20px;
}

.floating-card.bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

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

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

.floating-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--crust-dark);
  line-height: 1.2;
}

.floating-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
  background: var(--bg-warm-light);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-sm);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.menu-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 126, 34, 0.4);
}

.menu-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.08);
}

.menu-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(44, 24, 16, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.menu-card-badge.promo {
  background: #e74c3c;
}

.menu-card-badge.ube {
  background: var(--ube-purple);
}

.menu-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--crust-dark);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border-light);
  padding-top: 14px;
  margin-top: auto;
}

.menu-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.menu-card-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.order-add-btn {
  background: var(--bg-warm-accent);
  color: var(--crust-warm);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.order-add-btn:hover {
  background: var(--primary-gold);
  color: #fff;
}

/* ==========================================================================
   PROMO BANNER
   ========================================================================== */
.promo-section {
  background: linear-gradient(135deg, var(--crust-dark), #3d1c0b);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.promo-tag {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.promo-title {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 12px;
}

.promo-desc {
  font-size: 1.05rem;
  color: #d0c4b8;
  margin-bottom: 24px;
}

.promo-price-box {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.promo-main-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.promo-sub-price {
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.promo-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border: 4px solid rgba(255,255,255,0.15);
}

.promo-img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ==========================================================================
   SHELF LIFE & STORAGE SECTION
   ========================================================================== */
.storage-section {
  background: var(--bg-cream);
}

.storage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.storage-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.storage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.storage-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-warm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.storage-card h3 {
  font-size: 1.4rem;
  color: var(--crust-dark);
  margin-bottom: 10px;
}

.storage-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-gold);
  background: var(--bg-warm-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.storage-list {
  list-style: none;
}

.storage-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.storage-list li:last-child {
  border-bottom: none;
}

.storage-list li::before {
  content: '🥧';
  font-size: 0.9rem;
}

/* ==========================================================================
   CUSTOMER FEEDBACK & GALLERY
   ========================================================================== */
.gallery-section {
  background: var(--bg-warm-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 3px solid #ffffff;
}

.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: rgba(44, 24, 16, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  transition: opacity 0.3s ease;
}

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

/* ==========================================================================
   ORDER MODAL & FORM
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 25, 23, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-warm-light);
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--crust-dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--crust-dark);
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--crust-dark);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: var(--bg-cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

/* Safari & WebKit Dropdown Fix */
.form-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background-color: var(--bg-cream);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e67e22' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 10px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.order-items-builder {
  background: var(--bg-warm-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.order-item-row:last-child {
  margin-bottom: 0;
}

.order-item-qty {
  width: 60px;
}

.order-item-select {
  flex-grow: 1;
}

.btn-remove-item {
  background: #ffecb3;
  color: #c62828;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.order-summary-box {
  background: var(--crust-dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.order-summary-box pre {
  font-family: inherit;
  white-space: pre-wrap;
  font-size: 0.9rem;
  color: #ebd6c1;
}

/* Order Notice Reminder Box */
.order-notice-box {
  background: #fff8e1;
  border: 1.5px dashed #f57c00;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.order-notice-icon {
  font-size: 1.25rem;
  color: #e65100;
  flex-shrink: 0;
  margin-top: 1px;
}

.order-notice-text {
  font-size: 0.88rem;
  color: #4e342e;
  line-height: 1.5;
}

.order-notice-text strong {
  color: #d84315;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT & LOCATION
   ========================================================================== */
.contact-section {
  background: var(--bg-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info-card, .map-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.contact-info-card:hover, .map-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 126, 34, 0.3);
}

.contact-card-header, .map-card-header {
  padding: 24px 30px;
  background: var(--bg-warm-light);
  border-bottom: 1px solid var(--border-light);
}

.contact-card-header h3, .map-card-header h3 {
  font-size: 1.4rem;
  color: var(--crust-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card-header p, .map-card-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-items-wrapper {
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.contact-item:hover {
  background: #ffffff;
  border-color: var(--primary-gold);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-warm-accent);
  color: var(--crust-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-icon.hours { background: #e8f5e9; color: #2e7d32; }
.contact-icon.phone { background: #e3f2fd; color: #1565c0; }
.contact-icon.whatsapp { background: #e8f5e9; color: #25d366; }
.contact-icon.messenger { background: #e3f2fd; color: #0084ff; }
.contact-icon.email { background: #f3e5f5; color: #7b1fa2; }
.contact-icon.payment { background: #fff8e1; color: #f57f17; }

.contact-detail {
  flex-grow: 1;
}

.contact-detail h4 {
  font-size: 0.95rem;
  color: var(--crust-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-detail p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-link {
  color: var(--crust-dark);
  font-weight: 600;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--primary-gold);
  text-decoration: underline;
}

.contact-action-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.payment-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.payment-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.payment-tag.gcash {
  background: #00a859;
  color: #ffffff;
}

.payment-tag.cash {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* Map Card */
.map-iframe-container {
  width: 100%;
  height: 320px;
  background: #e5e0d8;
  position: relative;
  flex-grow: 1;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card-footer {
  padding: 20px 24px;
  background: var(--bg-warm-light);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-store-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-store-notice i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.map-pin-btn {
  width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--crust-dark);
  color: #d0c4b8;
  padding: 60px 0 30px 0;
}

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

.footer-brand h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  color: #a89a8c;
  max-width: 360px;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a89a8c;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8c7e70;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZATIONS)
   ========================================================================== */

/* Tablets & Small Laptops (<= 992px) */
@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }

  .hero-grid, .promo-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-img-box img {
    height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  /* Navbar Mobile Header Fix */
  .navbar-container {
    height: 66px;
    padding: 0 12px;
    gap: 8px;
  }

  .brand-logo {
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .brand-logo img {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .desktop-status-badge {
    display: none !important; /* Hide status badge from top bar on mobile to prevent crowding */
  }

  .mobile-status-item {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-warm-light);
  }

  .nav-extra {
    gap: 8px;
    flex-shrink: 0;
  }

  .header-order-btn {
    padding: 7px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
    border-radius: var(--radius-full);
    flex-shrink: 0;
  }

  .header-order-btn i {
    font-size: 0.85rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
    border-bottom: 2px solid var(--border-light);
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(240, 228, 212, 0.5);
  }

  .nav-link::after {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-warm-light);
    font-size: 1.2rem;
  }

  /* Hero Section Mobile */
  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-features {
    flex-wrap: wrap;
    gap: 14px;
  }

  .feature-item {
    font-size: 0.85rem;
  }

  .hero-img-box img {
    height: 280px;
  }

  .floating-card {
    display: none; /* Hide floating badges on mobile to prevent clutter */
  }

  /* Section Common Mobile */
  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  /* Promo Section Mobile */
  .promo-section {
    padding: 30px 20px;
    margin: 20px 0;
  }

  .promo-title {
    font-size: 1.8rem;
  }

  .promo-price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .promo-main-price {
    font-size: 1.8rem;
  }

  .promo-sub-price {
    font-size: 1rem;
  }

  .promo-img-box img {
    height: 200px;
  }

  /* Menu Tabs Mobile */
  .menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 0.88rem;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .menu-card-img-wrap {
    height: 190px;
  }

  .menu-card-content {
    padding: 16px;
  }

  .menu-card-title {
    font-size: 1.15rem;
  }

  /* Storage Cards Mobile */
  .storage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .storage-card {
    padding: 24px 20px;
  }

  /* Gallery Grid Mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 150px;
  }

  /* Contact Items Mobile */
  .contact-card-header, .map-card-header {
    padding: 18px 20px;
  }

  .contact-items-wrapper {
    padding: 18px 20px;
    gap: 14px;
  }

  .contact-item {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
  }

  .contact-action-btn {
    width: 100%;
    margin-top: 4px;
  }

  .map-iframe-container {
    height: 260px;
  }

  .map-card-footer {
    padding: 16px;
  }

  /* Order Modal Mobile */
  .modal-card {
    max-height: 94vh;
    border-radius: var(--radius-md);
  }

  .modal-header {
    padding: 18px 20px;
  }

  .modal-body {
    padding: 20px 16px;
  }

  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .modal-actions .btn {
    width: 100%;
  }

  /* Footer Mobile */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item {
    height: 130px;
  }

  .order-item-row {
    flex-wrap: wrap;
    gap: 8px;
    background: #ffffff;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
  }

  .order-item-qty {
    width: 70px;
  }

  .order-item-select {
    width: calc(100% - 130px);
  }

  .btn-remove-item {
    margin-left: auto;
  }
}

