

 h3.carousel-header {
    padding: 0;
    text-transform: capitalize;
}

.carousel-title {
    font: var(--podium-cds-typography-320-to-1919-title3);
}

.nav-btn-wrapper {
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
    margin-inline-start: var(--podium-cds-size-spacing-m);
}

 .carousel-btn.prev-btn.carousel-btn {
    left: var(--podium-cds-size-spacing-l);
}

.carousel-btn {
    background-color: #dddddd;
    color: dark;
    border: none;
    padding: 13px 25px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    top: 50%;
    transform: translateY(-20%);
    z-index: 10;
    /* margin-right: 30px; */
    
}

.carousel-btn:hover {
  background-color: #d4d4d4; /* Change to your desired hover background color */
  color: dark; /* Change to your desired hover text color */
  
}

.slider-btn {
    background-color: darkgrey;
    color: dark;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }




  
  .carousel-slider {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .slider-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;

  }
  
  .slider {
    display: flex;
    width: auto;
    transition: transform 0.3s ease-in-out;
  }
  
  .product {
    min-width: 450px;
    margin: 0 10px;
    text-align: center;
  }

  .nav-btn-wrapper {
    margin-right: 40px;
   }

  @media (max-width: 499px) {
    .product {
      min-width: 250px;
    }
    .nav-btn-wrapper {
      margin-right: 40px;
     }
  }

  @media (min-width: 500px) and (max-width: 768px) {
    .product {
      min-width: 350px;
    }

    .nav-btn-wrapper {
      margin-right: 40px;
     }
  }
  
  .product img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .details-text{
    margin-top: 8px;
  }
  
  .details-text > .czsc22{
     font-size: 18px;
     text-align: start;
     font: var(--podium-cds-typography-body2);
     color: var(--podium-cds-color-text-primary);
     font-weight: 500;
  }
  
  .details-text > .czsc23{
    font-size: 16px;
    text-align: start;
    font: var(--podium-cds-typography-body2);
    color: var(--podium-cds-color-text-secondary);

 }

 .details-text > .czsc24{
  margin-top: 18px;
  font-size: 16px;
  text-align: start;
  font: var(--podium-cds-typography-body2);
  color: var(--podium-cds-color-text-primary);
  font-weight: 500;

}
  
  .prev-btn {
    left: -40px;
  }
  
  .next-btn {
    right: -40px;
  }
  
  .slider-btn:disabled {
    opacity: 0.5;
    /* color: var(--podium-cds-color-text-disabled); */
    background-color: var(--podium-cds-color-text-disabled);
    /* cursor: not-allowed; */
  }

  .carousel-btn:disabled {
    opacity: 0.5;
    /* color: var(--podium-cds-color-text-disabled); */
    background-color: var(--podium-cds-color-text-disabled);
    /* cursor: not-allowed; */
  }