/* wholesale-site — front-end price display */

.ws-prices-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.5;
}

/* ── Рядок ціни ─────────────────────────────────────────── */
.ws-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

.ws-price-label {
    font-weight: 600;
    white-space: nowrap;
    font-size: .95em;
}

/* ── Роздрібна ціна ──────────────────────────────────────── */
.ws-retail .ws-price-label {
    color: #555;
}
.ws-retail .woocommerce-Price-amount {
    font-size: 1em;
    color: #333;
}

/* ── Ваша ціна (активна група) ───────────────────────────── */
.ws-wholesale.ws-active .ws-price-label {
    color: #1a6b3c;
}
.ws-wholesale.ws-active .woocommerce-Price-amount {
    font-size: 1.2em;
    font-weight: 700;
    color: #1a6b3c;
}

/* ── Гість / без групи — тізер ───────────────────────────── */
.ws-wholesale.ws-guest .ws-price-label,
.ws-wholesale.ws-no-group .ws-price-label {
    color: #777;
}

.ws-login-link {
    font-style: italic;
    font-size: .9em;
    color: #888;
    text-decoration: none;
}
.ws-login-link a {
    color: #0073aa;
    text-decoration: underline;
}
