/* ============================================
   Cookie Consent Banner — 7788.ru
   ============================================ */

#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    width: 680px;
    max-width: calc(100vw - 32px);
    background: #517893;
    color: #d8d8d8;
    border: 1px solid #444;
    border-top: 3px solid #c0392b;
    border-radius: 4px;
    padding: 28px 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
    font-family: Arial, Tahoma, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#cookie-consent-banner.cookie-visible {
    display: flex;
    align-items: center;
    gap: 14px;
}

#cookie-consent-banner.cookie-fade-in {
    opacity: 1;
}

/* Иконка */
#cookie-consent-banner .cookie-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    opacity: 0.75;
}

/* Текстовый блок */
#cookie-consent-banner .cookie-text {
    flex: 1;
    min-width: 0;
    color: #c8c8c8;
}

#cookie-consent-banner .cookie-text strong {
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

#cookie-consent-banner .cookie-text a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted #fff;
}

#cookie-consent-banner .cookie-text a:hover {
    color: #ddd;
    border-bottom-color: #ddd;
}

/* Кнопки */
#cookie-consent-banner .cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

#cookie-consent-banner .cookie-btn-accept {
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 9px 22px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    font-family: Arial, Tahoma, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: background 0.15s;
    white-space: nowrap;
}

#cookie-consent-banner .cookie-btn-accept:hover {
    background: #a93226;
}

#cookie-consent-banner .cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 7px 22px;
    cursor: pointer;
    font-size: 11px;
    font-family: Arial, Tahoma, sans-serif;
    text-align: center;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
}

#cookie-consent-banner .cookie-btn-decline:hover {
    border-color: #fff;
    color: #fff;
}

/* Кнопка закрыть × */
#cookie-consent-banner .cookie-btn-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    font-family: Arial, sans-serif;
    transition: color 0.15s;
}

#cookie-consent-banner .cookie-btn-close:hover {
    color: #bbb;
}

/* Адаптив для мобильных */
@media (max-width: 720px) {
    #cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        flex-wrap: wrap;
        padding: 20px 18px 22px;
    }

    #cookie-consent-banner .cookie-icon {
        display: none;
    }

    #cookie-consent-banner .cookie-buttons {
        flex-direction: row;
        width: 100%;
    }

    #cookie-consent-banner .cookie-btn-accept,
    #cookie-consent-banner .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}