/* ==========================================================================
SALTANDPOD HOMEPAGE STYLES
========================================================================== */

/* Hero Banner Section */
.home-hero-section {
  position: relative;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #050a12;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 42px 0 40px 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* Background overlay to ensure readability */
/* .home-hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(10, 22, 40, 0.2) 0%, rgba(5, 10, 18, 0.7) 100%),
linear-gradient(to bottom, rgba(5, 10, 18, 0.5) 0%, rgba(5, 10, 18, 0.9) 100%);
z-index: 1;
} */

.home-hero-container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
  box-sizing: border-box;
}

/* Hero Typography & CTA Content */
.hero-text-content {
  max-width: 840px;
  text-align: center;
  margin-bottom: 30px;
}

.hero-title {
  font-family: var(--font-dm-sans), sans-serif;
  font-weight: 700;
  color: var(--color-white);
  line-height: 120%;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.hero-subtitle {
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #eff1f4;
  line-height: 150%;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: -0.28px;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-sizing: border-box;
}

.hero-btn.btn-primary {
  background-color: var(--color-white) !important;
  color: var(--color-deep-blue) !important;
  border: 1px solid var(--color-white) !important;
}
.hero-btn.btn-primary:hover {
  background-color: #cfdaeb !important;
  border-color: #cfdaeb !important;
}

.hero-btn.btn-outline {
  background-color: transparent !important;
  color: #eff1f4 !important;
  border: 1px solid #eff1f4 !important;
}

.hero-btn.btn-outline:hover {
  background-color: #eff1f4 !important;
  color: #15243c !important;
}

/* Dynamic Pedestal & Product bottle */
.hero-product-display {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 10px;
  margin-bottom: -20px; /* Pull it down slightly to overlap features bar top border */
  z-index: 3;
}

.product-bottle-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-bottle-img:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.8));
}

/* Features Footer Bar */
.hero-features-bar {
  width: 100%;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 424px;
  margin-bottom: -10px;
}

.hero-feature-item {
  text-align: center;
}

.feature-text {
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #eff1f4;
  letter-spacing: -0.28px;
  line-height: normal;
}

/* ==========================================================================
Section 2: Shop By Category Section
========================================================================== */
.home-categories-section {
  position: relative;
  width: 100%;
  background-color: #eff1f4; /* Updated background color as requested */
  padding: 120px 0px;
  box-sizing: border-box;
}

.home-categories-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Section Header - Left Aligned as per Figma design */
.home-categories-section .section-header {
  text-align: left;
  margin-bottom: 32px;
}

.home-categories-section .section-eyebrow {
  display: block;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793; /* Sleek Slate 500 eyebrow */
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.home-categories-section .section-title-heading {
  font-family: var(--font-dm-sans), sans-serif;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  line-height: 130%;
}

/* Grid Layout */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

/* Category Card - No borders, no border radius, flat styling as requested */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: none;
}

/* Image Wrapper with square/aspect-ratio layout */
.category-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 395px;
  background-color: #cbd5e1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Dark gradient overlay on the bottom portion of the card image for text readability */
.category-card-image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%; /* Reduced to keep it subtle and strictly on the pedestal area */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-card:hover .category-card-img {
  transform: scale(1.05);
}

.category-card:hover {
      box-shadow: 0 102px 29px 0 rgba(0, 0, 0, 0), 0 65px 26px 0 rgba(0, 0, 0, 0.01), 0 37px 22px 0 rgba(0, 0, 0, 0.03), 0 16px 16px 0 rgba(0, 0, 0, 0.04), 0 4px 9px 0 rgba(0, 0, 0, 0.05);
}


/* Card Footer positioned absolutely over the bottom of the card with no background */
.category-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px; /* Reduced from 24px to position text lower on the concrete pedestal floor */
  background-color: transparent;
  text-align: center;
  border-top: none;
  z-index: 2;
}

.category-card-title {
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f7f6f4;
  text-transform: none;
  letter-spacing: -0.36px;
  line-height: 120%;
  text-transform: capitalize;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Swiper Slider layout and controls styles */
.categories-slider-container {
  position: relative;
  width: 100%;
}

.categories-slider {
  width: 100%;
  padding: 10px 0 40px 0; /* padding preventing shadow clipping and leaving space for pagination dots */
  overflow: hidden;
}

/* Swiper Navigation Buttons styling */
.categories-slider-next,
.categories-slider-prev {
  color: #0f172a; /* Slate 900 */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
}

.categories-slider-next:after,
.categories-slider-prev:after {
  font-size: 16px;
  font-weight: 800;
}

.categories-slider-next:hover,
.categories-slider-prev:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 8px 15px rgba(15, 23, 42, 0.15);
}

.categories-slider-prev {
  left: -22px;
}

.categories-slider-next {
  right: -22px;
}

/* Swiper Pagination styling */
.categories-slider-pagination.swiper-pagination-bullets {
  bottom: 0px;
}

.categories-slider-pagination .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}

.categories-slider-pagination .swiper-pagination-bullet-active {
  background: #0f172a;
  width: 24px;
  border-radius: 4px;
}

/* Hide navigation arrows on small screens, users will swipe */
@media (max-width: 768px) {
  .categories-slider-next,
  .categories-slider-prev {
    display: none !important;
  }
}

/* ==========================================================================
RESPONSIVE OVERRIDES (MOBILE FIRST)
========================================================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero-product-display {
    max-width: 380px;
    margin-bottom: -15px;
  }
  .hero-features-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 20px;
  }
  .hero-feature-item {
    text-align: center;
  }

  /* Section 2 Tablet Breakpoints */
  .home-categories-section {
    padding: var(--layout-regular-section-padding-y) 0;
  }
  .home-categories-section .section-title-heading {
    font-size: 30px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .home-hero-section {
    padding: 60px 0 30px 0;
  }
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.6px;
  }
  .hero-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-btn {
    width: 100%;
    max-width: 280px;
  }
  .hero-product-display {
    max-width: 300px;
    margin-bottom: -10px;
  }
  .hero-features-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-text {
    font-size: 16px;
  }

  /* Section 2 Mobile Breakpoints */
  .home-categories-section {
    padding: 48px 0;
  }
  .home-categories-section .section-header {
    margin-bottom: 32px;
  }
  .home-categories-section .section-title-heading {
    font-size: 24px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-card-image-wrapper {
    aspect-ratio: 1 / 1; /* Square ratio on mobile */
  }
}

/* ==========================================================================
Section 3: Featured Products Section
========================================================================== */
.home-featured-products-section {
  position: relative;
  width: 100%;
  background-color: #ffffff; /* White section background as requested */
  padding: var(--layout-spacious-section-padding-y) 0;
  box-sizing: border-box;
  overflow: hidden;
}

.home-featured-products-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Center aligned header */
.home-featured-products-section .section-header.centered {
  text-align: center;
  margin-bottom: 32px;
}

.home-featured-products-section .section-eyebrow {
  display: block;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.home-featured-products-section .section-title-heading {
  font-family: var(--font-dm-sans), sans-serif;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  line-height: 130%;
}

/* Slick slider wrapper custom sizing */
.featured-products-slider-container {
  position: relative;
  width: 100%;
}

.featured-products-slider {
  width: 100%;
  padding: 10px 0 20px 0;
  overflow: visible;
}

/* Spacing between cards in Slick Slider */
.featured-product-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

/* Featured Product Card inside Slider - overrides shop styles for a flat, background-matching look */
.featured-product-slide .shop-product-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.featured-products-slider .slick-track {
  align-items: stretch !important;
  display: flex;
}

.featured-product-slide.slick-slide {
  height: auto !important;
}
.shop-product-card {
  height: 100%;
}

/* Product Image Wrapper - Flat, light blue-gray background */
.featured-product-slide .shop-product-card .product-image-container {
  position: relative;
  width: 100%;
  height: 330px;
  background-color: #e8eaef;
  border: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0 !important;
}

.featured-product-slide .shop-product-card .product-card-img {
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.featured-product-slide .shop-product-card:hover .product-card-img {
  transform: scale(1.05);
}

/* Badge tags */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 8px;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.product-badge.badge-new {
  background-color: #2b7a3d; /* Trustpilot Green */
}

.product-badge.badge-popular {
  background-color: #456793; /* Clay Blue */
}

/* Center Slide details card - attaches below image wrapper */
.featured-product-slide .shop-product-card .product-info-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #e8eaef;
  border: none;
  padding: 16px;
  box-sizing: border-box;

  /* Initially collapsed/hidden on inactive slides */
  opacity: 0;

  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  overflow: hidden;

  transition: opacity 0.4s ease;
}

/* Slick list overflow override to allow active slide details to expand downward */
.featured-products-slider .slick-list {
  overflow: visible !important;
}

/* Active slide details expand/show transitions */
.featured-product-slide.slick-center
  .shop-product-card
  .product-info-container {
  opacity: 1;
  height: auto;
  /* padding: 16px; */
  /* margin-top: 12px; */
  transform: translateY(0);
}

.featured-product-slide .shop-product-card .product-info-container {
  margin-top: 12px;
  padding: 16px;
}

.product-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
}

.product-brand {
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #456793;
  text-transform: uppercase;
  letter-spacing: -0.12px;
}

.product-rating {
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2b7a3d;
}

.product-title {
  margin: 0 0 10px 0;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.25;
  letter-spacing: -0.32px;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.product-title a:hover {
  color: #456793;
}

/* Pills Row */
.product-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  background-color: #eff1f4;
  border: 1px solid #eff1f4;
  padding: 3px 6px;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #456793;
  letter-spacing: -0.2px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  user-select: none;
}

.product-pill:hover {
  background-color: #e2e8f0;
  color: #0a1628;
  border-color: #e2e8f0;
}

.product-pill.active {
  background-color: #ffffff !important;
  color: #0a1628 !important;
  border-color: #0a1628 !important;
}

.product-pill.active .flavor-color-dot {
  border: 1px solid #ffffff;
}

.flavor-color-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}

/* Footer elements */
.product-details-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-pricing {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.product-price {
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.28px;
}

.product-old-price {
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 13px;
  color: #456793;
  text-decoration: line-through;
  opacity: 0.6;
}

.product-save-badge {
  background-color: #0a1628;
  color: #eff1f4;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}

/* Add to Bag Button */
.add-to-bag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.add-to-bag-btn svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.add-to-bag-btn svg path {
  stroke: #0a1628;
}

.add-to-bag-btn:hover {
  background-color: #0a1628;
  border-radius: 4px;
}

.add-to-bag-btn:hover svg path {
  stroke: #ffffff;
}

/* AJAX Loading State */
.add-to-bag-btn.loading {
  pointer-events: none;
}

.add-to-bag-btn.loading svg {
  display: none !important;
}

.add-to-bag-btn.loading::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid #0a1628;
  border-top-color: transparent;
  border-radius: 50%;
  animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

/* AJAX Added (Success) State */
.add-to-bag-btn.added {
  background-color: #2b7a3d !important; /* Success Green */
  border-color: #2b7a3d !important;
  pointer-events: none;
}

.add-to-bag-btn.added svg {
  display: none !important;
}

.add-to-bag-btn.added::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Hide the duplicate WooCommerce view cart text link that gets appended automatically */
.home-featured-products-section .added_to_cart {
  display: none !important;
}

/* Navigation buttons */
.featured-products-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  margin-top: 4px;
  width: 100%;
}

.featured-products-prev,
.featured-products-next {
  position: static !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
/*   padding: 8px !important; */
  transition: all 0.3s ease !important;
  padding: 6px;
}

.featured-products-prev svg,
.featured-products-next svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.featured-products-prev svg path,
.featured-products-next svg path {
  stroke: #0a1628;
  transition: all 0.3s ease;
}

.featured-products-prev:hover,
.featured-products-next:hover {
  background: transparent !important;
}



.featured-products-prev:hover svg path,
.featured-products-next:hover svg path {
  stroke: #456793;
}

.featured-products-prev:active,
.featured-products-next:active {
  transform: scale(0.92) !important;
}

.featured-products-prev::after,
.featured-products-next::after {
  display: none !important;
}

/* Responsive Overrides for Section 3 */
@media (max-width: 991px) {
  .home-featured-products-section {
    padding: var(--layout-regular-section-padding-y) 0;
  }
  .home-featured-products-section .section-title-heading {
    font-size: 24px;
  }
  .product-card-image-wrapper {
    height: 280px;
  }
  .product-card-img {
    max-height: 200px;
  }
}

@media (max-width: 576px) {
  .home-featured-products-section {
    padding: 48px 0;
  }
  .home-featured-products-section .section-header.centered {
    margin-bottom: 32px;
  }
  .home-featured-products-section .section-title-heading {
    font-size: 20px;
  }
  .product-card-image-wrapper {
    height: 240px;
  }
  .product-card-img {
    max-height: 160px;
  }
}

/* ===== Section 4: Bundle & Save ===== */
.home-bundles-section {
  padding: 120px 100px;
  background: #fff;
}

.home-bundles-container {
  max-width: 1440px;
  margin: 0 auto;
}

.bundles-header {
  display: flex;
  flex-direction: column;

  margin-bottom: 32px;
}

.bundles-header .section-eyebrow {
  display: block;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bundles-header .section-title-heading {
  font-family: var(--font-dm-sans), sans-serif;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  line-height: 130%;
}

.bundles-description {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #456793;
  line-height: 1.5;
  margin: 0;
  margin-top: 10px;
  max-width: 100%;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
}

.bundle-card {
  border-radius: 0;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bundle-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bundle-card-image-wrapper {
  width: 100%;
  height: 400px;
  background: #eff1f4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bundle-card-img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bundle-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-card-title {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  text-transform: capitalize;
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin: 0;
}

.bundle-card-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.28px;
  line-height: 1.3;
  margin: 0;
  max-height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bundle-cta {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a1628;
  text-transform: capitalize;
  letter-spacing: -0.28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
  margin-top: 24px;
}

.bundle-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.home .global-brands-section {
  padding: 103px 100px;
}

/* Commitment Section styling */
.commitment-section {
  width: 100%;
  overflow: hidden;
  background-color: var(--dark-blue-color);
}

.commitment-wrapper {
  display: flex;
  min-height: 620px;
  width: 100%;
  flex-wrap: wrap;
}

.commitment-left {
  flex: 1 1 22.1%;
  min-width: 320px;
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.commitment-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.15);
}

.commitment-overlay-logo {
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.commitment-logo-fallback {
  color: #ffffff;
  font-family: "DM Sans";
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.commitment-btn {
  align-self: flex-end;
  margin-top: auto;
}

.commitment-right {
  flex: 1 1 50%;
  min-width: 320px;
  background-color: #0a1628;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 122px;
  box-sizing: border-box;
}

.commitment-right-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  min-height: 510px;
}

.commitment-subtitle.section-subtitle {
  color: #cfdaeb;
  display: block;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.commitment-title.section-title {
  color: var(--white-color);
  max-width: 64%;
  margin: 0 auto;
  font-family: var(--font-dm-sans), sans-serif;
  font-weight: 700;

  margin: 0 auto;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  line-height: 130%;
}

.commitment-content-container {
  position: relative;

  width: 100%;
  margin-bottom: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 47.5%;
}

.commitment-description-item {
  position: absolute;
  width: 100%;
  display: none;

  transform: translateY(20px);
  transition:
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.commitment-description-item.active {
  display: block;
  position: relative;
}

.commitment-description-item.show-animation {
  opacity: 1;
  transform: translateY(0);
}

.commitment-desc-text {
  color: #cfdaeb;
}

.commitment-tabs-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 19px;
  width: 100%;
  flex-wrap: wrap;
}

.commitment-tab-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.commitment-tab-dot {
  width: 0;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #7ba8c4;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  margin-right: 0;
  box-sizing: border-box;
}

.commitment-tab-button.active .commitment-tab-dot {
  width: 16px;
  opacity: 1;
  transform: scale(1);
  margin-right: 6px;
}

.commitment-tab-text {
  font-size: 14px;
  font-weight: 600;
  color: #456793;
  transition: all 0.3s ease;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.28px;
  text-transform: capitalize;
}

.commitment-tab-button.active .commitment-tab-text {
  color: var(--white-color);
}

.commitment-btn {
  background: #7ba8c4;
  color: #0a1628;
}

.commitment-btn:hover {
  background: #5d98bd;
}

/* Bundle Section Responsive */
@media only screen and (max-width: 1024px) {
  .home-bundles-section {
    padding: 80px 40px;
  }
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .bundle-card-image-wrapper {
    height: 300px;
  }
  .faq-accordion-list {
    max-width: 100% !important;
  }
  .hero-features-bar {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .home-bundles-section {
    padding: 60px 20px;
  }
  .home-bundles-section .bundles-grid {
    padding: 0 !important;

    gap: 32px;
  }
  .bundles-header .section-title-heading {
    font-size: 24px;
  }
  .bundles-description {
    font-size: 16px;
  }
  .bundle-card-image-wrapper {
    height: 280px;
  }
}

/* ==========================================================================
SECTION 5: CURATED BUNDLES (GROUP PRODUCTS)
========================================================================== */

.home-curated-bundles-section {
  background-color: #eff1f4;
  padding: 120px 100px;
  box-sizing: border-box;
}

.home-curated-bundles-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Header */
.curated-bundles-header {
  display: flex;
  flex-direction: column;
}

.home-curated-bundles-container .curated-bundles-header {
  text-align: left;
  align-items: flex-start;
}

.home-curated-bundles-container .curated-bundles-desc {
  max-width: 100%;
  margin-top: 11px;
}

.curated-bundle-eyebrow {
  display: block;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.curated-bundles-title {
  font-family: var(--font-dm-sans), sans-serif;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  line-height: 130%;
}

.curated-bundles-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #456793;
  line-height: 1.5;
  margin: 0;
  max-width: 640px;
}

/* Grid */
.curated-bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.curated-bundle-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Image */
.curated-bundle-img-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background-color: #f5f6f8;
}

.curated-bundle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.curated-bundle-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8eaed 0%, #dfe2e6 100%);
}

/* Card Body */
.curated-bundle-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Type Badge */
.curated-bundle-type {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/* Bundle Name */
.curated-bundle-name {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  text-transform: capitalize;
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin: 0;
}

/* Includes section */
.curated-bundle-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.includes-label {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.28px;
  line-height: normal;
  display: block;
}

.includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.includes-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.includes-icon svg {
  display: block;
}

.includes-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.28px;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Price */
.curated-bundle-price {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  text-transform: capitalize;
  letter-spacing: -0.36px;
  line-height: 1.2;
}

/* Shop Bundle CTA */
.curated-bundle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  background-color: #0a1628;
  border: 1px solid #0a1628;
  color: #eff1f4;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.28px;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
  margin-top: auto;
}

.curated-bundle-btn:hover {
  background-color: #1a2d4a;
  border-color: #1a2d4a;
  color: #ffffff;
}

/* Responsive – Tablet */
@media (max-width: 1024px) {
  .home-curated-bundles-section {
    padding: 80px 40px;
  }
  .curated-bundles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .curated-bundle-img-wrapper {
    height: 240px;
  }
  .includes-text {
    white-space: normal;
  }
}

/* Responsive – Mobile */
@media (max-width: 768px) {
  .home-curated-bundles-section {
    padding: 60px 20px;
  }
  .curated-bundles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .curated-bundles-title {
    font-size: 22px;
  }
  .curated-bundle-img-wrapper {
    height: 220px;
  }
  .includes-text {
    white-space: normal;
  }
}

/* SECTION 6: BRANDS SECTION STYLES REMOVED (NOW GLOBAL) */

/* ==========================================================================
SECTION 7: INFO SECTION (OUR COMMITMENT)
========================================================================== */
.home-info-section {
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.info-section-grid {
  display: grid;
  grid-template-columns: 519fr 921fr;
  min-height: 753px;
  width: 100%;
}

/* Left Image Column */
.info-image-column {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.info-explore-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background-color: #7da1c4;
  color: #0a1628;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.08);
}

.info-explore-btn:hover {
  background-color: #0a1628;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.15);
}

.info-explore-btn svg {
  transition: transform 0.3s ease;
}

.info-explore-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Right Text Column */
.info-text-column {
  background-color: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 100px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.info-text-content-wrapper {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.info-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: 12px;
}

.info-title {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.64px;
  line-height: 1.3;
  margin: 0 0 24px 0;
  text-align: center;
}

.info-description {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #e8eaef;
  line-height: 1.6;
  margin: 0 auto 48px auto;
  font-style: italic;
  opacity: 0.9;
  text-align: center;
  max-width: 600px;
}

/* Features list at the bottom */
.info-features-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  width: 100%;
  margin-top: auto;
}

.info-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
}

.info-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.info-feature-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.28px;
  line-height: normal;
}

/* Responsive Info Section */
@media (max-width: 1200px) {
  .info-text-column {
    padding: 80px 60px;
  }
  .info-title {
    font-size: 28px;
  }
}

@media (max-width: 1024px) {
  .info-section-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .info-image-column {
    height: 500px;
  }
  .info-text-column {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .info-image-column {
    height: 400px;
  }
  .info-text-column {
    padding: 60px 20px;
  }
  .info-title {
    font-size: 24px;
  }
  .info-description {
    margin-bottom: 36px;
    font-size: 15px;
  }
  .info-features-row {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .info-feature-item {
    width: 100%;
    justify-content: center;
  }
  .info-explore-btn {
    right: 16px;
    bottom: 16px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ==========================================================================
SECTION 8: FAQ SECTION
========================================================================== */
.home-faq-section {
  background-color: #ffffff;
  padding: 120px 100px;
  box-sizing: border-box;
}

.home-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.home-faq-section .section-header.centered {
  text-align: center;
  margin-bottom: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-faq-section .section-eyebrow {
  display: block;
  font-family: var(--font-dm-sans), sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #456793;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.home-faq-section .section-title-heading {
  font-family: var(--font-dm-sans), sans-serif;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  line-height: 130%;
}

.home-faq-section .section-description-centered {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #456793;
  line-height: 1.5;
  margin: 12px auto 0 auto;
  max-width: 505px;
}

/* Accordion list */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 63%;
  margin: 0 auto;
}

.faq-accordion-item {
  border-bottom: 1px solid #456793;
  width: 100%;
}
.faq-accordion-item:last-child {
  border: none;
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;

  text-align: left;
  cursor: pointer;
  outline: none;
  gap: 24px;
}

.faq-question-text {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.36px;
  line-height: 1.2;
  transition: color 0.3s ease;
  padding: 24px 0px;
}

.faq-accordion-item.active .faq-question-text {
  padding-bottom: 8px !important;
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle-icon svg {
  position: absolute;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.faq-toggle-icon .icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-accordion-item.active .icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-accordion-item.active .icon-minus {
  opacity: 1;
  transform: rotate(0);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-accordion-content-inner {
  padding-bottom: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #456793;
  line-height: 1.5;
  margin-right: 30px;
}

.faq-accordion-content-inner p {
  margin: 0;
}

/* Bottom CTA */
.faq-bottom-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.faq-cta-text {
  color: var(--primary-deep-blue-01-a-1628, #0a1628);
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0a1628;
  border: 1px solid #0a1628;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: -0.28px;
  color: #eff1f4;
}
.faq-cta-btn:hover {
  background-color: #15243c !important;
  border-color: #15243c !important;
}

.faq-cta-btn svg {
  transition: transform 0.3s ease;
}

.faq-cta-btn:hover svg {
  transform: translateX(3px);
}

/* SECTION 9: CTA SECTION REMOVED (NOW GLOBAL) */

/* ==========================================================================
RESPONSIVE FAQ SECTION
========================================================================== */

@media only screen and (max-width: 1366px) {
  .hero-features-bar {
    margin-top: 300px;
  }

  .category-card-image-wrapper {
    height: 350px;
  }

  .home-categories-section {
    padding: 80px 0px;
  }

  .home-curated-bundles-section {
    padding: 80px 0px;
  }

  .home-bundles-section {
    padding: 80px 0px;
    background: #fff;
  }
  .home .global-brands-section {
    padding: 80px 0px;
  }
  .commitment-right-inner {
    min-height: 390px;
  }

  .commitment-wrapper {
    min-height: auto;
  }
  .commitment-right-inner {
    min-height: 384px;
  }
  .commitment-right {
    padding: 50px 10px;
  }

  .commitment-content-container {
    max-width: 65%;
  }
  .commitment-tabs-nav {
    gap: 8px;
  }
  .commitment-tab-text {
    font-size: 13px;
  }

  .commitment-tab-dot {
    height: 14px;
  }

  .commitment-tab-button.active .commitment-tab-dot {
    width: 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .home-categories-section {
    padding: 60px 0px;
  }

  .category-card-image-wrapper {
    height: auto;
  }
  .home-featured-products-section {
    padding: 60px 0px;
  }

  .home-curated-bundles-section {
    padding: 60px 0px;
  }
  .bundle-card-image-wrapper {
    height: 324px;
  }

  .home .global-brands-section {
    padding: 60px 0px;
  }

  .commitment-right-inner {
    min-height: 290px;
  }

  .featured-product-slide {
    padding: 0 5px;
  }

  .home-curated-bundles-container,
  .curated-bundles-grid,
  .curated-bundle-card {
    min-width: 0;
  }

  .featured-products-navigation {
    margin-top: 20px;
  }

  .curated-bundle-img-wrapper {
    height: 240px;
  }

  .curated-bundle-body {
    padding: 18px;
  }
}

@media only screen and (max-width: 1024px) {
  .home-faq-section {
    padding: 80px 40px;
  }

  .curated-bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-header {
    padding: 0px !important;
  }

  .featured-product-slide .shop-product-card .product-image-container {
    height: 295px;
  }
}

@media (max-width: 991px) {
  .commitment-wrapper {
    flex-direction: column;
  }
  .commitment-left {
    min-height: 450px;
    width: 100%;
  }
  .commitment-right {
    width: 100%;
    padding: 60px 24px;
  }
  .commitment-tabs-nav {
    gap: 16px;
  }
  .commitment-right-inner {
    min-height: 280px;
  }

  .menu-item-has-children:after {
    display: none !important;
  }

  .featured-product-slide .shop-product-card .product-image-container {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .home-faq-section {
    padding: 60px 20px;
  }
  .home-faq-section .section-title-heading {
    font-size: 24px;
  }
  .faq-question-text {
    font-size: 16px;
  }
}

/* Make shop-product-card responsive inside Slick Slider */
.featured-product-slide .shop-product-card {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .curated-bundles-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .home-faq-container {
    padding: 0px !important;
  }

  .hero-features-bar {
    margin-top: 100px;
  }
  .header-top-bar {
    display: none !important;
  }

  .hero-features-bar {
    gap: 2px;
  }

  .home-categories-section {
    padding: 40px 0px;
  }

  .category-card-image-wrapper {
    height: auto;
  }
  .home-featured-products-section {
    padding: 40px 0px;
  }

  .home-curated-bundles-section {
    padding: 40px 0px;
  }

  .home-bundles-section {
    padding: 40px 0px;
  }

  .bundles-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .bundle-cta svg {
    width: 16px;
    height: 16px;
  }
  .bundle-cta {
    margin-top: 12px;
  }

  .home .global-brands-section {
    padding: 40px 0px;
  }

  h2 {
    font-size: 22px !important;
  }

  .commitment-right {
    padding: 40px 0px;
  }

  .home-faq-section {
    padding: 40px 00px;
  }
  .featured-product-slide .shop-product-card .product-image-container {
    height: 240px;
  }

  .featured-product-slide {
    padding: 0 5px;
  }
}

@media only screen and (max-width: 601px) {
  .featured-product-slide .shop-product-card .product-image-container {
    height: 340px;
  }

  .featured-products-slider{
    padding: 0;
  }
}

@media (max-width: 575px) {
  .commitment-title.section-title {
    max-width: 100%;
  }

  .commitment-content-container {
    max-width: 95%;
  }

  .commitment-left {
    min-width: auto;
  }
}

@media (max-width: 490px) {
  .commitment-btn {
    align-self: center !important; 
  }
}

@media only screen and (max-width: 375px) {
  .featured-product-slide .shop-product-card .product-image-container {
    height: 300px;
  }
}

@media only screen and (max-width: 340px) {
  .featured-product-slide .shop-product-card .product-image-container {
    height: 280px;
  }
}
