/* Cookie Consent Banner Styles */
#kontakt-cookie-banner {
    display: block;
    position: fixed;
    z-index: 2;
    bottom: 40px;
    transform: translateX(-50%);
    left: 50%;
    width: 45%;
    background-color: rgba(255, 0, 60, 0.4);
    padding: 20px 24px;
    backdrop-filter: blur(32px);
    border-radius: 20px;
}

#kontakt-cookie-banner .kc-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

#kontakt-cookie-banner .kc-content {
    flex: 1 1 auto;
    margin-right: 16px;
}

#kontakt-cookie-banner .kc-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

#kontakt-cookie-banner .kc-text {
    margin: 0;
    line-height: 1.5;
}

#kontakt-cookie-banner .kc-policy-link {
    color: #0030ff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

#kontakt-cookie-banner .kc-policy-link:hover {
    color: #b8d4ff;
}

#kontakt-cookie-banner .kc-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

#kontakt-cookie-banner .kc-btn {
    appearance: none;
    border: 0;
    border-radius: 6px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    min-width: 100px;
}

#kontakt-cookie-banner .kc-btn:focus {
    outline: 2px solid #96caff;
    outline-offset: 2px;
}

#kontakt-cookie-banner .kc-accept {
    background: #ff003c;
    color: #fff;
}

#kontakt-cookie-banner .kc-accept:hover {
    background: #ff003c;
    transform: translateY(-1px);
}

#kontakt-cookie-banner .kc-decline {
    background: #fff;
    color: #222;
}

#kontakt-cookie-banner .kc-decline:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    #kontakt-cookie-banner {
        padding: 16px;
        width: 90%;
    }
    
    #kontakt-cookie-banner .kc-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    #kontakt-cookie-banner .kc-content {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    #kontakt-cookie-banner .kc-actions {
        justify-content: stretch;
        gap: 12px;
        flex-direction: row;
    }
    
    #kontakt-cookie-banner .kc-btn {
        flex: 1;
        width: auto;
    }
}

/* Hide noscript elements by default */
noscript[data-consent] {
    display: none !important;
}


