
  .product-slider-section {
    background:
      radial-gradient(circle at 10% 20%, rgba(21, 153, 71, 0.08), transparent 32%),
      radial-gradient(circle at 90% 15%, rgba(13, 110, 253, 0.08), transparent 30%),
      radial-gradient(circle at 80% 90%, rgba(255, 193, 7, 0.10), transparent 28%),
      #f8fafc;
    overflow: hidden;
  }

  .product-label {
    display: inline-block;
    padding: 7px 16px;
    color: #159947;
    background: rgba(21, 153, 71, 0.1);
    border: 1px solid rgba(21, 153, 71, 0.18);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .product-gradient-text {
    background: linear-gradient(90deg, #159947, #0d6efd, #d89e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .product-intro {
    max-width: 720px;
  }

  .product-slide-row {
    padding: 15px 55px 25px;
  }

  .product-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.07);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(16, 32, 51, 0.08);
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease;
  }

  .product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 22px 50px rgba(16, 32, 51, 0.16);
  }

  .product-image-wrapper {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: linear-gradient(135deg, #edf7f1, #edf4ff, #fff9df);
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
  }

  .product-card:hover .product-image {
    transform: scale(1.07);
  }

  .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 13px;
    color: #fff;
    background: rgba(16, 32, 51, 0.88);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
  }

  .product-card-body {
    padding: 24px;
  }

  .product-card-title {
    margin-bottom: 10px;
    color: #102033;
    font-weight: 800;
  }

  .product-card-description {
    min-height: 72px;
    margin-bottom: 18px;
    color: #6c757d;
    line-height: 1.65;
  }

  .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #edf0f3;
  }

  .product-pack-size {
    color: #159947;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .product-enquiry {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .product-enquiry:hover {
    color: #159947;
  }

  .product-control {
    width: 48px;
    opacity: 1;
  }

  .product-control-prev {
    justify-content: flex-start;
  }

  .product-control-next {
    justify-content: flex-end;
  }

  .product-control-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #159947, #0d6efd);
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .product-control:hover .product-control-icon {
    transform: scale(1.1);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.35);
  }

  .product-indicators {
    bottom: -5px;
    margin-bottom: 0;
  }

  .product-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #0d6efd;
    border: 0;
    border-radius: 50%;
  }

  .product-indicators .active {
    width: 28px;
    border-radius: 20px;
    background-color: #159947;
  }

  @media (max-width: 767.98px) {
    .product-slide-row {
      padding: 10px 28px 25px;
    }

    .product-image-wrapper {
      height: 280px;
    }

    .product-control {
      width: 35px;
    }

    .product-control-icon {
      width: 38px;
      height: 38px;
      font-size: 1rem;
    }
  }