/* KG Share — tool sonuç paylaşım butonları */
.kg-share-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.kg-share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: #fff;
  border: 1px solid #ece5dc;
  border-radius: 14px;
  text-decoration: none;
  color: #1a1a1a;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.kg-share-btn:hover {
  transform: translateY(-2px);
  border-color: #C43B3B;
  box-shadow: 0 8px 20px -8px rgba(196,59,59,.25);
}
.kg-share-icon { font-size: 22px; line-height: 1; }
.kg-share-label { font-size: 11.5px; font-weight: 500; letter-spacing: .02em; }

.kg-share-ig:hover { background: linear-gradient(135deg,#f9ce34 0%,#ee2a7b 50%,#6228d7 100%); color: #fff; border-color: transparent; }
.kg-share-ig:hover .kg-share-label { color: #fff; }
.kg-share-x:hover { background: #0f1419; color: #fff; border-color: #0f1419; }
.kg-share-x:hover .kg-share-label { color: #fff; }
.kg-share-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.kg-share-fb:hover .kg-share-label { color: #fff; }
.kg-share-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.kg-share-wa:hover .kg-share-label { color: #fff; }

.kg-secondary-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.kg-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #ece5dc;
  border-radius: 30px;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.kg-secondary-btn:hover { border-color: #C43B3B; color: #C43B3B; }
.kg-secondary-btn:disabled { opacity: .5; cursor: not-allowed; }
.kg-secondary-cta {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.kg-secondary-cta:hover { background: #C43B3B; border-color: #C43B3B; color: #fff; }

.kg-ig-tooltip {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#f9ce34 0%,#ee2a7b 50%,#6228d7 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 18px 40px -14px rgba(238,42,123,.4);
  z-index: 9999;
  max-width: 90vw;
  text-align: center;
}

@media (max-width: 560px) {
  .kg-share-row { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .kg-share-btn { padding: 10px 4px; }
  .kg-share-icon { font-size: 18px; }
  .kg-share-label { font-size: 10px; }
}
