/**
 * IGCIG-style homepage — scoped to .cd-home-igcig
 */

.cd-home-igcig {
  background: #fff;
  color: #1a1a1a;
}

.cd-home-igcig a {
  text-decoration: none;
}

/* ===== Hero slider ===== */
.cd-igcig-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.cd-igcig-banner .desktop-slider,
.cd-igcig-banner .mobile-slider {
  display: none;
}

.cd-igcig-banner .slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  z-index: 2;
  transition: background 0.3s, transform 0.2s;
}

.cd-igcig-banner .slider-button:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.cd-igcig-banner .slider-button.left {
  left: 10px;
}

.cd-igcig-banner .slider-button.right {
  right: 10px;
}

.cd-igcig-banner .slider-wrapper {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  position: relative;
  max-height: none;
  margin: 0 auto;
}

.cd-igcig-banner .slider-wrapper .slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cd-igcig-banner .slider-wrapper .slide a,
.cd-igcig-banner .slider-wrapper .slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.cd-igcig-banner .slider-wrapper .slide img {
  object-fit: cover;
}

.cd-igcig-banner .slider-wrapper .slide.active {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 769px) {
  .cd-igcig-banner .desktop-slider {
    display: block;
  }
}

@media (max-width: 768px) {
  .cd-igcig-banner .mobile-slider {
    display: block;
  }

  .cd-igcig-banner .slider-wrapper {
    aspect-ratio: 6 / 8;
  }
}

/* ===== Floating conversion card ===== */
.cd-home-igcig .igcig-hero-conversion {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: -72px auto 0;
  padding: 20px 80px;
  border: 1px solid #dfe8e5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 34px rgba(23, 61, 54, 0.14);
}

.cd-home-igcig .igcig-hero-copy {
  min-width: 0;
}

.cd-home-igcig .igcig-hero-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: #16836f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.cd-home-igcig .igcig-hero-title {
  margin: 0;
  color: #172e29;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.cd-home-igcig .igcig-hero-price-wrap {
  min-width: 108px;
  text-align: right;
}

.cd-home-igcig .igcig-hero-price-label {
  display: block;
  margin-bottom: 2px;
  color: #75817d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cd-home-igcig .igcig-hero-price {
  color: #c92a2a;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.1;
}

.cd-home-igcig .igcig-hero-shop {
  display: inline-flex;
  min-width: 150px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff !important;
  background: #16836f;
  box-shadow: 0 6px 16px rgba(22, 131, 111, 0.22);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.35px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cd-home-igcig .igcig-hero-shop:hover {
  color: #fff !important;
  background: #126f5e;
  transform: translateY(-1px);
}

.cd-home-igcig .igcig-hero-dots {
  position: absolute;
  top: -22px;
  left: 50%;
  display: flex;
  gap: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(16, 20, 18, 0.76);
  transform: translateX(-50%);
}

.cd-home-igcig .igcig-hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}

.cd-home-igcig .igcig-hero-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: #ffd166;
}

@media (max-width: 768px) {
  .cd-home-igcig .igcig-hero-conversion {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin: -90px 0 0;
    padding: 13px 12px 14px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: 0 7px 18px rgba(23, 61, 54, 0.1);
  }

  .cd-home-igcig .igcig-hero-eyebrow {
    margin-bottom: 2px;
    font-size: 9px;
  }

  .cd-home-igcig .igcig-hero-title {
    font-size: 16px;
  }

  .cd-home-igcig .igcig-hero-price-wrap {
    grid-column: 1;
    text-align: left;
    min-width: 0;
  }

  .cd-home-igcig .igcig-hero-price-label {
    display: inline;
    margin-right: 6px;
  }

  .cd-home-igcig .igcig-hero-price {
    font-size: 18px;
  }

  .cd-home-igcig .igcig-hero-shop {
    min-width: 110px;
    min-height: 42px;
    padding: 10px 14px;
    font-size: 12px;
  }

  .cd-home-igcig .igcig-hero-dots {
    top: auto;
    bottom: calc(100% + 8px);
  }
}

/* ===== Product grid ===== */
.cd-home-igcig .products-section-wrapper {
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding: 40px 24px;
  background: #fff;
  box-sizing: border-box;
}

.cd-home-igcig .products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.cd-home-igcig .products-grid .product {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: 14px;
  overflow: hidden;
  border: 1px solid #dfe8e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(26, 50, 44, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cd-home-igcig .products-grid .product:hover {
  border-color: #bfd8d1;
  box-shadow: 0 12px 28px rgba(26, 50, 44, 0.11);
  transform: translateY(-3px);
}

.cd-home-igcig .products-grid .product-inner-wrap {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  cursor: pointer;
  color: inherit;
}

.cd-home-igcig .products-grid .product-image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0 0 14px;
  padding: 14px;
  overflow: hidden;
  border-radius: 11px;
  background: #f7faf9;
  box-sizing: border-box;
}

.cd-home-igcig .products-grid .product-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.cd-home-igcig .products-grid .product:hover .product-image img {
  transform: scale(1.035);
}

.cd-home-igcig .products-grid .igcig-card-badges {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 9px;
  left: 9px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  pointer-events: none;
}

.cd-home-igcig .products-grid .igcig-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.cd-home-igcig .products-grid .igcig-card-shipping {
  color: #126f5e;
  background: rgba(234, 247, 242, 0.96);
  border: 1px solid #c8e9dd;
}

.cd-home-igcig .products-grid .igcig-card-stock {
  color: #18724f;
  background: rgba(234, 247, 239, 0.96);
  border: 1px solid #ccead8;
}

.cd-home-igcig .products-grid .product.is-out-of-stock .igcig-card-stock {
  color: #b42318;
  background: rgba(255, 240, 238, 0.97);
  border-color: #f6c7c1;
}

.cd-home-igcig .products-grid .igcig-discount-badge {
  position: absolute;
  z-index: 4;
  top: 42px;
  right: 10px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #bd1735;
  box-shadow: 0 5px 14px rgba(189, 23, 53, 0.22);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0.2px;
}

.cd-home-igcig .products-grid .product-title {
  display: -webkit-box;
  min-height: 66px;
  max-height: 66px;
  margin: 0 0 9px;
  overflow: hidden;
  color: #20362f;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.3;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cd-home-igcig .products-grid .price {
  display: flex;
  min-height: 84px;
  align-items: baseline;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: auto 0 14px;
  color: #75817d;
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
}

.cd-home-igcig .products-grid .sale-price-top {
  color: #c92a2a;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.25px;
}

.cd-home-igcig .products-grid .regular-price-bottom {
  color: #929a97;
  font-size: 12px;
  text-decoration: line-through;
}

.cd-home-igcig .products-grid .igcig-price-unit {
  color: #75817d;
  font-size: 11px;
  white-space: nowrap;
}

.cd-home-igcig .products-grid .igcig-save-amount {
  display: inline-flex;
  width: fit-content;
  flex-basis: 100%;
  align-items: center;
  margin-top: 3px;
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  background: #bd1735;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  white-space: nowrap;
}

.cd-home-igcig .products-grid .grid-quick-add-cart {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 11px 14px;
  border: 2px solid #16836f;
  border-radius: 8px;
  color: #fff !important;
  background: #16836f;
  box-shadow: 0 5px 14px rgba(22, 131, 111, 0.17);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-sizing: border-box;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cd-home-igcig .products-grid .grid-quick-add-cart:hover {
  background: #126f5e;
  transform: translateY(-1px);
}

.cd-home-igcig .products-grid .product.is-out-of-stock {
  opacity: 0.78;
}

.cd-home-igcig .products-grid .product.is-out-of-stock .grid-quick-add-cart {
  border-color: #cbd3d0;
  color: #707a76 !important;
  background: #eef1f0;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .cd-home-igcig .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .cd-home-igcig .products-section-wrapper {
    padding: 28px 12px;
  }

  .cd-home-igcig .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cd-home-igcig .products-grid .product {
    padding: 10px;
    border-radius: 11px;
  }

  .cd-home-igcig .products-grid .product-image {
    margin-bottom: 10px;
    padding: 9px;
    border-radius: 9px;
  }

  .cd-home-igcig .products-grid .igcig-card-badges {
    top: 6px;
    right: 6px;
    left: 6px;
  }

  .cd-home-igcig .products-grid .igcig-card-badge {
    padding: 4px 5px;
    font-size: 7.5px;
    letter-spacing: 0.15px;
  }

  .cd-home-igcig .products-grid .igcig-discount-badge {
    top: 35px;
    right: 7px;
    width: 48px;
    height: 48px;
    border-width: 2px;
    font-size: 11px;
  }

  .cd-home-igcig .products-grid .product-title {
    min-height: 58px;
    max-height: 58px;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.38;
  }

  .cd-home-igcig .products-grid .price {
    min-height: 76px;
    gap: 2px 5px;
    margin-bottom: 10px;
    font-size: 10px;
  }

  .cd-home-igcig .products-grid .sale-price-top {
    flex-basis: 100%;
    font-size: 19px;
  }

  .cd-home-igcig .products-grid .regular-price-bottom {
    font-size: 10px;
  }

  .cd-home-igcig .products-grid .igcig-save-amount {
    padding: 5px 7px;
    font-size: 11px;
  }

  .cd-home-igcig .products-grid .grid-quick-add-cart {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 11px;
  }
}

/* ===== Trust row ===== */
.cd-home-igcig .trust-features {
  padding: 60px 20px;
  background: #fff;
}

.cd-home-igcig .trust-features__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.cd-home-igcig .trust-feature-icon-wrap {
  width: 96px;
  height: 96px;
  background: #ebe4d4;
  border-radius: 16px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-home-igcig .trust-feature-icon {
  width: 48px;
  height: 48px;
}

.cd-home-igcig .trust-feature-item h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #111;
  margin: 0 0 10px;
  text-transform: uppercase;
  word-break: break-word;
}

.cd-home-igcig .trust-feature-item p {
  max-width: 300px;
  font-size: 14px;
  color: #555;
  line-height: 1.35;
  margin: auto;
}

@media (max-width: 991px) {
  .cd-home-igcig .trust-features__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cd-home-igcig .trust-feature-item h3 {
    font-size: 22px;
  }

  .cd-home-igcig .trust-feature-icon-wrap {
    width: 72px;
    height: 72px;
  }

  .cd-home-igcig .trust-feature-icon {
    width: 36px;
    height: 36px;
  }
}

/* ===== Reviews ===== */
.cd-home-igcig .cd-igcig-reviews {
  margin: 20px auto 40px;
  max-width: 1240px;
  padding: 0 16px;
}

.cd-home-igcig .review-section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.cd-home-igcig .review-section-heading h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.cd-home-igcig .cd-igcig-gold-line {
  display: inline-block;
  width: 80px;
  height: 3px;
  background: #d4af37;
  border-radius: 3px;
}

.cd-home-igcig .review-section-heading p {
  color: #666;
  margin-top: 8px;
  font-size: 15px;
}

.cd-home-igcig .cd-igcig-packed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.cd-home-igcig .cd-igcig-packed__item {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f4f4;
  aspect-ratio: 1 / 1;
}

.cd-home-igcig .cd-igcig-packed__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-home-igcig .cd-igcig-review-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cd-home-igcig .cd-igcig-review-card {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.cd-home-igcig .cd-igcig-review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.cd-home-igcig .cd-igcig-review-card__author {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #20362f;
}

.cd-home-igcig .cd-igcig-review-card__body {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}

.cd-home-igcig .cd-igcig-cta {
  text-align: center;
  padding: 10px 16px 48px;
}

.cd-home-igcig .cd-igcig-cta__support {
  margin: 14px 0 0;
  color: #555;
  font-size: 14px;
}

.cd-home-igcig .cd-igcig-cta__support a {
  color: #16836f;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .cd-home-igcig .cd-igcig-packed,
  .cd-home-igcig .cd-igcig-review-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .cd-home-igcig .cd-igcig-packed,
  .cd-home-igcig .cd-igcig-review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cd-home-igcig .review-section-heading h2 {
    font-size: 24px;
  }
}
