/* Genel Stil Ayarları */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* Header kısmının rengini değiştiren kodları kaldırdık */
/* Header ve menü renkleri varsayılan olarak kalacak */

/* Anasayfayı Full Ekran Yapmak İçin */
.master-wrapper-content {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Slider veya banner'ı full ekran yapmak için */
.nivoSlider,
.home-page-slider,
.slider-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0;
}

.nivoSlider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Ürün Kutuları (Product Box) Özelleştirme */
.product-item {
  border: 1px solid #e0e0e0;
  padding: 15px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s, transform 0.2s;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.product-item .picture img {
  border-radius: 6px;
  transition: transform 0.3s;
}

.product-item:hover .picture img {
  transform: scale(1.05);
}

.product-title a {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.product-price {
  font-size: 18px;
  color: #27ae60;
  font-weight: bold;
}

.add-to-cart-button {
  background-color: #f39c12;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart-button:hover {
  background-color: #d87e04;
}

/* Kategori SideBar */
.block-category-navigation {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.block-category-navigation .list a {
  color: #333;
  padding: 6px 0;
}

.block-category-navigation .list a:hover {
  color: #f39c12;
  font-weight: bold;
}

/* Footer Düzenlemesi */
.footer {
  background-color: #222;
  color: #ddd;
  padding: 20px;
  text-align: center;
  border-top: 4px solid #f39c12;
}

.footer a {
  color: #f39c12;
}

.footer a:hover {
  color: #ffffff;
}

/* Form Elementleri Düzeni */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 8px 12px;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #f39c12;
  box-shadow: none;
}

/* Mobil Uyumluluk İçin */
@media (max-width: 767px) {
  .header-logo {
    text-align: center;
    margin-bottom: 10px;
  }

  .header-links-wrapper {
    text-align: center;
    padding-bottom: 10px;
  }

  .header-menu {
    text-align: center;
  }

  .product-item {
    margin-bottom: 15px;
  }

  .master-wrapper-content {
    padding: 0 10px;
  }
}

.header
{
  width: 100%;
}
.header-menu
{
  width: 100%;
}