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

:root {
  --primary-color: #ff9800;
  --primary-dark: #f57c00;
  --secondary-color: #e1306c;
  --light-bg: #fffaf3;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
  --border-radius: 12px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-top: max(0px, env(safe-area-inset-top));
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.logo span {
  display: inline-block;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  touch-action: manipulation;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  /* min-height: 100vh;
  padding-top: 80px; */
  height: calc(100vh - 80px);
  /* subtract navbar */
  padding-top: 5%;
  /* remove extra push */
  background: url('assets/logo-bg.png') right center / 55% no-repeat,
    linear-gradient(135deg, #fffaf3, #fff);
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 152, 0, 0.1), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 200, 87, 0.1), transparent 50%);
  pointer-events: none;
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #e65100);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
}

.btn-secondary:hover {
  background: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-light {
  background: white;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: var(--light-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
  text-align: center;
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(135deg, #fff9f5, white);
}

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

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  font-size: 1.1rem;
}

.about-list li {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.05), rgba(255, 200, 87, 0.05));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== FLAVORS SECTION ===== */
.flavors {
  background: white;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.flavor-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.flavor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.flavor-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.flavor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.flavor-card:hover .flavor-image img {
  transform: scale(1.1);
}

.flavor-card h3 {
  padding: 25px 20px 10px;
  margin: 0;
}

.flavor-card p {
  padding: 0 20px 15px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin: 0 20px;
  font-weight: 600;
}

/* ===== MENU SECTION ===== */
.menu {
  background: linear-gradient(135deg, #fff5e6, white);
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.menu-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s;
}

.menu-card:hover,
.flavor-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.menu-card.highlight {
  border: 3px solid red;
  /* 3px solid var(--primary-color, red); */
  position: relative;
}


.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card h3 {
  padding: 20px 20px 5px;
  margin: 0;
  font-size: 1.3rem;
}

.menu-card p {
  padding: 0 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.price {
  padding: 15px 20px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* .discount {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  margin-right: 20px;
  font-weight: 600;
} */

/* ===== PREMIUM DISCOUNT BADGE ===== */
.discount {
  display: inline-block;

  background: linear-gradient(135deg, #c70000, #ff9800);
  color: white;

  padding: 6px 14px;
  border-radius: 20px;

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;

  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.4);

  position: relative;
  overflow: hidden;
}

/* Shine effect */
.discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);

  transition: 0.6s;
}

/* Hover shine */
.discount:hover::before {
  left: 100%;
}

/* Slight hover pop */
.discount:hover {
  transform: scale(1.05);
}

.menu-card .btn {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
}

.bulk-section {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-radius: var(--border-radius);
  margin-top: 50px;
}

.bulk-section h3 {
  color: white;
  font-size: 1.8rem;
}

.bulk-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, #fff9f5, white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s;
}

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

.stars {
  font-size: 1.3rem;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.verified {
  display: inline-block;
  color: #4caf50;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 80px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: var(--light-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== INSTAGRAM FEED SECTION ===== */
.instagram-feed {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.05), rgba(255, 152, 0, 0.05));
  text-align: center;
}

.instagram-feed p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.instagram-feed .btn {
  font-size: 1.1rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(135deg, #fff9f5, white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 30px;
}

.info-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
  margin: 0;
}

.info-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: white;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: var(--primary-color);
  /* color: #ccc; */
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 152, 0, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  padding-bottom: max(30px, env(safe-area-inset-bottom));
  text-align: center;
  color: #999;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    display: block;
    padding: 12px 0;
  }

  .hero {
    height: 60vh;
    padding-top: 80px;
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-content {
    padding: 20px;
  }

  .section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .section h3 {
    font-size: 1.3rem;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .features-grid,
  .flavors-grid,
  .pricing-table,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .cta-banner p {
    font-size: 1.2rem;
  }

  .footer-grid {
    gap: 20px;
  }

  .section {
    padding: 60px 20px;
  }

  /* Hide overflow-causing pseudo-elements on mobile */
  .section::after,
  .instagram-feed::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 18px;
    gap: 8px;
  }

  .logo-img {
    width: 32px;
    height: 32px;
  }

  .navbar-container {
    padding: 12px 15px;
  }

  .hero {
    height: 50vh;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .hero-content {
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .menu-card h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1.5rem;
  }

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

  /* Hide overflow-causing pseudo-elements on very small mobile */
  .section::after,
  .instagram-feed::after {
    display: none;
  }
}

/* ===== ULTRA-SMALL SCREENS (< 360px) ===== */
@media (max-width: 360px) {
  .logo {
    font-size: 16px;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }

  .navbar-container {
    padding: 10px 12px;
  }

  .hero {
    height: 45vh;
    padding-top: 55px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

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

  .section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .section {
    padding: 40px 15px;
  }

  /* Hide overflow-causing pseudo-elements on ultra-small screens */
  .section::after,
  .instagram-feed::after {
    display: none;
  }
}

.hero-buttons {
  margin-top: 50px;
  /* more spacing from center */
}

/* Optional: make it look more premium */
.hero-buttons .btn {
  min-width: 160px;
}



/* ===== IMAGE POPUP ===== */
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  touch-action: pinch-zoom;
}

.image-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  touch-action: pinch-zoom;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.image-popup.active .popup-img {
  transform: scale(1);
}

/* Close button */
.close-popup {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* Prevent scroll when popup open */
body.popup-open {
  overflow: hidden;
}

/* Click indicator */
.flavor-image,
.menu-card {
  position: relative;
}

/* Apply indicator to both */
.flavor-image::after,
.menu-card::after {
  content: "Click to view";
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  opacity: 0;
  transition: 0.3s;
}

/* Show on hover */
.flavor-card:hover .flavor-image::after,
.menu-card:hover::after {
  opacity: 1;
}

/* Always visible on mobile */
@media (max-width: 768px) {

  .flavor-image::after,
  .menu-card::after {
    opacity: 1;
  }
}

.section {
  padding: 100px 20px;
  /* increase from 80px */
}

.hero-buttons {
  margin-top: 30px;
}

.menu-card,
.flavor-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float {
  bottom: 20px;
  right: 20px;
}

/* Move scroll-top above WhatsApp */
.scroll-top {
  bottom: 90px !important;
  right: 20px;
}

.scroll-top {
  bottom: 85px !important;
}

.whatsapp-float {
  bottom: 20px;
}

/* Optional spacing consistency */
.whatsapp-float,
.scroll-top {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 75px !important;
  }
}

.hero-content {
  background: transparent;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-trust {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

.hero-content h1 {
  margin-bottom: 10px;
}

.hero-content p {
  margin-bottom: 25px;
}

.hero {
  background-image: none !important;
  justify-content: center !important;
  /* center content */
  /* padding-left: 5%; */
}

/* Layout */
.hero-container {
  max-width: 1200px;
  padding: 0 20px;
  /* keep consistent spacing */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 90px;
  /* increased spacing */
  width: 100%;
}

.hero-right {
  flex: 1.1;
  min-width: 300px;
  margin-left: 20px;
}

/* LEFT SIDE (fill space better) */
.hero-left {
  flex: 1;
  max-width: 550px;
  padding-right: 40px;
  /* creates space from image */
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 30px;
  border-radius: 24px;
}

/* Improve text presence */
.hero-left h1 {
  font-size: 3.5rem;
}

.hero-left p {
  font-size: 1.3rem;
}

/* RIGHT SIDE */
.hero-right {
  flex: 1.2;
  /* more weight to image */
  display: flex;
  justify-content: center;
  position: relative;
}

/* BIGGER IMAGE */
.hero-right img {
  width: 100%;
  max-width: 650px;
  /* increased */
  transform: scale(1);
  /* bigger visual */
  border-radius: 20px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
  animation: floatImage 5s ease-in-out infinite;
}

/* FLOAT */
@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* GLOW (bigger now) */
.hero-right::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 152, 0, 0.25);
  border-radius: 50%;
  filter: blur(120px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-right img {
    max-width: 320px;
    transform: none;
  }
}

/* ===== MOBILE HERO: FULL BG + BLUR ===== */
/* ===== FIX MOBILE HERO SCROLL ===== */
@media (max-width: 768px) {

  .hero {
    height: calc(100vh - 60px) !important;
    /* subtract navbar */
    padding: 20px !important;
    /* remove extra height */
    overflow: hidden;
  }

  .hero-content {
    padding: 0 !important;
  }

  .hero-buttons {
    margin-top: 15px !important;
  }
}

/* ===== INSTAGRAM SECTION IMAGE ===== */
.insta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.insta-left {
  flex: 1;
}

.insta-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.insta-right img {
  width: 100%;
  max-width: 420px;

  border-radius: 0;
  /* remove edges */
  box-shadow: none;
  /* remove card look */

  /* Fade edges smoothly */
  mask-image: radial-gradient(circle at center, black 65%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 65%, transparent 100%);

  /* Slight softness */
  filter: brightness(1.05) contrast(1.05);

}

/* ===== INSTAGRAM GRADIENT BACKGROUND ===== */
.instagram-feed {
  background: linear-gradient(135deg,
      #feda75,
      #fa7e1e,
      #d62976,
      #962fbf,
      #4f5bd5);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Soft overlay for readability */
.instagram-feed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Keep content above overlay */
.instagram-feed .container {
  position: relative;
  z-index: 2;
}

/* Text color adjustment */
.instagram-feed h2,
.instagram-feed p {
  color: white;
}

/* Button tweak for contrast */
.instagram-feed .btn {
  background: white;
  color: #d62976;
  border: none;
}

.instagram-feed .btn:hover {
  background: #fff3f7;
  color: #962fbf;
}

.instagram-feed::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(100px);
  top: -50px;
  right: -50px;
}

/* ===== INSTAGRAM IMAGE FLOAT ANIMATION ===== */
.insta-right img {
  animation: instaFloat 5s ease-in-out infinite;
}

/* Smooth floating motion */
@keyframes instaFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

/* ===== INSTAGRAM MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {

  .insta-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .insta-left {
    order: 1;
  }

  .insta-right {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .insta-right img {
    width: 80%;
    max-width: 260px;

    /* softer fade for mobile */
    mask-image: radial-gradient(circle at center, black 75%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 75%, transparent 100%);

    /* smoother animation (less movement on mobile) */
    animation: instaFloatMobile 6s ease-in-out infinite;
  }

  @keyframes instaFloatMobile {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-6px);
    }
  }

  /* Text spacing */
  .insta-left h2 {
    font-size: 1.8rem;
  }

  .insta-left p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  /* Button spacing */
  .insta-left .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* ===== SOFT COLORFUL BACKGROUNDS ===== */

/* About */
.about {
  background: linear-gradient(135deg, #fffaf3, #fff3e0);
}

/* Why Choose */
.why-choose {
  background: linear-gradient(135deg, #fff8f0, #ffe0b2);
}

/* Flavors */
.flavors {
  background: linear-gradient(135deg, #fff5f7, #ffe4ec);
}

/* Menu */
.menu {
  background: linear-gradient(135deg, #fff8f2, #ffe8d6);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #fff9f5, #ffe0cc);
}

/* FAQ */
.faq {
  background: linear-gradient(135deg, #fffdf5, #fff3cd);
}

.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* ===== PREMIUM DESSERT GRADIENT THEME ===== */

/* About (Cream + Mango soft) */
.about {
  background: linear-gradient(135deg,
      #fffdf8 0%,
      #fff3d6 40%,
      #ffe8b5 100%);
}

/* Why Choose (Warm creamy orange glow) */
.why-choose {
  background: linear-gradient(135deg,
      #fffaf5 0%,
      #ffe6c7 50%,
      #ffd8a8 100%);
}

/* Flavors (Strawberry + Cream) */
.flavors {
  background: linear-gradient(135deg,
      #fff5f7 0%,
      #ffe0ea 40%,
      #ffd1dc 100%);
}

/* Menu (Mango + Light caramel) */
.menu {
  background: linear-gradient(135deg,
      #fff8f0 0%,
      #ffe2c2 50%,
      #ffd2a1 100%);
}

/* Testimonials (Soft warm cream) */
.testimonials {
  background: linear-gradient(135deg,
      #fffaf6 0%,
      #ffe9d6 50%,
      #ffddc4 100%);
}

/* FAQ (Light lemon freshness) */
.faq {
  background: linear-gradient(135deg,
      #fffef7 0%,
      #fff5cc 50%,
      #ffeaa7 100%);
}

.section {
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(80px);
  top: -50px;
  right: -50px;
  pointer-events: none;
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {

  /* Disable hover effects on touch devices and increase touch targets */
  .btn,
  a,
  button {
    min-height: 44px;
    min-width: 44px;
    padding-top: max(12px, calc(22px - 0.5em));
    padding-bottom: max(12px, calc(22px - 0.5em));
  }

  /* Prevent double-tap zoom on touch devices */
  html {
    -webkit-user-select: text;
    -webkit-touch-callout: none;
  }
}

/* ===== REVIEW LOADING ===== */

.testimonials-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.testimonials-track {
  display: flex;
  align-items: center;
  gap: 25px;

  width: max-content;

  animation: marqueeScroll 40s linear infinite;
}

/* Pause on hover */
.testimonials-track:hover {
  animation-play-state: paused;
}

/* QR Code */
/* Feedback layout */
.feedback-content {

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  margin-top: 10px;
}

/* Text */
.feedback-text p {

  font-size: 0.95rem;
  line-height: 1.6;

  color: #ddd;

  margin: 0;
}

/* QR */
.feedback-qr {

  width: 100px;
  height: 100px;

  object-fit: contain;

  padding: 6px;

  border-radius: 14px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  transition: 0.3s ease;
}

.feedback-qr:hover {
  transform: scale(1.05);
}


@media (max-width: 768px) {

  .feedback-content {

    flex-direction: column;

    align-items: flex-start;
  }

  .feedback-qr {

    width: 100px;
    height: 100px;
  }
}


/* ===== QR POPUP ===== */

.qr-popup {

  display: none;

  position: fixed;

  inset: 0;

  background: rgba(0,0,0,0.75);

  backdrop-filter: blur(6px);

  z-index: 9999;

  justify-content: center;
  align-items: center;
}

/* Zoomed QR */
.popup-qr-img {

  width: 320px;
  max-width: 90%;

  background: white;

  padding: 15px;

  border-radius: 25px;

  animation: zoomQR 0.3s ease;
}

/* Close button */
.close-qr {

  position: absolute;

  top: 30px;
  right: 40px;

  font-size: 3rem;

  color: white;

  cursor: pointer;
}

/* Animation */
@keyframes zoomQR {

  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Single review */
/* Single review */
.testimonial-inline {

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 8px;

  min-width: 320px;
  max-width: 420px;

  background: rgba(255, 255, 255, 0.75);

  padding: 18px 22px;

  border-radius: 22px;

  backdrop-filter: blur(10px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  white-space: normal;
  word-break: break-word;

  color: #444;
}

/* Stars */
.review-stars {
  color: #ff9800;
  font-weight: bold;
}

/* Review text */
.review-text {
  font-style: italic;
  line-height: 1.6;
}

/* Name */
.review-name {
  font-weight: 600;
  color: #222;
}

/* Verified */
.verified-inline {
  color: #4caf50;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Infinite scroll animation */
@keyframes marqueeScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .testimonial-inline {

    font-size: 0.85rem;

    padding: 12px 18px;
  }

  .testimonials-track {
    animation-duration: 30s;
  }
}