/* ============================================
   COOKIE BANNER - AKASCO
   ============================================ */

.akasco-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 16px 24px;
    z-index: 999999;
    font-family: 'Montserrat', sans-serif;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.akasco-cookie-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.akasco-cookie-text {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

.akasco-cookie-link {
    color: #C5A572;
    text-decoration: none;
    margin-left: 8px;
}

.akasco-cookie-link:hover {
    text-decoration: underline;
}

.akasco-cookie-buttons {
    display: flex;
    gap: 12px;
}

.akasco-cookie-btn {
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.akasco-cookie-btn.accept {
    background: #C5A572;
    color: #1A1A1A;
}

.akasco-cookie-btn.accept:hover {
    background: #D4B47C;
}

.akasco-cookie-btn.reject {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #C5A572;
}

.akasco-cookie-btn.reject:hover {
    background: rgba(197, 165, 114, 0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .akasco-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .akasco-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}