
:root{
  --bg:#0f1020;
  --panel:#202136;
  --panel2:#282a42;
  --cell:#332516;
  --soil:#5a351d;
  --border:rgba(255,255,255,.14);
  --text:#fff;
  --muted:#c7c8df;
  --accent:#7c3aed;
  --accent2:#f59e0b;
  --good:#22c55e;
  --bad:#f43f5e;
  --shadow:0 20px 50px rgba(0,0,0,.28);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left,rgba(124,58,237,.25),transparent 32%),
    radial-gradient(circle at top right,rgba(245,158,11,.16),transparent 28%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
button,select,input,textarea{font-family:inherit}
.wrap{width:min(1380px,calc(100% - 28px));margin:0 auto;padding:22px 0 46px}
.top{display:flex;justify-content:space-between;align-items:flex-start;gap:18px;margin-bottom:18px}
.brand{display:flex;gap:14px;align-items:center}
.logo{width:76px;height:76px;object-fit:contain;flex:0 0 76px}
h1{font-size:clamp(30px,5vw,48px);line-height:1;margin:0 0 7px}
.subtitle{margin:0;color:var(--muted);line-height:1.55}
.actions-top{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.lang-btn,.back-btn{
  border:1px solid var(--border);
  background:rgba(255,255,255,.08);
  color:var(--text);
  border-radius:999px;
  padding:9px 12px;
  font-weight:900;
  cursor:pointer;
}
.lang-btn.active{background:linear-gradient(135deg,var(--accent),#5b21b6)}
.back-btn{color:#ffd36d}
.layout{display:grid;grid-template-columns:300px minmax(450px,1fr) 360px;gap:16px;align-items:start}
.panel{
  background:rgba(255,255,255,.07);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:18px;
}
.panel h2{margin:0 0 14px;font-size:22px}
.control-group{display:grid;gap:8px;margin-bottom:14px}
label{font-weight:800;font-size:14px}
select,input,textarea{
  width:100%;
  border:1px solid var(--border);
  background:rgba(255,255,255,.09);
  color:#fff;
  border-radius:14px;
  min-height:44px;
  padding:0 12px;
}
select option{background:#202136;color:#fff}
textarea{padding:12px;min-height:86px;resize:vertical}
.btn-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:10px}
.btn{
  border:1px solid var(--border);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:14px;
  min-height:44px;
  padding:0 12px;
  font-weight:900;
  cursor:pointer;
}
.btn.primary{background:linear-gradient(135deg,var(--accent),#5b21b6);border-color:transparent}
.btn.warning{background:rgba(244,63,94,.16);border-color:rgba(244,63,94,.3)}
.btn.active{outline:2px solid #facc15}
.help{color:var(--muted);font-size:13px;line-height:1.5;margin:8px 0 0}
.grid-wrap{overflow:auto;padding-bottom:8px}
.grid{
  display:grid;
  grid-template-columns:repeat(9,54px);
  grid-template-rows:repeat(9,54px);
  gap:4px;
  width:max-content;
  margin:0 auto;
  padding:10px;
  border-radius:18px;
  background:rgba(0,0,0,.18);
}
.cell{
  width:54px;height:54px;
  background:linear-gradient(145deg,#69401f,#462713);
  border:1px solid rgba(255,255,255,.12);
  border-radius:11px;
  position:relative;
  display:grid;
  place-items:center;
  cursor:pointer;
  overflow:hidden;
}
.cell.anchor{box-shadow:inset 0 0 0 3px rgba(255,255,255,.22)}
.cell:nth-child(3n){border-right-color:rgba(255,255,255,.28)}
.cell.crop{font-weight:900;color:#10131f;text-shadow:0 1px 0 rgba(255,255,255,.25)}
.cell .mini{font-size:21px;z-index:2}
.cell .fert{position:absolute;right:3px;bottom:2px;font-size:13px;background:rgba(0,0,0,.35);border-radius:99px;padding:1px 3px;color:#fff}
.cell .buffs{position:absolute;left:3px;top:2px;font-size:10px;color:#fff;background:rgba(0,0,0,.3);border-radius:99px;padding:1px 4px}
.summary-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:12px}
.stat{padding:12px;border-radius:14px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10)}
.stat strong{display:block;font-size:22px}
.stat span{display:block;color:var(--muted);font-size:13px;margin-top:2px}
.list{display:grid;gap:10px}
.item{
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
}
.item-head{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.item strong{display:block}
.small{color:var(--muted);font-size:13px;line-height:1.45}
.source-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}
.source-tag{font-size:12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.10);border-radius:999px;padding:4px 7px;color:#e8e8f5}
.checkline{display:flex;gap:8px;align-items:center;margin-top:8px}
.checkline input{width:auto;min-height:unset}
.bonus-list{display:grid;gap:8px}
.bonus-row{display:flex;justify-content:space-between;gap:10px;padding:9px 10px;border-radius:12px;background:rgba(255,255,255,.055)}
.footer{color:var(--muted);font-size:13px;margin-top:16px;border-top:1px solid rgba(255,255,255,.12);padding-top:16px}
.toast{position:fixed;left:50%;bottom:18px;transform:translateX(-50%);background:#202136;border:1px solid var(--border);box-shadow:var(--shadow);padding:12px 16px;border-radius:14px;font-weight:900;display:none;z-index:99}
.toast.show{display:block}
@media(max-width:1160px){
  .layout{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(9,48px);grid-template-rows:repeat(9,48px)}
  .cell{width:48px;height:48px}
}
@media(max-width:640px){
  .top{flex-direction:column}
  .actions-top{justify-content:flex-start}
  .logo{width:64px;height:64px;flex-basis:64px}
  .grid{grid-template-columns:repeat(9,38px);grid-template-rows:repeat(9,38px);gap:3px;padding:7px}
  .cell{width:38px;height:38px;border-radius:8px}
  .cell .mini{font-size:16px}
  .btn-row{grid-template-columns:1fr}
}


.btn-row.three{grid-template-columns:1fr 1fr 1fr}
.mini-title{font-size:18px!important;margin:18px 0 10px!important}
.template-btn{width:100%;margin-bottom:8px;text-align:left;justify-content:flex-start}.template-btn.apple{background:rgba(245,158,11,.18);border-color:rgba(245,158,11,.35)}
.cell.preview-ok{outline:3px solid rgba(34,197,94,.95);box-shadow:0 0 0 4px rgba(34,197,94,.18), inset 0 0 18px rgba(34,197,94,.26)}
.cell.preview-bad{outline:3px solid rgba(244,63,94,.95);box-shadow:0 0 0 4px rgba(244,63,94,.18), inset 0 0 18px rgba(244,63,94,.26)}
.cell.preview-origin::after{content:'+';position:absolute;inset:auto 4px 4px auto;background:rgba(0,0,0,.45);color:#fff;border-radius:999px;min-width:18px;height:18px;display:grid;place-items:center;font-size:13px;font-weight:900;z-index:5}
.cell.moving-source{outline:3px dashed #facc15;box-shadow:0 0 0 5px rgba(250,204,21,.16)}
.recommendations{display:grid;gap:10px;margin-bottom:16px}.rec-card{padding:12px;border-radius:16px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.10)}.rec-card h3{margin:0 0 6px;font-size:16px}.rec-card p{margin:0 0 8px}.rec-score{display:flex;gap:8px;flex-wrap:wrap;margin-top:8px}.score-pill{font-size:12px;background:rgba(124,58,237,.18);border:1px solid rgba(124,58,237,.28);border-radius:999px;padding:5px 8px;color:#e7dcff}.rec-action{margin-top:8px}.btn.small-btn{min-height:34px;border-radius:11px;font-size:13px}.status-line{padding:8px 10px;border-radius:12px;background:rgba(255,255,255,.055);color:var(--muted);font-size:13px;margin-bottom:10px}.status-line strong{color:#fff}
@media(max-width:640px){.btn-row.three{grid-template-columns:1fr}}

.picker-card{display:flex;gap:12px;align-items:center;min-height:74px;padding:10px 12px;border-radius:16px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10)}
.picker-thumb,.item-thumb,.rec-thumb,.bonus-icon,.cell-crop-img,.cell-fert-img,.ghost-img{display:block;object-fit:contain}
.picker-thumb{width:54px;height:54px;flex:0 0 54px;border-radius:12px;background:rgba(0,0,0,.12);padding:5px}
.picker-meta strong{display:block;font-size:14px;line-height:1.25}
.picker-meta span{display:block;color:var(--muted);font-size:12px;line-height:1.35;margin-top:2px}.picker-meta span:last-child{color:#ffd36d;font-weight:800}
.cell{background:linear-gradient(145deg,#6d4321,#4d2e18)}
.cell-crop-img{width:30px;height:30px;position:relative;z-index:2;filter:drop-shadow(0 2px 2px rgba(0,0,0,.35))}
.cell.anchor .cell-crop-img{width:32px;height:32px}
.cell-fert-img{position:absolute;right:2px;bottom:2px;width:14px;height:14px;border-radius:999px;background:rgba(0,0,0,.4);padding:1px}
.ghost-img{width:26px;height:26px;opacity:.38;filter:grayscale(.12) saturate(.85)}
.cell.preview-ok{box-shadow:inset 0 0 0 3px rgba(34,197,94,.65)}
.cell.preview-bad{box-shadow:inset 0 0 0 3px rgba(244,63,94,.65)}
.cell.preview-origin{outline:2px dashed rgba(255,255,255,.55);outline-offset:-6px}
.cell.moving-source{box-shadow:inset 0 0 0 3px rgba(250,204,21,.95);opacity:.68}
.item-head.main{align-items:center}
.item-thumb{width:40px;height:40px;flex:0 0 40px;border-radius:10px;background:rgba(0,0,0,.14);padding:4px;margin-right:10px}
.item-main{display:flex;align-items:center;min-width:0}
.bonus-row{align-items:center}
.bonus-label{display:flex;align-items:center;gap:10px}
.bonus-icon{width:22px;height:22px;flex:0 0 22px;border-radius:999px;background:rgba(0,0,0,.18);padding:2px}
.rec-card h3{display:flex;align-items:center;gap:10px}
.rec-thumb{width:26px;height:26px;flex:0 0 26px;border-radius:999px;background:rgba(0,0,0,.18);padding:2px}
.source-tag{display:inline-flex;align-items:center;gap:6px}
.source-tag::before{content:"";width:6px;height:6px;border-radius:999px;background:rgba(255,255,255,.45)}

.item-main .small:last-child{color:#ffd36d;font-weight:800;margin-top:2px}

.buff-pips{position:absolute;left:3px;top:3px;display:flex;gap:2px;max-width:calc(100% - 8px);flex-wrap:wrap;z-index:3}
.buff-pip{width:12px;height:12px;border-radius:999px;background:rgba(0,0,0,.45);padding:1px;box-shadow:0 1px 2px rgba(0,0,0,.25)}
.cell{touch-action:none}

/* v1.5: make received boost icons clearly visible */
.buff-pips{
  position:absolute;
  left:4px;
  top:4px;
  display:flex;
  gap:3px;
  max-width:calc(100% - 8px);
  flex-wrap:wrap;
  z-index:6;
  pointer-events:none;
}
.buff-pip{
  width:20px;
  height:20px;
  border-radius:999px;
  background:rgba(12,14,28,.88);
  border:1.5px solid rgba(255,255,255,.88);
  padding:2px;
  box-shadow:0 2px 5px rgba(0,0,0,.55), 0 0 0 2px rgba(0,0,0,.18);
}
.bonus-legend{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
}
.legend-title{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  margin-bottom:10px;
}
.legend-items{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.legend-item{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 9px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.legend-icon{
  width:22px;
  height:22px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  padding:2px;
}
@media(max-width:640px){
  .buff-pip{width:16px;height:16px;padding:1px}
  .legend-item{font-size:11px;padding:6px 8px}
  .legend-icon{width:18px;height:18px}
}

/* v1.6: dedicated bonus map view */
.view-toggle-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 14px;
}
.view-toggle-row .btn{
  min-width:140px;
}
.cell.bonus-cell{
  background:rgba(32,33,54,.92)!important;
}
.bonus-grid{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  grid-template-columns:1fr;
  gap:2px;
  padding:6px;
}
.bonus-grid.many{
  grid-template-columns:1fr 1fr;
}
.bonus-grid-icon{
  width:27px;
  height:27px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(0,0,0,.42);
  border:2px solid rgba(255,255,255,.9);
  padding:3px;
  box-shadow:0 2px 5px rgba(0,0,0,.55);
}
.no-bonus-mark{
  color:rgba(255,255,255,.42);
  font-size:24px;
  font-weight:900;
}
.cell.selected-crop{
  outline:3px solid #facc15;
  outline-offset:-3px;
  box-shadow:0 0 0 4px rgba(250,204,21,.18), inset 0 0 12px rgba(250,204,21,.26);
}
.selected-crop-info{
  margin-top:14px;
}
.selected-empty{
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px dashed rgba(255,255,255,.16);
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.selected-card{
  display:grid;
  gap:12px;
  padding:12px;
  border-radius:18px;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.12);
}
.selected-main{
  display:flex;
  align-items:center;
  gap:12px;
}
.selected-crop-img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:14px;
  background:rgba(0,0,0,.18);
  padding:5px;
}
.selected-main strong,
.selected-bonuses strong{
  display:block;
  color:#fff;
}
.selected-main span{
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}
.selected-main span:last-child{
  color:#ffd36d;
  font-weight:900;
}
.selected-bonus-list{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:8px;
}
.selected-bonus-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.2);
  border:1px solid rgba(255,255,255,.14);
  font-size:13px;
  font-weight:900;
}
.selected-bonus-item.empty{
  color:var(--muted);
  border-radius:14px;
}
.selected-bonus-icon{
  width:30px;
  height:30px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  padding:3px;
}
.selected-fert{
  display:flex;
  gap:8px;
  align-items:center;
  color:#ffd36d;
  font-size:13px;
  font-weight:900;
}
.selected-fert-icon{
  width:24px;
  height:24px;
  object-fit:contain;
}
@media(max-width:640px){
  .bonus-grid-icon{width:21px;height:21px;padding:2px}
  .view-toggle-row .btn{min-width:120px}
}

/* v1.7: readable bonus heatmap and one-boost filter, not stacked icons */
.hidden-filter{display:none!important}
.bonus-filter-bar{
  margin:0 0 14px;
  padding:12px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
}
.filter-help{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  margin-bottom:10px;
}
.filter-buttons{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.filter-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.16);
  color:#fff;
  border-radius:999px;
  min-height:38px;
  padding:0 12px;
  font-weight:900;
  font-size:13px;
  cursor:pointer;
}
.filter-chip.active{
  background:linear-gradient(135deg,var(--accent),#5b21b6);
  border-color:#facc15;
  box-shadow:0 0 0 2px rgba(250,204,21,.2);
}
.filter-icon{
  width:24px;
  height:24px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  padding:2px;
}
.cell.bonus-cell{
  background:rgba(32,33,54,.92)!important;
}
.bonus-score{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  align-content:center;
  gap:0;
  padding:4px;
}
.bonus-score strong{
  font-size:26px;
  line-height:.9;
  color:#fff;
  text-shadow:0 2px 4px rgba(0,0,0,.55);
}
.bonus-score span{
  font-size:9px;
  color:rgba(255,255,255,.78);
  font-weight:900;
  line-height:1;
  text-align:center;
}
.cell.score-0{background:rgba(59,59,74,.95)!important;opacity:.76}
.cell.score-1{background:linear-gradient(145deg,#36513c,#223829)!important}
.cell.score-2{background:linear-gradient(145deg,#5a662a,#374414)!important}
.cell.score-3{background:linear-gradient(145deg,#807226,#5b4d13)!important}
.cell.score-4,.cell.score-5{background:linear-gradient(145deg,#a46b1d,#7c4611)!important}
.filter-result{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  align-content:center;
  gap:2px;
  padding:4px;
}
.bonus-single-icon{
  width:34px;
  height:34px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(0,0,0,.36);
  border:2px solid rgba(255,255,255,.9);
  padding:4px;
}
.filter-result span{
  display:none;
}
.cell.has-filter-boost{
  background:linear-gradient(145deg,#166534,#15803d)!important;
  box-shadow:inset 0 0 0 3px rgba(34,197,94,.85);
}
.cell.no-filter-boost{
  background:rgba(55,47,49,.82)!important;
  opacity:.42;
}
.cell.no-filter-boost .bonus-single-icon{
  filter:grayscale(1);
  opacity:.45;
}
@media(max-width:640px){
  .filter-chip{font-size:12px;min-height:34px;padding:0 10px}
  .filter-icon{width:20px;height:20px}
  .bonus-score strong{font-size:21px}
  .bonus-single-icon{width:26px;height:26px;padding:3px}
}

/* v1.8: side bonus inspector, clean grid, optional background highlight */
.view-toggle-row{display:none!important}
.bonus-filter-bar{
  margin:10px 0 16px;
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
}
.filter-help{
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  margin-bottom:10px;
}
.filter-buttons{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.filter-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.16);
  color:#fff;
  border-radius:999px;
  min-height:36px;
  padding:0 11px;
  font-weight:900;
  font-size:12px;
  cursor:pointer;
}
.filter-chip.active{
  background:linear-gradient(135deg,var(--accent),#5b21b6);
  border-color:#facc15;
  box-shadow:0 0 0 2px rgba(250,204,21,.18);
}
.filter-icon{
  width:22px;
  height:22px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  padding:2px;
}
.cell.highlight-boost-cell{
  box-shadow:inset 0 0 0 4px rgba(34,197,94,.92), 0 0 0 3px rgba(34,197,94,.20);
  filter:saturate(1.25) brightness(1.08);
}
.cell.dim-boost-cell{
  opacity:.38;
  filter:grayscale(.45) brightness(.75);
}
.selected-crop-info{margin:0 0 10px}
.selected-empty{
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.055);
  border:1px dashed rgba(255,255,255,.16);
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.selected-card{
  display:grid;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 25px rgba(0,0,0,.14);
}
.selected-main{display:flex;align-items:center;gap:12px}
.selected-crop-img{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:15px;
  background:rgba(0,0,0,.18);
  padding:6px;
}
.selected-main strong,.selected-bonuses strong{display:block;color:#fff}
.selected-main span{display:block;color:var(--muted);font-size:13px;line-height:1.35}
.selected-main span:last-child{color:#ffd36d;font-weight:900}
.selected-bonus-list{display:flex;gap:8px;flex-wrap:wrap;margin-top:8px}
.selected-bonus-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.2);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
}
.selected-bonus-item:hover{border-color:#facc15}
.selected-bonus-item.empty{color:var(--muted);cursor:default;border-radius:14px}
.selected-bonus-item.gives{background:rgba(124,58,237,.18);border-color:rgba(124,58,237,.32)}
.selected-bonus-icon{
  width:32px;
  height:32px;
  object-fit:contain;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  padding:3px;
}
.selected-fert{display:flex;gap:8px;align-items:center;color:#ffd36d;font-size:13px;font-weight:900}
.selected-fert-icon{width:24px;height:24px;object-fit:contain}
.bonus-legend{margin:0 0 14px;padding:0;border:none;background:transparent}
.legend-title{color:var(--muted);font-size:13px;line-height:1.45;margin:0}
@media(max-width:640px){
  .filter-chip{font-size:11px;min-height:32px;padding:0 9px}
  .filter-icon{width:18px;height:18px}
  .selected-crop-img{width:54px;height:54px}
  .selected-bonus-icon{width:26px;height:26px}
}

/* v1.9: seed guide before choosing */
.crop-guide{
  margin-top:10px;
  display:grid;
  gap:7px;
  max-height:260px;
  overflow:auto;
  padding-right:4px;
}
.crop-guide-title{
  color:#ffd36d;
  font-size:13px;
  font-weight:900;
  margin:2px 0 4px;
}
.crop-guide-item{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.055);
  color:#fff;
  border-radius:14px;
  padding:8px;
  cursor:pointer;
  text-align:left;
}
.crop-guide-item:hover{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.20);
}
.crop-guide-item.active{
  background:rgba(124,58,237,.25);
  border-color:#facc15;
  box-shadow:0 0 0 2px rgba(250,204,21,.16);
}
.crop-guide-thumb{
  width:38px;
  height:38px;
  flex:0 0 38px;
  object-fit:contain;
  border-radius:10px;
  background:rgba(0,0,0,.16);
  padding:4px;
}
.crop-guide-meta{
  display:block;
  min-width:0;
}
.crop-guide-meta strong{
  display:block;
  font-size:13px;
  line-height:1.18;
}
.crop-guide-meta em{
  font-style:normal;
  color:var(--muted);
  font-size:11px;
  font-weight:800;
}
.crop-guide-meta small{
  display:block;
  margin-top:2px;
  color:#ffd36d;
  font-size:11px;
  line-height:1.25;
  font-weight:900;
}
