/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(49, 92, 43, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 24px 32px;
    z-index: 10000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content h4 {
    margin: 0 0 8px 0;
    font-family: 'Londrina Solid', cursive;
    font-size: 1.5rem;
    color: #315c2b;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.cookie-content a {
    color: #315c2b;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accept {
    background: #315c2b;
    color: white;
}

.btn-accept:hover {
    background: #447a3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 92, 43, 0.3);
}

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

.btn-decline:hover {
    background: #f5f5f5;
    color: #333;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: -100%;
        left: 10px;
        right: 10px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .cookie-banner.active {
        bottom: 10px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .btn-cookie {
        flex: 1;
        text-align: center;
    }
}
