
.extratv-cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:20px;
}
.extratv-card{
  position:relative;
  border:1px solid color-mix(in srgb, var(--extratv-accent) 40%, #d9d9d9);
  border-radius:22px;
  padding:24px;
  background:#fff;
  box-shadow:0 8px 28px color-mix(in srgb, var(--extratv-accent) 18%, transparent);
  min-height: 520px;
  display:flex;
  flex-direction:column;
}
.extratv-badge{
  align-self:center;
  margin:-38px auto 16px;
  min-height:44px;
  padding:10px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--extratv-accent), color-mix(in srgb, var(--extratv-accent) 60%, #ffffff 40%));
  color:#fff;
  font-weight:800;
  text-align:center;
  box-shadow:0 10px 24px color-mix(in srgb, var(--extratv-accent) 28%, transparent);
}
.extratv-card h3{margin:0 0 14px}
.extratv-prices{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:14px 0;
}
.extratv-prices .price-box{
  border-radius:16px;
  padding:14px;
  background:#f5f5f5;
  border:1px solid #ececec;
}
.extratv-prices .price-box.active{
  background:color-mix(in srgb, var(--extratv-accent) 12%, #ffffff);
  border-color:color-mix(in srgb, var(--extratv-accent) 25%, #ececec);
}
.extratv-prices span{display:block;margin-bottom:8px}
.extratv-prices strong{font-size:26px}
.extratv-actions{
  display:grid;
  gap:12px;
  margin-top:auto;
}
.extratv-action-slot,
.extratv-note-slot{
  min-height:52px;
}
.extratv-action-slot.is-hidden,
.extratv-note-slot.is-hidden{
  visibility:hidden;
}
.extratv-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:52px;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  border:none;
  cursor:pointer;
  font-size:16px;
  font-weight:700;
}
.extratv-btn-primary{
  background:linear-gradient(135deg, var(--extratv-accent), color-mix(in srgb, var(--extratv-accent) 60%, #ffffff 40%));
  color:#fff;
}
.extratv-btn-secondary{
  background:#131313;
  color:#fff;
}
.extratv-btn-tertiary{
  background:#f7f7f7;
  color:#111;
  border:1px solid #ececec;
}
.extratv-note{
  min-height:52px;
  border-radius:14px;
  padding:12px 16px;
  background:#5e3b08;
  color:#ffd98a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.extratv-admin-wrap{
  display:grid;
  grid-template-columns:minmax(320px,1fr) minmax(320px,440px);
  gap:24px;
}
.extratv-admin-preview{
  position:sticky;
  top:20px;
}
@media (max-width: 1000px){
  .extratv-admin-wrap{grid-template-columns:1fr}
}
