:root{
  --tfeu-bg:#0b0b10;
  --tfeu-border:rgba(255,255,255,.12);
  --tfeu-text:rgba(255,255,255,.92);
  --tfeu-muted:rgba(255,255,255,.68);
  --tfeu-accent:#7c3aed;
  --tfeu-radius:18px;
  --tfeu-shadow:0 14px 45px rgba(0,0,0,.45);
  --tfeu-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
}
.tfeu-wrap{
  font-family:var(--tfeu-font);
  color:var(--tfeu-text);
  background:radial-gradient(1200px 500px at 15% 5%, rgba(124,58,237,.35), transparent 55%),
             radial-gradient(900px 420px at 80% 15%, rgba(16,185,129,.22), transparent 55%),
             var(--tfeu-bg);
  border-radius:var(--tfeu-radius);
  overflow:clip;
}
.tfeu-hero{padding:clamp(18px,3vw,34px);border-bottom:1px solid var(--tfeu-border);}
.tfeu-hero__inner{max-width:1180px;margin:0 auto;}
.tfeu-brand{display:flex;gap:12px;align-items:center;margin-bottom:18px;}
.tfeu-logo{width:44px;height:44px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg,var(--tfeu-accent),rgba(255,255,255,.14));box-shadow:0 10px 30px rgba(124,58,237,.25);font-weight:800;}
.tfeu-brand__name{font-size:18px;font-weight:800;letter-spacing:.2px}
.tfeu-brand__tag{font-size:13px;color:var(--tfeu-muted);margin-top:2px}
.tfeu-search{display:flex;gap:10px;align-items:stretch;background:rgba(255,255,255,.06);border:1px solid var(--tfeu-border);border-radius:999px;padding:10px;box-shadow:var(--tfeu-shadow);}
.tfeu-search input{flex:1;background:transparent;border:0;outline:none;color:var(--tfeu-text);padding:8px 10px;font-size:15px;}
.tfeu-search input::placeholder{color:rgba(255,255,255,.55);}
.tfeu-btn{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:10px 14px;border:1px solid var(--tfeu-border);background:rgba(255,255,255,.06);color:var(--tfeu-text);text-decoration:none;font-weight:700;cursor:pointer;transition:transform .08s ease, background .12s ease, border-color .12s ease;white-space:nowrap;}
.tfeu-btn:hover{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.18);}
.tfeu-btn:active{transform:translateY(1px);}
.tfeu-btn--primary{background:linear-gradient(135deg,var(--tfeu-accent),rgba(255,255,255,.10));border-color:rgba(255,255,255,.18);}
.tfeu-filters{margin-top:14px;display:grid;grid-template-columns:1fr 1fr auto;gap:12px;}
.tfeu-filter{background:rgba(255,255,255,.05);border:1px solid var(--tfeu-border);border-radius:16px;padding:10px 12px;}
.tfeu-filter label{display:block;font-size:12px;color:var(--tfeu-muted);margin-bottom:6px;font-weight:700;}
.tfeu-filter select{width:100%;background:rgba(0,0,0,.25);border:1px solid rgba(255,255,255,.10);border-radius:12px;padding:10px;color:var(--tfeu-text);outline:none;}
.tfeu-filter--toggle{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.tfeu-switch{position:relative;display:inline-flex;align-items:center;}
.tfeu-switch input{display:none;}
.tfeu-switch span{width:46px;height:26px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);position:relative;display:block;transition:background .12s ease,border-color .12s ease;}
.tfeu-switch span:after{content:"";width:20px;height:20px;border-radius:50%;background:rgba(255,255,255,.92);position:absolute;top:2px;left:2px;transition:transform .12s ease;}
.tfeu-switch input:checked + span{background:rgba(124,58,237,.45);border-color:rgba(124,58,237,.7);}
.tfeu-switch input:checked + span:after{transform:translateX(20px);}
.tfeu-chips{margin-top:14px;display:flex;flex-wrap:wrap;gap:8px;}
.tfeu-chip-btn{border-radius:999px;padding:8px 12px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);color:var(--tfeu-text);cursor:pointer;font-weight:700;font-size:13px;transition:background .12s ease,border-color .12s ease;}
.tfeu-chip-btn:hover{background:rgba(255,255,255,.08);}
.tfeu-chip-btn.is-active{background:rgba(124,58,237,.28);border-color:rgba(124,58,237,.7);}
.tfeu-main{padding:clamp(18px,3vw,30px);max-width:1180px;margin:0 auto;}
.tfeu-headrow{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin-bottom:12px;}
.tfeu-h2{font-size:18px;margin:0;letter-spacing:.2px;}
.tfeu-small{font-size:12px;}
.tfeu-muted{color:var(--tfeu-muted);}
.tfeu-grid-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
@media (max-width:980px){.tfeu-grid-cards{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width:640px){
  .tfeu-filters{grid-template-columns:1fr;}
  .tfeu-search{flex-direction:column;border-radius:18px;}
  .tfeu-btn{width:100%;}
  .tfeu-grid-cards{grid-template-columns:1fr;}
}
.tfeu-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10);border-radius:var(--tfeu-radius);overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.25);}
.tfeu-card__img{display:block;aspect-ratio:16/10;overflow:hidden;}
.tfeu-card__img img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.02);transition:transform .25s ease;}
.tfeu-card:hover .tfeu-card__img img{transform:scale(1.06);}
.tfeu-card__body{padding:12px 12px 14px;}
.tfeu-card__meta{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-bottom:8px;}
.tfeu-badge{font-size:12px;font-weight:800;padding:6px 10px;border-radius:999px;background:rgba(124,58,237,.18);border:1px solid rgba(124,58,237,.55);}
.tfeu-chip{font-size:12px;font-weight:800;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);}
.tfeu-card__title{margin:0 0 6px;font-size:16px;letter-spacing:.1px;}
.tfeu-card__title a{color:var(--tfeu-text);text-decoration:none;}
.tfeu-card__sub{font-size:13px;margin-bottom:10px;min-height:18px;}
.tfeu-card__footer{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.tfeu-price{font-size:13px;}
.tfeu-price strong{font-size:15px;}
.tfeu-empty{padding:16px;background:rgba(255,255,255,.05);border:1px dashed rgba(255,255,255,.18);border-radius:16px;color:var(--tfeu-muted);}
.tfeu-loading{opacity:.7;filter:saturate(.8);}
