.gift-product-carusel {
    display: flex;
    overflow-x: auto; /* Горизонтальний скрол */
    gap: 20px; /* Відступи між товарами */
    padding: 10px;
    scroll-behavior: smooth; /* Плавний скрол */
    margin: 0px 0px 20px 0px;
  	max-width: 580px;
} 

/* Схожий вигляд скролу для WebKit браузерів */
.gift-product-carusel::-webkit-scrollbar {
    height: 8px; /* Висота горизонтального скролу */
}

.gift-product-carusel::-webkit-scrollbar-thumb {
    background-color: blue; /* Колір скролу */
    border-radius: 4px;
}

.gift-product-carusel::-webkit-scrollbar-track {
    background: transparent;
}



 .gift-products-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gift-product {
	flex: 0 0 auto;
/*     border: 1px solid #ddd; */
	border-radius: 12px;
    padding: 5px; 
    text-align: center;
    width: 165px;
    transition: box-shadow 0.3s ease;
	margin: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gift-product:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gift-product img {
    max-width: 100%;
    height: 125px;
    margin-bottom: 10px;
}

.gift-product h4 {
    margin: 10px 0;
    font-size: 15px;
    font-weight: 500;
}

.gift-price .amount{
    font-weight: bold;
    color: #3858e9;
}
.summary-inner .gift-price .amount{
font-size: 17px !important;
}

 .gift-product.active {
  border: 2px solid #3858e9;
}

       .gift-deals-paddle {
          height: 38px;
          width: 38px;
          color: black;
          background-color: #ffffffe6;
          border-radius: 50%;
          border: 0px solid;
          margin: auto;
          position: absolute;
  				box-shadow: 0 0 5px rgba(0, 0, 0, 0.17);
          display: flex;
          justify-content: center;
          align-items: center;
        cursor:pointer;
      }
  
      .gift-deals-paddle:focus {
          outline: none;
      }
  
      .gift-deals-paddle:active {
          border-style: solid;
          outline: none;
          user-select: none;
      }
  
      .gift-deals-paddle svg {
          width: 10px;
      }
  
      @media (min-width: 768px) {
          .other-game-button {
              width: 300px;
          }
      }
  
      .gift-deals-scroll-left {
          top: 30%;
          left: 5px;
          bottom: 0;
      }
  
      .gift-deals-scroll-right {
          top: 30%;
          bottom: 0;
          right: 5px;
      }
 




       .gift-product-carusel {
         
          -webkit-overflow-scrolling: touch;
      }
  
      .va-carrousel::-webkit-scrollbar,
      .gift-product-carusel::-webkit-scrollbar {
          display: none;
      } 

@media only screen and (max-width: 768px){

    .gift-product-carusel {
        display: flex;
        overflow-x: auto; /* Горизонтальний скрол */
        gap: 20px; /* Відступи між товарами */
        padding: 10px;
        scroll-behavior: smooth; /* Плавний скрол */
        margin: 0px 0px 20px 0px;
          max-width: 335px;
    }
    
    .gift-product {
        flex: 0 0 auto;
    /*     border: 1px solid #ddd; */
        border-radius: 12px;
        padding: 5px; 
        text-align: center;
        width: 140px;
        transition: box-shadow 0.3s ease;
        margin: 2.5px;
    }
    .gift-product img {
        max-width: 100%;
        height: 120px;
        margin-bottom: 10px;
    }
}