.catalog-section {
  padding: 100px 40px;
  background-color: #fff;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.catalog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.catalog-subtitle {
  color: #374151;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.catalog-card {
  background-color: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 24px;
  transition: all 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.catalog-image {
  width: 200px;
  height: 250px;
  margin-left: 20%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Responsive ayarlar (mobil için) */
@media (max-width: 768px) {
  .catalog-image {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }


}

.catalog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.catalog-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.catalog-button {
  display: inline-block;
  background-color: #D4AF37;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.catalog-button:hover {
  background-color: #c59c2e;
}

/* Inline stillerden taşınan */
.btn-about.mt-2 {
  margin-top: 2%;
}

.catalog-desc.mb-13 {
  margin-bottom: 13%;
}

.catalog-desc.mb-14 {
  margin-bottom: 14%;
}

.catalog-desc.mb-22 {
  margin-bottom: 22%;
}

.catalog-image.full-width {
  width: 100%;
  margin-left: 0;
}

.social-icons.ml-8 {
  margin-left: 8%;
}
