/* Плашка cookie */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -8px 32px rgba(214, 51, 132, 0.1);
    padding: 16px 24px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 260px;
}
.cookie-text a {
    color: var(--accent);
    text-decoration: none;
}
.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #D63384, #E91E63);
    color: white;
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}
.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(214, 51, 132, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
}
.cookie-btn-reject:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

/* Адаптив */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}