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

:root {
  --primary-orange: #d7925a;
  --primary-dark: #b87842;
  --primary-light: #e5a875;
  --text-dark: #1a1a1a;
  --text-medium: #666666;
  --text-light: #999999;
  --border-color: #e0e0e0;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --success-green: #4caf50;
  --star-orange: #ff9800;

  --primary: #0f5c4a; /* emerald */
  --primary2: #0b4b3d; /* darker emerald (hover) */

  --bg: #f7f5f1; /* warm off-white */
  --card: #ffffff; /* cards */

  --text: #111714; /* near-black green */
  --muted: #4f5a54; /* secondary text */
  --muted2: #6a766f; /* tertiary text */

  --line: #e2e0da; /* borders */
  --chip: #f2f0ea; /* chip background */

  --gold: #c7a24b; /* premium accent (stars/badges) */
  --info: #eaf5f1; /* light emerald highlight */
  --infoText: #0f5c4a; /* highlight text */

  --brand: #0b6b5b;
  --brand2: #10b981;
}

body {
  /* font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif; */
  color: var(--text-dark);
  line-height: 1.6;
  /* background: var(--white); */
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== PRODUCT SECTION ========== */
/* CRITICAL MOBILE FIXES */
.mt-4 {
  margin-top: 2rem !important;
}
.product-section {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 20px;
  padding: 16px 0;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.container-sm,
.container-lg,
.container-xl {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.product-layout {
  display: flex;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  gap: 20px;
}

.product-images,
.product-info {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Product Images */
/* Enhanced Product Gallery Styles */
/* Enhanced Product Gallery Styles */
.product-images {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  width: 100%;
  background:
    radial-gradient(
      1200px 600px at 30% 20%,
      rgba(16, 185, 129, 0.18),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(180deg, #ffffff, #f3fbf8);
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: 0 14px 38px rgba(10, 60, 48, 0.1);
}

.main-image {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  /* transform: scale(1.05); */
}

/* Main Image Swiper Styles */
.mainImageSwiper {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.mainImageSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainImageSwiper .main-image {
  box-shadow: none;
  width: 100%;
}

.mainImageSwiper .main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Hide navigation and pagination for main swiper */
.main-swiper-next,
.main-swiper-prev,
.main-swiper-pagination {
  display: none !important;
}

/* Responsive heights */
@media (max-width: 768px) {
  .mainImageSwiper .main-image img {
    height: auto !important;
    object-fit: cover;
  }

  .product-section .container {
    padding: 0 !important;
  }
  .product-section {
    padding: 0;
  }

  .product-images {
    top: 80px;
    gap: 20px;
    padding: 25px 20px;
    border-radius: 0;
    box-shadow: none;
  }
  .product-images {
    margin-bottom: 18px !important;
  }
}

@media (max-width: 480px) {
  .mainImageSwiper .main-image img {
    height: auto !important;
  }
}

/* Horizontal Scrolling Thumbnails */
.thumbnail-images {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.thumbnail-scroll-wrapper {
  position: relative;
  padding: 0 45px;
  overflow: visible;
}

.thumbnail-scroll-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  touch-action: pan-x;
  margin: 0; /* Add this */
}

.thumbnail-scroll-container::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  background: var(--white);
  display: block;
  pointer-events: auto !important;
  z-index: 1;
}

/* .thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
} */

.thumbnail:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.thumbnail:hover {
  /* border-color: var(--primary-orange); */
  border-color: var(--primary);
}

.thumbnail.active {
  /* border-color: var(--primary-orange); */
  border-color: var(--primary);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* Prevent image dragging */
}

/* Swiper Overrides for Thumbnails */
.thumbnailSwiper {
  width: 100%;
  overflow: visible;
  padding: 4px 0; /* Add padding for box-shadow */
}

.thumbnailSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
  margin: 0 !important; /* Remove any margin */
  padding: 0 !important; /* Remove any padding */
  gap: 5px !important;
}

.thumbnailSwiper .swiper-slide {
  width: 90px !important; /* Fixed width for consistency */
  height: 90px !important; /* Fixed height */
  flex-shrink: 0;
  margin-right: 0 !important; /* Remove any margin */
}

.thumbnail-scroll-wrapper {
  position: relative;
  padding: 0 45px;
  overflow: visible;
  margin: 0; /* Add this */
}
/* Prevent text selection during swipe */
.thumbnailSwiper * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Smooth cursor for dragging */
.thumbnailSwiper {
  cursor: grab;
}

.thumbnailSwiper:active {
  cursor: grabbing;
}

/* Remove tap highlight on mobile */
.thumbnail,
.thumbnailSwiper,
.scroll-btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Scroll Navigation Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  outline: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.scroll-btn:active:not(.disabled) {
  transform: translateY(-50%) scale(0.9);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.scroll-btn:hover:not(.disabled) {
  /* background: var(--primary-orange);
  border-color: var(--primary-orange); */
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.05);
}

.scroll-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.scroll-btn-left {
  left: 0;
  /* top: -68px;
  z-index: 3; */
}

.weightBox {
  gap: 30px;
}

.scroll-btn-right {
  right: 0;
}

.scroll-btn i {
  font-size: 14px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .thumbnail-scroll-wrapper {
    padding: 0 38px !important;
    margin: 0 !important; /* Add this */
  }
  .thumbnailSwiper .swiper-slide {
    width: 70px !important;
    height: 70px !important;
  }
}

@media (max-width: 480px) {
  .thumbnail-scroll-wrapper {
    padding: 0 32px !important;
    margin: 0 !important; /* Add this */
  }
  .swiper-wrapper {
    padding-left: 0px !important;
  }
}

@media (max-width: 375px) {
  .thumbnail-scroll-wrapper {
    padding: 0 28px !important;
    margin: 0 !important; /* Add this */
  }
}

@media (max-width: 375px) {
  .thumbnail-scroll-wrapper {
    padding: 0 28px !important;
  }

  .thumbnailSwiper .swiper-slide {
    width: 60px !important;
    height: 60px !important;
  }

  /* ========================================================== */
  .swiper-backface-hidden .swiper-slide {
    opacity: 1 !important;
  }
  /* ========================================================== */

  .thumbnail {
    width: 60px;
    height: 60px;
  }

  .scroll-btn {
    width: 26px !important;
    height: 26px !important;
  }

  .scroll-btn i {
    font-size: 10px !important;
  }

  .main-image img {
    height: 250px !important;
  }
}

/* Product Info */
.product-info {
  padding-top: 0;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 130px;
  background: #fff3e6;
  color: var(--primary-orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.product-brand {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 600;
}

.product-rating .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0 !important;
}

.stars i {
  /* color: var(--star-orange); */
  color: var(--gold);
  font-size: 16px;
}

.review-count {
  color: var(--text-medium);
  font-size: 14px;
}

.product-description {
  font-size: 16px;
  font-weight: 600;
  color: var(--infoText);
  line-height: 1.5;
  margin-bottom: 10px;
  /* padding-bottom: 32px;
        border-bottom: 1px solid var(--border-color); */
}

.product-detail-item {
  margin-bottom: 24px;
}

.detail-label {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 8px;
  font-weight: 500;
}

.detail-value {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

.expected-results {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.frequency-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Key Benefits */
.key-benefits {
  margin-bottom: 20px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
}

.benefits-title {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 12px;
  font-weight: 500;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
}

.benefits-list li i {
  /* color: var(--primary-orange); */
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

/* CTA Section */
.action-buttons-single-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: start;
}

.action-buttons-single-product .quick-btn {
  flex: 1;
}

/* .btn-primary {
  flex: 1;
  background: var(--primary) !important;
  color: var(--info) !important;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  box-shadow: none;
} */

/* .btn-primary:hover {
  background: var(--primary2);
} */

/* .single--product-page .product---buy-now {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 14px 28px;
  border-radius: 1rem;
  font-size: clamp(0.938rem, 2vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
} */

/* .quick-btn {
  background: white;
  color: #e17f30;
  border: 2px solid #e17f30;
  padding: 16px 32px;
  border-radius: 1rem;
  font-size: clamp(0.938rem, 2vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 127, 48, 0.15);
  white-space: nowrap;
} */

/* .quick-btn:hover {
  background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(225, 127, 48, 0.35);
} */

.product---discount-percentag {
  margin-block: 0;
}
.product---original-price {
  font-size: 16px;
  font-weight: 500;
}

.single--product-page .product---buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-base);
  height: 100%;
  font-size: 14px;
}

.product---buy-now.ghost {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-primary);
  border-radius: 1rem;
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

/* ========== TABS SECTION ========== */
.tabs-section {
  padding: 56px 0 0px 0;
  /* border-top: 1px solid var(--border-color); */
}

.tabs-navigation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: var(--radius-lg);
  font-weight: 700;
  border: 1px solid var(--line);
  color: var(--text-primary);
  background:
    radial-gradient(
      900px 360px at 30% 20%,
      rgba(15, 92, 74, 0.2),
      rgba(15, 92, 74, 0.08) 52%,
      rgba(15, 92, 74, 0) 74%
    ),
    linear-gradient(180deg, #fff, var(--info));
}

/* .tabs-navigation::before,
.tabs-navigation::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e0e0e0;
} */

.tab-button {
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  font-family: inherit;
  border-right: 1px solid #ccc;
  padding-right: 30px;
  padding-left: 30px;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button:hover {
  color: var(--text-dark);
}

.tab-button.active {
  /* color: var(--text-dark); */
  /* color: var(--text-dark); */
  color: var(--info);
  z-index: 1;
  border-radius: 12px;
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 100%;
  color: var(--text-primary);
  /* background: var(--primary-orange); */
  background: var(--primary);
  z-index: -1;
  border-radius: var(--radius-lg);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
  padding: 0.5rem 0 0;
  padding-top: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* How It Works Tab */

.how-much-weight-loose {
  display: grid;
  grid-template-columns: 26% 72%;
  background: none !important;
  padding: 0 !important;
  gap: 30px;
}
.how-much-weight-loose h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: left;
}
.how-it-works-content {
  padding: 0 0 1rem;
}

/* .tabs-section .container {
  text-align: center;
} */

.how-it-works-content,
.how-much-weight-loose-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 25px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--info);
}

/* .how-it-works .how-it-works-content,
.how-it-works .how-it-works-image, */
.how-much-weight-loose .how-much-weight-loose-content,
.how-much-weight-loose .how-much-weight-loose-image {
  flex: 1;
}

.how-it-works {
  display: grid;
  grid-template-columns: 72% 25%;
  gap: 30px;
  /* border: 1px solid #ccc; */
  padding: 0;
  border-radius: 12px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.how-it-works-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.how-it-works-content p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.how-it-works-image img,
.how-much-weight-loose img {
  border-radius: 12px;
}

/* How to Use Tab */
.how-to-use-content {
  text-align: center;
  /* padding: 2rem 1rem; */
  /* background-color: #fff; */
}

.how-to-use-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.how-to-use-content > p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.step-card {
  position: relative;
  background: #dfdfdf;
  border: 2px solid #dfdfdf;
  border-radius: 12px;
  padding: 1rem;
  text-align: left;
  /* display: flex;
  flex-direction: row; */
  display: grid;
  grid-template-columns: 9fr 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 100px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #dfdfdf;
}

.step-card p {
  margin: 0;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.step-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary-orange);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(225, 127, 48, 0.22);
}

/* Side Effects Tab - Enhanced Design */
.side-effects-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
}

.side-effects-content > p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.side-effects-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 30px;
  justify-content: center;
}

.side-effect-box {
  /* background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%); */
  background: linear-gradient(180deg, #fff, var(--info));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* .side-effect-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-orange);
  transform: scaleY(0);
  transition: transform 0.3s ease;
} */

.side-effect-box.serious::before {
  background: #f44336;
}

/* .side-effect-box:hover {
  border-color: var(--primary);
} */

.side-effect-box.serious:hover {
  border-color: #f44336;
}

.side-effect-box:hover::before {
  transform: scaleY(1);
}

.side-effect-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.side-effect-icon-box {
  width: 56px;
  height: 56px;
  /* background: linear-gradient(135deg, #fff3e6, #ffe8d1); */
  background: var(--info);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.side-effect-icon-box i {
  font-size: 26px;
  /* color: var(--primary-orange); */
  color: var(--primary);
}

.side-effect-box.serious .side-effect-icon-box {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.side-effect-box.serious .side-effect-icon-box i {
  color: #f44336;
}

.side-effect-header h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.side-effect-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.side-effect-list li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
  padding-left: 32px;
  position: relative;
}

.side-effect-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 2px;
  /* background: var(--primary-orange); */
  background: var(--primary);
}

.side-effect-box.serious .side-effect-list li::before {
  background: #f44336;
}

.warning-box {
  margin-top: 15px;
  padding: 15px;
  /* background: linear-gradient(135deg, #fff3e6, #ffe8d1); */
  background: var(--white);
  /* border-left: 4px solid var(--primary-orange); */
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}

.warning-box p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

/* ========== CARE SECTION - New Layout ========== */
.care-section {
  /* background: linear-gradient(
          135deg,
          var(--primary-orange),
          var(--primary-light)
        ); */
  background: #dfdfdf;
  padding: 40px 0;
  color: var(--white);
  color: black;
}

.care-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.care-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.care-content > p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0.95;
}

.care-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.care-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.care-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.care-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  color: var(--primary-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.care-feature-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.care-feature-text p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.care-image {
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.care-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== FACTS SECTION ========== */
.facts-section {
  padding: 56px 0px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.fact-card {
  /* background: linear-gradient(135deg, #fff3e6 0%, #ffe8d1 100%); */
  padding: 18px;
  border-radius: var(--radius-lg);
  /* border: 2px solid var(--primary-orange); */
  border: 1px solid var(--line);
  background-color: var(--card);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fact-card:hover {
  /* box-shadow: 0 12px 30px rgba(215, 146, 90, 0.2);
  border-color: var(--primary-dark); */
}

.fact-card:hover::before {
  top: -20%;
  right: -20%;
}

.fact-number {
  display: inline-flex;
  /* background: var(--primary-orange);
  color: var(--white); */
  background:
    radial-gradient(80px 60px at 30% 20%, #0f5c4a33, transparent 60%),
    linear-gradient(180deg, #fff, var(--info));
  color: var(--primary);
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.fact-card h4 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.fact-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ========== REVIEWS SECTION - Enhanced ========== */
/* ========================================
   ENHANCED REVIEWS SECTION - MODERN DESIGN
   Based on reference image with site color theme
   ======================================== */

:root {
  --shadow: 0 14px 38px rgba(10, 60, 48, 0.1);
  --radius: 18px;
  --radius2: 24px;
}
.reviews-section {
  padding: 13px 0 56px 0;
}

.reviews-section h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

/* Reviews Container - New Layout */
.reviews-container {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 60px;
  margin-bottom: 24px;
  align-items: start;
}

/* Left Side - Rating Overview */
.reviews-left {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--info));
}

.reviews-left h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.rating-overview {
  text-align: center;
  margin-bottom: 20px;
}

.rating-score {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 16px;
}

.rating-stars-large {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.rating-stars-large i {
  /* color: var(--star-orange); */
  color: var(--gold);
  font-size: 24px;
}

.reviews-count {
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 600;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 60px;
}

.rating-label i {
  /* color: var(--star-orange); */
  color: var(--gold);
  font-size: 14px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.rating-bar-fill {
  height: 100%;
  /* background: linear-gradient(90deg, var(--primary-orange), #ff9800); */
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  border-radius: 10px;
  transition: width 0.8s ease;
  position: relative;
  overflow: hidden;
}

.rating-bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.rating-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-medium);
  min-width: 35px;
  text-align: right;
}

/* Leave a Reply Form - Left Side */
.leave-reply-section {
  /* background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%); */
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--primary);
}

.leave-reply-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: left;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: none; /* Hidden as per reference image */
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #cde4db;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-size: 14px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  /* box-shadow: 0 0 0 4px rgba(215, 146, 90, 0.1); */
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Rating Input */
.rating-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-input-group label {
  display: block !important;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.rating-input {
  display: flex;
  gap: 6px;
}

.rating-input i {
  font-size: 24px;
  /* color: #ff9800; */
  color: var(--gold);
  cursor: pointer;
  transition: all 0.2s ease;
}

.rating-input i:hover,
.rating-input i.active {
  /* color: var(--star-orange); */
  color: var(--primary);
  transform: scale(1.15);
}

/* Terms Checkbox */
.terms-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.terms-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  /* accent-color: var(--primary-orange); */
  accent-color: var(--primary);
}

.terms-group label {
  font-size: 14px;
  color: var(--text-medium);
  cursor: pointer;
  margin: 0;
  display: block !important;
}

.terms-group a {
  /* color: #00bcd4; */
  color: var(--primary2);
  text-decoration: none;
  font-weight: 600;
}

.terms-group a:hover {
  text-decoration: underline;
}

/* Submit Button */
.submit-review-btn {
  /* background: #0a2540; */
  background: var(--primary);
  /* color: var(--white); */
  color: var(--info);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  align-self: flex-start;
  margin-top: 8px;
}

.submit-review-btn:hover {
  /* background: #051829; */
  background: var(--primary2);
}

/* Right Side - Reviews List */
.reviews-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--white);
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 0;
}

.review-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-rating-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-rating-top .stars {
  display: flex;
  gap: 3px;
}

.review-rating-top .stars i {
  /* color: var(--star-orange); */
  color: var(--gold);
  font-size: 16px;
}

.review-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.review-date {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

.review-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 0px;
}

.reviewer-avatar {
  width: 32px;
  height: 32px;
  /* background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-light)
  ); */
  background:
    radial-gradient(80px 60px at 30% 20%, #0f5c4a33, transparent 60%),
    linear-gradient(180deg, #fff, var(--info));
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Pagination */
.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--white); */
  background: var(--info);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  /* color: var(--text-dark); */
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination-btn:hover {
  /* background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange); */
  background: var(--primary);
  color: var(--info);
  border-color: var(--primary2);
  transform: translateY(0);
  box-shadow: none;
}

.pagination-btn.active {
  /* background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange); */
  background: var(--primary);
  color: var(--info);
  border-color: var(--primar2);
}

.pagination-btn.dots {
  border: none;
  pointer-events: none;
  background: transparent;
}

.pagination-btn.dots:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Review Emojis/Icons Support */
.review-text .emoji {
  font-size: 18px;
  margin: 0 2px;
}

/* ========== RESPONSIVE - MOBILE OPTIMIZED ========== */
@media (max-width: 1024px) {
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-left {
    position: relative;
    top: 0;
  }
  .product-badge {
    left: 270px;
  }
}

@media (max-width: 968px) {
  .product-badge {
    left: 170px;
  }
}

@media (max-width: 768px) {
  .reviews-section h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .reviews-left {
    padding: 16px;
  }

  .rating-score {
    font-size: 52px;
  }

  .leave-reply-section {
    padding: 15px;
  }

  .review-card {
    padding: 24px 20px;
  }

  .reviews-pagination {
    gap: 6px;
  }

  .pagination-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .reviews-left h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .rating-score {
    font-size: 28px;
  }
  .review-text {
    font-size: 14px;
  }
  .reviewer-name {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .container,
  .container-sm,
  .container-lg,
  .container-xl {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .product-images {
    gap: 16px !important;
  }

  .main-image img {
    height: 350px !important;
  }

  .thumbnail-scroll-wrapper {
    padding: 0 38px !important;
  }

  .thumbnail-scroll-container {
    gap: 10px !important;
  }

  .thumbnail {
    min-width: 75px !important;
    width: 75px !important;
    height: 75px !important;
  }

  .scroll-btn {
    width: 32px !important;
    height: 32px !important;
  }

  .scroll-btn i {
    font-size: 13px !important;
  }

  .product-description {
    font-size: 15px !important;
  }
  .tabs-navigation {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-button {
    white-space: nowrap;
    font-size: 14px;
    padding: 15px 15px;
  }

  .reviews-summary {
    padding: 32px 24px;
  }

  .rating-score {
    font-size: 56px;
  }

  .write-review-section {
    padding: 24px;
  }

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

  .step-card::after {
    display: none;
  }
  .product-badge {
    left: 140px;
  }
  .action-buttons-single-product {
    /* flex-direction: column !important; */
    gap: 10px !important;
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 15px;
  }
  .rating-stars-large i {
    font-size: 21px;
  }
}
@media (max-width: 480px) {
  .container,
  .container-sm,
  .container-lg,
  .container-xl {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .product-images {
    gap: 12px !important;
  }

  .main-image {
    border-radius: 6px !important;
  }

  .main-image img {
    height: 280px !important;
  }

  .thumbnail-scroll-wrapper {
    padding: 0 32px !important;
  }

  .thumbnail-scroll-container {
    gap: 8px !important;
  }

  .thumbnail {
    min-width: 65px !important;
    width: 65px !important;
    height: 65px !important;
    border-radius: 6px !important;
  }

  .scroll-btn {
    width: 28px !important;
    height: 28px !important;
    border-width: 1.5px !important;
  }

  .scroll-btn i {
    font-size: 11px !important;
  }

  .product-badge {
    font-size: 11px !important;
    padding: 4px 12px !important;
    top: 10px;
    left: 30px;
  }

  .product-title {
    word-wrap: break-word !important;
  }

  .product-rating {
    margin-bottom: 12px !important;
    font-size: 12px;
    font-weight: 400;
    flex-wrap: wrap;
  }
  .product-layout {
    margin-top: 15px;
  }

  .mainImageSwiper {
    border-radius: 12px;
  }

  .stars i {
    font-size: 18px !important;
  }

  .review-count {
    font-size: 13px !important;
  }

  .product-description {
    font-size: 13px !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
    font-weight: 500;
  }

  .product-detail-item {
    margin-bottom: 16px !important;
  }

  .detail-label {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .expected-results {
    font-size: 16px !important;
  }

  #results .row {
    gap: 10px;
  }

  .frequency-value {
    font-size: 14px !important;
  }

  .key-benefits {
    margin-bottom: 20px !important;
  }

  .benefits-title {
    font-size: 13px !important;
  }

  .benefits-list {
    gap: 8px !important;
  }

  .benefits-list li {
    font-size: 14px !important;
  }

  .benefits-list li i {
    font-size: 14px !important;
  }

  .price-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-bottom: 16px !important;
  }

  .product-price {
    font-size: 32px !important;
    margin-bottom: 0 !important;
  }

  .discount-badge {
    font-size: 12px !important;
    padding: 4px 10px !important;
  }

  .action-buttons-single-product form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .action-buttons-single-product .quick-btn,
  .product---buy-now {
    width: 100% !important;
    flex: none !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Buttons */

  .quick-btn,
  .product---buy-now {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
  .how-it-works {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0 1rem !important;
  }

  .how-much-weight-loose {
    grid-template-columns: 1fr;
  }

  .reviews-section h2 {
    font-size: 24px;
  }

  .rating-score {
    font-size: 40px;
  }

  .review-card {
    padding: 20px 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }

  .submit-review-btn {
    width: 100%;
    justify-content: center;
  }

  .reviews-pagination {
    gap: 4px;
  }

  .pagination-btn {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .container,
  .container-sm,
  .container-lg,
  .container-xl {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .main-image img {
    height: 250px !important;
  }

  .thumbnail-scroll-wrapper {
    padding: 0 28px !important;
  }

  .thumbnail {
    min-width: 60px !important;
    width: 60px !important;
    height: 60px !important;
  }

  .scroll-btn {
    width: 26px !important;
    height: 26px !important;
  }

  .scroll-btn i {
    font-size: 10px !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .single--product-page {
    overflow-x: hidden !important;
  }

  .product-section {
    overflow-x: hidden !important;
  }

  .container,
  .container-sm,
  .container-lg,
  .container-xl {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .product-layout {
    display: block !important;
    width: 100% !important;
  }

  .product-images {
    max-width: 100% !important;
    position: relative !important;
    top: 18px !important;
  }

  .main-image,
  .thumbnail-images {
    /* max-width: 100% !important; */
    max-width: 500px;
    width: 100% !important;
  }

  .product-info {
    width: 100% !important;
    max-width: 100% !important;
  }
  .care-layout {
    grid-template-columns: 1fr;
  }

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

  .side-effects-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-label {
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 500;
}

/* .product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0px !important;
} */

/* .original-price {
  font-size: 24px;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
} */

/* .discount-badge {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
} */

/* == Variants == */
.form-check-label {
  border-radius: 20px;
}
.form-check-label:hover {
  /* background-color: var(--primary-orange) !important; */
  background-color: var(--primary) !important;
  /* border-color: var(--primary-dark) !important; */
  border-color: var(--primary2) !important;
  /* color: #fff !important; */
  color: var(--info) !important;
}

.product-attribute---radio-buttons input[type="radio"]:checked + label {
  /* background-color: var(--primary-orange) !important; */
  /* background-color: var(--primary) !important; */
  /* border-color: var(--primary-dark) !important; */
  /* border-color: var(--primary2) !important; */
  /* color: #fff !important; */
  /* color: var(--info) !important; */
}

.product-attribute---radio-buttons label {
  border-radius: var(--radius-lg);
  font-weight: 700;
  color: var(--text-primary);
}
.product-attribute---radio-buttons input[type="radio"]:checked + label {
  /* border-radius: var(--radius-xl) !important;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 107, 91, 0.1);
  border: 1px solid rgba(11, 107, 91, 0.18);
  color: var(--brand);
  font-weight: 950;
  font-size: 12px; */

  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 107, 91, 0.1);
  border: 1px solid rgba(11, 107, 91, 0.18);
  color: var(--brand);
  font-weight: 600;
  font-size: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 8px 10px;
}

.bi.bi-whatsapp {
  color: white;
}

/* .talk-to-expert {
  width: 100%;
  padding: 16px 24px;
  border-radius: 1rem !important;
  font-size: 1rem;
  font-weight: 900 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: white;
  box-shadow: 0 2px 8px rgba(215, 146, 90, 0.3);
}

.talk-to-expert:hover {
  background: linear-gradient(135deg, #e2893f 0%, #f8e8da 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 146, 90, 0.4);
} */

.add-to-cart-btn i {
  color: white;
}

/* ============= Money Back Guarantee   ============ */
/* Money Back Guarantee Section */
.money-back-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  /* border: 2px solid var(--primary-orange); */
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #ffffff, var(--info));
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-light)
  ); */
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(215, 146, 90, 0.3);
}

.guarantee-icon i {
  font-size: 28px;
  color: white;
}

.guarantee-content {
  flex: 1;
}

.guarantee-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}

.guarantee-text {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  font-weight: 500;
}

.guarantee-badge {
  width: 48px;
  height: 48px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.guarantee-badge i {
  font-size: 24px;
  color: white;
}

.product-title {
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.6px;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 20px 0;
}

.product-layout .fa-check:before {
  content: "\f00c";
  /* content: "✔"; */
  position: absolute;
  left: -0.2rem;
  color: var(--primary);
  font-weight: bold;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background-color: var(--info);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.individual-product-info {
  width: 100%;
  background: var(--card);
  border-radius: 15px;
  padding: 30px 30px;
  box-shadow: 0 14px 38px rgba(10, 60, 48, 0.1);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
}

/* Responsive Design for Money Back Guarantee */
@media (max-width: 768px) {
  .money-back-guarantee {
    padding: 20px;
    gap: 16px;
  }

  .guarantee-icon {
    width: 56px;
    height: 56px;
  }

  .guarantee-icon i {
    font-size: 24px;
  }

  .guarantee-title {
    font-size: 18px;
  }

  .guarantee-text {
    font-size: 14px;
  }

  .guarantee-badge {
    width: 42px;
    height: 42px;
  }

  .guarantee-badge i {
    font-size: 20px;
  }
  .product-attribute---radio-buttons input[type="radio"]:checked + label {
    padding: 10px 14px;
    font-size: 14px;
  }
  .product-attribute---radio-buttons label {
    font-size: 14px;
    padding: 10px 14px;
  }
  .product-attribute---radio-buttons {
    gap: 10px;
  }
  .individual-product-info {
    width: 100%;
    border-radius: 0;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .money-back-guarantee {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }

  .money-back-guarantee::before {
    width: 100%;
    height: 6px;
  }

  .guarantee-icon {
    width: 72px;
    height: 72px;
  }

  .guarantee-icon i {
    font-size: 32px;
  }

  .guarantee {
    width: 100%;
  }

  .guarantee-title {
    font-size: 19px;
  }

  .guarantee-text {
    font-size: 15px;
  }
  .product-title {
    margin-bottom: 15px;
  }

  .guarantee {
    gap: 12px;
    padding: 14px;
    flex-direction: column;
  }

  .guarantee svg {
    height: 40px;
  }

  .product-attribute---radio-buttons input[type="radio"]:checked + label {
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 8px;
    line-height: 1;
  }
}

/*  ========= updated individual product how to use section   =========  */
.product-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-step-card {
  /* background: #ebebeb; */
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: 100%;
  padding: 18px;
}

.product-step-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-step-number {
  /* background: #c97a5a; */
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--info);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width: 768px) {
  .product-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .product-step-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .product-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.35rem;
  }
}

/* =======  NEW CSS FOR NEW PRODUCT PAGE */
/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    90deg,
    rgba(11, 107, 91, 1),
    rgba(16, 185, 129, 1)
  );
  color: #fff;
  padding: 10px 0;
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.pill small {
  font-weight: 700;
  opacity: 0.95;
}
.cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--brand);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(10, 60, 48, 0.14);
}

/* Header */
/* header {
  padding: 18px 0 6px;
} */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brandMark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0.3px;
}
.logoDot {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.2);
}
.navlinks {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}
.navlinks a {
  opacity: 0.92;
  text-decoration: none;
}
.navlinks a:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 720px) {
  .navlinks {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer !important;
  text-decoration: none;
  transition:
    transform 0.08s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(145deg, var(--brand), #0f8b75) !important;
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(11, 107, 91, 0.18);
}
.btn-primary:hover {
  filter: saturate(1.06);
}
.btn-ghost {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(10, 60, 48, 0.06);
}
.btn-ghost:hover {
  border-color: #cfe5df;
}
.btn-small {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 950;
}
.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 18px 0 18px;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(10, 60, 48, 0.1);
  overflow: hidden;
}

.image-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  top: 120px;
}

.heroMedia {
  position: relative;
  min-height: 460px;
  background:
    radial-gradient(
      1200px 600px at 30% 20%,
      rgba(16, 185, 129, 0.18),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(180deg, #ffffff, #f3fbf8);
}
@media (max-width: 960px) {
  .heroMedia {
    min-height: 420px;
  }
}

/* hero-image-info */
.hero-image-info {
  display: flex;
  flex-direction: column;
  width: 500px;
  margin: 0 auto;
}
/* Clean: show full image */
.heroMedia img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  filter: contrast(1.02) saturate(1.02);
}

/* Hide the old clutter bubble area (top-right) */
.heroMask {
  /* position: absolute; */
  right: 18px;
  top: 18px;
  width: 245px;
  height: 145px;
  background: rgba(246, 251, 250, 0.92);
  border: 1px solid rgba(228, 239, 236, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(10, 60, 48, 0.1);
  backdrop-filter: blur(8px);
  z-index: 1;
}
@media (max-width: 520px) {
  .heroMask {
    width: 210px;
    height: 126px;
    right: 14px;
    top: 14px;
  }
}

/* Clean replacement bubble */

.heroBubble {
  position: absolute;
  right: 72px;
  top: auto;
  bottom: 415px;
  width: 66%;
  background: #dff6ed;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 18px;
  padding: 14px 14px;
  max-width: 77%;
  box-shadow: 0 14px 28px rgba(10, 60, 48, 0.1);
  z-index: 2;
  margin-top: 20px;
}
.heroBubble .t {
  font-weight: 600;
  font-size: 13px;
  color: #0a6a56;
  letter-spacing: 0.2px;
}
.heroBubble .v {
  margin-top: 6px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
}
.heroBubble .s {
  margin-top: 2px;
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
}
.heroBubble .f {
  margin-top: 4px;
  font-size: 9px;
  color: #6f857e;
  font-weight: 400;
  line-height: 1.35;
}

.overlayTag {
  /* position: absolute; */
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 239, 236, 0.9);
  padding: 15px 15px;
  border-radius: 12px;
  /* box-shadow: 0 12px 24px rgba(10, 60, 48, 0.1); */
  max-width: 70%;
  margin-top: 20px;
}
.overlayTag .kicker {
  font-weight: 700;
  color: var(--brand);
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.overlayTag .sub {
  font-weight: 500;
  font-size: 14px;
  margin-top: 4px;
}
.overlayTag .sub span {
  color: var(--muted);
  font-weight: 400;
}

.heroCopy {
  padding: 18px;
}
h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}
@media (max-width: 520px) {
  h1 {
    font-size: 30px;
  }
  .overlayTag {
    max-width: 60%;
  }

  .heroBubble {
    right: 32px;
    bottom: 232px;
    width: 74%;
    border-radius: 18px;
    padding: 14px 14px;
    max-width: 77%;
    margin-top: 20px;
  }
  .heroBubble .v {
    margin-top: 2px;
    font-size: 20px;
  }
  .overlayTag .sub {
    font-weight: 500;
    font-size: 13px;
  }
}
.stars {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}
.stars .s {
  color: var(--warn);
  letter-spacing: 1px;
}
.subhead {
  color: var(--muted);
  font-weight: 780;
  line-height: 1.6;
  margin: 10px 0 14px;
}

.trustRow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 14px;
}

.trustItem {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #fbfffe);
  border: 2px solid #f5f5f5;
}
.ic {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 950;
  color: var(--brand);
}
.trustItem b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.trustItem span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

/* Pricing card */
.priceCard {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.priceTop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 107, 91, 0.1);
  border: 1px solid rgba(11, 107, 91, 0.18);
  color: var(--brand);
  font-weight: 600;
  font-size: 12px;
  box-shadow: none;
  margin-bottom: 0;
  text-transform: none;
  line-height: unset;
  width: fit-content;
}
.price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  width: 100%;
}
.strike {
  color: #8aa19a;
  font-weight: 950;
  text-decoration: line-through;
  margin-left: 10px;
  font-size: 15px;
}
.save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #0a6a56;
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
}

.dot-before-discount,
.dot-before-review {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.includes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 300;
  font-size: 14px;
}
.dot {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(11, 107, 91, 0.1);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-top: none;
}

.guarantee {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: linear-gradient(
    180deg,
    rgb(58 255 40 / 10%),
    rgba(255, 255, 255, 1)
  );
}
.guarantee b {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.guarantee p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
  font-size: 13px;
}
.fine {
  color: #7b918a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
}
.fine a {
  color: var(--brand);
  font-weight: 500;
}

@media (max-width: 520px) {
  .trustRow {
    grid-template-columns: 1fr;
  }

  .trustItem {
    border: 0;
    border-top: 1px solid #f5f5f5;
    padding: 8px 10px;
    border-radius: 0;
  }
  .trustItem span {
    font-size: 11px;
    margin-top: 0px;
  }
  .trustItem b {
    font-size: 12px;
  }
  .ic {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    font-size: 12px;
  }
  .trustRow {
    gap: 0;
  }

  .includes li {
    font-size: 11px;
    font-weight: 400;
  }
  .priceCard {
    padding: 12px;
    gap: 10px;
    margin-bottom: 14px;
    display: flex;
    border: 0;
    background: transparent;
    flex-direction: row;
    border: 2px solid #d8ffd9;
    background: #dff6ed;
    border: 1px solid rgba(16, 185, 129, 0.28);
  }
  .includes {
    gap: 6px;
  }

  .amount---calculation {
    font-size: 22px;
    /* flex-direction: column; */
    justify-content: start;
    align-items: start !important;
  }
  .save {
    gap: 6px;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 10px;
    line-height: 1;
  }
  .guarantee p {
    font-size: 11px;
  }
  .guarantee b {
    font-size: 12px;
  }
  .stars {
    font-size: 14px;
  }
  .badge {
    gap: 6px;
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* Sections */
section {
  padding: 16px 0;
}
.sectionTitle {
  font-size: 26px;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
  font-weight: 700;
}
.sectionLead {
  margin: 0 0 14px;
  margin-bottom: 25px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
  font-size: 14px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1024px) {
  .grid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sectionTitle {
    font-size: 24px;
  }
  .grid3 > :last-child {
    grid-column: 1 / -1; /* full row le lega */
    justify-self: center; /* center me aa jayega */
  }
  section {
    padding: 13px 0;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cardPad {
  padding: 16px;
}

.priceTitle {
  font-weight: 600;
  font-size: 16px;
}

.priceSubtext {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.6;
  font-size: 14px;
}

.imgCard {
  position: relative;
}
.imgCard img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}
.hiw-img img {
  height: 100%;
}
.imgOverlay {
  position: absolute;
  inset: auto 12px 12px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(228, 239, 236, 0.95);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 14px 28px rgba(10, 60, 48, 0.12);
}
.imgOverlay b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.imgOverlay span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}

/* Calculator */
.calcWrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: stretch;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px; /* optional spacing */
}

.noShadow {
  box-shadow: none;
}

.statBig {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.2;
}

.statSmall {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.mutedText {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
  line-height: 1.3;
  font-size: 14px;
}

@media (max-width: 960px) {
  .calcWrap {
    grid-template-columns: 1fr;
  }

  .imgOverlay span {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .imgOverlay b {
    font-size: 13px;
    line-height: 1.2;
  }
  .imgOverlay {
    position: relative;
    inset: 0;
    border-radius: 6px;
    padding: 10px;
    border: 0;
    box-shadow: none;
  }
  .cardPad {
    padding: 16px;
  }
  .statSmall {
    font-size: 14px;
  }
  .statBig {
    font-size: 18px;
  }
}
.calcBox {
  padding: 16px;
}
.rangeRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rangeRow b {
  font-size: 16px;
}
.kgPill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: #f0fbf7;
  border: 1px solid #d7f3ea;
  padding: 8px 10px;
  border-radius: 14px;
  font-weight: 700;
}
input[type="range"] {
  width: 100%;
}

.proj {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 520px) {
  .proj {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .statBig {
    font-size: 14px;
  }
}
.mini {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #dff6ed, #fbfffe);
}
.mini .m {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}
.mini .v {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
}
.mini .d {
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
  font-size: 13px;
}

.howCalc {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.howCalc summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.howCalc summary::-webkit-details-marker {
  display: none;
}
.howCalc .content {
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
  background: #fbfffe;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: stretch;
  width: 100%;
  margin: 0 0 0 0;
  padding-left: 0;
  border-left: none;
}
@media (max-width: 960px) {
  .mini .v {
    font-size: 18px;
  }
  .step b {
    font-size: 14px;
  }
  .mini .d {
    font-size: 9px;
  }
  .mini {
    padding: 10px;
  }
}

@media (max-width: 540px) {
  .steps {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
}

.stepList {
  padding: 16px;
}
.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fbfffe);
  margin-bottom: 10px;
}
.step:nth-child(4) {
  flex-direction: unset;
}
.num {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(11, 107, 91, 0.16),
    rgba(16, 185, 129, 0.14)
  );
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: 0 0 auto;
}
.step b {
  display: block;
}
.step span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
  font-size: 13px;
}

/* Before/After wall */
.wallPad {
  padding: 16px;
}
.baScroller {
  display: flex;
  gap: 12px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.baScroller::-webkit-scrollbar {
  height: 8px;
}
.baScroller::-webkit-scrollbar-thumb {
  background: #d7e7e2;
  border-radius: 999px;
}
.ba {
  flex: 0 0 260px;
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
  box-shadow: 0 10px 26px rgba(10, 60, 48, 0.08);
}
.ba img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.ba .cap {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* Reviews */
.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 960px) {
  .reviewsGrid {
    grid-template-columns: 1fr;
  }
  .step,
  .step:nth-child(even) {
    gap: 12px;
  }
  .num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 12px;
  }
  .stepList {
    border-radius: 0 0 18px 18px;
  }
  .hiw-img {
    border-radius: 18px 18px 0 0;
  }
}
.review {
  padding: 16px;
}
.quote {
  color: var(--text);
  font-weight: 400;
  line-height: 1.4;
}
.who {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.who .tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 950;
}

/* News */
.newsGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 960px) {
  .newsGrid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .who {
    font-size: 14px;
  }
  .quote {
    font-size: 14px;
  }
}
.news {
  padding: 14px;
}
.news img {
  height: 34px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}
.news .h {
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.3;
}
.news .p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.3;
  font-size: 13px;
}

/* Safety */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 960px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
  .news .h {
    font-size: 14px;
  }
  .news {
    align-items: start;
  }
}
.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
  font-size: 13px;
  margin: 10px 0 0;
}
.bicon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(11, 107, 91, 0.1);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 700;
}
.warnbox {
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: linear-gradient(
    180deg,
    rgba(239, 68, 68, 0.07),
    rgba(255, 255, 255, 1)
  );
  border-radius: 18px;
  padding: 14px;
}
.warnbox b {
  display: block;
  color: #991b1b;
}
.warnbox p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
  font-size: 12px;
}

/* FAQ */
.faq {
  padding: 16px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 10px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  color: var(--text);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq .a {
  padding: 0 14px 14px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
}

/* Sticky WA */
.stickyWA {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
}
@media (max-width: 960px) {
  .stickyWA {
    display: block;
  }
}

/* Footer */
footer {
  padding: 22px 0 40px;
  color: #6f857e;
  font-weight: 820;
}
footer a {
  color: var(--brand);
  font-weight: 700;
}

.svg {
  width: 18px;
  height: 18px;
  display: block;
}
