/* Обнуление для бесконфликтного встраивания */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    outline: 0;
    background: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.banner-container {
    position: relative;
    width: 1000px;
    height: 80px;
    background: #fff;
    font-family: 'Days One', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
}

.text-red { color: #E30613; }
.text-green { color: #009640; }

.banner-logo {
    width: 180px; /* Сузили лого */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    letter-spacing: -1px;
    border-right: 2px solid #e0e0e0;
    flex-shrink: 0;
}

.banner-slider {
    flex-grow: 1; /* Теперь занимает максимум места */
    height: 100%;
    position: relative;
    padding: 0 25px; /* Умеренный отступ */
}

.slide {
    position: absolute;
    width: calc(100% - 50px);
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.slide-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.slide-image {
    width: 130px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide-text {
    line-height: 1.15;
    text-transform: uppercase;
    font-style: italic;
    white-space: nowrap; /* Чтобы текст не прыгал */
}

.banner-contacts {
    width: 180px; /* Сузили контакты */
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15px;
    border-left: 2px solid #e0e0e0;
    flex-shrink: 0;
}

.banner-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 40;
    text-decoration: none;
    background: transparent;
}

.phone { font-size: 14px; color: #E30613; }
.email, .website { font-size: 10px; color: #777; margin-top: 1px; font-family: Arial, sans-serif; font-weight: bold; }

.ab-badge {
    position: absolute; top: 2px; right: 5px;
    font-family: Arial, sans-serif; font-size: 9px;
    color: #ccc; cursor: pointer; z-index: 50;
}

.ab-modal {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(2px);
    z-index: 100; display: flex; align-items: center; justify-content: center;
    font-family: Arial, sans-serif; font-size: 11px; opacity: 0; visibility: hidden;
}

.close-btn {
    position: absolute; top: 50%; right: 15px; transform: translateY(-50%);
    background: none; border: none; font-size: 24px; cursor: pointer;
}