.section_construction .select, .section_construction select:open, .section_construction select:open option {
    background: none;
}
.section_construction .select {
    border-radius: 50px;
}

.section_construction .construction-card {
    height: max(260px, 17.7vw) !important;
}


/* Слайдер */

.construction-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}

.construction-popup--open {
    visibility: visible;
    opacity: 1;
}

.construction-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.construction-popup__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-popup__slider {
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.construction-popup__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.construction-popup__close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}
.construction-popup__close:hover {
    transform: scale(1.1);
}

.construction-popup__prev,
.construction-popup__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 40px;
    border: none;
    width: 60px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.construction-popup__prev { left: 20px; }
.construction-popup__next { right: 20px; }
.construction-popup__prev:hover,
.construction-popup__next:hover {
    background: rgba(0,0,0,0.8);
}