.cookie-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 400px;
    z-index: 9999;
    font-family: 'Onest', sans-serif;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.cookie-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-notification h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.cookie-notification p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}

.cookie-notification-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-notification-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Onest', sans-serif;
}

.cookie-notification-btn.accept {
    background: #3b82f6;
    color: white;
}

.cookie-notification-btn.accept:hover {
    background: #2563eb;
}

.cookie-notification-btn.decline {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-notification-btn.decline:hover {
    background: #e5e7eb;
}

@media (max-width: 768px) {
    .cookie-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: none;
        margin: 0;
    }
    
    .cookie-notification-buttons {
        flex-direction: column;
    }
    
    .cookie-notification-btn {
        width: 100%;
        text-align: center;
    }
} 