/* Color Palette & Base Styling */
:root {
  --bg-warm: #FDF8F2;
  --card-bg: #FFFFFF;
  --text-dark: #3A3230;
  --rose-accent: #D8A48F;
  --rose-light: #F9EAE1;
  --whatsapp-green: #25D366;
  --radius-large: 24px;
  --radius-small: 16px;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  padding: 0 0 80px 0;
  background-color: var(--bg-warm);
  color: var(--text-dark);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

/* Map Section with Screen Width Limit */
.map-section {
  padding: 0 15px 20px;
  max-width: 1100px; /* Matches your other sections */
  margin: 0 auto;
  box-sizing: border-box;
}

.map-container {
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.map-container iframe {
  width: 100% !important;
  display: block;
  border-radius: 12px !important;
}

/* Full Width Pink Melting Drip Header (ba.jpg) */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 380px;
  background-image: url('images/ba.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 110px 20px 30px; /* Increased top padding to push content down */
  box-sizing: border-box;
}

/* Flexbox Column Layout for Perfect Center Alignment */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* Perfectly Centered Logo Card */
.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 15px auto;
  padding: 6px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 200px;
}

.hero-brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-accent);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.inline-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-content h1 { 
  font-size: 2rem; 
  margin: 8px 0; 
  font-weight: 800; 
  color: #2b2220;
}

.hero-content p { 
  font-size: 0.95rem; 
  color: #555; 
  margin-bottom: 20px; 
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background-color: var(--rose-accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-large);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(216, 164, 143, 0.4);
}

/* Touch-Swipeable Gallery With Arrows */
.showcase { 
  padding: 25px 15px; 
  max-width: 1200px;
  margin: 0 auto;
}

.showcase h2 { 
  font-size: 1.3rem; 
  margin-bottom: 15px; 
  text-align: center; 
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 5px 25px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
}

.carousel-container::-webkit-scrollbar { 
  display: none; 
}

.card {
  flex: 0 0 210px;
  scroll-snap-align: center;
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.card h3 { 
  font-size: 1rem; 
  margin: 10px 0 4px; 
}

.card p { 
  font-size: 0.8rem; 
  color: #777; 
  margin: 0; 
}

/* Arrow Buttons */
.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: var(--rose-accent);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: var(--rose-accent);
  color: #ffffff;
}

.left-btn { left: -15px; }
.right-btn { right: -15px; }

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
}

/* Catering Banner */
.catering-banner { 
  padding: 0 15px 20px; 
  max-width: 1100px; 
  margin: 0 auto;
}

.banner-card {
  background: var(--card-bg);
  border-radius: var(--radius-small);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-text { 
  padding: 15px; 
}

.banner-text h3 { 
  margin: 0 0 6px; 
  font-size: 1.1rem; 
}

.banner-text p { 
  margin: 0; 
  font-size: 0.85rem; 
  color: #666; 
}

/* Custom Inquiry Section (3 Boxes Row) */
.custom-orders { 
  padding: 15px; 
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry-box {
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.highlight-box {
  background: var(--rose-light);
  border: 1px solid rgba(216, 164, 143, 0.3);
}

.box-icon { 
  font-size: 2.2rem; 
  display: flex; 
  align-items: center; 
}

.inquiry-icon-img { 
  width: 36px; 
  height: 36px; 
  object-fit: contain; 
}

.box-content h3 { 
  margin: 0 0 5px; 
  font-size: 1.05rem; 
}

.box-content p { 
  margin: 0 0 12px; 
  font-size: 0.85rem; 
  color: #666; 
}

.btn-outline {
  display: inline-block;
  background: var(--card-bg);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid #eee;
}

/* Delivery Badges */
.delivery-platforms {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.platform-title {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.platform-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
}

.platform-btn.efood { background-color: #e63946; }
.platform-btn.wolt { background-color: #00c2e8; }

.badge-icon { 
  width: 35px; 
  height: 35px; 
  object-fit: contain; 
}

/* Reviews */
.reviews {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  margin: 15px auto;
  max-width: 1100px;
  border-radius: var(--radius-small);
}

.review-badge { 
  font-weight: 700; 
  color: #e67e22; 
  font-size: 0.9rem; 
  margin-bottom: 8px; 
}

.review-quote { 
  font-style: italic; 
  font-size: 0.85rem; 
  color: #555; 
  margin: 0; 
}

/* Footer & Social */
.site-footer {
  text-align: center;
  padding: 25px 15px;
  font-size: 0.85rem;
  color: #777;
}

.social-links { 
  margin-top: 15px; 
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.social-icon { 
  width: 38px; 
  height: 38px; 
  object-fit: contain; 
}

/* Mobile Sticky Bottom Navigation */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  z-index: 9999;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;/* Color Palette & Base Styling */
:root {
  --bg-warm: #FDF8F2;
  --card-bg: #FFFFFF;
  --text-dark: #3A3230;
  --rose-accent: #D8A48F;
  --rose-light: #F9EAE1;
  --whatsapp-green: #25D366;
  --radius-large: 24px;
  --radius-small: 16px;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  padding: 0 0 80px 0;
  background-color: var(--bg-warm);
  color: var(--text-dark);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

/* Full Width Pink Melting Drip Header (ba.jpg) */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 380px;
  background-image: url('images/ba.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 110px 20px 30px;
  box-sizing: border-box;
}

/* Flexbox Column Layout for Perfect Center Alignment */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* Centered Logo Card with Increased Size */
.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 15px auto;
  padding: 8px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
  width: 170px;
}

.hero-brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-accent);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.inline-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-content h1 { 
  font-size: 2rem; 
  margin: 8px 0; 
  font-weight: 800; 
  color: #2b2220;
}

.hero-content p { 
  font-size: 0.95rem; 
  color: #555; 
  margin-bottom: 20px; 
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background-color: var(--rose-accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-large);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(216, 164, 143, 0.4);
}

/* Touch-Swipeable Gallery With Arrows */
.showcase { 
  padding: 25px 15px; 
  max-width: 1200px;
  margin: 0 auto;
}

.showcase h2 { 
  font-size: 1.3rem; 
  margin-bottom: 15px; 
  text-align: center; 
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 5px 25px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
}

.carousel-container::-webkit-scrollbar { 
  display: none; 
}

.card {
  flex: 0 0 210px;
  scroll-snap-align: center;
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.card h3 { 
  font-size: 1rem; 
  margin: 10px 0 4px; 
}

.card p { 
  font-size: 0.8rem; 
  color: #777; 
  margin: 0; 
}

/* Arrow Buttons */
.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: var(--rose-accent);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: var(--rose-accent);
  color: #ffffff;
}

.left-btn { left: -15px; }
.right-btn { right: -15px; }

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
}

/* Catering Banner */
.catering-banner { 
  padding: 0 15px 20px; 
  max-width: 1100px; 
  margin: 0 auto;
}

.banner-card {
  background: var(--card-bg);
  border-radius: var(--radius-small);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-text { 
  padding: 15px; 
}

.banner-text h3 { 
  margin: 0 0 6px; 
  font-size: 1.1rem; 
}

.banner-text p { 
  margin: 0; 
  font-size: 0.85rem; 
  color: #666; 
}

/* Custom Inquiry Section (3 Boxes Row) */
.custom-orders { 
  padding: 15px; 
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry-box {
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.highlight-box {
  background: var(--rose-light);
  border: 1px solid rgba(216, 164, 143, 0.3);
}

.box-icon { 
  font-size: 2.2rem; 
  display: flex; 
  align-items: center; 
}

.inquiry-icon-img { 
  width: 36px; 
  height: 36px; 
  object-fit: contain; 
}

.box-content h3 { 
  margin: 0 0 5px; 
  font-size: 1.05rem; 
}

.box-content p { 
  margin: 0 0 12px; 
  font-size: 0.85rem; 
  color: #666; 
}

.btn-outline {
  display: inline-block;
  background: var(--card-bg);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid #eee;
}

/* Delivery Badges */
.delivery-platforms {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.platform-title {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.platform-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
}

.platform-btn.efood { background-color: #e63946; }
.platform-btn.wolt { background-color: #00c2e8; }

.badge-icon { 
  width: 20px; 
  height: 20px; 
  object-fit: contain; 
}

/* Reviews */
.reviews {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  margin: 15px auto;
  max-width: 1100px;
  border-radius: var(--radius-small);
}

.review-badge { 
  font-weight: 700; 
  color: #e67e22; 
  font-size: 0.9rem; 
  margin-bottom: 8px; 
}

.review-quote { 
  font-style: italic; 
  font-size: 0.85rem; 
  color: #555; 
  margin: 0; 
}

/* Footer & Social */
.site-footer {
  text-align: center;
  padding: 25px 15px;
  font-size: 0.85rem;
  color: #777;
}

.social-links { 
  margin-top: 25px; 
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.social-icon { 
  width: 35px; 
  height: 35px; 
  object-fit: contain; 
}

/* Mobile Sticky Bottom Navigation */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  z-index: 9999;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;
}

.nav-btn .icon { 
  font-size: 1.2rem; 
  margin-bottom: 3px; 
}

.nav-btn.chat-btn { 
  color: var(--whatsapp-green); 
}

/* Desktop Adjustments */
@media (min-width: 768px) {
  .mobile-sticky-bar { 
    display: none; 
  }
  
  body { 
    padding-bottom: 0; 
  }
  
  .custom-orders { 
    flex-direction: row; 
    gap: 15px; 
  }
  
  .inquiry-box { 
    flex: 1; 
  }
}/* Color Palette & Base Styling */
:root {
  --bg-warm: #FDF8F2;
  --card-bg: #FFFFFF;
  --text-dark: #3A3230;
  --rose-accent: #D8A48F;
  --rose-light: #F9EAE1;
  --whatsapp-green: #25D366;
  --radius-large: 24px;
  --radius-small: 16px;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  padding: 0 0 80px 0;
  background-color: var(--bg-warm);
  color: var(--text-dark);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

/* Full Width Pink Melting Drip Header (ba.jpg) */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 380px;
  background-image: url('images/ba.png');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 110px 20px 30px;
  box-sizing: border-box;
}

/* Flexbox Column Layout for Perfect Center Alignment */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* Centered Logo Card with Increased Size */
.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 15px auto;
  padding: 8px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
  width: 170px;
}

.hero-brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-accent);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.inline-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-content h1 { 
  font-size: 2rem; 
  margin: 8px 0; 
  font-weight: 800; 
  color: #2b2220;
}

.hero-content p { 
  font-size: 0.95rem; 
  color: #555; 
  margin-bottom: 20px; 
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background-color: var(--rose-accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-large);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(216, 164, 143, 0.4);
}

/* Touch-Swipeable Gallery With Arrows */
.showcase { 
  padding: 25px 15px; 
  max-width: 1200px;
  margin: 0 auto;
}

.showcase h2 { 
  font-size: 1.3rem; 
  margin-bottom: 15px; 
  text-align: center; 
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 5px 25px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
}

.carousel-container::-webkit-scrollbar { 
  display: none; 
}

.card {
  flex: 0 0 210px;
  scroll-snap-align: center;
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.card h3 { 
  font-size: 1rem; 
  margin: 10px 0 4px; 
}

.card p { 
  font-size: 0.8rem; 
  color: #777; 
  margin: 0; 
}

/* Arrow Buttons */
.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: var(--rose-accent);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: var(--rose-accent);
  color: #ffffff;
}

.left-btn { left: -15px; }
.right-btn { right: -15px; }

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
}

/* Catering Banner */
.catering-banner { 
  padding: 0 15px 20px; 
  max-width: 1100px; 
  margin: 0 auto;
}

.banner-card {
  background: var(--card-bg);
  border-radius: var(--radius-small);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-text { 
  padding: 15px; 
}

.banner-text h3 { 
  margin: 0 0 6px; 
  font-size: 1.1rem; 
}

.banner-text p { 
  margin: 0; 
  font-size: 0.85rem; 
  color: #666; 
}

/* Custom Inquiry Section (3 Boxes Row) */
.custom-orders { 
  padding: 15px; 
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry-box {
  background: var(--card-bg);
  border-radius: var(--radius-small);
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.highlight-box {
  background: var(--rose-light);
  border: 1px solid rgba(216, 164, 143, 0.3);
}

.box-icon { 
  font-size: 2.2rem; 
  display: flex; 
  align-items: center; 
}

.inquiry-icon-img { 
  width: 36px; 
  height: 36px; 
  object-fit: contain; 
}

.box-content h3 { 
  margin: 0 0 5px; 
  font-size: 1.05rem; 
}

.box-content p { 
  margin: 0 0 12px; 
  font-size: 0.85rem; 
  color: #666; 
}

.btn-outline {
  display: inline-block;
  background: var(--card-bg);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid #eee;
}

/* Delivery Badges */
.delivery-platforms {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.platform-title {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.platform-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
}

.platform-btn.efood { background-color: #e63946; }
.platform-btn.wolt { background-color: #00c2e8; }

.badge-icon { 
  width: 35px; 
  height: 35px; 
  object-fit: contain; 
}

/* Reviews */
.reviews {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  margin: 15px auto;
  max-width: 1100px;
  border-radius: var(--radius-small);
}

.review-badge { 
  font-weight: 700; 
  color: #e67e22; 
  font-size: 0.9rem; 
  margin-bottom: 8px; 
}

.review-quote { 
  font-style: italic; 
  font-size: 0.85rem; 
  color: #555; 
  margin: 0; 
}

/* Footer & Social */
.site-footer {
  text-align: center;
  padding: 25px 15px;
  font-size: 0.85rem;
  color: #777;
}

.social-links { 
  margin-top: 35px; 
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Instagram / Social Media Icon Size Fix */
.social-icon {
  width: 35px !important;     /* Change this number if you want it larger or smaller (e.g., 40px) */
  height: auto !important;
  object-fit: contain;
  vertical-align: middle;
}

/* Mobile Sticky Bottom Navigation */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  z-index: 9999;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;
}

.nav-btn .icon { 
  font-size: 1.2rem; 
  margin-bottom: 3px; 
}

.nav-btn.chat-btn { 
  color: var(--whatsapp-green); 
}

/* Desktop Adjustments */
@media (min-width: 768px) {
  .mobile-sticky-bar { 
    display: none; 
  }
  
  body { 
    padding-bottom: 0; 
  }
  
  .custom-orders { 
    flex-direction: row; 
    gap: 15px; 
  }
  
  .inquiry-box { 
    flex: 1; 
  }
}
}

.nav-btn .icon { 
  font-size: 1.2rem; 
  margin-bottom: 3px; 
}

.nav-btn.chat-btn { 
  color: var(--whatsapp-green); 
}

/* Desktop Adjustments */
@media (min-width: 768px) {
  .mobile-sticky-bar { 
    display: none; 
  }
  
  body { 
    padding-bottom: 0; 
  }
  
  .custom-orders { 
    flex-direction: row; 
    gap: 15px; 
  }
  
  .inquiry-box { 
    flex: 1; 
  }
}