/* ── Marketplaces modal ─────────────────────────────────────────
   Base neutral theme; products override accent colors via their
   own stylesheet (scoped to #{id}-modal). */

.mkt-modal-desc {
    font-size: 0.92rem;
    opacity: 0.7;
    margin-bottom: 1.25rem;
}

.mkt-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mkt-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.mkt-option:hover,
.mkt-option:focus-visible {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(2px);
}

.mkt-option-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    padding: 2px;
}

.mkt-option-text {
    flex: 1;
    min-width: 0;
}

.mkt-option-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.mkt-option-hint {
    display: block;
    font-size: 0.78rem;
    opacity: 0.55;
}

.mkt-option-arrow {
    width: 18px;
    height: 18px;
    opacity: 0.45;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mkt-option:hover .mkt-option-arrow {
    opacity: 0.9;
    transform: translateX(3px);
}
