.billing-form h4{
    color:#6d6d6d;
    font-family:'Roboto Slab';
    font-style:normal;
    font-weight:700;
    line-height:53px
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.billing-form input{
    font-family:'Roboto Slab';
    font-style:normal;
    font-weight:100;
    outline:0;
    transition:.5s;
    width:100%;
    line-height:30px;
    border:none;
    border-bottom:1px double #cbcbcb;
    color:#797878
}
.billing-form input:focus,.billing-form textarea:focus{
    border-bottom:1px double #f0b961;
}
.billing-form textarea{
    resize:none;
    height:20vh;
    margin-top:2vh;
    font-family:'Roboto Slab';
    font-style:normal;
    font-weight:100;
    outline:0;
    transition:.5s;
    line-height:30px;
    border:none;
    border-bottom:1px double #cbcbcb;
    color:#797878
}
.billing-form p{
    font-family:'Roboto Slab';
    font-style:normal;
    font-weight:500;
    font-size:15px;
    color:#6d6d6d;
    line-height:30px
}

.billing-form select {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 100;
    outline: 0;
    transition: .5s;
    line-height: 30px;
    width: 100%;
    border: none;
    border-bottom: 1px double #cbcbcb;
    color: #797878;
    cursor: pointer;
}


.billing-form-error {
    border-bottom: 1px double #ff0000!important;
}

.billing-form select:focus {
    border-bottom: 1px double #f0b961;
}


.button-purchase {
    border-radius: 5px;
    border-style: none;
    padding: 1vh 5vh;
    font-family: 'Baloo 2', serif;
    font-weight: 600;
    transition: .5s;
    color: #fff;
    background: #f0b961;
    
}

.button-purchase:hover{
    background: #745728;
}


.button-purchase:disabled {
    background: #f0b96191;
}


.shipping-button {
    border-color: #cbcbcb;
    padding: 1vh 2vh;
    border: 1px solid;
    border-radius: 10px;
    color: #797878;
    cursor: pointer;
    transition: 0.3s;
}
.shipping-button-active{
    border-color: #f0b961 !important;
}

.cart-container {
    max-width:-webkit-fill-available;
}

.product-info p {
    margin: 0;
}


.promo-input input {
    border: 1px double #cbcbcb!important;
    border-radius: 5px;
    transition:0.3s;
}
.promo-input input:focus {
    border:1px double #f0b961!important;
}

.product-element {
}

.product-element img {
    height: 80px;
    object-fit: contain;
    width: 80px;
}

.billing-form h4{
    position: sticky;
    top: 0;
    background: white;
}

.line {
    border-bottom: 1px solid #cbcbcb;
    border-radius: 50%;
}

.promo-button {
    border: none;
    padding: 1vh 2vh;
    border-radius: 5px;
    transition:0.2s;
    background: #0000008c;
    color: white;
}

.promo-button:hover {
    background: #656565;
}

.promo-button:disabled {
    color:#797878;
    background:#f1f1f1;
}

.form-disabled {
    opacity: 0.4;
    pointer-events: none;
}


.close-btn {
    cursor:pointer;
}

.close-btn svg {
    width:25px;
    height:25px;
    transition:0.2s;
    fill=#6d6d6d;
}

.close-btn svg:hover {
    fill:#acabab;
}


.summary {
    width: 100%; /* Par défaut, 100% pour les petits écrans */
}

.custom-height {
   height:auto!important;
    
}

form {
    margin-bottom: 10vh;
}

#paypalContainer {
    backdrop-filter: blur(5px);
    z-index: 99;
}

.paiment-container {
    width: 100%;
    height: auto;
    margin: 40dvh;
}

.quantity {
    color:#6d6d6d;
    border: 1px double #cbcbcb;
    border-radius: 10px;
    width: 12vh;
    user-select: none;
}

.quantity-button svg{
    width:18px;
    height: 18px;
    fill:#6d6d6d;
    transition:0.2s;
}

.quantity-button svg:hover{
    fill:#acabab;
}

.quantity-button {
    cursor:pointer;
}

.quantity-input {
    text-align: center;
    padding:.375rem;
}

.quantity-input:disabled{
    background:white;
}

.remove-product-button {
    cursor:pointer;
    padding:10px;
    transition:0.2s;
    border-radius: 5px;
}
.remove-product-button:hover{
    background:#f5f5f5;
}

.remove-product-button svg {
    width:18px;
    height:18px;
    fill:#6d6d6d;
}

@media (min-width: 768px) {
    .summary {
        width: 50%; /* 50% pour les écrans moyens et plus grands */
    }
    .custom-height {
         height:100%!important;
    }

}

@media (max-width:768px) {
    .quantity {
        flex-direction: row;
    }
    
    .product-properties {
        flex-direction: row!important;
        gap:1vh;
    }
}