/* PT FBT – NEW PREMIUM LIGHT UI (Brand: #b43a77) */
.ptfbt{
  --pt-accent:#b43a77;
  --pt-ink:#0b1220;
  --pt-sub: rgba(2,6,23,.62);
  --pt-border: rgba(15,23,42,.10);

  border:1px solid var(--pt-border);
  border-radius:20px;
  background:
    radial-gradient(1200px 420px at 10% 0%, color-mix(in srgb, var(--pt-accent) 10%, transparent), transparent 55%),
    radial-gradient(900px 500px at 95% 10%, rgba(2,6,23,.04), transparent 60%),
    #fff;
  box-shadow: 0 22px 70px rgba(2,6,23,.10);
  overflow:hidden;
}

/* Header */
.ptfbt__header{
  padding:20px 22px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.ptfbt__kicker{
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: color-mix(in srgb, var(--pt-accent) 90%, #111827);
}

.ptfbt__title{
  margin:6px 0 0;
  font-size:22px;
  font-weight:950;
  letter-spacing:-.02em;
  color:var(--pt-ink);
}
.ptfbt__subtitle{
  margin-top:6px;
  color:var(--pt-sub);
  font-size:13px;
}

.ptfbt__badges{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.ptfbt__badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  background: linear-gradient(135deg, var(--pt-accent), color-mix(in srgb, var(--pt-accent) 55%, #111827));
  box-shadow: 0 14px 34px color-mix(in srgb, var(--pt-accent) 25%, transparent);
}
.ptfbt__badge--soft{
  color: color-mix(in srgb, var(--pt-accent) 95%, #111827);
  background: color-mix(in srgb, var(--pt-accent) 10%, #fff);
  border:1px solid color-mix(in srgb, var(--pt-accent) 22%, rgba(15,23,42,.10));
  box-shadow:none;
}

/* Countdown */
.ptfbt__countdown{
  min-width: 220px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(2,6,23,.03);
  border:1px solid rgba(15,23,42,.08);
  text-align:right;
}
.ptfbt__cdLabel{
  font-size:12px;
  color: rgba(2,6,23,.62);
  font-weight:800;
}
.ptfbt__cdTime{
  margin-top:6px;
  display:inline-block;
  font-size:16px;
  font-weight:950;
  letter-spacing:.10em;
  color: var(--pt-ink);
}
.ptfbt.is-urgent .ptfbt__countdown{
  border-color: color-mix(in srgb, var(--pt-accent) 35%, rgba(15,23,42,.08));
  box-shadow: 0 14px 40px color-mix(in srgb, var(--pt-accent) 18%, transparent);
}

/* Grid */
.ptfbt__grid{
  display:grid;
  grid-template-columns: 1fr;
}
@media(min-width: 980px){
  .ptfbt__grid{ grid-template-columns: 1.35fr .65fr; }
}

.ptfbt__list{
  padding:18px 22px 22px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.ptfbt__row{
  display:grid;
  grid-template-columns: 34px 72px 1fr 48px;
  gap:12px;
  align-items:center;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ptfbt__row:hover{
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--pt-accent) 18%, rgba(15,23,42,.10));
  box-shadow: 0 16px 46px rgba(2,6,23,.09);
}
.ptfbt__row.is-off{
  opacity:.55;
}

/* Checkbox */
.ptfbt__check input{ display:none; }
.ptfbt__check span{
  width:22px;height:22px;
  border-radius:8px;
  border:1.5px solid rgba(15,23,42,.25);
  background:#fff;
  position:relative;
}
.ptfbt__check input:checked + span{
  border-color: transparent;
  background: linear-gradient(135deg, var(--pt-accent), color-mix(in srgb, var(--pt-accent) 55%, #111827));
}
.ptfbt__check input:checked + span:after{
  content:"";
  position:absolute;
  left:7px; top:4px;
  width:5px; height:10px;
  border:2px solid #fff;
  border-top:none;border-left:none;
  transform: rotate(45deg);
}

/* Thumb */
.ptfbt__thumb{
  width:72px;height:72px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  background:#f8fafc center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}

/* Info */
.ptfbt__name{
  display:block;
  font-weight:950;
  color:var(--pt-ink);
  text-decoration:none;
  line-height:1.2;
  font-size:14px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.ptfbt__mini{ margin-top:8px; display:flex; gap:10px; align-items:center; flex-wrap:wrap;}
.ptfbt__pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(2,6,23,.05);
  border:1px solid rgba(15,23,42,.08);
  font-size:12px;
  font-weight:800;
  color: rgba(2,6,23,.68);
}
.ptfbt__price{
  font-size:13px;
  font-weight:900;
  color: color-mix(in srgb, var(--pt-accent) 55%, #111827);
}

/* Join column */
.ptfbt__join{ display:flex; justify-content:center; }
.ptfbt__plus{
  width:40px;height:40px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  background: color-mix(in srgb, var(--pt-accent) 10%, #fff);
  border:1px solid color-mix(in srgb, var(--pt-accent) 22%, rgba(15,23,42,.10));
  color: color-mix(in srgb, var(--pt-accent) 75%, #111827);
  font-weight:950;
}
.ptfbt__dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(15,23,42,.18);
}

/* Summary */
.ptfbt__summary{
  padding:18px 22px 22px;
  border-top:1px solid rgba(15,23,42,.08);
}
@media(min-width: 980px){
  .ptfbt__summary{
    border-top:none;
    border-left:1px solid rgba(15,23,42,.08);
    position: sticky;
    top: 14px;
    align-self:start;
  }
}

.ptfbt__sumCard{
  border-radius:18px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 50px rgba(2,6,23,.08);
  padding:18px;
}

.ptfbt__sumTop{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.ptfbt__sumTitle{
  font-weight:950;
  color:var(--pt-ink);
  font-size:14px;
}
.ptfbt__sumNumbers{ text-align:right; }
.ptfbt__old{
  font-size:13px;
  font-weight:800;
  color: rgba(2,6,23,.45);
  text-decoration: line-through;
  white-space: nowrap;
}
.ptfbt__new{
  margin-top:6px;
  font-size:28px;
  font-weight:1000;
  color:var(--pt-ink);
  white-space: nowrap;
}

.ptfbt__save{
  margin-top:10px;
  font-size:13px;
  color: rgba(2,6,23,.68);
}
.ptfbt__save strong{
  color: color-mix(in srgb, var(--pt-accent) 70%, #111827);
}

/* Button */
.ptfbt__btn{
  margin-top:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:14px 14px;
  border-radius:16px;
  text-decoration:none !important;
  font-weight:1000;
  color:#fff !important;
  background: linear-gradient(135deg, var(--pt-accent), color-mix(in srgb, var(--pt-accent) 55%, #111827));
  box-shadow: 0 18px 45px color-mix(in srgb, var(--pt-accent) 22%, transparent);
  transition: transform .18s ease, filter .18s ease;
  white-space: nowrap;
}
.ptfbt__btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.ptfbt__btn.is-disabled{ opacity:.6; pointer-events:none; }

.ptfbt__note{
  margin-top:10px;
  font-size:12px;
  color: rgba(2,6,23,.60);
  line-height:1.5;
}

.ptfbt__trust{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:12px;
  color: rgba(2,6,23,.62);
}

/* Mobile */
@media(max-width: 520px){
  .ptfbt__header{ padding:16px; flex-direction:column; }
  .ptfbt__countdown{ text-align:left; min-width:auto; }
  .ptfbt__list{ padding:14px 16px 16px; }
  .ptfbt__summary{ padding:14px 16px 18px; }
  .ptfbt__row{ grid-template-columns: 34px 64px 1fr 44px; }
  .ptfbt__thumb{ width:64px;height:64px; }
  .ptfbt__new{ font-size:24px; }
  .ptfbt__grid {
    display: block !important;
    grid-template-columns: 1fr;
}
}
