/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #fff;
}

/* SECTION */
.products-section {
  padding: 80px 0;
}

/* GRID */
.products-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 380px);
  justify-content: center;
  gap: 60px;
}

/* CARD */
.product-intro-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* IMAGE AREA (KRİTİK KISIM) */
.image-wrap {
  height: 260px;              /* 🔥 SABİT ALAN */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
}

.image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;        /* 🔥 ORAN BOZULMAZ */
}

/* RED AREA */
.card-content {
  background: #e30613;
  padding: 36px 20px 40px;
  text-align: center;
}

/* HEAD */
.card-content h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 12px 34px;
  background: #ffffff;
  color: #003a8f;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
}

/* KÖŞE FARKI */
.product-intro-card.pe .card-content {
  border-radius: 0;
}

.product-intro-card.bigbag .card-content {
  border-radius: 0 0 24px 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .products-main-grid {
    grid-template-columns: 1fr;
  }
}
/* PRODUCTS INTRO */
.products-intro {
  padding: 80px 0;
  background: #ffffff;
}

.products-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.intro-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* CONTENT */
.intro-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.intro-desc {
  font-size: 17px;
  color: #444;
  max-width: 520px;
  margin-bottom: 36px;
}

/* FEATURES */
.intro-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.feature-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 480px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .products-intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-content h2 {
    font-size: 32px;
  }

  .intro-image {
    max-height: 380px;
  }
}
