/* ERP Pricing - PDP Price Display */
.erp-price-info {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: #f7fafa;
    border: 1px solid #e0e7e9;
    border-radius: 4px;
}

/* Loading skeleton */
.erp-price-info__loading {
    padding: 10px 0;
}

.erp-price-info__skeleton {
    height: 80px;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: erp-skeleton 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes erp-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* My Price section */
.erp-price-info__my-price {
    margin-bottom: 12px;
}

.erp-price-info__label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.erp-price-info__price-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.erp-price-info__amount {
    font-size: 28px;
    font-weight: 700;
    color: #0098a1;
    line-height: 1.2;
}

.erp-price-info__currency {
    font-size: 14px;
    font-weight: 600;
    color: #0098a1;
}

.erp-price-info__per-unit {
    font-size: 13px;
    color: #777;
}

.erp-price-info__tax-note {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* Details section (List price + Discount) */
.erp-price-info__details {
    padding-top: 10px;
    border-top: 1px solid #e0e7e9;
}

.erp-price-info__list-price,
.erp-price-info__discount {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.erp-price-info__detail-label {
    color: #888;
}

.erp-price-info__discount span[data-erp="discount-percent"] {
    font-weight: 600;
    color: #0098a1;
}

/* Responsive */
@media (max-width: 767px) {
    .erp-price-info {
        padding: 12px 15px;
    }

    .erp-price-info__amount {
        font-size: 24px;
    }
}
