.hiamin-woocommerce-pwp-offer-progress {
    box-sizing: border-box;
    width: 100%;
    margin: 18px 0;
    padding: 18px;
    border: 1px solid var(--hiamin-woocommerce-pwp-offer-border, rgba(0, 0, 0, .12));
    border-radius: var(--hiamin-woocommerce-pwp-offer-radius, 16px);
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 14%, transparent) 0, transparent 32%),
        var(--hiamin-woocommerce-pwp-offer-background, #fff);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08), 0 2px 8px rgba(15, 23, 42, .04);
    font: inherit;
    color: inherit;
    overflow: hidden;
}

.hiamin-woocommerce-pwp-offer-progress *,
.hiamin-woocommerce-pwp-offer-progress *::before,
.hiamin-woocommerce-pwp-offer-progress *::after {
    box-sizing: border-box;
}

.hiamin-woocommerce-pwp-offer-progress__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.hiamin-woocommerce-pwp-offer-progress__header-main {
    display: grid;
    gap: 6px;
}

.hiamin-woocommerce-pwp-offer-progress__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 10%, #fff);
    color: var(--hiamin-woocommerce-pwp-offer-accent, #2271b1);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hiamin-woocommerce-pwp-offer-progress__header strong {
    font-size: 15px;
    line-height: 1.8;
}

.hiamin-woocommerce-pwp-offer-progress__percent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 18%, var(--hiamin-woocommerce-pwp-offer-border, #dcdcde));
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
    font-weight: 700;
    white-space: nowrap;
}

.hiamin-woocommerce-pwp-offer-progress__bar {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 14px;
    margin: 10px 0 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(15, 23, 42, .10), rgba(15, 23, 42, .06));
}

.hiamin-woocommerce-pwp-offer-progress__bar > span {
    display: block;
    position: relative;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 82%, #fff), var(--hiamin-woocommerce-pwp-offer-accent, #2271b1));
    box-shadow: 0 8px 18px color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 30%, transparent);
    transition: width .35s ease;
}

.hiamin-woocommerce-pwp-offer-progress__bar > span::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image: linear-gradient(135deg, rgba(255,255,255,.55) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.55) 50%, rgba(255,255,255,.55) 75%, transparent 75%, transparent 100%);
    background-size: 26px 26px;
}

.hiamin-woocommerce-pwp-offer-progress__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hiamin-woocommerce-pwp-offer-progress__stats > span {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-border, #dcdcde) 85%, #fff);
    border-radius: calc(var(--hiamin-woocommerce-pwp-offer-radius, 16px) - 4px);
    background: rgba(255, 255, 255, .76);
    backdrop-filter: blur(8px);
}

.hiamin-woocommerce-pwp-offer-progress__stats small {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
}

.hiamin-woocommerce-pwp-offer-progress__stats strong {
    font-size: 14px;
    line-height: 1.7;
}

.hiamin-woocommerce-pwp-offer-progress__status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: calc(var(--hiamin-woocommerce-pwp-offer-radius, 16px) - 4px);
    line-height: 1.9;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(15, 23, 42, .06);
}

.hiamin-woocommerce-pwp-offer-progress.is-complete {
    border-color: color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 22%, #c8f7d5);
}

.hiamin-woocommerce-pwp-offer-progress.is-complete .hiamin-woocommerce-pwp-offer-progress__status {
    background: color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 10%, #f6fff9);
}

.hiamin-woocommerce-pwp-offer-progress.is-incomplete .hiamin-woocommerce-pwp-offer-progress__status {
    background: color-mix(in srgb, var(--hiamin-woocommerce-pwp-offer-accent, #2271b1) 6%, #fffaf0);
}

.hiamin-woocommerce-pwp-offer-progress-host:empty {
    display: none;
}

@media (max-width: 767px) {
    .hiamin-woocommerce-pwp-offer-progress {
        padding: 16px;
    }

    .hiamin-woocommerce-pwp-offer-progress__stats {
        grid-template-columns: 1fr;
    }

    .hiamin-woocommerce-pwp-offer-progress__percent {
        width: 100%;
        justify-content: center;
    }
}
