.ath-cart-selection-mode{
  margin:15px 0 0;
  padding:12px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  border:1px solid rgba(166,128,70,.2);
  border-radius:16px;
  background:rgba(255,255,255,.52);
}

.ath-cart-selection-mode legend{
  padding:0 7px;
  color:#7c5b2e;
  font-size:.78rem;
  font-weight:900;
}

.ath-cart-selection-mode label{
  position:relative;
  min-width:0;
  cursor:pointer;
}

.ath-cart-selection-mode input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.ath-cart-selection-mode span{
  min-height:72px;
  padding:10px;
  display:grid;
  align-content:center;
  gap:3px;
  border:1px solid rgba(128,101,65,.14);
  border-radius:12px;
  background:rgba(255,255,255,.72);
  transition:.14s ease;
}

.ath-cart-selection-mode input:checked + span{
  border-color:#ad8243;
  background:rgba(240,225,199,.76);
  box-shadow:0 6px 18px rgba(96,68,33,.08);
}

.ath-cart-selection-mode strong{
  color:#3d3024;
  font-size:.82rem;
}

.ath-cart-selection-mode small{
  color:#75695d;
  font-size:.7rem;
  line-height:1.45;
}

@media(max-width:540px){
  .ath-cart-selection-mode{
    grid-template-columns:1fr;
  }

  .ath-cart-selection-mode span{
    min-height:58px;
  }
}
