/* Essential pricing styles — legacy navbar CSS removed to avoid conflicts. */
.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem 0.75rem;
    line-height: 1.2;
}
.product-price .sale-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1f7a3f;
    letter-spacing: -0.02em;
}
.product-price .mrp-price {
    font-size: 0.92rem;
    font-weight: 500;
    color: #7a8a7e;
    text-decoration: line-through;
}
.product-price .discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: #e8f8ec;
    color: #1b6b38;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(31, 122, 63, 0.15);
}
.product-price--lg .sale-price { font-size: 2.2rem; }
.product-price--lg .mrp-price { font-size: 1.1rem; }
.product-price--sm .sale-price { font-size: 1.05rem; }
@media (max-width: 576px) {
    .product-price .sale-price { font-size: 1.2rem; }
    .product-price--lg .sale-price { font-size: 1.8rem; }
}
