/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a202c;
    color: #fff;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    padding: 1.5rem;
    display: none;
    /* Hidden by default, shown by JS */
}

.cookie-banner.visible {
    transform: translateY(0);
    display: block;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .cookie-container {
        flex-direction: row;
        text-align: left;
    }
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #cbd5e0;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

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

.cookie-btn-accept:hover {
    background-color: #319795;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background-color: transparent;
    border: 1px solid #cbd5e0;
    color: #cbd5e0;
}

.cookie-btn-decline:hover {
    border-color: #fff;
    color: #fff;
}