/* Touchtry FashionAR Admin UI - FINAL */

.ttfar-wrap{ max-width:1200px; }

.ttfar-card{
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:16px;
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.ttfar-card h2, .ttfar-card h3{ margin-top:0; }

.ttfar-muted{ color:#6b7280; }

.ttfar-video{
  width:100%;
  aspect-ratio: 16 / 9;
  border:1px solid #eee;
  border-radius:16px;
}

/* badges */
.ttfar-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 0;
}
.ttfar-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid #eee;
  background:#fafafa;
  font-weight:700;
  font-size:13px;
}

/* divider */
.ttfar-divider{
  height:1px;
  background:#efefef;
  margin:14px 0;
}

/* actions */
.ttfar-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* ✅ HOME: single card with left video + right text */
.ttfar-home-card{ padding:22px; }

.ttfar-home-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}

@media (max-width: 980px){
  .ttfar-home-grid{ grid-template-columns:1fr; }
}

.ttfar-home-title{ margin-top:0; }

.ttfar-home-steps{
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

/* ✅ Home button: black bg + white text, hover invert */
.ttfar-btn-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  background:#000;
  color:#fff !important;
  text-decoration:none !important;
  border:2px solid #000;
  font-weight:800;
  transition: all .18s ease-in-out;
}
.ttfar-btn-dark:hover{
  background:#fff;
  color:#000 !important;
}

/* ✅ PRICING: 4 cards in 1 row */
.ttfar-grid-4{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:16px;
  margin-top:14px;
}
@media (max-width: 1200px){
  .ttfar-grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .ttfar-grid-4{ grid-template-columns: 1fr; }
}

/* pricing card */
.ttfar-plan{
  position:relative;
  overflow:hidden;
  min-height: 520px;
  display:flex;
  flex-direction:column;
}

.ttfar-plan .ttfar-plan-head{
  text-align:center;
  padding-top:6px;
}
.ttfar-plan .ttfar-plan-name{
  font-weight:900;
  letter-spacing:.08em;
  font-size:13px;
  color:#111827;
}
.ttfar-plan .ttfar-plan-sub{
  font-size:12px;
  color:#6b7280;
  margin-top:6px;
}
.ttfar-plan .ttfar-price{
  text-align:center;
  font-size:28px;
  font-weight:900;
  margin:14px 0 6px;
  color:#1f2937;
}
.ttfar-plan .ttfar-price small{
  font-size:14px;
  font-weight:800;
  color:#6b7280;
}

.ttfar-plan ul{
  margin:0;
  padding-left:18px;
  margin-top:10px;
  color:#374151;
  font-size:13px;
  line-height:1.7;
  flex:1;
}

.ttfar-btn-row{
  margin-top:14px;
  display:flex;
  justify-content:center;
}

/* pill */
.ttfar-pill{
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid #e6e6e6;
  background:#fff;
}
.ttfar-pill--popular{
  border-color:#dbeafe;
  background:#eff6ff;
  color:#1d4ed8;
}

/* ✅ Pricing buttons: black bg + white text, hover invert (override WP button styles) */
.ttfar-plan .button,
.ttfar-btn-row .button{
  background:#000 !important;
  color:#fff !important;
  border:2px solid #000 !important;
  box-shadow:none !important;
  border-radius:10px !important;
  font-weight:800 !important;
  padding:10px 18px !important;
  min-width:160px;
  text-align:center;
  transition: all .18s ease-in-out;
}
.ttfar-plan .button:hover,
.ttfar-btn-row .button:hover{
  background:#fff !important;
  color:#000 !important;
  border:2px solid #000 !important;
}
.ttfar-plan .button.button-primary,
.ttfar-btn-row .button.button-primary{
  background:#000 !important;
  color:#fff !important;
  border:2px solid #000 !important;
}
.ttfar-plan .button.button-primary:hover,
.ttfar-btn-row .button.button-primary:hover{
  background:#fff !important;
  color:#000 !important;
  border:2px solid #000 !important;
}

/* contact layout */
.ttfar-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:12px;
}
.ttfar-row .ttfar-card{
  flex:1;
  min-width: 280px;
}

.ttfar-form input[type="text"],
.ttfar-form input[type="email"],
.ttfar-form textarea{
  width:100%;
  max-width: 680px;
}