    .product-slider-items {
      display: flex;
      gap: 1rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 1rem;
    }

    .product-carousel,
    .carousel-viewport {
      overflow-x: auto;
      overflow-y: visible;
    }

    .product-carousel {
      padding-top: 12px;
      padding-bottom: 20px;
    }

    #product-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      z-index: 10;
    }


    /*toggle*/
    .km-toggle {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1.2rem;
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 26px;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      background-color: #ccc;
      border-radius: 34px;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transition: 0.4s;
    }

    .slider::before {
      position: absolute;
      content: "";
      height: 22px;
      width: 22px;
      right: 2px;
      left: auto;
      bottom: 2px;
      background-color: white;
      border-radius: 50%;
      transition: 0.4s;
    }



    .switch input:checked+.slider {
      background-color: #F08E34;
    }

    .switch input:checked+.slider::before {
      transform: translateX(-24px);
    }


    .product-carousel-section {
      padding: 3.75rem 6.25rem;
      font-family: Arial, sans-serif;
      background: white;
    }

    .carousel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 3rem;
      border-top: 1.5px solid #D3D3D3;
    }


    .carousel-nav {
      display: flex;
      gap: 1.5rem;
    }

    .carousel-arrow {
      background: none;
      border: none;
      font-size: 1.4rem;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 50%;
      transition: transform 0.2s ease, filter 0.2s ease;
    }


    .carousel-arrow svg path {
      transition: fill 0.2s ease;
    }

    .carousel-arrow:hover svg path {
      fill: #F08E34;
      transform: scale(1.10);
    }


    .product-carousel {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 1.5rem;
      margin-bottom: 5rem;
    }

    .product-carousel::-webkit-scrollbar {
      display: none;
    }

    .carousel-viewport {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      gap: 16px;
    }

    #product-card,
    .product-card {
      flex: 0 0 220px;
      width: 220px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
      padding: 1rem;
      text-align: center;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .product-image {
      width: 150px;
      height: 100px;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    .product-info {
      text-align: left;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      min-height: 0;
      overflow: hidden;
    }

    .carousel-viewport {
      scroll-snap-type: x mandatory;
    }

    .product-card {
      scroll-snap-align: start;
    }





    .product-image img {
      width: 100%;
      height: 180px;
      max-height: 100%;
      object-fit: contain;
    }

    .product-info {
      text-align: left;
    }

    .product-info h3 {
      font-size: 22px;
      color: #5b5959;
      font-weight: 500;
      transition: color 0.3s ease;
      overflow: visible;
    }

    .product-info h3:hover {
      color: #F08E34;
    }

    .product-category {
      font-size: 0.85rem;
      color: #888;
      margin-top: 0.2rem;
    }

    #product-card .product-price {
      font-size: 1.5rem;
      margin: 0.75rem 0;
      color: #333;
      margin-bottom: 6px;
      text-align: left;
    }



    .discounted {
      color: #F08E34;
    }

    .discount-percent {
      background-color: #ffeded;
      color: #e60000;
      font-size: 0.75rem;
      padding: 2px 6px;
      border-radius: 5px;
      margin-left: 5px;
    }

    .stock-status {
      font-size: 1rem;
      color: #444;
      display: flex;
      justify-content: left;
      align-items: center;
      gap: 5px;
      margin-top: 0.875rem;
    }

    .carousel-footer {
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      .carousel-nav {
        position: relative;
        top: 5rem;
      }

      .carousel-header {
        margin-bottom: 4rem;
      }

      .section {
        padding: 5rem 1rem;
      }

      .usp-icons {
        flex-direction: column;
      }

      .all-price-toggle {
        padding: 1rem;
      }

    }