.tool-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.tool-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.tool-detail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-detail-image .no-image {
  color: #999;
}

.tool-detail-info h1 {
  margin-bottom: 20px;
} 

.tool-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tool-meta-badge {
  background: #639eead6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  /* font-size: 13px; */
  font-weight: 500;
}

.tool-detail-info-box {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tool-detail-info-box p {
  margin: 0.5rem 0;
}

.tool-detail-info-box strong {
}

p strong {
  font-weight: 600;
}

.tool-detail-description {
  background: #fff;
  padding: 0;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
}

.tool-detail-container h2 {
    /* margin-top: 30px; 
    margin-bottom: 20px; */
}

.tool-detail-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #63bbea;
  color: #fff;
}

.btn-primary:hover {
  background: #4a9fcd;
}

.btn-secondary {
  background: #fff;
  color: #281e69;
  border: 2px solid #281e69;
}

.btn-secondary:hover {
  background: #281e69;
  color: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #63bbea;
  text-decoration: none;
  margin-bottom: 20px;
}

.back-link:hover {
  color: #281e69;
}

@media (max-width: 768px) {
  .tool-detail-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-detail-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
