/* Merchant Pricing Styles */

/* Merchant pricing table container */
.merchant-pricing {
    margin: 20px 0;
}

.merchant-pricing h4 {
    text-align: center;
    margin-bottom: 15px;
}

/* Price tier table styling */
.price-tier-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    direction: ltr; /* Force LTR for numbers in RTL context */
}

/* RTL support - adjust text direction for Arabic */
[dir="rtl"] .price-tier-table {
    direction: rtl;
}

.price-tier-table th,
.price-tier-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.price-tier-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Merchant price display in grid/filter views */
.merchant-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.merchant-price .min-qty {
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

.merchant-price .price-label {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 5px;
}

/* Ensure price displays consistently in both LTR and RTL */
.merchant-price .price,
.price-tier-table td {
    font-variant-numeric: tabular-nums;
}
