.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    background: rgba(42, 42, 42, 0.8);
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);

    transform: translateY(100%);
    transition: transform .35s ease;

    padding: 20px;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.cookie-text p {
    margin: 0;
    line-height: 1.5;
}

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

.cookie-btn {
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 12px 20px;
    font-size: 14px;
}

.cookie-btn.accept {
    background: #111;
    color: white;
}

.cookie-btn.decline {
    background: #eee;
    color: #111;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
