/* ================================
   DESKTOP BANNER – FORCE FIX
================================ */
@media (min-width: 768px) {

  #myCarousel,
  #myCarousel .carousel-inner,
  #myCarousel .carousel-item {
    height: 420px !important;   /* 👈 force height */
  }

  #myCarousel .carousel-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
  }
}
/* ================================
   PRODUCT SECTIONS
================================ */
.product-section {
  background-color: #fff;
  padding: 6px 0;
}

.product-section h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.product-card {
  background: #fff;
  border: none;
  transition: transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-img {
  position: relative;
  background: #f7f3ef;
  border-radius: 16px;
  padding: 6px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  max-height: 135px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.protein-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.95);
  color: #000;
  font-weight: 600;
  padding: 4px 6px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 1.2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.product-card p {
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

/* ================================
   PRODUCT GRID RESPONSIVE
================================ */
@media (max-width: 767px) {
  .product-section .row > [class*="col-"] {
    flex: 0 0 50%; /* 2 products per row on small screens */
    max-width: 50%;
  }

  .product-img {
    height: 140px;
  }

  .product-img img {
    max-height: 120px;
  }

  .product-card p {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .product-section .row > [class*="col-"] {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .product-img {
    height: 180px;
  }

  .product-img img {
    max-height: 160px;
  }
}

@media (min-width: 1200px) {
  .product-section .row > [class*="col-"] {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
}

/* ================================
   DOWNLOAD APP SECTION
================================ */
.download-app-section {
  background: #383b46;
  color: #fff;
  text-align: center;
  padding: 35px 15px;
}

.download-container h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-buttons img {
  height: 44px;
  transition: transform 0.3s ease;
}

.app-buttons img:hover {
  transform: scale(1.05);
}

/* ================================
   FAQ SECTION
================================ */
.faq-section {
  max-width: 1000px;
  margin: auto;
  padding: 20px 15px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-item {
  background: #D34805;
  padding: 5px 12px;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.faq-item:hover {
  background: #b53500;
}

/* ================================
   TESTIMONIALS
================================ */
.testimonial-heading {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  overflow: visible !important;
}

.testimonial-card {
  background: #FFF6F0;
  border-radius: 14px;
  padding: 40px 22px 24px;
  min-height: 230px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.profile-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  position: absolute;
  top: -28px;
  left: 20px;
  border: 3px solid #fff;
}

.stars {
  color: #ffb400;
  font-size: 15px;
  margin-bottom: 6px;
}

.testimonial-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #333;
}

.name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 13.5px;
}

/* ================================
   MOBILE HOME
================================ */
.mobile-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-search {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px 10px 42px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}

.mobile-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.mobile-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.mobile-cart {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

.trial-btn {
  background: #49a6f5;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 14px;
  border-radius: 12px;
  font-weight: 600;
}

.category-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.category-item {
  text-align: center;
  flex-shrink: 0;
}

.category-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-product {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  overflow: hidden;
}

.mobile-product img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

.price-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price {
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}

.add-btn {
  background: #49a6f5;
  color: #fff;
  width: 100%;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
}

/* ================================
   VISIBILITY
================================ */
.desktop-home { display: block; }
.mobile-home { display: none; }

@media (max-width: 767px) {
  .desktop-home { display: none !important; }
  .mobile-home { display: block; }
}
