*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
ul, li {
    padding: 0;
    margin: 0;
    list-style: none;
}
button {
    outline: none;
    &:active {
        outline: none;
    }
    &:focus{
        outline: none;
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 10;
    display: none;
    padding: 0 25px;

    &.open {
        display: block;
    }
}
.region-modal {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    position: fixed;
    transition: right .5s linear, opacity .2s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20 ;
    border-top: 4px solid #ed6b21;
    display: none;
    &.open {
        display: block;
    }
    .close-row {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        span {
            cursor: pointer;
        }
    }
    .region-modal-title {
        color: #ed6b21;
        font-family: "PragmaticaLightC";
        font-size: 20px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
    }
    form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        .form-control {
            display: block;
            width: 100%;
            padding: .375rem .75rem;
            font-size: 1rem;
            line-height: 1.5;
            color: #495057;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid #ced4da;
            border-radius: .25rem;
            transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            font-family: 'PragmaticaC';
            &::placeholder {
                color: #495057;
                font-size: 16px;
                font-family: 'PragmaticaC';
            }
        }
        select.form-control:not([size]):not([multiple]) {
            height: calc(2.25rem + 2px);
        }
        .textarea {
            border-color: #c7c7c7;
            border-style: solid;
            border-width: 1px;
            color: #7d7d7d;
            display: block;
            float: none;
            font-size: 16px;
            height: 85px;
            padding: .375rem .75rem;
            width: 100%;
            font-family: 'PragmaticaC';
            &::placeholder {
                color: #495057;
                font-size: 16px;
                font-family: 'PragmaticaC';
            }
        }
        .button-lada {
            display: block;
            position: relative;
            width: 100%;
            background: #ed6b21;
            color: #fff !important;
            text-align: center;
            text-transform: uppercase;
            padding: 20px;
            font-family: 'PragmaticaC';
            margin: 0 auto;
            transition-duration: 1s;
            transition-property: all;
            border: none;
            cursor: pointer;
            font-size: 16px;
            outline: none;
        }

    }
}
.lada-region-content {
    max-width: calc(1370px + 16px * 2);
    padding: 0 16px;
    margin: 0 auto;
    width: 100%;
}
.lada-region-hero {
    background-color: #f7f8f8;
    display: flex;
    height: 600px;
    @media (max-width: 1024px) {
        height: auto;
        padding-bottom: 50px;
    }
    .lada-region-content {
        display: flex;
        gap: 50px;
        @media (max-width: 1024px) {
            flex-direction: column-reverse;
        }
        .lada-region-content-text {
            width: calc((100% - 50px) / 2);
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
            align-items: center;
            @media (max-width: 1024px) {
                width: 100%;
            }
            h1 {
                color: #ed6b21;
                font-family: "PragmaticaLightC";
                font-size: 33px;
                font-weight: 700;
                text-align: center;
            }
            p {
                color: #000;
                font-family: "PragmaticaLightC";
                font-size: 20px;
                margin-bottom: 20px;
                font-weight: 500;
            }
            .region-advantages {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                p {
                    color: #000;
                    font-family: "PragmaticaLightC";
                    font-size: 20px;
                    margin-bottom: 20px;
                    font-weight: 500;
                    text-align: left;
                }
                .region-advantages-list-inner {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                }
            }
            ul {
                list-style: none;
                display: flex;
                gap: 10px;
                flex-direction: column;
                align-items: flex-start;
                li {
                    color: #000;
                    font-family: "PragmaticaLightC";
                    font-size: 16px;
                    display: flex;
                    align-items: center;
                    &::before {
                        content: "";
                        width: 5px;
                        height: 5px;
                        background-color: #000;
                        border-radius: 50%;
                        margin-right: 10px;
                        display: block;
                    }
                }
            }
            .region-callback {
                padding: 15px 40px;
                border: 1px solid #ed6b21;
                color: #ed6b21;
                background: transparent;
                margin-top: 30px;
                cursor: pointer;
                transition: all 0.3s ease;
                width: fit-content;
                &:hover {
                    background-color: #ed6b21;
                    color: #fff;
                }
            }
        }
        .lada-region-content-image {
            width: calc((100% - 50px) / 2);
            @media (max-width: 1024px) {
                width: 100%;
                height: 50vh;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }

}
.breadcrumbs {
    padding: 40px 0;
    .lada-region-content {
        ul {
            display: flex;
            align-items: center;
            gap: 10px;
            li {
                &::before {
                    content: none;
                }
                a {
                    color: #ed6b21;
                }
            }
        }
    }
}
.region-in-stock {
    padding: 40px 0;
    .lada-region-content{
        display: flex;
        flex-direction: column;
        gap: 30px;
        h2 {

        }

    }


    .tabs {
        .tab-headers {
            display: flex;
            border-bottom: 1px solid #ddd;
            overflow: hidden;
            overflow-x: auto;
            .tab-header {
                padding: 10px 20px;
                border: none;
                background: #f5f5f5;
                cursor: pointer;
                white-space: nowrap;
                &.active {
                    background: #fff;
                    border-bottom: 2px solid #e37639;
                }
            }
        }
        .tab-content {
            min-height: 500px;
            
            border: none !important;
            .tab-pane {
                display: none;
                padding: 20px;
                &.active {
                    display: block;
                }
            }
        }
    }
}
.region-lada-advantages {
    padding: 40px 0;
    .lada-region-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        h2 {
            font-size: 25px;
        }
        .advantages-slider {
            width: 100%;
            height: 200px;
            .advantage-card {
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid #ddd;
                border-radius: 10px;
                width: 100%;
                height: 100%;
            }
        }

    }
}
.region-lada-reviews {
    padding: 40px 0;
    .lada-region-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        h2 {
            font-size: 25px;
        }
        .reviews-slider {
            width: 100%;
            height: 200px;
            .review-card {
                display: flex;
                align-items: center;
                justify-content: center;
                border: 1px solid #ddd;
                border-radius: 10px;
                width: 100%;
                height: 100%;
            }
        }

    }
}
.lada-region-contacts {
    padding: 40px 0;
    .lada-region-content {
        display: flex;
        gap: 30px;
        h2 {
            font-size: 25px;
        }
        .lada-region-content-info {
            display: flex;
            width: calc((100% - 30px) / 2);
            flex-direction: column;
            gap: 30px;
            .info-container {
                display: flex;
                flex-direction: column;
                gap: 20px;
                .company {
                    font-size: 20px;
                }
                .location {
                    font-size: 20px;
                }
                .working-time {
                    font-size: 20px;
                    a {
                        text-decoration: underline;
                        color: #000;
                    }
                }
            }
        }
        .lada-region-content-map {
            width: calc((100% - 30px) / 2);
            div {
                width: 100%;
                height: 400px;
                iframe {
                    border: none;
                    width: 100%;
                    height: 100%;
                }
            }
        }

    }
}


