/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-content {
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    margin-left: 20px;
    flex-wrap: nowrap;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept:hover {
    background-color: #3570c0;
}

.btn-cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.btn-cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-learn-more {
    color: var(--white);
    font-size: 14px;
    text-decoration: underline;
}

.cookie-learn-more:hover {
    color: var(--primary-color);
}

/* Media queries */
@media (max-width: 992px) {
    .cookie-content {
        flex-direction: column;
        padding: 15px;
    }
    
    .cookie-buttons {
        margin-left: 0;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .btn-cookie-accept,
    .btn-cookie-decline {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .cookie-text p {
        font-size: 13px;
        text-align: center;
    }
}