/* Pincolor Free Shipping Banner */
.pcfs-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f0faf8;
    border: 1px solid #c5e8e2;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
}

.pcfs-banner--achieved {
    background: #e8f7f4;
    border-color: #6ac9bb;
}

.pcfs-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddf2ee;
    border-radius: 50%;
    color: #45bdab;
}

.pcfs-banner--achieved .pcfs-icon {
    background: #6ac9bb;
    color: #fff;
}

.pcfs-icon svg {
    width: 16px;
    height: 16px;
}

.pcfs-content {
    flex: 1;
    min-width: 0;
}

.pcfs-text {
    font-size: 14px;
    line-height: 20px;
    color: #181d27;
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
}

.pcfs-text strong {
    font-weight: 700;
    color: #26a18f;
}

.pcfs-banner--achieved .pcfs-text strong {
    color: #26a18f;
}

.pcfs-progress {
    width: 100%;
    height: 6px;
    background: #c5e8e2;
    border-radius: 999px;
    overflow: hidden;
}

.pcfs-banner--achieved .pcfs-progress {
    background: #c5e8e2;
}

.pcfs-progress-bar {
    height: 100%;
    background: #6ac9bb;
    border-radius: 999px;
    transition: width 0.4s ease;
    min-width: 4%;
}

.pcfs-banner--achieved .pcfs-progress-bar {
    background: #45bdab;
    width: 100% !important;
}

/* Mini-cart modal variant */
#blockcart-modal .pcfs-banner {
    margin: 0 0 15px 0;
}

/* Sidebar cart variant */
#side_cart_block .pcfs-banner {
    margin: 0 0 10px 0;
}

@media (max-width: 767px) {
    .pcfs-banner {
        padding: 10px 12px;
        gap: 10px;
    }

    .pcfs-icon {
        width: 24px;
        height: 24px;
    }

    .pcfs-icon svg {
        width: 14px;
        height: 14px;
    }

    .pcfs-text {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 5px;
    }

    .pcfs-progress {
        height: 5px;
    }
}
