/* === Ürün sayfası yeni yerleşim === */
/* RIGHT PRODUCT CARD */
.product-info-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 6px;
}

/* PRICE */
.product-info-card h2,
.product-info-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #ff6a00;
  margin: 15px 0;
}

/* ADD TO CART */
#button-cart {
  background: #000;
  color: #fff;
  border-radius: 4px;
  padding: 14px;
  font-size: 16px;
}

#button-cart:hover {
  background: #222;
}

.product-single-wrap{
  display:grid;
  grid-template-columns:55% 45%;
  gap:40px;
  margin-top:20px;
}

.product-gallery{
  display:flex;
  gap:15px;
}

.main-image img{
  width:100%;
  border-radius:6px;
}

.thumb-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.thumb-list img{
  width:70px;
  border:1px solid #eee;
  cursor:pointer;
}

.product-title{
  font-size:26px;
  font-weight:600;
  margin-bottom:10px;
}

.product-price{
  font-size:28px;
  color:#ff7a00;
  margin:15px 0;
}

.product-tabs-wrap{
  margin-top:50px;
}

.product-left{
  max-width:100%;
}

.product-gallery{
  align-items:flex-start;
}

.product-thumb-img.active {
  border: 2px solid #000;
}



/* Mobil */
@media(max-width:768px){
  .product-single-wrap{
    grid-template-columns:1fr;
  }
  .product-gallery{
    flex-direction:column;
  }
  .thumb-list{
    flex-direction:row;
  }
}
