/**
 * Estimated Price Styling
 */

/* Estimated price display */
.estimated-price {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.9em;
    color: #666;
    font-weight: normal;
}

/* Price box wrapper to accommodate estimated price */
.price-box .estimated-price {
    display: block;
    margin-left: 0;
    margin-top: 2px;
}

/* Product listing estimated price */
.product-item .estimated-price {
    display: block;
    font-size: 0.85em;
    color: #777;
}

/* Product view page estimated price */
.product-info-main .estimated-price {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

/* Cart and checkout estimated prices */
.cart-price .estimated-price,
.price .estimated-price {
    font-size: 0.85em;
    color: #666;
}

/* Order summary estimated price */
.summary .estimated-price {
    display: block;
    font-size: 0.8em;
    color: #777;
}

/* Grand total estimated price - slightly more prominent */
.grand-total .estimated-price {
    font-size: 0.85em;
    color: #555;
}

