/**
 * MSRP Styles - Above price
 */

.wc-msrp-wrapper {
    display: block;
}

.wc-msrp-price {
    display: block;
    font-size: 0.9em;
    color: #666;
}

.wc-msrp-price .msrp-label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.3px;
    color: #888;
}

.wc-msrp-price .msrp-amount {
    color: #999;
    text-decoration: line-through;
    font-weight: normal;
    margin-left: 2px;
}

/* Ensure proper alignment with Astra theme */
.price .wc-msrp-price {
    white-space: nowrap;
    display: block;
    margin-bottom: -8px;
}

/* Shop loop specific styles */
.woocommerce-loop-product__title + .price .wc-msrp-price {
    font-size: 0.85em;
    margin-bottom: 2px;
}

/* Single product page styles */
.single-product .price .wc-msrp-price {
    font-size: 0.9em;
    margin-bottom: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wc-msrp-price {
        font-size: 0.85em;
        margin-bottom: 3px;
    }
    
    .wc-msrp-price .msrp-label {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .wc-msrp-price {
        display: block;
        margin-bottom: 2px;
        font-size: 0.8em;
    }
}

/* Compatibility with WOOCS currency switcher */
.woocs_price_code + .wc-msrp-price,
.woocommerce-Price-amount + .wc-msrp-price {
    margin-bottom: 3px;
}

/* Ensure MSRP doesn't break layout */
.price {
    display: block;
}

.price .wc-msrp-price {
    display: block;
}