/* ═══════════════════════════════════════════════════════════════
 *  MJ Currency — Dual price display
 * ═══════════════════════════════════════════════════════════════ */

.mj-dual-price {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.3;
}

.mj-dual-price__ars {
	font-size: 1em;
	font-weight: 700;
	color: var(--mj-primary, #1e3a5f);
}

.mj-dual-price__usd {
	font-size: 0.82em;
	font-weight: 600;
	color: #64748b;
}

.mj-dp-flag {
	font-size: 0.85em;
	margin-right: 2px;
}

.mj-dp-symbol {
	margin-right: 1px;
}

.mj-dual-price del {
	opacity: 0.5;
	font-weight: 400;
	text-decoration: line-through;
	margin-right: 4px;
}

.mj-dual-price ins {
	text-decoration: none;
	font-weight: 700;
}

/* ── Product card tweaks ─────────────────────────────────────── */

.mj-product-card__price .mj-dual-price {
	align-items: flex-start;
}

/* ── Single product ──────────────────────────────────────────── */

.product .summary .mj-dual-price {
	gap: 4px;
}

.product .summary .mj-dual-price__ars {
	font-size: 1.5em;
}

.product .summary .mj-dual-price__usd {
	font-size: 1.1em;
}

/* ═══════════════════════════════════════════════════════════════
 *  MJ Currency — Checkout currency selector
 * ═══════════════════════════════════════════════════════════════ */

.mj-checkout-currency {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 24px;
}

.mj-checkout-currency__label {
	font-size: 15px;
	font-weight: 600;
	color: var(--mj-primary, #1e3a5f);
	margin: 0 0 12px;
}

.mj-checkout-currency__options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.mj-cc-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: left;
	font-family: inherit;
}

.mj-cc-btn:hover {
	border-color: #94a3b8;
}

.mj-cc-btn.active {
	border-color: var(--mj-primary, #1e3a5f);
	background: rgba(30, 58, 95, 0.04);
	box-shadow: 0 0 0 1px var(--mj-primary, #1e3a5f);
}

.mj-cc-flag {
	font-size: 28px;
	line-height: 1;
	flex-shrink: 0;
}

.mj-cc-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mj-cc-info strong {
	font-size: 14px;
	color: #1e293b;
}

.mj-cc-info small {
	font-size: 12px;
	color: #64748b;
}

.mj-cc-btn:disabled {
	opacity: .6;
	cursor: wait;
}

@media (max-width: 600px) {
	.mj-checkout-currency__options {
		grid-template-columns: 1fr;
	}
}
