

/* Genel Stil Ayarları */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 80%; /*960px;*/
  margin: 0 auto;
  padding: 0 10px;
}

/* Header */
header {
  background-color: #f0f0f0;
  padding: 10px 0;
  text-align: center;
}

.col-1  {width: 8.33%;	}
.col-2  {width: 16.66%;	}
.col-3  {width: 25%;	}
.col-4  {width: 33.33%;	}
.col-5  {width: 41.66%;	}
.col-6  {width: 50%;	}
.col-7  {width: 58.33%;	}
.col-8  {width: 66.66%;	}
.col-9  {width: 75%;	}
.col-10 {width: 83.33%;	}
.col-11 {width: 91.66%;	}
.col-12 {width: 100%;	}

[class*="col-"] {
    float: left;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}



/* Banner */
.banner {
  background-color: #eee;
  padding: 5px 0;
  text-align: center;
}

/* Ana İçerik */
.main-content .container { /* .main-content altındaki .container için */
  padding: 10px 0;
  display: flex; 
  width: 100%; /* Genişliği %100 yapıyoruz */ 
}

.sidebar {
  width: 25%;
  padding-right: 30px;
}



.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar img {
  width: 100%;
  height: auto;
}

.content {
  width: 75%;
}

/* Ürün Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product {
  width: 30%;
  margin-bottom: 20px;
  padding: 10px;
  /*border: 1px solid #ccc;*/
  border-radius: 5px;
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}


/* Banner */
.banner {
  position: relative;
  overflow: hidden;
}
.banner .container {
  width: 100%; /* Genişliği %100 yapıyoruz */ 
}
.banner-slide {
  display: none;
}
.banner-slide.active {
  display: block;
}
.banner-slide img {
  width: 100%;
  height: auto;
}




/* Modal */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100px; 
  height: 100px; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.4); 
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Ürün Detay Stilleri */
.product-details-image {
  width: 100%;
  margin-bottom: 10px;
}

.product-details-image img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.product-details-thumbnails {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}

.product-details-thumbnails img {
  width: 100px;
  height: auto;
  margin-right: 10px;
  cursor: pointer;
  flex-shrink: 0;
}



/* Slideshow container */
.slideshow-container {
  max-width: 90%; /*1000px;*/
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}