.lux-bas-section {
    width: 100%;
    box-sizing: border-box;
}

.lux-bas-slider {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
}

.lux-bas-viewport {
    overflow: hidden;
    width: 100%;
    background:rgba(247, 243, 236, 1);
    border-radius:16px;
}

.lux-bas-track {
    display: flex;
    transition: transform 0.65s ease;
    will-change: transform;
}

.lux-bas-slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
}

.lux-bas-panel {
    background: rgba(247, 243, 236, 1);
    padding: 40px;
    box-sizing: border-box;
}

.lux-bas-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.lux-bas-image-wrap {
    position: relative;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    /*box-shadow: 0 11px 17px rgba(0, 0, 0, 0.16);
    background: #ddd;*/
}

.lux-bas-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-bas-label {
    position: absolute;
    top: 13px;
    left: 15px;
    z-index: 2;
    border-radius: 999px;
    padding: 8px 13px 7px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lux-bas-label-before {
    background: #ffffff;
    color: #2d2d2d;
}

.lux-bas-label-after {
    background: #c99a0b;
    color: #111111;
}

.lux-bas-content {
    text-align: center;
    padding-top: 30px;
}

.lux-bas-content h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    font-family:'Montserrat';
}

.lux-bas-content p {
    margin: 0;
    color: #111111;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 400;
}

.lux-bas-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    margin-top: 25px;
}

.lux-bas-arrow {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50% !important;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 23px !important;
    padding: 0 !important;
    line-height: 1;
    font-family: Arial, sans-serif !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
    box-shadow: none !important;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

.lux-bas-arrow:hover {
    transform: translateY(-1px);
    background: #f2d230 !important;
    color: #111111 !important;
}

.lux-bas-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 38px;
    height: 8px;
}

.lux-bas-dots button {
    width: 5px;
    height: 5px;
    min-width: 0;
    min-height: 0;
    border: 0;
    border-radius: 999px;
    padding: 0;
    margin: 0;
    background: #777777;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.lux-bas-dots button.active {
    width: 17px;
    background: #cfa33a;
}

@media (max-width: 767px) {
    .lux-bas-panel {
        padding: 24px 18px 22px;
    }

    .lux-bas-images {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lux-bas-image-wrap {
        height: 380px;
    }

    .lux-bas-content h3 {
        font-size: 18px;
    }
}