/* base from v1 with combos layout */
.lt-tarot-picker { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; background: #ffffff; }
.lt-tarot-picker .lt-header { display:flex; justify-content:space-between; align-items:center; margin-bottom: 8px; }
.lt-tarot-picker .lt-btn { border: 1px solid #e5e7eb; background:#f9fafb; padding:8px 12px; border-radius:8px; cursor:pointer; }
.lt-tarot-picker .lt-btn:hover { background:#f3f4f6; }
.lt-tarot-picker .lt-instructions { margin: 8px 0 12px; color:#374151; }
.lt-tarot-picker .lt-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(80px,1fr)); gap:10px; }
.lt-card { position: relative; aspect-ratio: 2 / 3; border-radius:10px; overflow:hidden; background: linear-gradient(180deg, #0ea5e9, #7c3aed); border: 2px solid #111827; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.lt-card .lt-back { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:22px; color:#fff; }
.lt-card .lt-front { position:absolute; inset:0; background:#fff; padding:6px; display:flex; flex-direction:column; }
.lt-card .lt-front .lt-name { font-weight:600; font-size:12px; margin-bottom:6px; }
.lt-card .lt-front .lt-keywords { font-size:11px; color:#4b5563; }
.lt-card.revealed { border-color:#10b981; }
.lt-result { margin-top:14px; }
.lt-card-meaning { background:#f9fafb; border:1px solid #e5e7eb; border-radius:10px; padding:12px; margin-bottom:10px; }
.lt-card-meaning h4 { margin:0 0 6px; }

/* combos page */
.lt-combos { border:1px solid #e5e7eb; background:#fff; border-radius:12px; padding:16px; }
.lt-combos-header h1 { margin:0 0 6px; }
.lt-combos-layout { display:grid; grid-template-columns: 280px 1fr; gap:16px; }
.lt-combos-left { border-right:1px solid #f3f4f6; padding-right:12px; }
.lt-search { width:100%; padding:8px 10px; border:1px solid #e5e7eb; border-radius:8px; margin-bottom:10px; }
.lt-card-list { list-style:none; margin:0; padding:0; max-height:70vh; overflow:auto; }
.lt-card-list li { padding:8px 10px; border-radius:8px; cursor:pointer; }
.lt-card-list li:hover, .lt-card-list li.active { background:#f9fafb; }
.lt-selected-info { margin-bottom:10px; }
.lt-pairs-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap:10px; }
.lt-pair { border:1px solid #e5e7eb; border-radius:10px; padding:10px; cursor:pointer; }
.lt-pair:hover, .lt-pair.active { background:#f9fafb; }
.lt-combo-explainer { margin-top:12px; background:#f9fafb; border:1px solid #e5e7eb; border-radius:10px; padding:12px; }
