.cookie-banner {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 380px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    animation: slideUp 0.5s ease-out;
    font-family: 'Inter', sans-serif;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
}

.cookie-buttons .btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    text-align: center;
}

.cookie-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cookie-link:hover {
    color: #15803d;
    text-decoration: underline;
}

.btn-accept {
    background-color: #2e7d32;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(13, 119, 65, 0.3);
}

.btn-accept:hover {
    background-color: #15803d;
    transform: translateY(-2px);
}

.btn-decline {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.btn-decline:hover {
    background-color: #e2e8f0;
    color: #1e293b;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
        padding: 1rem;
    }

    .cookie-content {
        gap: 12px;
    }

    .cookie-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .cookie-buttons .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}