/* ===============================
   PRODUCT PAGE – PP BIGBAG
=============================== */

.product-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
}

/* SAYFA BAŞLIĞI */
.page-title{
  margin-bottom: 70px;
  text-align: center;
}

.page-title h1{
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ÜRÜN SATIRI */
.product-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

/* TERS DİZİLİM */
.product-row.reverse{
  direction: rtl;
}

.product-row.reverse > *{
  direction: ltr;
}

/* METİN */
.product-text h2{
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

.product-text p{
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

/* LİSTE */
.product-text ul{
  padding-left: 18px;
  margin: 14px 0;
}

.product-text ul li{
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* GÖRSEL */
.product-image{
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img{
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===============================
   MOBİL
=============================== */
@media (max-width: 900px){
  .product-row{
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 70px;
    text-align: center;
  }

  .product-row.reverse{
    direction: ltr;
  }

  .product-text h2{
    font-size: 22px;
  }

  .page-title h1{
    font-size: 30px;
  }
}
