.menu-gift-item {
    border: 1px solid;
}

#listProductGiftsCategory .product-card img {
    width: 100%;
}
div#listProductGiftsCategory {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 20px;
}
p.name_product_gift {
    margin-bottom: 1%;
    margin-top: 3%;
}
p.gift_point_value {
    text-align: right;
}
td.point_value {
    text-align: right;
}
.alert-mnailsgifts {
    position: fixed;
    bottom: 1%;
    left: 50%;
    z-index: 3;
}
div#listProductGiftsCategory {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 20px;
    overflow-y: scroll;
    height: 50vh;
}
.menu-gift-item.active {
    color: white;
    background-color: black;
}
.product-card.not_available {
    opacity: 0.4;
}


.selected-gift-item-value {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pour séparer les points et les actions */
    min-height: 4vh;
    position: relative;
}

.point_value {
    margin-right: auto; /* Pousse les points à gauche */
}

.selected-gift-item-actions {
    display: flex;
    align-items: center;
    gap: 5px; /* Espacement entre les éléments */
}
.product-gift-search {
    display: block;
    margin: auto;
    width: fit-content;
    padding: 2% 0%;
}
.product-gift-search input#searchInput {
    border: unset;
}
.product-gift-search input#searchInput:focus-visible {
    outline: unset;
}

a.btn.btn-primary.go-to-cart {
    display: block;
    margin-bottom: 2%;
    margin-top: 2%;
    background-color: white;
    color: black;
    font-weight: unset;
    border-color: black;
}
a.btn.btn-primary.go-to-cart:hover {
     background-color: black;
     color: white;
     border-color: black;
 }
a.btn.btn-primary.go-to-checkout {
    width: 100%;
    font-weight: unset;
}
div#cart-summary-gift-list {
    max-height: 20vh;
    overflow-y: scroll;
}

.gift-info {
    cursor: pointer;
}
.gift-tooltip.active-tooltip{
    display: block;
}
.gift-tooltip {
    display: none;
    position: absolute;
    background: #333;
    color: white;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.8em;
    z-index: 1000;
}

@media(max-width:1300px){
    div#listProductGiftsCategory {
        display: grid;
        grid-template-columns: 49% 49%;
        gap: 3%;
        overflow-y: scroll;
        height: 70vh;
    }
    #listProductGiftsCategory .product-card img {
        display: block;
        width: 100%;
        margin: auto;
    }
    .alert-mnailsgifts {
        position: unset;
    }

    .selected-gift-item:nth-child(odd) {
        background-color: #f5f5f5; /* Gris clair */
    }
    .selected-gift-item:nth-child(even) {
        background-color: #ffffff; /* Blanc */
    }

}