/* additions.css — eski araç sayfaları bu dosyayı çağırıyor.
   Yeni stiller style.css'e taşındı. Bu dosya 404'ü önlemek için var. */

/* SEO meta result grid (eski) */
.seo-result-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .75rem; }
.seo-result-card {
  padding: .85rem 1rem; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 10px;
}
.seo-result-card h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-muted); margin-bottom: .25rem;
}

/* Action btn varyantı */
.action-btn-gold { background: rgba(245,158,11,0.12) !important; color: var(--accent) !important; border-color: rgba(245,158,11,0.3) !important; }
.action-btn-gold:hover { background: rgba(245,158,11,0.2) !important; }

/* copy-btn position fix — bazı araçlarda absolute'tan static'e */
.copy-btn { position: static !important; }

/* Inline liste copy butonları — daha geniş tıklama alanı */
.copy-btn:active { transform: scale(.95); }

/* ── Tool Card Hover Tooltip ─────────────────────────────── */
.tool-card { position: relative; overflow: hidden; }
.tool-hover-tip {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1B4FD8ee, #1e40afee);
  color: #fff;
  padding: 1.1rem 1.2rem;
  opacity: 0;
  transition: opacity .18s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  pointer-events: none;
}
.tool-card:hover .tool-hover-tip { opacity: 1; }
.tool-hover-tip .tht-name { font-size: 1rem; font-weight: 800; margin-bottom: .15rem; }
.tool-hover-tip .tht-desc { font-size: .83rem; line-height: 1.55; opacity: .9; }
.tool-hover-tip .tht-meta { font-size: .76rem; opacity: .75; margin-top: auto; padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; }
.tool-hover-tip .tht-action { font-size: .78rem; font-weight: 700; opacity: .85; }
/* ────────────────────────────────────────────────────────── */
