/* בסיס */
.kssc-hidden {
    display: none !important;
}

.kssc-banner {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    background: #ffffff;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    font-family: inherit;
}

.kssc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kssc-text-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.kssc-link {
    font-size: 14px;
    text-decoration: underline;
}

/* כפתורים + איקון */
.kssc-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kssc-btn {
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.05s ease;
    white-space: nowrap;
}

.kssc-btn:active {
    transform: scale(0.98);
}

/* לפי הדוגמה: כפתור כחול "מאשר", שחור "לא מאשר" */
.kssc-btn-primary {
    background: #004a80;
    color: #ffffff;
}

.kssc-btn-primary:hover {
    background: #00365d;
}

.kssc-btn-secondary {
    background: #000000;
    color: #ffffff;
}

.kssc-btn-secondary:hover {
    background: #222222;
}

.kssc-cookie-icon {
    font-size: 18px;
}

/* מובייל */
@media (max-width: 768px) {
    .kssc-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .kssc-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .kssc-btn {
        min-width: 100px;
        text-align: center;
    }
}
