/* ── KerbShark Shop · Sticky cart FAB ──
   Extracted from the inline <style> block previously printed in wp_footer. */

.ksshop-cart-fab {
    position: fixed;
    bottom: 120px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary, #024b42);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(2, 75, 66, 0.35);
    text-decoration: none;
    font-family: var(--font-primary, "Plus Jakarta Sans", sans-serif);
    font-size: 14px;
    font-weight: 600;
    transition: all .25s ease;
}

.ksshop-cart-fab:hover {
    background: #013a33;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(2, 75, 66, 0.45);
    color: #fff;
    text-decoration: none;
}

.ksshop-cart-fab-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.ksshop-cart-fab-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #f14668;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-family: var(--font-primary, "Plus Jakarta Sans", sans-serif);
    line-height: 1;
    box-shadow: 0 2px 6px rgba(241, 70, 104, 0.4);
}

@media (max-width: 767px) {
    .ksshop-cart-fab {
        bottom: 110px;
        right: 16px;
        padding: 10px 16px;
        gap: 8px;
        font-size: 13px;
    }

    .ksshop-cart-fab-label {
        display: none;
    }
}
