.product-info-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
    margin-top: 48px;
}

.fotorama__stage__shaft {
    .fotorama__img {
        height: 100% !important;
    }
}

.product-description-container {
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    .custom-media-block {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
}

.product-cms-container {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.product-cart-block-container {
    .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;
    }

    width: 444px;
    background-color: #F1F5F9;
    border-radius: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    .header {
        width: 100%;
        height: 62px;
        display: flex;
        justify-content: space-between;
        padding: 16px 20px;
        border-radius: 20px 20px 0 0;
        align-items: center;
        background-color: var(--block-color);

        .title {
            font-family: Poppins-Semi-Bold, serif;
            font-weight: 600;
            font-size: 18px;
            line-height: 24px;
            color: white;
        }

        .promo-message {
            td {
                height: 30px !important;
                padding: 5px 9px !important;
                border-radius: 7px !important;
                line-height: normal !important;
                white-space: nowrap;

                span {
                    font-size: 12px !important;
                    font-weight: 400;
                    line-height: 18px;
                    text-align: center;

                }
            }
        }
    }

    .name-price-block {
        margin-top: 16px;
        width: 100%;
        height: auto;
        gap: 4px;
        padding-right: 20px;
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        .name {
            font-family: Poppins-Bold, serif;
            font-size: 24px;
            line-height: 32px;
            color: #1E293B;
        }

        .price {
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
            color: #475569;

            span {
                font-family: Poppins-Semi-Bold, serif;
            }
        }
    }

    .product-cart-block {
        margin-top: 32px;
        padding-right: 20px;
        padding-left: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 16px;

        .configurable-product-switch {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            width: 100%;
            gap: 8px;
            flex-wrap: wrap;

            a {
                text-decoration: none;
            }

            .configurable-product {
                img {
                    width: 27px;
                    height: 27px;
                }

                cursor: pointer;
                height: 100%;
                width: 100%;
                gap: 7px;
                padding: 9px 12px;
                border-radius: 6px;
                border: 1px solid #CBD5E1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                background-color: white;
                transition: border 0.5s ease;

                .product-name {
                    width: 100%;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    color: #475569;
                    white-space: wrap;
                    text-wrap: wrap;
                    text-align: center;
                }
            }

            .disabled-product {
                opacity: 0.5;
                filter: grayscale(20%);
            }

            .enabled-product {
                border-color: var(--block-color) !important;
                cursor: auto;
            }

            .configurable-product:hover {
                border-color: var(--block-color);
            }
        }

        .quantity-price-selector {
            display: flex;
            justify-content: flex-start;
            gap: 16px;
            width: 100%;
            align-items: stretch;

            .quantity-selector {
                display: flex;
                align-items: center;
                border: 1px solid #CBD5E1;
                border-radius: 6px;
                width: 120px;
                justify-content: space-between;
                background-color: white;
                height: 45px;
                gap: 4px;
                padding: 9px 9px;
            }

            #quantity {
                border: none;
                outline: none;
                text-align: center;
            }

            #quantity:focus {
                outline: none;
                box-shadow: none;
            }

            .quantity-selector button {
                border: none;
                background: none;
                font-size: 20px;
                cursor: pointer;
                padding: 5px;
                outline: none;
                box-shadow: none;
            }

            .quantity-selector span {
                font-size: 14px;
                width: 20px;
                text-align: center;
            }

            .price-detail {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;

                .base-price {
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 24px;
                    color: var(--block-color);

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

                .promo-display {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 8px;

                    .price {
                        text-decoration: line-through;
                        font-weight: 600;
                        font-size: 12px;
                        line-height: 18px;
                        color: #64748B;
                    }

                    .promo-message {
                        height: 18px;
                        padding-right: 5px;
                        padding-left: 5px;
                        border-radius: 16px;
                        background-color: #16A34A;
                        color: white;
                        font-weight: 500;
                        font-size: 12px;
                        line-height: 18px;
                        text-align: center;
                        text-decoration: none;
                    }
                }
            }

        }

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

            .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: var(--block-color) !important;
            }
        }

        .add-to-cart-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 8px;

            .add-to-cart-btn {
                background-color: var(--block-color);
                color: white;
                cursor: pointer;
                display: inline-block;
                text-align: center;
                transition: background-color 0.3s ease-in-out;
                font-weight: 600;
                font-size: 16px;
                line-height: 24px;
                width: 100%;
                height: 44px;
                gap: 6px;
                padding: 10px 16px;
                border-radius: 32px;
                border-width: 1px;
            }

            .add-to-cart-btn:hover {
                filter: brightness(90%);
            }

            span {
                font-weight: 500;
                font-size: 12px;
                line-height: 18px;
                text-align: center;
                color: #475569;
            }
        }

        .availability-block {
            margin-top: 16px;
            background-color: #FCFCFD;
            width: 100%;
            gap: 16px;
            border-radius: 8px;
            padding: 16px;
            display: flex;
            align-items: stretch;
            justify-content: center;

            .availability-separator {
                width: 1px;
                background-color: #E2E8F0;
            }

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

            .availability-contact-cta-container {
                width: 100%;
            }

            .availability-contact-cta {
                background-color: var(--block-color);
                border: 1px solid var(--block-color);
                border-radius: 32px;
                color: white;
                cursor: pointer;
                display: inline-block;
                font-weight: 600;
                font-size: 16px;
                height: 44px;
                line-height: 24px;
                margin-top: 20px;
                padding: 10px 16px;
                text-align: center;
                text-decoration: none;
                transition: background-color 0.3s ease-in-out;
                width: 100%;
            }

            .availability-contact-cta:hover {
                color: white;
                filter: brightness(90%);
                text-decoration: none;
            }

            .delivery-block {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 13px;

                .title {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 8px;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    color: #334155;
                }

                .description {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    justify-content: flex-start;
                    gap: 13px;
                    font-weight: 400;
                    font-size: 12px;
                    line-height: 18px;
                    color: #64748B;

                    .delivery-message {
                        font-weight: 400;
                        font-size: 12px;
                        line-height: 18px;
                        color: #64748B;

                        span {
                            font-family: Poppins-Semi-Bold, serif;
                            font-weight: 500;
                            font-size: 12px;
                            line-height: 18px;
                            color: #1E293B;
                        }
                    }

                }
            }

            .pickup-block {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 13px;


                .title {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 8px;
                    font-weight: 500;
                    font-size: 14px;
                    line-height: 20px;
                    color: #334155;
                }
            }
        }
    }
}

.leads-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    .modal-content {
        max-height: 650px;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 666px;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 24px;
        border-radius: 6px;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;

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


        .close {
            cursor: pointer;
        }

        .close:hover {
            color: var(--block-color);
        }

        label {
            font-weight: 500 !important;
            font-size: 14px !important;
            line-height: 20px !important;
            color: #334155 !important;
        }

    }

    .amcform-submit, .amcform-next {
        border: 1px solid var(--block-color) !important;
        background-color: var(--block-color) !important;
    }

    .amcform-submit:hover, .amcform-next:hover {
        background-color: var(--block-color) !important;
        border: 1px solid var(--block-color) !important;
        filter: brightness(90%);
    }
}

.products-characteristics-table {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #F1F5F9;
    display: flex;
    justify-content: center;
    align-items: stretch;

    .characteristic-label, .characteristic-value {
        width: 50%;

        .grey-background {
            background-color: #F1F5F9;
        }

        .row-characteristic {
            height: 44px;
            gap: 12px;
            padding: 12px 24px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            border-bottom: 1px solid #E2E8F0;

            .title {
                font-weight: 500;
                font-size: 12px;
                line-height: 18px;
                color: #64748B;
            }

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

            .value {
                font-weight: 500;
                font-size: 14px;
                line-height: 20px;
                color: #475467;
            }
        }
    }
}

.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 14px;
    padding: 16px;
    position: fixed;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    z-index: 1000;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

.snackbar.show {
    visibility: visible;
    opacity: 1;
    top: 50px;
}

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

    #mobile-cart-container {
        display: none;
        width: 100%;
        justify-content: center;
    }

    .separator {
        width: 100%;
        height: 1px;
        background-color: #E2E8F0;
    }

    .about-product, .technical-characteristics {
        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;
        }
    }

    .description, .characteristics {
        overflow: hidden;
        transition: max-height 0.6s ease-in-out;
    }

    .description.hidden, .characteristics.hidden {
        max-height: 0;
    }

    .svg-icon {
        transition: transform 0.3s ease-in-out;
        transform: rotate(-90deg);
    }

    .svg-icon.rotated {
        transform: rotate(0);
    }
}

.breadcrumbs-container-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;

    .contact-button {
        cursor: pointer;
    }

    .breadcrumbs-product {
        display: flex;
        height: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 12px;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
        color: #475569;

        .product-breadcrumb {
            height: 100%;
            font-family: Poppins-Semi-Bold, serif;
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            color: #000000;
        }
    }
}

.pickup-block {
    .available-pickups {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
    }

    .all-pickups {
        font-family: Poppins-Semi-Bold, serif;
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        text-decoration: underline;
        text-decoration-style: solid;
        text-decoration-offset: 0%;
        text-decoration-thickness: 0;
        color: #1E293B;
        cursor: pointer;
        display: none;
    }
}

.pickups-side-nav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.1s;
    color: black;
    z-index: 99000;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: #E2E8F0 #ffffff;

    #closeSideNavBtn {
        cursor: pointer;
    }

    .close-button-div {
        width: 100%;
        padding-top: 1em;
        padding-bottom: 1em;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .pickup-locations-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 24px;

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

        .selected-postal-code {
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            color: #475569;
        }

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

            .pickup-location {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                max-height: 150px;
                gap: 16px;
                border-radius: 8px;
                padding: 24px;
                border: 1px solid #CBD5E1;

                .title-address {
                    display: flex;
                    width: 100%;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 6px;

                    .title {
                        display: flex;
                        width: 100%;
                        justify-content: space-between;
                        font-family: Poppins-Bold, serif;
                        font-weight: 700;
                        font-size: 14px;
                        line-height: 20px;
                        color: #0C111D;

                        span {
                            font-family: Poppins-Semi-Bold, serif;
                            font-weight: 600;
                            font-size: 14px;
                            line-height: 20px;
                            color: #1E293B;
                        }
                    }

                    .address {
                        font-weight: 500;
                        font-size: 14px;
                        line-height: 20px;
                        color: #1E293B;
                        max-width: 70%;
                    }
                }

                .pickup-time {
                    font-weight: 600;
                    font-size: 12px;
                    line-height: 18px;
                    text-decoration: underline;
                    text-decoration-style: solid;
                    text-decoration-offset: 0%;
                    text-decoration-thickness: 0;
                }
            }
        }
    }
}

.pickups-side-nav.open {
    width: 440px;
    gap: 16px;
    border-top-left-radius: 8px;
    padding: 20px 40px;

}

@media only screen and (max-width: 1000px) {
    .breadcrumbs-container-product {
        .contact-button {
            display: none;
        }
    }
}

@media only screen and (max-width: 768px) {
    .quantity-price-selector {
        flex-direction: column;
        align-items: flex-start;

        .quantity-selector {
            width: 100% !important;
        }
    }

    .availability-block {
        .availability-contact-cta {
            font-size: 11px !important;
            height: auto !important;
            line-height: 18px !important;
            padding: 5px 10px !important;
        }
    }
}

@media only screen and (max-width: 1100px) {
    .product-cart-block-container {
        width: 100%;
    }

    .product-cart-block {
        .configurable-product {
            height: 100% !important;
        }
    }
}

@media only screen and (max-width: 1000px) and (min-width: 500px) {
    .product-cart-block-container {
        width: 444px;

        .configurable-product {
            height: 100% !important;
        }
    }
}

@media only screen and (max-width: 1000px) {
    .product-info-container {
        display: flex;
        flex-direction: column;

        .product-info-main {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .product-cart-block-container {
            .name-price-block {
                .name {
                    font-family: Poppins-Semi-Bold, serif;
                    font-weight: 600;
                    font-size: 18px;
                    line-height: 24px;
                }
            }
        }
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1100px) {
    .product-info-main {
        width: auto !important;
    }
}

@media only screen and (max-width: 500px) {

    .product-cart-block-container {
        width: 100% !important;
    }
}

.sticky-container {
    position: relative;
    height: 100%;
}

#product-cart-block-container {
    position: sticky;
    top: 150px;
    z-index: 10;
}

.total-price-block {
    font-family: Poppins-Semi-Bold, serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--block-color);
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);

    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 540px;
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 24px;
        border-radius: 6px;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;

        .promo-block {
            width: 100%;
            text-align: center;
            padding: 2rem 1rem;
            background-color: #F1F5F9;
            border-radius: 6px;
        }

        .promo-text {
            font-size: 12px;
            font-family: Poppins-Semi-Bold, serif;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .promo-highlight {
            font-size: 14px;
            font-weight: bold;
            color: #e63946;
            margin-bottom: 1.5rem;
            display: block;
        }

        .promo-btn {
            display: inline-block;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--block-color);
            color: var(--block-color);
            background: #fff;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .promo-btn:hover {
            background: var(--block-color);
            color: #fff;
            border: 2px solid var(--block-color);
        }

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

            .cart-page-button {
                background-color: var(--block-color);
                color: white;
                font-family: Poppins, serif;
                cursor: pointer;
                display: inline-block;
                text-align: center;
                transition: background-color 0.3s ease-in-out;
                font-weight: 600;
                font-size: 16px;
                line-height: 24px;
                height: 44px;
                gap: 6px;
                padding: 10px 16px;
                border-radius: 32px;
                border-width: 1px;
            }

            .cart-page-button:hover {
                filter: brightness(90%);
            }

            .continue-shopping-button {
                border-radius: 32px;
                border: 1px solid #CBD5E1;
                opacity: 1;
                height: 44px;
                padding: 10px 16px;
                background-color: #FFFFFF;
                font-family: Poppins, serif;
                font-weight: 600;
                font-size: 14px;
                line-height: 20px;
                color: #475569;
                box-shadow: none;
            }
        }

        .product-details {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 2em;

            .product-image {
                height: 190px;
                width: auto;
            }

            .product-info {
                font-size: 14px;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 3px;

                .name {
                    font-family: Poppins-Semi-Bold, serif;
                    font-size: 16px;
                }
            }
        }

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

            .modal-title {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 0.5em;
            }
        }

        .close {
            cursor: pointer;
        }

        .close:hover {
            color: var(--block-color);
        }

        label {
            font-weight: 500 !important;
            font-size: 14px !important;
            line-height: 20px !important;
            color: #334155 !important;

            .required {
                display: none !important;
            }
        }

    }
}

@media only screen and (max-width: 768px) {
    .modal-content, .leads-modal {
        width: 100% !important;

        .buttons-container {
            flex-direction: column !important;
            gap: 2em !important;
        }
    }
}

.fuel-product-container {
    .fuel-details {
        width: 100%;
        height: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 1.5em;

        .fuel-name {
            width: 100%;
            text-align: left;
            font-weight: 600;
            font-family: Poppins-Bold, serif;
            font-size: 24px;
            line-height: 32px;
            color: #1E293B;
            margin-bottom: 0 !important;
        }

        .location-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            width: 100%;
            gap: 0.5em;

            .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: var(--block-color) !important;
            }
        }

        .product-type, .shipping-type {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 0.5em;
            width: 100%;

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

            .message {
                text-align: left;
                font-size: 12px;
                color: #EE8924;
                opacity: 1;
            }

            .type-container {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                width: 100%;

                .type-block {
                    width: 172px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 0.5em;

                    .product-price {
                        width: 100%;
                        text-align: left;
                        font: normal normal 600 20px Poppins;
                        color: #475569;
                    }

                    .type {
                        width: 100%;
                        max-height: 72px;
                        background: #FFFFFF 0 0 no-repeat padding-box;
                        border: 1px solid #CBD5E1;
                        border-radius: 6px;
                        opacity: 1;
                        text-align: left;
                        font-size: 14px;
                        color: #475569;
                        gap: 0.5em;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        padding: 10px;
                        cursor: pointer;

                        .picto {
                            width: 18px;
                            height: 30px;
                        }
                    }

                    .selected {
                        background-color: var(--block-color);
                        color: white;
                    }

                    .selected-price {
                        color: var(--block-color);
                    }
                }

                .shipping-type-block {
                    width: 129px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 0.5em;

                    .type {
                        width: 100%;
                        height: 72px;
                        background: #FFFFFF 0 0 no-repeat padding-box;
                        border: 1px solid #CBD5E1;
                        border-radius: 6px;
                        opacity: 1;
                        text-align: left;
                        font-size: 12px;
                        color: #475569;
                        gap: 0.5em;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        padding: 10px;
                        cursor: pointer;

                        .price {
                            font: normal normal bold 16px Poppins-Semi-Bold, serif;
                            color: var(--block-color);
                        }

                        .picto {
                            width: 18px;
                            height: 30px;
                        }
                    }

                    .selected {
                        background-color: var(--block-color);
                        color: white;

                        .price {
                            color: white;
                        }
                    }
                }

            }
        }

        .quantity-block {
            display: flex;
            flex-direction: column;
            gap: 0.5em;
            font-weight: 500;
            font-size: 14px;
            line-height: 20px;
            color: #334155;

            .qty-container {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 20px;

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

                input:focus {
                    outline: none;
                    box-shadow: none;
                    border-color: var(--block-color) !important;
                }
            }
        }

        .price-container {
            background: #FFFFFF 0 0 no-repeat padding-box;
            border: 1px solid #CBD5E1;
            border-radius: 6px;
            width: 100%;
            height: 56px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: left;
            font: normal normal bold 16px Poppins-Semi-Bold, serif;
            color: var(--block-color);

            .price {
                font: normal normal bold 30px Poppins-Bold;
                color: var(--block-color);
            }
        }

        .add-to-cart-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            gap: 8px;

            .add-to-cart-btn {
                background-color: var(--block-color);
                color: white;
                cursor: pointer;
                display: inline-block;
                text-align: center;
                transition: background-color 0.3s ease-in-out;
                font-weight: 600;
                font-size: 16px;
                line-height: 24px;
                width: 100%;
                height: 44px;
                gap: 6px;
                padding: 10px 16px;
                border-radius: 32px;
                border-width: 1px;
            }

            .add-to-cart-btn:hover {
                filter: brightness(90%);
            }

            span {
                font-weight: 500;
                font-size: 14px;
                line-height: 18px;
                text-align: center;
                color: #EE8924;
            }
        }
    }
}
