/* ═══════════════════════════════════════════
   TOOLORA P1 CORE — Main CSS
   All text visible. Hover = clear color change.
   Adsterra ad slots included.
═══════════════════════════════════════════ */

/* ── Variables Light ───────────────────── */
.tlr {
  --bg:        #f4f6ff;
  --surface:   #ffffff;
  --surface2:  #f0f3ff;
  --border:    #dde3f5;
  --primary:   #6c63ff;
  --primary2:  #a855f7;
  --text:      #1a1a2e;
  --text2:     #4a4a6a;
  --text3:     #7070a0;
  --hover-bg:  #ede9ff;
  --hover-text:#4a36d4;
  --radius:    14px;
  --radius-sm: 8px;
  --success:   #10b981;
  --danger:    #ef4444;
  --warn:      #f59e0b;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ── Variables Dark ────────────────────── */
.tlr.dark {
  --bg:        #0d0d1a;
  --surface:   #16162a;
  --surface2:  #1e1e38;
  --border:    #2a2a50;
  --primary:   #8b83ff;
  --primary2:  #c084fc;
  --text:      #e8e8ff;
  --text2:     #b0b0d0;
  --text3:     #8080a8;
  --hover-bg:  #2a2760;
  --hover-text:#c4bfff;
}

/* ── Reset ─────────────────────────────── */
.tlr *, .tlr *::before, .tlr *::after { box-sizing: border-box; }
.tlr { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; transition: background .3s, color .3s; }
.tlr a { color: var(--primary); text-decoration: none; }
.tlr a:hover { color: var(--hover-text); text-decoration: underline; }
.tlr h1, .tlr h2, .tlr h3, .tlr h4 { margin: 0; line-height: 1.25; color: var(--text); }
.tlr p { margin: 0; color: var(--text2); }
.tlr button { cursor: pointer; font-family: var(--font); }

/* ═══════════════════════════════════════
   ADSTERRA AD SLOTS
═══════════════════════════════════════ */
.tlr-ad {
  display: block;
  text-align: center;
  margin: 16px auto;
  overflow: hidden;
}
.tlr-ad--hub-top    { max-width: 970px; min-height: 90px; }
.tlr-ad--hub-mid    { max-width: 728px; min-height: 90px; }
.tlr-ad--hub-bottom { max-width: 970px; min-height: 90px; }
.tlr-ad--tool-top   { max-width: 728px; min-height: 90px; }
.tlr-ad--tool-mid   { max-width: 336px; min-height: 280px; float: right; margin: 0 0 16px 20px; }
.tlr-ad--tool-bot   { max-width: 728px; min-height: 90px; clear: both; }
.tlr-ad-placeholder {
  background: var(--surface2);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--primary);
  font-size: .85rem;
  text-align: center;
  margin: 12px 0;
}
.tlr-ad-placeholder a { color: var(--primary); font-weight: 700; }
.tlr-ad-placeholder a:hover { color: var(--hover-text); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.tlr-hero {
  background: linear-gradient(135deg, #6c63ff 0%, #a855f7 60%, #ec4899 100%);
  padding: 52px 32px 48px;
  text-align: center;
  border-radius: 0 0 28px 28px;
  position: relative;
  overflow: hidden;
}
.tlr-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.07) 0%, transparent 60%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 50%);
  pointer-events: none;
}
.tlr-hero__inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.tlr-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.35);
}
.tlr-hero__title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.4px;
}
.tlr-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
}

/* ── Theme toggle ───────────────────────── */
.tlr-theme-btn {
  position: absolute;
  top: 16px; right: 20px; z-index: 2;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.tlr-theme-btn:hover {
  background: rgba(255,255,255,.35);
  transform: rotate(20deg) scale(1.08);
}
.tlr--tool .tlr-theme-btn {
  position: static;
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.tlr--tool .tlr-theme-btn:hover {
  background: var(--hover-bg);
  color: var(--hover-text);
  border-color: var(--primary);
  transform: rotate(20deg);
}

/* ═══════════════════════════════════════
   SEARCH
═══════════════════════════════════════ */
.tlr-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.96);
  border-radius: 50px;
  padding: 8px 20px 8px 16px;
  max-width: 560px; margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  border: 2px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.tlr-search:focus-within {
  border-color: rgba(108,99,255,.4);
  box-shadow: 0 4px 24px rgba(108,99,255,.18);
}
.tlr-search__icon { font-size: 1rem; color: #6c63ff; }
.tlr-search__input {
  flex: 1; border: none; outline: none;
  font-size: .95rem; background: transparent;
  color: #1a1a2e; padding: 4px 0;
}
.tlr-search__input::placeholder { color: #9090b0; }
.tlr-search__clear {
  border: none; background: none;
  color: #9090b0; font-size: .9rem; padding: 3px;
  border-radius: 50%; transition: background .15s, color .15s;
}
.tlr-search__clear:hover { background: #ede9ff; color: #6c63ff; }

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.tlr-statsbar {
  display: flex; justify-content: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.tlr-statsbar__item {
  flex: 1; text-align: center;
  padding: 14px 8px;
  font-size: .83rem; color: var(--text3);
  border-right: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.tlr-statsbar__item:last-child { border-right: none; }
.tlr-statsbar__item:hover { background: var(--hover-bg); color: var(--hover-text); }
.tlr-statsbar__item strong {
  display: block;
  font-size: 1.25rem; font-weight: 900;
  color: var(--primary); margin-bottom: 1px;
}

/* ═══════════════════════════════════════
   CATEGORY TABS
═══════════════════════════════════════ */
.tlr-tabs {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 20px 28px 12px;
  scrollbar-width: none;
}
.tlr-tabs::-webkit-scrollbar { display: none; }
.tlr-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text2);
  font-size: .85rem; font-weight: 700;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
/* HOVER — clearly visible color change */
.tlr-tab:hover {
  background: var(--hover-bg);
  color: var(--hover-text);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.tlr-tab.active {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(108,99,255,.3);
}
.tlr-tab.active:hover {
  background: var(--hover-text);
  color: #fff;
  transform: translateY(-1px);
}
.tlr-tab__pill {
  background: rgba(255,255,255,.25);
  padding: 1px 7px; border-radius: 50px; font-size: .72rem;
}
.tlr-tab:not(.active) .tlr-tab__pill {
  background: var(--surface2); color: var(--text3);
}

/* ═══════════════════════════════════════
   TOOLS GRID & CARDS
═══════════════════════════════════════ */
.tlr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  padding: 8px 28px 32px;
}

.tlr-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px 16px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 5px;
  text-decoration: none;
  color: var(--text);
  transition: transform .25s, box-shadow .25s, border-color .25s, background .2s;
}
.tlr-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
/* HOVER — strong visible effect */
.tlr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(108,99,255,.2);
  border-color: var(--primary);
  background: var(--surface2);
  color: var(--text);
}
.tlr-card:hover::after { transform: scaleX(1); }

.tlr-card__badge {
  position: absolute; top: 12px; right: 12px;
  font-size: .65rem; font-weight: 800;
  padding: 3px 9px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px;
}
.tlr-card__badge--hot { background: linear-gradient(135deg,#ff6b6b,#ff8c42); color:#fff; }
.tlr-card__badge--ai  { background: linear-gradient(135deg,#6c63ff,#a855f7); color:#fff; }
.tlr-card__badge--new { background: linear-gradient(135deg,#10b981,#059669); color:#fff; }

.tlr-card__icon { font-size: 2.2rem; line-height: 1; }
.tlr-card__cat  { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--primary); }
.tlr-card__title { font-size: .98rem; font-weight: 800; color: var(--text); }
.tlr-card__desc  { font-size: .8rem; color: var(--text2); line-height: 1.5; flex: 1; }
.tlr-card__footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--border); font-size: .72rem; color: var(--text3);
}
/* HOVER — card footer text becomes visible */
.tlr-card:hover .tlr-card__footer { color: var(--text2); }
.tlr-card__cta {
  font-size: .78rem; font-weight: 800; color: var(--primary);
  opacity: 0; margin-top: 4px; transition: opacity .2s;
}
.tlr-card:hover .tlr-card__cta { opacity: 1; }

.tlr-no-results {
  grid-column: 1/-1; text-align: center; padding: 48px;
  color: var(--text3); font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   TOPBAR & BACK BUTTON
═══════════════════════════════════════ */
.tlr-topbar {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 28px 8px;
}
.tlr-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--text2);
  padding: 8px 18px; border-radius: 50px;
  font-size: .88rem; font-weight: 700;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
/* HOVER — back button clearly changes */
.tlr-back:hover {
  background: var(--hover-bg);
  color: var(--hover-text);
  border-color: var(--primary);
  transform: translateX(-3px);
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.tlr-breadcrumb { padding: 8px 28px 0; }
.tlr-breadcrumb ol {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.tlr-breadcrumb li { font-size: .8rem; color: var(--text3); }
.tlr-breadcrumb li::after { content: '›'; margin-left: 6px; }
.tlr-breadcrumb li:last-child::after { display: none; }
.tlr-breadcrumb a { color: var(--primary); font-weight: 600; text-decoration: none; transition: color .15s; }
/* HOVER — breadcrumb link color change */
.tlr-breadcrumb a:hover { color: var(--hover-text); text-decoration: underline; }

/* ═══════════════════════════════════════
   TOOL HERO
═══════════════════════════════════════ */
.tlr-tool-hero {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 28px 22px;
  border-bottom: 2px solid var(--border); margin-bottom: 20px;
}
.tlr-tool-hero__icon { font-size: 3rem; flex-shrink: 0; }
.tlr-tool-hero__cat  { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--primary); margin-bottom: 3px; }
.tlr-tool-hero__title { font-size: 1.7rem; font-weight: 900; color: var(--text); margin-bottom: 5px; }
.tlr-tool-hero__desc  { font-size: .9rem; color: var(--text2); margin-bottom: 10px; }
.tlr-tool-hero__meta  { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tlr-uses { font-size: .8rem; color: var(--text3); background: var(--surface2); padding: 4px 12px; border-radius: 50px; border: 1px solid var(--border); }
.tlr-pill { font-size: .72rem; font-weight: 700; background: rgba(108,99,255,.1); color: var(--primary); padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(108,99,255,.2); }

/* ═══════════════════════════════════════
   STAR RATING
═══════════════════════════════════════ */
.tlr-rating { display: flex; align-items: center; gap: 3px; }
.tlr-rating__star {
  background: none; border: none;
  font-size: 1.3rem; color: #d0d0e0; padding: 0; line-height: 1;
  transition: color .15s, transform .15s;
}
/* HOVER — stars clearly light up */
.tlr-rating__star:hover,
.tlr-rating__star.active { color: #fbbf24; }
.tlr-rating__star:hover  { transform: scale(1.2); }
.tlr-rating__val   { font-size: .88rem; font-weight: 800; color: var(--text); margin-left: 4px; }
.tlr-rating__count { font-size: .75rem; color: var(--text3); }

/* ═══════════════════════════════════════
   BOX (tool content wrapper)
═══════════════════════════════════════ */
.tlr-box {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px; margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: border-color .2s;
}
.tlr-box:hover { border-color: rgba(108,99,255,.25); }
.tlr-box__title {
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--text3); margin-bottom: 14px;
}

/* ═══════════════════════════════════════
   DROP ZONE
═══════════════════════════════════════ */
.tlr-drop {
  border: 3px dashed var(--primary);
  border-radius: var(--radius);
  padding: 42px 20px; text-align: center;
  cursor: pointer; background: var(--surface2);
  position: relative;
  transition: background .25s, transform .2s, border-color .2s;
}
.tlr-drop:hover, .tlr-drop.over {
  background: rgba(108,99,255,.08);
  transform: scale(1.01);
  border-color: var(--primary2);
}
.tlr-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.tlr-drop__icon { font-size: 2.8rem; display: block; margin-bottom: 10px; }
.tlr-drop__text { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.tlr-drop__sub  { font-size: .82rem; color: var(--text2); }

/* ═══════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════ */
.tlr-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.tlr-row3  { grid-template-columns: 1fr 1fr 1fr; }
.tlr-field { display: flex; flex-direction: column; gap: 5px; }
.tlr-label { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--text3); }

.tlr-input, .tlr-select, .tlr-textarea {
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface2);
  color: var(--text);
  font-size: .93rem; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%; font-family: var(--font);
}
/* HOVER + FOCUS — inputs clearly highlight */
.tlr-input:hover, .tlr-select:hover, .tlr-textarea:hover {
  border-color: rgba(108,99,255,.5);
  background: var(--surface);
}
.tlr-input:focus, .tlr-select:focus, .tlr-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108,99,255,.12);
  background: var(--surface);
}
.tlr-input[type=color] { padding: 4px; height: 42px; cursor: pointer; }
.tlr-range { width: 100%; accent-color: var(--primary); margin: 4px 0; cursor: pointer; }
.tlr-range-val { display: inline-block; background: var(--primary); color: #fff; padding: 1px 9px; border-radius: 50px; font-size: .8rem; font-weight: 700; margin-left: 6px; }
.tlr-checkbox { display: flex; align-items: center; gap: 8px; font-size: .88rem; cursor: pointer; color: var(--text2); transition: color .15s; }
.tlr-checkbox:hover { color: var(--hover-text); }
.tlr-checkbox input { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.tlr-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 26px; border-radius: 50px; border: none;
  font-size: .93rem; font-weight: 800;
  transition: all .25s; text-decoration: none; white-space: nowrap;
  font-family: var(--font);
}
/* PRIMARY — hover clearly changes */
.tlr-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 4px 16px rgba(108,99,255,.3);
}
.tlr-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,99,255,.45);
  filter: brightness(1.1);
  color: #fff;
}
.tlr-btn--primary:active { transform: translateY(0); }

/* SUCCESS */
.tlr-btn--success { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }
.tlr-btn--success:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,.35); filter: brightness(1.08); color: #fff; }

/* OUTLINE */
.tlr-btn--outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.tlr-btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* DANGER */
.tlr-btn--danger { background: var(--danger); color: #fff; }
.tlr-btn--danger:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff; }

.tlr-btn-group { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

/* ═══════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════ */
.tlr-progress { display: none; margin: 14px 0; }
.tlr-progress__bar { height: 7px; background: var(--border); border-radius: 50px; overflow: hidden; }
.tlr-progress__fill { height: 100%; background: linear-gradient(90deg,var(--primary),var(--primary2)); border-radius: 50px; transition: width .3s; width: 0; }
.tlr-progress__text { font-size: .82rem; color: var(--text3); text-align: center; margin-top: 5px; }

/* ═══════════════════════════════════════
   ALERTS
═══════════════════════════════════════ */
.tlr-alert { display: none; padding: 10px 16px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 700; margin: 10px 0; }
.tlr-alert--ok  { background: rgba(16,185,129,.12); color: #065f46; border: 1px solid rgba(16,185,129,.3); }
.tlr-alert--err { background: rgba(239,68,68,.12);  color: #991b1b; border: 1px solid rgba(239,68,68,.3); }
.tlr dark .tlr-alert--ok  { color: #34d399; }
.tlr.dark .tlr-alert--err { color: #fca5a5; }

/* ═══════════════════════════════════════
   PREVIEW
═══════════════════════════════════════ */
.tlr-preview {
  background: var(--surface2); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  min-height: 140px; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 10px;
  color: var(--text3);
}
.tlr-preview img { max-width: 100%; max-height: 280px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.tlr-preview__info {
  font-size: .8rem; color: var(--text3); background: var(--surface);
  padding: 4px 14px; border-radius: 50px; border: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   BEFORE / AFTER SLIDER
═══════════════════════════════════════ */
.tlr-ba {
  position: relative; overflow: hidden;
  border-radius: 12px; border: 2px solid var(--border);
  user-select: none; cursor: ew-resize;
}
.tlr-ba__before { display: block; max-width: 100%; }
.tlr-ba__after  { position: absolute; top: 0; left: 0; clip-path: inset(0 50% 0 0); }
.tlr-ba__after img { max-width: 100%; display: block; }
.tlr-ba__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,.35);
  cursor: ew-resize; transform: translateX(-50%);
}
.tlr-ba__handle::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 36px; height: 36px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.tlr-ba__label { position: absolute; top: 10px; font-size: .72rem; font-weight: 800; padding: 3px 10px; border-radius: 50px; }
.tlr-ba__label--b { left: 10px; background: rgba(0,0,0,.55); color: #fff; }
.tlr-ba__label--a { right: 10px; background: var(--primary); color: #fff; }

/* ═══════════════════════════════════════
   BULK UPLOAD
═══════════════════════════════════════ */
.tlr-bulk-list { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.tlr-bulk-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 13px;
  transition: background .15s, border-color .15s;
}
.tlr-bulk-item:hover { background: var(--hover-bg); border-color: var(--primary); }
.tlr-bulk-item__name { flex: 1; font-size: .85rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text); }
.tlr-bulk-item__size { font-size: .75rem; color: var(--text3); }
.tlr-bulk-item__status { font-size: .75rem; font-weight: 700; }
.tlr-bulk-item__status--done { color: var(--success); }
.tlr-bulk-item__status--proc { color: var(--primary); }
.tlr-bulk-item__status--err  { color: var(--danger); }
.tlr-bulk-item__dl { color: var(--primary); font-size: .78rem; font-weight: 700; text-decoration: none; transition: color .15s; }
.tlr-bulk-item__dl:hover { color: var(--hover-text); }
.tlr-bulk-bar { height: 4px; background: var(--border); border-radius: 50px; overflow: hidden; width: 70px; flex-shrink: 0; }
.tlr-bulk-bar__fill { height: 100%; background: var(--primary); border-radius: 50px; transition: width .3s; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.tlr-faq { padding: 8px 28px 24px; }
.tlr-faq__title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.tlr-faq__item { border: 2px solid var(--border); border-radius: 12px; margin-bottom: 8px; overflow: hidden; transition: border-color .2s; }
.tlr-faq__item:hover { border-color: rgba(108,99,255,.35); }
.tlr-faq__q {
  width: 100%; text-align: left; background: var(--surface);
  border: none; padding: 13px 18px; font-size: .93rem; font-weight: 700;
  color: var(--text); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  transition: background .2s, color .2s;
}
/* HOVER — FAQ question highlights */
.tlr-faq__q:hover { background: var(--hover-bg); color: var(--hover-text); }
.tlr-faq__icon { font-size: 1.2rem; color: var(--primary); transition: transform .2s; font-weight: 400; }
.tlr-faq__icon.open { transform: rotate(45deg); }
.tlr-faq__a { padding: 0 18px 13px; font-size: .88rem; line-height: 1.7; color: var(--text2); background: var(--surface); }

/* ═══════════════════════════════════════
   RELATED TOOLS
═══════════════════════════════════════ */
.tlr-related { padding: 8px 28px 24px; }
.tlr-related__title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(--text3); margin-bottom: 12px; }
.tlr-related__grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(185px,1fr)); gap: 10px; }
.tlr-related__card {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: 10px; padding: 11px 13px;
  font-size: .85rem; font-weight: 700; color: var(--text2);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
/* HOVER — related tool card clearly changes */
.tlr-related__card:hover {
  background: var(--hover-bg);
  color: var(--hover-text);
  border-color: var(--primary);
  transform: translateX(4px);
}
.tlr-related__arr { margin-left: auto; opacity: 0; transition: opacity .2s; }
.tlr-related__card:hover .tlr-related__arr { opacity: 1; }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.tlr-trust {
  display: flex; justify-content: center; gap: 18px;
  flex-wrap: wrap; padding: 18px 28px 30px;
  border-top: 2px solid var(--border); margin: 0 28px;
}
.tlr-trust__item {
  font-size: .82rem; font-weight: 600; color: var(--text3);
  transition: color .15s;
}
.tlr-trust__item:hover { color: var(--primary); }

/* ═══════════════════════════════════════
   COLOR PICKER
═══════════════════════════════════════ */
.tlr-color-result { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.tlr-swatch { width: 68px; height: 68px; border-radius: 12px; border: 3px solid var(--border); flex-shrink: 0; transition: transform .2s; cursor: pointer; }
.tlr-swatch:hover { transform: scale(1.08); }
.tlr-color-codes { display: flex; flex-direction: column; gap: 7px; }
.tlr-color-code {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface2); padding: 6px 12px;
  border-radius: 8px; font-family: monospace; font-size: .9rem;
  border: 1px solid var(--border); color: var(--text);
  transition: background .15s, border-color .15s;
}
.tlr-color-code:hover { background: var(--hover-bg); border-color: var(--primary); }
.tlr-copy-btn {
  border: none; background: var(--primary); color: #fff;
  padding: 2px 9px; border-radius: 5px; cursor: pointer;
  font-size: .72rem; font-weight: 700;
  transition: background .15s, transform .15s;
}
.tlr-copy-btn:hover { background: var(--hover-text); transform: scale(1.05); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .tlr-hero { padding: 36px 18px 36px; }
  .tlr-grid { grid-template-columns: 1fr 1fr; padding: 8px 14px 24px; gap: 10px; }
  .tlr-tabs { padding: 14px 14px 10px; }
  .tlr-statsbar__item { font-size: .72rem; padding: 10px 5px; }
  .tlr-tool-hero { flex-direction: column; padding: 14px 16px; }
  .tlr-tool-hero__icon { font-size: 2.2rem; }
  .tlr-topbar, .tlr-breadcrumb, .tlr-related, .tlr-faq, .tlr-trust, .tlr-ad { padding-left: 14px; padding-right: 14px; }
  .tlr-trust { margin: 0; }
  .tlr-box { padding: 16px; }
  .tlr-row { grid-template-columns: 1fr; }
  .tlr-ad--tool-mid { float: none; margin: 0 0 16px; }
}
@media (max-width: 480px) {
  .tlr-grid { grid-template-columns: 1fr; }
  .tlr-statsbar { flex-wrap: wrap; }
  .tlr-statsbar__item { width: 50%; }
}
