/* ==========================================================================
   FAKTOLINO: PREMIUM GLASSMORPHISM COOKIE CONSENT BANNER
   ========================================================================== */

.fk-cookie-banner-wrap {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 600px;
    margin: 0 auto;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 223, 208, 0.8);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(58, 50, 38, 0.12);
    padding: 24px;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    color: #3A3226;
    transform: translateY(120px) scale(0.98);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.fk-cookie-banner-wrap.is-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.fk-cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fk-cookie-banner-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fk-cookie-banner-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    background: #FFF;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1.5px solid #F5A623;
}

.fk-cookie-banner-text-group {
    flex-grow: 1;
}

.fk-cookie-banner-title {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 800;
    color: #3A3226;
}

.fk-cookie-banner-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #7B6E5B;
    font-weight: 500;
}

.fk-cookie-banner-text a {
    color: #5BB983;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.2s ease;
}

.fk-cookie-banner-text a:hover {
    color: #3f9b69;
}

.fk-cookie-banner-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.fk-cookie-btn {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box;
}

.fk-cookie-btn-primary {
    background: #5BB983;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(91, 185, 131, 0.3);
}

.fk-cookie-btn-primary:hover {
    background: #4ca472;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 185, 131, 0.4);
}

.fk-cookie-btn-primary:active {
    transform: translateY(0);
}

.fk-cookie-btn-secondary {
    background: rgba(58, 50, 38, 0.05);
    color: #3A3226;
    border: 1px solid rgba(58, 50, 38, 0.1);
}

.fk-cookie-btn-secondary:hover {
    background: rgba(58, 50, 38, 0.1);
    transform: translateY(-2px);
}

.fk-cookie-btn-secondary:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .fk-cookie-banner-wrap {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 20px;
    }
    
    .fk-cookie-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .fk-cookie-banner-actions {
        flex-direction: column-reverse;
        width: 100%;
        gap: 10px;
    }
    
    .fk-cookie-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}
