/* BASE */
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root {
  --smoothie-red: #ef4444;
  --mango-orange: #fb923c;
  --sun-yellow: #fde047;
}
/* body {
  font-family:'Poppins', sans-serif;
  background:#fff8f5;
  color:#1f2937;
} */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(
    180deg,
    #fff7ed 0%,
    #ffe4e6 40%,
    #fff 100%
  );
}





/* NAVBAR */

.navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f1f1f1;
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:white;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}


nav a {
  margin-left:24px;
  text-decoration:none;
  color:#1f2937;
  font-weight:500;
}

nav a:hover {
  color:#f97316; /* orange accent on hover */
}

/* Button stays the same */
.btn-primary {
  background:white;
  color:#ef4444;
  padding:16px 32px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  transition:0.25s;
}
.btn-primary {
  background: linear-gradient(135deg, #fb923c, #ef4444);
  color: white;
}

.btn-primary:hover {
  background:#fef3f2;
  transform:translateY(-2px);
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}
.btn-primary{
display:inline-flex;
align-items:center;
gap:8px;
background:#ef4444;
color:white;
padding:10px 18px;
border-radius:25px;
text-decoration:none;
font-weight:600;
transition:0.2s;
}

.btn-primary:hover{
background:#dc2626;
transform:translateY(-1px);
}



/* .hero-content h1 {
  font-size: 56px;
  font-family: 'Merienda', cursive;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
} */
/* .arrow {
  transition: transform 0.25s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.hero-button:hover .arrow {
  transform: translateX(6px);
} */

/* SOCIAL MEDIA */
.social-media {
  text-align:center;
  margin:40px 0;
}

.social-icon {
  margin:0 12px;
  text-decoration:none;
  color:#ef4444;
  font-weight:600;
  transition:0.2s;
}

.social-icon:hover {
  color:#f97316;
}

/* LOCATION */
.location-preview {
  text-align:center;
  padding:40px 20px;
}

.location-preview h2 {
  font-size:28px;
  margin-bottom:12px;
  color:#10b981; /* green smoothie accent */
}

/* FOOTER */
footer {
  text-align:center;
  padding:30px;
  background:#1f2937;
  color:white;
}

/* Navbar Logo */
/*.logo {
  font-family: 'Cookie', cursive;
  font-size: 36px;
  font-weight: normal;
  color: #ef4444;
  display: flex;
  align-items: center;
}*/


.logo:hover {
  color: #f97316; /* bright orange on hover */
  transform: scale(1.05);
  transition: 0.25s;
}

/* Navbar Container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column; /* logo on top, nav below */
  align-items: center;
  justify-content: space-between;
padding: 10px 20px;
}

/* Logo */
/*.logo {
  font-family: 'Cookie', cursive;
  color: #ef4444;
  text-align: center;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: :bold;
}*/

/* LOGO - clean, single rule */
/*.logo {
  font-family: 'Cookie', cursive;
  font-size: 36px;
  font-weight: normal;
  color: #ef4444;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s, color 0.25s;
}*/

.logo:hover {
  color: #f97316;   /* hover orange */
  transform: scale(1.05);
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/* Nav below logo */
.nav-below {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap; /* wraps on smaller screens */
}

.nav-below a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: 0.25s;
}

.nav-below a:hover {
  color: #f97316; /* orange hover */
  transform: scale(1.05);
}

/* Optional: add a subtle underline hover effect */
.nav-below a::after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: #f97316;
  transition: width 0.3s;
}

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

/* Social Media Section */
.social-media {
  text-align: center;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Social Icon Buttons */
/*
.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  color: #ef4444;
  font-size: 24px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.social-icon.instagram:hover {
  background: #E1306C;
  color: white;
}

.social-icon.tiktok:hover {
  background: #010101;
  color: #00f2ea;
}

.social-icon.facebook:hover {
  background: #1877F2;
  color: white;
}


.social-footer {
  text-align: center;
  margin: 60px 0 40px 0;
}

.social-footer h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1f2937;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #ef4444;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.social-icons a.instagram:hover { background: #E1306C; color: white; }
.social-icons a.tiktok:hover { background: #010101; color: #00f2ea; }
.social-icons a.facebook:hover { background: #1877F2; color: white; }
.social-icons a.youtube:hover { background: #FF0000; color: white; }
.social-icons a.pinterest:hover { background: #E60023; color: white; }*/

/* Social Icon Circles */
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icons a img {
  width: 24px;
  height: 24px;
}

/* Hover colors for each platform */
.social-icons a.instagram:hover { background: #E1306C; }
.social-icons a.tiktok:hover { background: #010101; }
.social-icons a.facebook:hover { background: #1877F2; }

.social-footer {
  text-align: center;       /* centers the header */
  margin: 60px 0 40px 0;
}

.social-footer h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1f2937;
}

/* flex container for icons */
.social-icons {
  display: flex;            /* make icons a row */
  justify-content: center;  /* center them horizontally */
  gap: 18px;                /* spacing between icons */
  flex-wrap: wrap;          /* wrap on smaller screens */
}

.location-hours {
  text-align: center;
  margin: 50px 20px;
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
}

.location-hours h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.location-hours .address {
  font-size: 16px;
  margin-bottom: 25px;
  color: #4b5563;
}

.hours-table {
  margin: 0 auto; /* center table */
  border-collapse: collapse;
  font-size: 16px;
}

.hours-table td {
  padding: 8px 20px;
  text-align: left;
  color: #1f2937;
}

.hours-table tr:nth-child(even) td {
  background: #f3f4f6; /* subtle stripe for readability */
}

.hours-table tr td:first-child {
  font-weight: 500;
  width: 120px;
}

.hours-table tr td:last-child {
  text-align: right;
  font-weight: 400;
}

section {
  background: white;
  max-width: 1100px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Feature Section */

.features {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1f2937;
}

.all-titles {
  font-size: 28px;
  font-weight: 600;
  color: #1f2937;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ef4444;
}

.feature-card p {
  font-size: 15px;
  color: #4b5563;
}




/* VISIT SECTION */
.visit-section {
  background: white;
  padding: 70px 20px;
  text-align: center;
}

.visit-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.visit-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.visit-left,
.visit-right {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.address {
  margin-bottom: 20px;
  line-height: 1.6;
}

.hours {
  list-style: none;
  padding: 0;
}

.hours li {
  margin-bottom: 6px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}




/* Follow Us Section Alignment */

.follow-us-block {
  text-align: center;      /* center heading and icons as one block */
}

.follow-us-block h3 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
  /*color: #ef4444;          match the color of day names for consistency */
  color: #1f2937;
}

.social-icons {
  display: flex;
  justify-content: center;  /* center the icons horizontally */
  gap: 20px;
}

.social-icons a {
  font-size: 26px;
  color: #ef4444;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}



/* HOURS TABLE */

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.hours-table td {
  padding: 8px 0;
  font-size: 15px;
  color: #1f2937;
}

.hours-table tr td:first-child {
  font-weight: 500;
  width: 120px;
  color: #ef4444; /* highlight day names */
}

.hours-table tr td:last-child {
  text-align: right;
  font-weight: 400;
  color: #4b5563; /* subtle for hours */
}

.hours-table tr:nth-child(even) td {
  background: #fff1e0; /* light peach stripe for readability */
}
.featured-section {
  padding: 60px 20px;
  text-align: center;
}

.featured-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}



.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 cards */
  gap: 20px;
}

/*.featured-grid {
 display: flex;
 gap: 20px;
 flex-wrap: wrap;
}*/
/* Tablet */
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .featured-grid {
    grid-template-columns: 1fr; /* 1 card */
  }
}
@media (max-width: 768px) {

  .featured-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 16px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .featured-grid::-webkit-scrollbar {
    display: none;
  }

  .card {
    flex: 0 0 75%;              /* 👈 smaller = better centering */
    max-width: 300px;
    scroll-snap-align: center;

    background: #fff;
    border-radius: 16px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
  }

}



.card:hover {
  transform: translateY(-6px);
}



.badge {
  background: #ff6b35;
  color: #fff;
  font-weight: bold;
  position: absolute;
top: 10px;
left: 10px;
font-size: 11px;
padding: 5px 10px;
border-radius: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 14px;
  margin-top: auto; /* 👈 IMPORTANT */
}

.order-btn {
  background: #28c76f;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 1rem;
  color: #666;
}
.logo{
  font-size:22px;
  font-weight:bold;
}

.nav-links{
  display:flex;
  gap:20px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:500;
    transition: color 0.3s;
}
.nav-links a:hover {
  color: #ff6600;
}
.order-dropdown{
  position:relative;
}

.order-btn{
  background:#6C9A8B;
  color:white;
  padding:8px 12px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}

.order-menu{
  display:none;
  position:absolute;
  left:0;
  top:110%;
  background:white;
  width:230px;
  overflow:hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
border-radius: 5px;
min-width: 180px;
flex-direction: column;
}

.order-menu{
  display:none;
  position:absolute;
  right:0;
  top:45px;
  background:white;
  width:230px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
  overflow:hidden;
  z-index:2000;
}

.order-menu a:hover{
  background:#f4f4f4;
}

.platform-logo{
  width:20px;
  height: 20px;
}


  /* Hamburger */
  .hamburger {
    display: none;
  }

  /* Mobile Menu */
   .mobile-menu {
  /*   position: absolute;
     top: 60px;
     left: 0;
     width: 100%;
     background: #fff;
     box-shadow: 0 3px 10px rgba(0,0,0,0.2);
     flex-direction: column;
     z-index: 999;
     padding: 10px 0; */
     display: none; /* hidden by default */
   }

  .mobile-menu a {
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  /* Footer Bar */
  .footer-bar {
    background: #333;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
  }

  .footer-container a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
  }

  .footer-container a:hover {
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .hamburger {
      display: block;
      font-size: 1.8rem;
cursor: pointer;
    }
    .mobile-menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  flex-direction: column;
  z-index: 999;
  padding: 10px 0;
  display: none; /* hidden by default */
}
    .mobile-menu.show {
      display: flex !important;
flex-direction: column;
    }
  }

  /* Mobile navbar buttons */
.mobile-navbar-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Hide these on desktop */
@media (min-width: 769px) {
  .mobile-navbar-buttons {
    display: none;
  }
}

/* Show on mobile */
@media (max-width: 768px) {
  .mobile-navbar-buttons {
    display: flex;
  }

  /* Adjust order dropdown for mobile if needed */
  .order-dropdown .order-btn {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}


/* Mobile Navbar Buttons - remove default link styling */
.mobile-navbar-buttons a,
.mobile-navbar-buttons .order-btn {
  text-decoration: none;      /* remove underline */
  color: #333;                /* same as desktop links */
  font-weight: 500;           /* same weight as desktop */
  background: none;           /* remove default button styling if needed */
  border: none;               /* remove borders */
  padding: 0;                 /* adjust spacing if needed */
  cursor: pointer;
  font-size: 1rem;            /* same as desktop link */
  display: flex;
  align-items: center;
}

/* Hover effect like desktop */
.mobile-navbar-buttons a:hover,
.mobile-navbar-buttons .order-btn:hover {
  color: #45a049;
  text-decoration: none;
}

/* Remove default link styling for the logo text */
.logo a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
}

/* If mobile logo text inherits link color, ensure it matches desktop */
@media (max-width: 768px) {
  .logo a {
    color: #333;
  }
}

/* Ensure mobile order button matches desktop completely */
.mobile-navbar-buttons .order-btn {
  background: #28c76f;       /* exact desktop orange */
  color: #fff;               /* white text */
  border: none;              /* remove any borders */
  border-radius: 5px;        /* same rounding as desktop */
  padding: 8px 12px;         /* match desktop */
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;                  /* space for icon if any */
  font-size: 1rem;           /* same as desktop */
  text-decoration: none;     /* no underline */
}

/* Hover state exactly like desktop */
.mobile-navbar-buttons .order-btn:hover {
  background: #45a049;       /* exact hover color as desktop */
  color: #fff;               /* text stays white */
}

.google-badge {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  border-radius: 30px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.badge-stars {
  color: #fbbc04;
  font-size: 14px;
  letter-spacing: 2px;
}

.badge-text {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .google-badge {
    font-size: 13px;
    padding: 8px 14px;
  }
}


.reviews-section {
  padding: 70px 20px;
  background: #fafafa;
  text-align: center;
}

.reviews-section h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.reviews-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
  flex: 0 0 calc(33.33% - 20px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: left;
}

.review-stars {
  color: #fbbc04;
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-name {
  font-weight: bold;
  font-size: 14px;
  color: #444;
}

/* Button Slide */

.review-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.review-buttons a {
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}

.google-read {
  background: #f5f5f5;
  color: #333;
}

.google-write {
  background: #4285F4;
  color: white;
}

/* Slider buttons */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: white;
  font-size: 28px;
  padding: 6px 14px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.prev { left: -10px; }
.next { right: -10px; }

/* Responsive */

@media (max-width: 900px) {

  .review-card {
    flex: 0 0 calc(50% - 20px);
  }

}

@media (max-width: 600px) {

  .review-card {
    flex: 0 0 100%;
  }

}

.review-cta {

  margin-top: 40px;
  padding: 28px 24px;

  background: #ffffff;

  border-radius: 12px;

  text-align: center;

  box-shadow: 0 6px 16px rgba(0,0,0,0.08);

}

.review-cta h3 {

  font-size: 20px;
  margin-bottom: 10px;

}

.review-cta p {

  font-size: 14px;
  color: #555;
  margin-bottom: 18px;

}

.review-cta-button {

  display: inline-block;

  padding: 10px 18px;

  background: #4285F4;

  color: white;

  border-radius: 24px;

  text-decoration: none;

  font-weight: 500;

  transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.review-cta-button:hover {

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

}

form input,
form textarea{
width:100%;
padding:12px;
margin-bottom:14px;
border-radius:8px;
border:1px solid #ddd;
font-family:'Poppins',sans-serif;
}

form textarea{
resize:vertical;
}

.chat-links{
display:flex;
gap:12px;
margin-top:10px;
flex-wrap:wrap;
}

.chat-btn{
display:inline-flex;
align-items:center;
gap:8px;
padding:10px 16px;
border-radius:30px;
text-decoration:none;
font-weight:500;
color:white;
transition:0.2s;
}

.chat-btn i{
font-size:18px;
}

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

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

.chat-btn.messenger{
background:#1877F2;
}

.chat-btn.messenger:hover{
background:#0f65d9;
}

.location-link{
display:inline-flex;
align-items:center;
gap:6px;
margin-left:8px;
padding:6px 12px;
background:#ef4444;
color:white;
border-radius:20px;
font-size:14px;
text-decoration:none;
transition:0.2s;
}

.location-link:hover{
background:#dc2626;
transform:translateY(-1px);
}

.contact-links{
display:flex;
flex-direction:column;
gap:12px;
margin-top:10px;
}

.contact-chip{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 16px;
background:#fff7ed;
border-radius:30px;
text-decoration:none;
color:#1f2937;
font-weight:500;
width:fit-content;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.2s;
}

.contact-chip i{
color:#ef4444;
font-size:16px;
}

.contact-chip:hover{
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

.contact-link a {
  color: #ef4444;        /* brand red */
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.contact-link a:hover {
  text-decoration: underline;
  color: #dc2626;        /* darker red on hover */
}

.faq-section {
   max-width: 900px;
   margin: 50px auto;
   padding: 30px;
   background: white;
   border-radius: 16px;
   box-shadow: 0 10px 25px rgba(0,0,0,0.06);
 }
 .faq-section h2 {
   font-family: 'Poppins';
   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 30px;
 }
 .faq-item {
   margin-bottom: 20px;
 }
 .faq-item h3 {
   font-size: 1.2rem;
   color: #1f2937;
   cursor: pointer;
   position: relative;
   padding-right: 20px;
 }
 .faq-item h3::after {
   content: '\f107';
   font-family: 'Font Awesome 6 Free';
   font-weight: 900;
   position: absolute;
   right: 0;
   top: 0;
   color: #ef4444;
   transition: transform 0.3s ease;
 }
 .faq-item p {
   font-size: 1rem;
   color: #4b5563;
   margin-top: 8px;
   display: none;
 }
 .faq-item.open p {
   display: block;
 }
 .faq-item.open h3::after {
   transform: rotate(180deg);
 }
 .faq-links {
   text-align: center;
   margin-top: 40px;
   font-size: 1rem;
 }
 .faq-links a {
   color: #ef4444;
   font-weight: 600;
   text-decoration: none;
   border-bottom: 2px solid #ef4444;
   transition: 0.25s;
 }
 .faq-links a:hover {
   color: #f97316;
   border-bottom-color: #f97316;
 }
 .read-more {
   color: #4CAF50;
   font-weight: 600;
   text-decoration: none;
   margin-left: 5px;
 }

 .read-more:hover {
   text-decoration: underline;
 }



.card {
  flex: 1 1 300px; /* grow, shrink, base width */
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card {
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 15px;
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
}

/* .card img {aspect-ratio: 4/3;
    border-radius: 10px;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
} */
.card img {
  width: 100%;
  height: 140px; /* smaller = cleaner */
  object-fit: contain; /* 👈 KEY FIX */
  background: #fff;
  padding: 10px;
}


.card h3 {
  font-size: 17px;
  margin: 10px 12px 4px;
  text-align: center;
}

/* .card p {
flex-grow: 1; /* pushes footer to bottom */ /*}*/


.card p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0 14px 12px;
  text-align: center;
}





.badge.popular { background-color: #ff6f61; }
.badge.protein { background-color: #ff6f61; }
.badge.trending { background-color: #ff6f61; }

.featured-section h2 {
  margin: 0;
  font-size: 2rem; /* adjust as needed */
}

.featured-section p {
  margin: 5px 0 20px 0; /* smaller top margin, some bottom margin */
  font-size: 1rem;
  color: #555; /* optional: lighter text */
}

.order-btn:hover {
  background: #45a049;
}




.nav-container .logo:hover,
.logo a:hover {
  color: #f97316;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .nav-container .logo,
  .logo a {
    font-size: 32px !important;  /* scales down nicely on phones */
  }
}

/* Rainbow logo text */
.nav-container .logo,
.logo a {
  font-family: 'Cookie', cursive;  /* or Impallari */
  font-size: 40px !important;
  font-weight: normal;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;

  /* rainbow gradient */
  background: linear-gradient(90deg, #ef4444, #10b981); /* red to green */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: transform 0.25s ease;
}

@media (max-width: 600px) {
  .featured-section {
    padding: 40px 15px;
  }

  .featured-section h2 {
    font-size: 1.6rem;
  }

  .featured-section p {
    font-size: 0.95rem;
  }
}
.featured-dots {
  display: none;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ddd;
  border-radius: 50%;
  transition: 0.3s;
}

.dot.active {
  background: #ef4444; /* your brand red */
  transform: scale(1.2);
}

/* Show dots only on mobile */
@media (max-width: 768px) {
  .featured-dots {
    display: flex;
  }
}
/* FEATURED CAROUSEL */

.featured-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.featured-track {
  display: flex;
transition: transform 0.5s ease-in-out;
}

/* Cards behave like reviews */
.featured-track .card {
  flex: 0 0 33.33%;
  padding: 10px;
}

/* Tablet */
@media (max-width: 900px) {
  .featured-track .card {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .featured-track .card {
    flex: 0 0 100%;
  }
}

/* Slider buttons (reuse your review styles if you want) */
.featured-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: white;
  font-size: 28px;
  padding: 6px 14px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

.featured-slider .prev { left: -10px; }
.featured-slider .next { right: -10px; }
.featured-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.featured-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* Desktop */
.featured-track .card {
  flex: 0 0 calc(33.33% - 20px);
  margin: 10px;
}

/* Tablet */
@media (max-width: 900px) {
  .featured-track .card {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .featured-track .card {
    flex: 0 0 100%;
    margin: 0;
  }
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: white;
  font-size: 28px;
  padding: 6px 14px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  z-index: 10;
}

.prev { left: -10px; }
.next { right: -10px; }


.google-icon-small {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}
.card .view-nutrition-btn-item {
  margin-top: 6px;
}

.card p {
  margin-bottom: 6px;
}

.card:hover .view-nutrition-btn-item {
  transform: translateY(-1px);
}
