     * {
        box-sizing: border-box;
      }

      body {
        font-family: 'Segoe UI', sans-serif;
        margin: 0;
        padding: 0;
    
      }

      .container {
        display: flex;
        gap: 20px;
        padding: 40px;
        margin-top: 50px;
        max-width: 1200px;
        margin: auto;
        background: white;
        border-radius: 12px;
  
      }

      .sidebar {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: -25vh;
      }

      .sidebar img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: border-color 0.3s;
      }

      .sidebar img:hover {
        border-color: deeppink;
      }

      .main-image {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }


      .main-image img {
        margin-top: -20vh;
        max-width: 100%;
        max-height: 450px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }

        .product-info {
  padding: 25px;
  border-radius: 16px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  max-width: 650px;
  margin: 0 auto;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-header h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.favorite {
  font-size: 15px;
  color: deeppink;
  text-decoration: none;
}

.favorite span {
  font-size: 18px;
  margin-left: 5px;
}

.product-code {
  font-size: 14px;
  margin-top: 10px;
  color: #666;
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.product-details {
  margin: 40px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.price-info .price {
  color: deeppink;
  font-size: 26px;
  font-weight: bold;
  margin: 0;
}

.price-info .kdv {
  font-size: 14px;
  color: #666;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.delivery-info p {
  margin: 0;
  font-size: 14px;
}

.delivery-info strong {
  color: deeppink;
  font-weight: bold;
}

    
    
   
  .options {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
  } 
select {
  width: 100%;
  padding: 8px;

  border: 1px solid #ff0000;
  color: pink;
  background-color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;  
 
}

select:focus {
  border-color: #ff3399; /* pembe tonu */

}

option {
  border-radius: 63px;
  color: #ff3399;
  background-color: white;
}

  .options label {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    flex: 2 2 100px;
    transition: all 0.2s ease;
  }

  .options label:hover {
    background-color: #ececec;
    border-color: #999;
  }

 /* Form Genel Yapı */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

/* Input ve Select Alanları */
.form-group select,
.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"] {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background-color: #fff;
  transition: all 0.3s ease;
  outline: none;
}

/* Focus Efekti */
.form-group select:focus,
.form-group input:focus {
  border-color: #ff3399;
  box-shadow: 0 0 6px rgba(255, 51, 153, 0.3);
}

/* Placeholder için */
.form-group input::placeholder {
  color: #aaa;
  font-size: 14px;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 25px 0;
}

/* Sipariş Bilgileri Kutusu */
.order-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
  padding: 20px;
  border-radius: 14px;
  margin-top: 25px;
  flex-wrap: wrap;
  border: 1px solid #eee;
}

.order-info p {
  font-size: 15px;
  color: #444;
  margin: 0;
  line-height: 1.4;
}

.order-info .highlight {
  color: #ff3399;
  font-weight: bold;
}

/* Sipariş Butonları */
.order-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.order-actions label {
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

.order-actions input[type="number"] {
  width: 70px;
  padding: 8px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
}

.add-to-cart {
  background-color: #ff3399;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background-color: #e60073;
}

.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}



  .breadcrumbs {
    background: #f8f8f8;
    padding: 12px 0;
    font-size: 14px;
  }

  .breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .breadcrumb li {
    display: flex;
    align-items: center;
  }

  .breadcrumb li a {
    color: #e91e63; /* Pembe yazı */
    text-decoration: none;
    border-radius: 4px;
    padding: 2px 6px;
    transition: background 0.2s;
  }

  .breadcrumb li a:hover {
    background: #ffe4ec;
  }

  .breadcrumb li::after {
    content: "›";
    color: #aaa;
    margin: 0 6px;
  }

  .breadcrumb li:last-child::after {
    content: "";
  }



  .cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  padding: 20px;
  transition: right 0.4s ease;
  z-index: 1000;
}

.cart-panel.open {
  right: 0;
}

.cart-panel h3 {
  margin-top: 0;
}

.cart-actions {
  margin-top: 20px;
}

.cart-actions button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.thumb {
  width: 70px;
  margin: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sidebar img {
    width: 70px;
    height: auto;
  }
	.sidebar {
		    display: flex;
    flex-direction: column;
    gap: 6px;
		margin-top: auto;
}

.main-image img {
	 margin-top: auto;
    max-width: 90%;
    max-height: 450px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

	}
}
/* Mobil için select genişliği */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column; /* form alanlarını alt alta getir */
    gap: 15px;
  }

  .form-group {
    width: 100% !important; /* tüm alanlar tam genişlik */
  }

  .form-group select,
  .form-group input {
    width: 100% !important; /* select ve inputlar tam genişlik */
    font-size: 16px;        /* mobilde okunabilir font */
    padding: 15px;          /* daha rahat tıklanabilir */
  }
}

