<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.page-width {
    max-width: 125rem;
    margin: 0 auto;
    padding: 0 5rem;
}

.shopping-cart {
    letter-spacing: 0.1rem;
    min-height: 100vh;
}

.shopping-cart .section-padding {
    padding-top: 60px;
    padding-bottom: 36px;
}

.shopping-cart .header-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shopping-cart a.link {
    padding: 0;
    position: relative;
    border: none;
    box-shadow: none;
    text-decoration: none;
    color: rgb(26, 27, 24);
    background-color: transparent;
    background-image: linear-gradient(to top, rgb(210, 213, 217) 0px 0px), linear-gradient(to top, transparent 0px, transparent 0px);
    background-repeat: no-repeat;
    background-position: right bottom, right bottom;
    background-size: 0% .1rem, 100% .1rem;
    transition-property: background-size;
    transition-timing-function: ease;
    transition-duration: 0.25s;
}

.shopping-cart a.return-link {
    background-image: linear-gradient(to top, var(--primary-color) 0px 0px), linear-gradient(to top, rgb(210, 213, 217) 0px 0px);
}

.shopping-cart a.link:hover {
    background-position: left bottom, left bottom;
    background-size: 100% .1rem, 100% .1rem;
}

.shopping-cart  .container-items {
    margin-top: 5rem;
}

.shopping-cart .container-items .wrapper-table{
    grid-column-start: 1;
    grid-column-end: 3;
    position: relative;
    border-bottom: .1rem solid var(--primary-color);
}

.shopping-cart .wrapper-table table {
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: none;
    width: 100%;
    display: table;
}

.shopping-cart .cart-items thead th {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    text-align: start;
    padding-bottom: 1.6rem;
    opacity: .85;
    padding: 0;
    border: none;
    line-height: calc(1 + .2 / 1.0);
    text-transform: uppercase;
    color: #000000;
}

.shopping-cart .cart-items tbody .cart-item {
    display: table-row;
    border-top: .1rem solid #a1a0a0;
    width: 100%;
}

.shopping-cart .cart-item td {
    vertical-align: top;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.shopping-cart .picture {
    position: relative;
    width: 7rem;
}

.shopping-cart .picture .image {
    width: 100px;
    object-fit: cover;
    height: 100px;
    border-radius: 8px;
}

.shopping-cart a.link.name {
    background-image: linear-gradient(to top, rgb(190, 190, 190) 0px 0px), linear-gradient(to top, rgb(255, 255, 255) 0px 0px);
}

.shopping-cart .variant-name {
    font-size: 0.8rem;
    color: #a19f9f;
    font-weight: 500;
}

.shopping-cart .quantity.quantity-mobile {
    display: none;
}

.shopping-cart .quantity {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shopping-cart .quantity .quantity-btn {
    padding: 0.5rem;
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    flex-shrink: 0;
    border: 0;
    color: #212326;
    background-color: #d8d8d8;
    transition: color 0.25s ease;
    text-align: center;
    display: block;
}

.shopping-cart .quantity .quantity-btn svg {
    width: 10px;
    height: 10px;
    pointer-events: none;
    position: relative;
    z-index: 2;
    flex: 0 0 1rem;
}

.shopping-cart .quantity-btn:hover {
    color: #ffffff;
}

.shopping-cart .quantity-btn:after {
    content: "";
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: scale(0);
    background-color: var(--primary-color);
    transition: transform 0.25s ease;
}

.shopping-cart .quantity-btn:hover:after {
    transform: scale(1);
}

.shopping-cart .delete-control .button-delete {
    width: 18px;
    height: 18px;
    background: none;
    border: none;
}

.shopping-cart .delete-control .button-delete:hover {
    color: var(--primary-color);
    transition: 0.25s;
}


.shopping-cart .bottom-cart {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}


.shopping-cart .bottom-cart .container-order-note .cus-note {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shopping-cart .cus-note .order-note-textarea {
    outline: none;
    border: none;
    box-shadow: inset 0 0 0 .2rem #d8d8d8;
    padding: 1rem;
    min-height: 6rem;
    border-radius: 8px;
}

.form-check-input {
    accent-color: var(--secondary-color);
}

.form-check-input:focus,
.form-check-input:focus-visible {
    outline: 1px solid var(--primary-color-40);
}


.shopping-cart .cus-note .order-note-textarea:focus,
.shopping-cart .cus-note .order-note-textarea:focus-visible {
    box-shadow: inset 0 0 0 .2rem var(--secondary-color);
}


.shopping-cart .bottom-cart .total-cart {
    text-align: end;
}

.shopping-cart .total-cart .button-checkout {
    padding: 0.5rem 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    font-weight: 800;
    width: 100%;
    text-align: center;
    margin: 1rem 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.shopping-cart .total-cart .button-checkout:hover {
    background: transparent;
    color: var(--primary-color);
    transition: 0.25s;
}

/* OTHER PRODUCTS */
.shopping-cart .container-other-products {
    max-width: 1200px;
    margin: 5rem auto;
    display: grid;
    align-items: start;
    grid-row-gap: 32px;
}

.shopping-cart .container-other-products .title-other-products {
    margin: 2rem auto;
    display: block;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 500;
}

.shopping-cart .container-other-products .other-products {
    display: grid;
    align-items: start;
    grid-gap: 32px;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, calc((100% / 4) - 32px * 3 / 4));
}

.shopping-cart .other-products .other-product {
    display: block;
    width: 100%;
}

.shopping-cart .other-product .product-image-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.shopping-cart .other-product .product-image-wrapper .product-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding-bottom: 100%;
}

.shopping-cart .other-product .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out;
}

.shopping-cart .other-product .product-image .second-image {
    opacity: 0;
}

.shopping-cart .other-product .product-image:hover .second-image {
    opacity: 1;
}

.shopping-cart .other-product .product-image:hover .first-image {
    opacity: 0;
}

.shopping-cart .other-product .product-info-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 16px;
}

.shopping-cart .other-product .product-info {
    display: flex;
    align-items: baseline;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    color: #000000;
}


.shopping-cart .other-product .product-info .product-name {
    text-transform: capitalize;
    word-break: break-word;
}


/* Spinners */
.shopping-cart .quantityLoaderTotal {
    position: relative;
}

.shopping-cart .quantityLoaderTotal svg {
    width: 1rem;
    height: 1rem;
}


/* TABLETTES */
@media screen and (max-width: 768px) {
    .page-width {
        padding: 0 2rem;
    }

    .shopping-cart .quantity.quantity-desktop {
        display: none;
    }

    .shopping-cart .quantity.quantity-mobile {
        display: flex;
        margin-top: 0.5rem;
    }

    .shopping-cart .quantity-product {
        display:none;
    }

    .shopping-cart .quantity .quantity-btn {
        padding: 0.1rem;
        width: 1.5rem;
        height: 1.5rem;
    }

    .shopping-cart .quantity .quantity-btn svg {
        width: 6px;
        height: 6px;
    }

    .shopping-cart .container-other-products .other-products {
        grid-template-columns: repeat(auto-fit, calc((100% / 2) - 32px * 1 / 2));
    }
    
    .shopping-cart .other-product .product-info {
        flex-direction: column;
    }
}

@media  screen and (max-width: 576px) {
    .page-width {
        padding: 0 1rem;
    }

    .shopping-cart .container-other-products .other-products {
        grid-template-columns: repeat(auto-fit, calc((100% / 1) - 32px * 0 / 1));
    }

    .shopping-cart .bottom-cart {
        flex-direction: column;
        justify-content: unset;
        align-items: end;
        gap: 1rem;
    }

    .shopping-cart .cart-items thead th {
        font-size: 0.8rem;
    }

    .shopping-cart .picture {
        width: unset;
    }

    .shopping-cart .picture .image {
        width: 80px;
        height: 80px;
    }

    .shopping-cart .title-cart {
        font-size: 1.2rem;
    }

    .shopping-cart a.return-link {
        font-size: 0.8rem;
    }

    td.container-price {
        width: 4rem;
    }

    .shopping-cart a.link.name {
        text-overflow: ellipsis;
        width: 60%;
        white-space: nowrap;
        overflow: hidden;
        display: block;
        font-size: 0.8rem;
    }

    .shopping-cart .quantity {
        gap: 0.5rem;
    }

    .shopping-cart .quantity .quantity-btn {
        width: 1.2rem;
        height: 1.2rem;
    }

    .shopping-cart .delete-control .button-delete {
        width: 14px;
        height: 14px;
    }

    .shopping-cart .price {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .shopping-cart .description-wrapper {
        width: 8rem;
    }
}

</pre></body></html>