/* Баннер согласия на использование cookie */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(8, 56, 101, 0.97);
    color: #fff;
    font: 14px/1.5 'MyriadProRegular', Arial, sans-serif;
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
}

.cookie-consent__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-consent__text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent__btn {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 4px;
    font: bold 13px/1 Arial, sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.cookie-consent__btn--accept {
    background: #00AEEF;
    color: #fff;
}

.cookie-consent__btn--accept:hover {
    background: #0095cc;
    color: #fff;
}

.cookie-consent__btn--details {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--details:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
}

/* Адаптив */
@media (max-width: 640px) {
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
        gap: 12px;
    }

    .cookie-consent__buttons {
        width: 100%;
        justify-content: center;
    }
}
