/* TVUJORIGINAL CORE — VARIANT CARDS v1.5.0 */
.tvo-vc-root,.tvo-vc-root *{box-sizing:border-box}
.tvo-vc-root{
  --ink:#302a26;
  --muted:#746960;
  --line:#ddd3ca;
  --dark:#352e29;
  --green:#78951d;
  width:100%;
  margin:12px 0 16px;
  color:var(--ink);
  font-family:inherit
}
.tvo-vc-head{margin-bottom:10px}
.tvo-vc-head strong{display:block;font-size:15px}
.tvo-vc-head span{display:block;margin-top:3px;color:var(--muted);font-size:11px}
.tvo-vc-main{display:grid;gap:8px}
.tvo-vc-choice{
  display:grid;
  grid-template-columns:22px 42px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:94px;
  padding:13px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  text-align:left;
  cursor:pointer
}
.tvo-vc-choice--popular{background:#fbf8f5}
.tvo-vc-choice--premium{
  min-height:112px;
  background:linear-gradient(135deg,#eee4db,#fff)
}
.tvo-vc-choice.is-active{
  border-color:#6f5948;
  box-shadow:inset 0 0 0 1px #6f5948
}
.tvo-vc-radio{
  display:grid;
  width:22px;
  height:22px;
  place-items:center;
  border:2px solid #b8aaa0;
  border-radius:50%;
  background:#fff
}
.tvo-vc-choice.is-active .tvo-vc-radio{border-color:var(--dark)}
.tvo-vc-choice.is-active .tvo-vc-radio:after{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--dark)
}
.tvo-vc-icon{
  display:grid;
  width:42px;
  height:42px;
  place-items:center;
  border-radius:50%;
  background:#f0e9e3;
  color:#725c4b;
  font-size:14px;
  font-weight:800
}
.tvo-vc-copy{min-width:0}
.tvo-vc-title{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  align-items:center;
  margin-bottom:4px
}
.tvo-vc-title strong{font-size:16px}
.tvo-vc-choice--premium .tvo-vc-title strong{font-size:18px}
.tvo-vc-badge{
  display:inline-flex;
  padding:3px 7px;
  background:#352e29;
  color:#fff;
  font-size:9px;
  font-weight:800;
  text-transform:uppercase
}
.tvo-vc-badge--free{background:#edf3df;color:#5d7418}
.tvo-vc-badge--popular{background:#efe7dd;color:#6c5545}
.tvo-vc-desc{
  display:block;
  color:var(--muted);
  font-size:11px;
  line-height:1.45
}
.tvo-vc-includes{
  display:flex;
  flex-wrap:wrap;
  gap:5px 10px;
  margin-top:7px
}
.tvo-vc-includes span{font-size:10px;color:#62564d}
.tvo-vc-includes span:before{
  content:"✓ ";
  color:var(--green);
  font-weight:900
}
.tvo-vc-value{
  min-width:128px;
  padding-left:8px;
  text-align:right
}
.tvo-vc-value small{
  display:block;
  color:#8a7b70;
  font-size:8px;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase
}
.tvo-vc-old{
  display:block;
  margin-top:2px;
  color:#9b8f87;
  font-size:11px;
  text-decoration:line-through
}
.tvo-vc-advantage{
  display:inline-flex;
  margin-top:5px;
  padding:4px 7px;
  background:#edf3df;
  color:#5d7418;
  font-size:10px;
  font-weight:900
}
.tvo-vc-more{margin-top:8px}
.tvo-vc-more-toggle{
  border:0;
  padding:0;
  background:none;
  color:#6f5a49;
  font:inherit;
  font-size:12px;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:2px;
  cursor:pointer
}
.tvo-vc-more-list{
  display:none;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:9px
}
.tvo-vc-more.is-open .tvo-vc-more-list{display:grid}
.tvo-vc-more-card{
  display:grid;
  grid-template-columns:22px minmax(0,1fr) auto;
  align-items:center;
  gap:9px;
  min-height:78px;
  padding:11px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  text-align:left;
  cursor:pointer
}
.tvo-vc-more-card.is-active{
  border-color:#6f5948;
  box-shadow:inset 0 0 0 1px #6f5948
}
.tvo-vc-more-card strong{display:block;font-size:13px}
.tvo-vc-more-card span{display:block;color:var(--muted);font-size:10px}
.tvo-vc-original-hidden{display:none!important}
.tvo-vc-note{margin-top:8px;color:#85786f;font-size:10px}
@media(max-width:650px){
  .tvo-vc-choice{
    grid-template-columns:22px 38px minmax(0,1fr)
  }
  .tvo-vc-value{
    grid-column:3;
    padding-left:0;
    text-align:left
  }
  .tvo-vc-more-list{grid-template-columns:1fr}
}
