/* Storefront dual pricing — product cards & grids */

.wc-price {
    margin-bottom: 14px;
}

.wc-price:not(.wc-price-dual) {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f1b16;
}

.wc-price-dual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.wc-price-was {
    display: block;
    width: 100%;
    font-size: 0.82rem;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
    line-height: 1.2;
    white-space: nowrap;
}

.wc-price-now {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    min-width: 0;
}

.wc-price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f1b16;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
}

.wc-price-badge {
    display: inline-block;
    flex-shrink: 0;
    padding: 2px 6px;
    border-radius: 4px;
    background: #b8962e;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
}

.wc-price-badge--member {
    background: #2563eb;
}

/* Product detail page variant */
.product-price-dual .wc-price-amount {
    font-size: 1.65rem;
}

.product-price-dual .wc-price-was {
    font-size: 0.95rem;
}

/* Related products compact variant */
.related-price-wrapper .wc-price-amount {
    font-size: 1.05rem;
}

.related-price-wrapper .wc-price-was {
    font-size: 0.75rem;
}

@media (max-width: 576px) {
    .wc-price-amount {
        font-size: 1.12rem;
    }
}
