/**
 * Custom Wholesale Prices - Frontend Styles
 * Version: 1.0.4 - Compact Design + Dark Gray Prices
 */

.cwp-wholesale-price-table {
    margin: 20px 0;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.cwp-table-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cwp-icon {
    color: #3498db;
    flex-shrink: 0;
}

/* Price List - Новий дизайн як на Prom */
.cwp-price-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cwp-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #e8ecef;
}

.cwp-price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Ціна зліва */
.cwp-price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.cwp-price-amount .woocommerce-Price-amount {
    color: #333;
    font-weight: 700;
}

.cwp-price-amount .woocommerce-Price-currencySymbol {
    font-weight: 600;
}

/* Умова справа */
.cwp-price-condition {
    font-size: 14px;
    color: #7f8c8d;
    text-align: right;
    line-height: 1.4;
}

.cwp-price-condition strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cwp-wholesale-price-table {
        padding: 15px;
    }

    .cwp-table-title {
        font-size: 15px;
    }

    .cwp-price-amount {
        font-size: 16px;
    }

    .cwp-price-condition {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cwp-wholesale-price-table {
        padding: 12px 15px;
    }

    .cwp-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 8px 0;
    }

    .cwp-price-amount {
        font-size: 18px;
    }

    .cwp-price-condition {
        font-size: 12px;
        text-align: left;
    }
}
