/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: #ffffff;
    color: #333333;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 500px;
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-banner h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.cookie-banner p a {
    color: #fcb900;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: none;
    flex: 1;
}

.cookie-btn-accept {
    background: #fcb900;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: #e5a800;
}

.cookie-btn-reject {
    background: #f1f1f1;
    color: #333333;
}

.cookie-btn-reject:hover {
    background: #e5e5e5;
}

.cookie-btn-settings {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.cookie-btn-settings:hover {
    background: #f9f9f9;
}

@media (min-width: 768px) {
    .cookie-banner {
        left: unset;
        right: 30px;
        bottom: -100%;
    }
    .cookie-banner.show {
        bottom: 30px;
    }
}
