.table-wrapper {
    .product-details-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;

        .cart-items-container {
            width: 100%;
            display: flex;
            flex-direction: column;

            .separator {
                border: 1.5px solid #E2E8F0;
                width: 100%;
                margin-top: 32px;
                margin-bottom: 32px;
            }

            .cart-item {
                width: 100%;
                display: flex;
                gap: 20px;

                .item-image {

                }

                .item-details {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    gap: 16px;

                    .cart-item-update {
                        display: flex;
                        gap: 8px;
                        justify-content: flex-start;
                        align-items: center;
                    }

                    .delete-item {
                        cursor: pointer;
                    }

                    .counter-wrapper {
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        border: 1px solid #d0d8e0;
                        font-family: sans-serif;
                        background: white;
                        width: 110px;
                        height: 36px;
                        padding: 8px 12px;
                        gap: 4px;
                        border-radius: 6px;
                        box-shadow: none;
                    }

                    .counter-button {
                        background: none;
                        border: none;
                        font-size: 20px;
                        padding: 0 15px;
                        cursor: pointer;
                        color: #0b0e1d;
                        user-select: none;
                        box-shadow: none;

                    }

                    .counter-value {
                        min-width: 30px;
                        color: #0F172A;
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 20px;
                        text-align: center;
                    }

                    .counter-button:focus {
                        outline: none;
                        box-shadow: none;
                    }

                    .name-price {
                        width: 100%;
                        display: flex;
                        align-items: flex-start;
                        justify-content: space-between;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 24px;
                        letter-spacing: 0;
                        color: #0F172A;

                        .price {
                            font-family: Poppins-Semi-Bold, serif;
                            font-weight: 600;
                            font-size: 16px;
                            line-height: 24px;
                            letter-spacing: 0;
                            color: #0F172A;
                            display: flex;
                            flex-direction: column;
                            gap: 3px;
                            align-items: flex-end;

                            span {
                                font-family: Poppins, serif;
                                font-weight: 400;
                                font-size: 14px;
                                line-height: 24px;
                                letter-spacing: 0;
                                text-decoration: line-through;
                                color: #64748B;
                            }
                        }
                    }

                    .availability {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;
                        align-items: flex-start;
                        color: #0F172A;

                        .postal-code {
                            font-family: Poppins-Semi-Bold, serif;
                            font-weight: 600;
                            font-size: 14px;
                            line-height: 20px;
                            letter-spacing: 0;
                        }

                        .is-available {
                            display: flex;
                            font-weight: 400;
                            font-size: 12px;
                            line-height: 18px;
                            align-items: center;
                            justify-content: flex-start;
                            gap: 8px;
                        }
                    }
                }
            }
        }

        .title {
            font-family: Poppins-Semi-Bold, serif;
            font-weight: 600;
            font-size: 32px;
            line-height: 42px;
            color: #0F172A;
        }
    }
}

.checkout-reassurance-banner-container {
    width: 100%;
    background-color: #FFEDD5;

    .reassurance-banner {
        justify-content: space-between;
        display: flex;
        padding-top: 90px;
        padding-bottom: 90px;
        margin-top: 80px;

        .banner-item {
            width: 268px;
            height: 128px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 24px;
            border-radius: 14px;
            padding: 16px;

            span {
                font-family: Poppins-Semi-Bold, serif;
                font-weight: 600;
                font-size: 18px;
                line-height: 24px;
                letter-spacing: 0;
                text-align: center;
                color: #9A3412;

            }
        }
    }
}

.cart-container {
    margin-top: 40px;
}

.form-cart {
    width: 60% !important;
}

.cart-summary {
    width: 33% !important;
}

.delete-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;

    .modal-content {
        width: 574px;
        height: 184px;
        border-radius: 8px;
        padding: 24px;
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        display: flex;
        flex-direction: column;
        gap: 32px;

        .message {
            display: flex;
            align-items: flex-start;
            gap: 16px;

            .message-text {
                display: flex;
                flex-direction: column;
                flex: 1;
                gap: 4px;

                .title {
                    width: 100%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 24px;
                    letter-spacing: 0;
                    color: #000000;

                    svg {
                        cursor: pointer;
                    }
                }

                .description {
                    width: 100%;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 20px;
                    letter-spacing: 0;
                    color: #334155;
                }
            }
        }
    }

    .modal-buttons {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        align-items: center;

        #confirmNo {
            display: flex;
            border-radius: 32px;
            padding: 8px 29px;
            background-color: #FFFFFF;
            border: 1px solid #CBD5E1;
            font-family: Poppins-Semi-Bold, serif;
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0;
            color: #475569;
        }

        #confirmYes {
            border-radius: 32px;
            padding: 8px 29px;
            background-color: #1D4851;
            border: 1px solid #1D4851;
            font-family: Poppins-Semi-Bold, serif;
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0;
            color: white;
        }

        #confirmYes:focus, #confirmNo:focus {
            box-shadow: none;
        }
    }

    .modal-buttons button {
        padding: 8px 16px;
        font-size: 14px;
        cursor: pointer;
    }
}

.cart-summary {
    background: white;
    margin-bottom: 0;
    padding: 0;
}

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #1D4851;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.rework-cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;

    .coupon-banner {
        width: 100%;
    }

    .coupon-input-container {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .coupon-container.active .coupon-input-container {
        display: flex;
        max-height: 100px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        margin-top: 10px;
    }

    .coupon-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        border-radius: 6px;
        border: 1px solid #CBD5E1;
        padding: 16px;
        cursor: pointer;

        .coupon-error-message {
            display: none;
            margin-top: 6px;
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            letter-spacing: 0;
            color: #DC2626;
            width: 100%;
            text-align: left;
        }

        .coupon-input-container {
            display: none;
            align-items: center;
            background-color: white;
            border: 1px solid #CBD5E1;
            width: 100%;
            height: 44px;
            gap: 8px;
            border-radius: 8px;
            padding: 10px 14px;


            input {
                border: none;
                outline: none;
                flex: 1;
                height: 100%;
                color: #0F172A;
                border-radius: 8px;
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                letter-spacing: 0;
            }

            input:focus {
                border: none !important;
                outline: none;
                box-shadow: none;
            }

            button {
                background: none;
                border: none;
                color: #16A34A;
                cursor: pointer;
                font-family: Poppins-Semi-Bold, serif;
                font-weight: 600;
                font-size: 14px;
                line-height: 20px;
                letter-spacing: 0;
                outline: none;
                box-shadow: none;
            }
        }

        .coupon-label {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .coupon-title {
            font-weight: 500;
            font-size: 18px;
            line-height: 24px;
            letter-spacing: 0;
            color: #0C111D;
        }
    }

    .cart-details {
        width: 100%;
        border-right-width: 1px;
        border-left-width: 1px;
        border-top: 2px solid #1D4851;


        .totals-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 24px;
            padding: 24px 16px;
            background-color: #F1F5F9;

            .next-step-button {
                width: 100%;
                height: 56px;
                gap: 10px;
                padding: 16px 22px;
                border-radius: 32px;
                border: 1px solid #1D4851;
                background-color: #1D4851;
                font-family: Poppins-Semi-Bold, serif;
                font-weight: 600;
                font-size: 18px;
                line-height: 24px;
                letter-spacing: 0;
                color: white;
            }

            .totals {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;

                .label {
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 24px;
                    letter-spacing: 0;
                    color: #0C111D;
                }

                .value {
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 20px;
                    line-height: 24px;
                    letter-spacing: 0;
                    text-align: right;
                    color: #0C111D;

                    span {
                        font-family: Poppins-Semi-Bold, serif;
                        font-weight: 500;
                        font-size: 12px;
                        line-height: 18px;
                        letter-spacing: 0;
                        text-align: right;

                    }
                }
            }
        }

        .items-container {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            gap: 16px;
            padding: 24px 16px;
            border-width: 0 1px 0 1px;
            border-style: solid;
            border-color: #E2E8F0;

            .coupon-discount-container {
                width: 100%;
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                border-radius: 8px;
                padding: 8px;
                background-color: #F0FDF4;

                .label {
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: 0;
                    color: #16A34A;
                }

                .details {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;
                    justify-content: center;
                    height: 100%;
                    gap: 8px;
                    text-align: right;
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 18px;
                    letter-spacing: 0;
                    color: #0C111D;

                    .remove-coupon {
                        font-family: Poppins-Semi-Bold, serif;
                        font-weight: 600;
                        font-size: 14px;
                        line-height: 20px;
                        letter-spacing: 0;
                        color: #64748B;
                        cursor: pointer;
                    }

                    .remove-coupon:hover {
                        color: #0C111D;
                    }
                }
            }

            .separator {
                width: 100%;
                border: 1px solid #E2E8F0;
            }

            .item {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                gap: 8px;

                .name {
                    max-width: 70%;
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: 0;
                    color: #0C111D;
                }

                .quantity {
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    letter-spacing: 0;
                    color: #1E293B;
                }

                .price {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;

                    .price-label {
                        font-family: Poppins-Semi-Bold, serif;
                        font-weight: 600;
                        font-size: 14px;
                        line-height: 20px;
                        letter-spacing: 0;
                        color: #1E293B;
                    }

                    .price-value {
                        font-weight: 700;
                        font-size: 16px;
                        line-height: 21px;
                        letter-spacing: 0;
                        color: #0C111D;
                    }
                }
                .price-barred {
                    display: flex;
                    width: 100%;
                    justify-content: flex-end;
                    margin-top: -10px;
                    text-decoration-line: line-through;
                }
            }
        }
    }
}

.total-price-barred {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-top: -26px;
    text-decoration-line: line-through;
}

.related-products-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;

    .contact-modal {
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        background: white;
        width: 693px;
        border-radius: 8px;
        padding: 40px 24px 0;
        position: relative;
        max-height: 650px;

        .modal-footer-sticky {
            position: sticky;
            bottom: 0;
            text-align: right;
            z-index: 100;
            height: 118px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-top: 1px solid #E2E8F0;
            background: white;

            .error-missing-location {
                width: 100%;
                text-align: left;
                justify-content: flex-start;
                align-items: center;
                font-weight: 500;
                font-size: 12px;
                line-height: 20px;
                letter-spacing: 0;
                color: #DC2626;
                display: none;
            }

            .postal-code-select-button {
                padding-top: 10px;
                padding-bottom: 10px;
                display: flex;
                align-items: flex-end;
                width: 100%;
                justify-content: space-between;

                .location-block {
                    width: 300px;

                    .suggestion {
                        padding: 8px;
                        font-size: 14px;
                        font-weight: 500;
                        line-height: 20px;
                        text-align: left;
                        cursor: pointer;
                    }

                    .suggestion:hover {
                        background-color: #f0f0f0;
                    }

                    .suggestions {
                        display: none;
                        position: absolute;
                        margin-top: 10px;
                        top: 100%;
                        left: 0;
                        width: 100%;
                        max-height: 170px;
                        overflow-y: auto;
                        border: 1px solid #E2E8F0;
                        background: #fff;
                        z-index: 1000;
                        border-radius: 8px;
                    }

                    .availability-message {
                        font-family: Poppins-Semi-Bold, serif;
                        font-weight: 600;
                        font-size: 12px;
                        line-height: 18px;
                        margin-top: 6px;
                    }

                    .input-container {
                        position: relative;
                        width: 100%
                    }

                    .title {
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 20px;
                        color: #334155;

                        span {
                            font-size: 12px;
                            line-height: 18px;
                            color: #64748B;
                        }
                    }

                    input {
                        width: 100%;
                        border: 1px solid #CBD5E1;
                        outline: none;
                        transition: border-color 0.3s ease-in-out;
                        height: 44px;
                        gap: 8px;
                        padding: 10px 14px;
                        border-radius: 8px;
                        font-weight: 500;
                        font-size: 16px;
                        line-height: 24px;
                        background-color: white;
                        color: #64748B;
                    }

                    input:focus {
                        outline: none;
                        box-shadow: none;
                        border-color: #1D4851 !important;
                    }
                }


                .label {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 4px;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    letter-spacing: 0;
                    color: #334155;
                    margin-bottom: 6px;

                    span {
                        font-weight: 500;
                        font-size: 12px;
                        line-height: 18px;
                        letter-spacing: 0;
                        color: #64748B;
                    }
                }

                .postal-code-select {
                    appearance: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    font-size: 16px;
                    font-family: sans-serif;
                    color: #0F172A;
                    background-color: white;
                    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
                    background-repeat: no-repeat;
                    background-position: right 16px center;
                    background-size: 16px 16px;
                    cursor: pointer;
                    width: 300px;
                    height: 44px;
                    border-radius: 8px;
                    padding: 10px 14px;
                    gap: 8px;
                    border: 1px solid #CBD5E1;
                    font-weight: 500;
                    line-height: 24px;
                }

                .postal-code-select:focus {
                    outline: none;
                    box-shadow: none;
                }
            }
        }

        .submit-btn {
            font-family: Poppins-Semi-Bold, serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            background: #1D4851;
            color: white;
            cursor: pointer;
            height: 44px;
            border-radius: 32px;
            padding: 10px 16px;
            gap: 6px;
            border: 1px solid #1D4851;
        }


        .product-details {
            margin-top: 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            gap: 32px;
            overflow-y: auto;

            .product-name {
                width: 100%;
                font-family: Poppins-Semi-Bold, serif;
                font-weight: 600;
                font-size: 20px;
                line-height: 24px;
                color: #1E293B;
                text-align: left;
            }

            .separator {
                width: 100%;
                border: 1.5px solid #CBD5E1;
            }

            .about-product {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 16px;
                width: 100%;

                .about-title {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 24px;
                    width: 100%;
                    color: #0F172A;

                    svg {
                        cursor: pointer;
                    }
                }
            }

        }
    }

    .close-modal {
        position: absolute;
        top: 10px;
        right: 20px;
        cursor: pointer;
        font-size: 24px;
    }

    .top-block {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .carrousel-nav-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;

            .arrow {
                height: 39px;
                width: 39px;
                cursor: pointer;
            }

            .arrow.left {
                visibility: hidden;
            }

            .svg-container svg {
                transition: filter 0.3s ease;
            }

            .svg-container:hover svg path {
                stroke: #95281F;
            }

        }

        .title {
            font-family: Poppins-Semi-Bold, serif;
            font-weight: 600;
            font-size: 24px;
            line-height: 32px;
            letter-spacing: 0;
            color: #0F172A;
        }
    }

    .related-products-carrousel {
        display: flex;
        gap: 32px;
        justify-content: flex-start;
        align-items: center;
        width: 1078px;
        overflow-x: hidden;
        scroll-snap-type: none;
        flex-flow: row nowrap;
        scroll-behavior: smooth;

        .price {
            display: flex;
            width: 100%;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;

            .base-price {
                font-family: Poppins-Semi-Bold, serif;
                font-weight: 600;
                font-size: 18px;
                line-height: 24px;
                letter-spacing: 0;
                color: #D7382B;

                span {
                    font-family: Poppins, serif;
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 18px;
                    letter-spacing: 0;
                    color: #475569;
                }
            }

            .old-price-related {
                display: flex;
                gap: 8px;
                font-weight: 600;
                font-size: 12px;
                line-height: 18px;
                letter-spacing: 0;
                color: #64748B;

                span {
                    text-decoration: line-through;
                }

                .promo-message {
                    height: 18px;
                    padding-right: 5px;
                    padding-left: 5px;
                    border-radius: 16px;
                    display: flex;
                    align-items: center;
                    background-color: #16A34A;
                    text-decoration: none !important;
                    color: white;
                    font-weight: 500;
                    font-size: 12px;
                    line-height: 18px;
                    letter-spacing: 0;
                    text-align: center;

                }
            }
        }

        .modal-price {
            max-width: 120px;
            min-height: 44px;
            justify-content: center;
        }

        .related-product {
            width: 338px;
            height: 492px;
            border-radius: 14px;
            border: 1px solid #E2E8F0;
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 0 0 auto;

            .image {
                height: 47%;
                width: auto;
                max-width: 100%;
                border-top-left-radius: 14px;
                border-top-right-radius: 14px;
            }

            .details {
                height: 53%;
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                padding: 24px;

                .leads-success-add-to-cart {
                    display: flex;
                    width: 100%;
                    justify-content: center;
                    gap: 16px;
                    align-items: center;

                    .message-block {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 6px;
                    }

                    .message {
                        font-family: Poppins-Semi-Bold, serif;
                        font-weight: 600;
                        font-size: 16px;
                        line-height: 24px;
                        letter-spacing: 0;
                        color: #16A34A;
                    }

                    .cancel {
                        font-family: Poppins-Semi-Bold, serif;
                        font-weight: 600;
                        font-size: 14px;
                        line-height: 20px;
                        letter-spacing: 0;
                        text-decoration: underline;
                        text-decoration-style: solid;
                        text-decoration-offset: 0%;
                        text-decoration-thickness: 0;
                        color: #64748B;
                        cursor: pointer;
                    }
                }

                .name-description-block {
                    display: flex;
                    width: 100%;
                    flex-direction: column;
                    text-align: left;
                    gap: 8px;

                    .name {
                        font-family: Poppins-Semi-Bold, serif;
                        font-weight: 600;
                        font-size: 18px;
                        line-height: 24px;
                        color: #0F172A;
                    }

                    .description {
                        font-weight: 400;
                        font-size: 14px;
                        line-height: 20px;
                        color: #1E293B;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                }

                .see-more {
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 14px;
                    line-height: 20px;
                    letter-spacing: 0;
                    text-decoration: underline;
                    text-decoration-style: solid;
                    text-decoration-offset: 0%;
                    color: #0C111D;
                    cursor: pointer;
                }
            }

            .contact-button {
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: #1D4851;
                color: white;
                font-weight: 600;
                font-size: 16px;
                line-height: 24px;
                letter-spacing: 0;
                font-family: Poppins-Semi-Bold, serif;
                cursor: pointer;
                text-align: center;
                text-decoration: none;
                transition: background-color 0.3s ease;
                height: 44px;
                gap: 6px;
                padding: 10px 16px;
                border-radius: 32px;
                border-width: 1px;

            }

            .contact-button:hover {
                background-color: #2f7685;
            }
        }
    }
}

@media only screen and (max-width: 1078px) {
    .related-products-carrousel {
        width: 100% !important;

        .related-product {
            width: 293px !important;
        }
    }

    .rework-cart-container {
        .cart-details {
            .totals-container {
                .next-step-button {
                    font-size: 14px !important;
                }
            }
        }
    }
}

@media only screen and (max-width: 768px) {
    .cart-container {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;

        .form-cart {
            width: 100% !important;
        }

        .cart-summary {
            width: 100% !important;

            .rework-cart-container {
            }
        }
    }

    .related-products-container {
        margin-top: 60px !important;
    }

    .related-products-carrousel {
        overflow-x: auto !important;
        overflow-y: auto !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;

        .modal-content {
            width: 100% !important;

            .modal-footer-sticky {
                width: 100%;
                height: auto !important;

                .postal-code-select-button {
                    flex-direction: column !important;
                    justify-content: center !important;
                    align-items: center !important;

                    .postal-code-select {
                        width: 100% !important;
                    }

                    .select-container {
                        width: 100%;
                    }

                    .submit-btn {
                        width: 100% !important;
                        margin-top: 1em !important;
                        margin-bottom: 1em !important;
                    }
                }
            }
        }
    }

    .reassurance-banner {
        display: none !important;
    }

    .delete-modal-overlay {
        .modal-content {
            height: auto !important;

            .modal-buttons {
                justify-content: center !important;
            }
        }
    }
}
