/* Free shipping threshold — home banner + PDP compact (same settings value) */

.free-shipping-threshold--banner {
    background: linear-gradient(90deg, #0f172a 0%, #1e3a5f 55%, #0f766e 100%);
    color: #f8fafc;
    padding: 0.85rem 0;
}

.free-shipping-threshold__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    text-align: center;
}

.free-shipping-threshold--banner i {
    font-size: 1.25rem;
    color: #5eead4;
}

.free-shipping-threshold__msg {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.free-shipping-threshold__amount {
    font-weight: 700;
    color: #fde68a;
    font-variant-numeric: tabular-nums;
}

.free-shipping-threshold__cta {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    padding-bottom: 1px;
    white-space: nowrap;
}

.free-shipping-threshold__cta:hover {
    color: #5eead4;
    border-color: #5eead4;
}

/* PDP compact under price */
.free-shipping-threshold--compact {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0.75rem 0 0.25rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.free-shipping-threshold--compact i {
    margin-top: 0.15rem;
    color: #059669;
    font-size: 1.05rem;
}

.free-shipping-threshold__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.88rem;
    line-height: 1.35;
}

.free-shipping-threshold__text strong {
    font-size: 0.92rem;
}

.free-shipping-threshold__text span {
    color: #047857;
    opacity: 0.95;
}

.free-shipping-threshold--inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #047857;
    font-weight: 600;
}

@media (max-width: 640px) {
    .free-shipping-threshold--banner {
        padding: 0.75rem 0.5rem;
    }

    .free-shipping-threshold__inner {
        flex-direction: column;
        gap: 0.45rem;
    }
}
