/**
 * Maguto Client Club — Front-end styles.
 *
 * @package Maguto\ClientClub
 * @since   1.0.0
 */

/* ── Dual price (guest view) ─────────────────────────────────────────────── */

.lcc-dual-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0;
}

.lcc-retail-price {
    font-size: 1em;
    color: #333;
}

.lcc-retail-price .lcc-price-label {
    font-weight: 400;
    font-size: 0.85em;
    color: #666;
    margin-right: 4px;
}

.lcc-club-price {
    font-size: 1.1em;
    color: #27ae60;
    font-weight: 600;
}

.lcc-club-price .lcc-price-label {
    font-weight: 400;
    font-size: 0.8em;
    color: #666;
    margin-right: 4px;
}

.lcc-price-amount.lcc-highlight {
    color: #27ae60;
}

/* ── Registration link ───────────────────────────────────────────────────── */

.lcc-registration-link {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.lcc-registration-link a {
    color: #e74c3c;
    text-decoration: underline;
    font-weight: 500;
}

.lcc-registration-link a:hover {
    color: #c0392b;
}

/* ── Member price ────────────────────────────────────────────────────────── */

.lcc-member-price {
    font-size: 1.2em;
    font-weight: 700;
    color: #27ae60;
}

/* ── Header icon ─────────────────────────────────────────────────────────── */

.lcc-header-icon {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.lcc-header-icon:hover {
    opacity: 0.7;
}

/* ── RTL support ─────────────────────────────────────────────────────────── */

[dir="rtl"] .lcc-dual-price,
.rtl .lcc-dual-price {
    text-align: right;
}

[dir="rtl"] .lcc-price-label,
.rtl .lcc-price-label {
    margin-right: 0;
    margin-left: 4px;
}
