.chfs-widget {
    --chfs-progress: 0%;
    --chfs-accent: #0ea5a4;
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 8px;
    background: #ffffff;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--chfs-accent) 12%, #ffffff), #ffffff 54%),
        #ffffff;
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
    color: #111827;
}

.chfs-widget--complete {
    border-color: rgba(14, 165, 164, 0.38);
    border-color: color-mix(in srgb, var(--chfs-accent) 38%, #ffffff);
}

.chfs-widget__content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chfs-widget__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 8px;
    background: var(--chfs-accent);
    color: #ffffff;
}

.chfs-widget__icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.chfs-widget__body {
    min-width: 0;
}

.chfs-widget__title,
.chfs-widget__subtitle {
    margin: 0;
}

.chfs-widget__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
}

.chfs-widget__title .woocommerce-Price-amount {
    color: var(--chfs-accent);
}

.chfs-widget__subtitle {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.4;
    color: #4b5563;
}

.chfs-widget__track {
    overflow: hidden;
    height: 10px;
    margin-top: 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.1);
}

.chfs-widget__bar {
    display: block;
    width: var(--chfs-progress);
    height: 100%;
    border-radius: inherit;
    background: var(--chfs-accent);
    transition: width 280ms ease;
}

.widget_shopping_cart_content .chfs-widget {
    margin: 12px 0;
    padding: 12px;
    box-shadow: none;
}

.widget_shopping_cart_content .chfs-widget__content {
    gap: 10px;
}

.widget_shopping_cart_content .chfs-widget__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
}

.widget_shopping_cart_content .chfs-widget__icon svg {
    width: 22px;
    height: 22px;
}

.widget_shopping_cart_content .chfs-widget__title {
    font-size: 14px;
}

.widget_shopping_cart_content .chfs-widget__subtitle {
    font-size: 12px;
}

@media (max-width: 520px) {
    .chfs-widget {
        padding: 14px;
    }

    .chfs-widget__content {
        align-items: flex-start;
        gap: 12px;
    }

    .chfs-widget__icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .chfs-widget__title {
        font-size: 15px;
    }
}
