/* cookie-banner.css - для сайта ГидГуд */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(7, 21, 22, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 30px;
    border-top: 3px solid #FD4621;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

.cookie-banner .cookie-text {
    flex: 1 1 60%;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Onest', sans-serif;
}

.cookie-banner .cookie-text a {
    color: #FD4621;
    text-decoration: underline;
    transition: color 0.3s;
    font-weight: 500;
}

.cookie-banner .cookie-text a:hover {
    color: #ff7a5a;
}

.cookie-banner .cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn-cookie {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 10px 28px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.cookie-banner .btn-cookie:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-banner .btn-cookie-accept {
    background: #FD4621;
    border-color: #FD4621;
    color: #fff;
}

.cookie-banner .btn-cookie-accept:hover {
    background: #e63d1a;
    border-color: #e63d1a;
    color: #fff;
}

.cookie-banner .btn-cookie-decline {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner .btn-cookie-decline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Адаптив */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px 20px;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .cookie-text {
        flex: 1 1 100%;
        font-size: 13px;
    }
    .cookie-banner .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn-cookie {
        padding: 8px 20px;
        font-size: 13px;
        flex: 1 1 auto;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-banner .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner .btn-cookie {
        width: 100%;
        text-align: center;
    }
}