/**
 * Frontend styles for Woo Free Delivery Promo
 * Author: Jan Vašek, wpbase.eu
 */

.woofdpro-promo-wrapper {
    margin: 20px 0;
    width: 100%;
}

.woofdpro-box {
    background-color: #F4F9F5;
    /* Very soft light green */
    border-radius: 16px;
    padding: 20px 24px;
    box-sizing: border-box;
    font-family: var(--wp--preset--font-family--poppins), sans-serif;
    border: 1px solid rgba(39, 174, 96, 0.08);
    transition: all 0.3s ease;
}

.woofdpro-box__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.woofdpro-box__message {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woofdpro-box__icon {
    font-size: 20px;
    color: #333333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woofdpro-box__text {
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 600;
    color: #1A1A1A;
}

.woofdpro-box__text strong {
    font-weight: 700;
}

.woofdpro-box__progress-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Bootstrap progress-bar styling overrides */
.progress.woofdpro-progress {
    height: 10px;
    background-color: #FFFFFF !important;
    border-radius: 100px !important;
    overflow: hidden;
    margin: 4px 0 0 0;
    border: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.progress-bar.woofdpro-progress-bar {
    background-color: #27AE60 !important;
    /* Vibrant green */
    height: 100%;
    border-radius: 100px !important;
    transition: width 0.6s ease;
}

.woofdpro-box__limit-text {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #27AE60;
    margin-top: 2px;
}

/* Success specific styling adjustments */
.woofdpro-box--success {
    padding: 24px;
}

.woofdpro-box--success .woofdpro-box__message {
    justify-content: flex-start;
}