/*PRODUCT*/
.product-card {
  margin-bottom: 20px;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
  min-height: 500px;
  box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.3);
}
.product-card:hover {
  box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.0);
}
.product-card .card-body {
  padding: 5px 0 15px 0 !important;
  border-radius: 25px;
  border-bottom: 1px solid #e1e1e1;
}
.product-card img {
  width: 100%;
  height: 300px;
  padding: 20px;
  border-radius: 40px;
  object-fit: cover;
  transition: all 0.5s;
}

.view-counter {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #f84203 20%, #f9b31c);
  border: 1px solid #e1e1e1;
  border-radius: 30px;
  padding: 9px 14px;
  line-height: 1;
  position: absolute;
  right: -10px;
  top: 30px;
  cursor: pointer;
  color: #fff;
}
/* İndirim Etiketi */
.discount-label {
  position: absolute;
  top: 20px;
  left: -75px;
  background-color: #4caf50;
  font-weight: bold;
  color: #fff;
  padding: 5px 65px;
  font-size: 13px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Videolu Ürün Etiketi */
.video-label {
  padding: 7px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 30px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 265px;
  background: linear-gradient(to right, #f84203 20%, #f9b31c);
  white-space: nowrap;
  cursor: pointer;
}
.product-card .details {
  background-color: #f9f9f9;
  text-align: left;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 80px;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center; /* Fiyatı ortalamak için */
  margin: 0 auto; /* Ortaya yerleştirmek için */
}

.fav-btn {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #f9670b;
  /*border: 1px solid #f9670b;*/
  display: flex;
  border-radius: 50%;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: absolute;
  left: 20px; /* Solda konumlandırmak için */
}
.fav-btn a {
  color: #f9670b;
}

.detail-btn {
  width: 40px;
  height: 40px;
  background-color: #f9670b;
  color: #fff;
  border: 1px solid #f9670b;
  display: flex;
  border-radius: 50%;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: absolute;
  right: 20px;
  overflow: hidden; /* Buton dışına çıkmasını gizlemek için */
}
.detail-btn a {
  color: #fff;
}
.detail-btn i {
  transition: transform 0.3s ease;
}

.detail-btn:hover i {
  animation: moveRightAndLeft 0.6s ease;
}

@keyframes moveRightAndLeft {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40px); /* Sağ tarafa kayma mesafesi */
  }
  51% {
    transform: translateX(-40px); /* Sol tarafa geçiş */
  }
  100% {
    transform: translateX(0); /* Başlangıç konumuna dönüş */
  }
}

.old-price {
  color: #555; /* Gri Renk */
  text-decoration: line-through;
  font-size: 15px;
}
.new-price {
  color: #f9670b; /* Turuncu Renk */
  font-weight: bold;
  font-size: 22px;
  font-family: 'Montserrat';
}


.product-card .category a {
  color: #f9670b;
}

.product-card h5 a:hover {
  color: #f9670b;
}
/*PRODUCT END*/

#urun-container{
  margin-top: 5vh;
  margin-bottom: 5vh;
}
#urun-gorsel {
  border-radius: 30px; /* Görsel kutusuna border radius */
  overflow: hidden; /* Kenarları kesmek için */
}
#urun-gorsel img {
  width: 100%; /* Resmi genişliği tam doldurması için */
  height: auto; /* Oranı korumak için */
}
#kategori{
  /* background-color: #f9670b; */
  border: 2px solid #f9670b;
  border-radius: 20px;
  color: #212529;
  padding: 15px;
  /* max-width: 100%; */
  height: max-content;
  text-align: center;
}

#kategori h5{
  color: #f9670b;
}
#kategori hr{
  color: #212121;

  border: 0;
  border-top: 1px solid;
  opacity: .25;
}
#kategori img{
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 1rem 3rem rgba(244, 162, 97, 0.3) !important;
  transition:all 0.5s ease;
}

#kategori:hover img{
  border-radius: 1rem;
  height: 200px;
}


.seller-name a{
  text-decoration: none;
    color: #777;
    display: block;
    font-size: 13px;
    line-height: 20px;
    font-weight: 300;
    letter-spacing: 0.85px;
    text-transform: capitalize
}
.seller-name a:hover{
  color: #f9670b;
}
.product-price{
  font-size: 25px;
  color: #212121;
  font-weight: 700;
}

.sales-person-social ul {
  display: initial;
}
.sales-person-social ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sales-person-social ul li a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
}
.sales-person-social ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #f9670b;
}
.sales-person-social ul li:hover i {
  color: #f9670b;
}
.sales-person-social ul li.list-inline-item:not(:last-child) {
  margin-right: 15px;
}

.sales-person-social ul li.list-inline-item:not(:last-child) {
  margin-right: 5px;
}
.sales-person-social ul li a {
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-top: 10px;
}
.sales-person-social ul li a i {
  color: #222;
}


/*-------------------------------------------------
  Breadcrumb Style CSS
---------------------------------------------------*/
.ec-breadcrumb {
	padding: 3vh 0;
  background-color: #f7f7f7;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
	
}
.section-space-mb {
  margin-bottom: 50px;
  margin-top: 50px;
}
.ec-breadcrumb .ec-breadcrumb-title  {
  text-decoration: none;
  color: #444444;
  display: block;
  font-size: 15px;
  font-family: "Montserrat";
  line-height: 22px;
  font-weight: 700;
  margin: 0 auto;
  text-transform: capitalize;
}

.ec-breadcrumb-list {
  text-align: right;
}

.ec-breadcrumb-list li {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.02rem;
    line-height: 1.2;
    text-transform: capitalize;
}
.ec-breadcrumb-list li a:hover{
    color: #f9670b;
}
.ec-breadcrumb-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ec-breadcrumb-list li.active {
  color: #f9670b;
}
.ec-breadcrumb-item + .ec-breadcrumb-item {
  padding-left: 7px;
}

/* .ec-single-pro-tab {
  margin-top: 40px;
}
.ec-single-pro-tab-nav {
  border-bottom: none;
  position: relative;
  display: block;
  margin: auto;
  text-align: center;
  width: 100%;
  float: left;
  margin-bottom: -20px;
}
.ec-single-pro-tab-nav .nav-tabs {
  border-bottom: none;
  display: inline-block;
  float: left;
  background: #ffffff;
}
.nav-tabs {
  border-bottom: 1px solid #eeeeee;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.ec-single-pro-tab-nav .nav-tabs li {
  margin: 0 5px 0 auto;
}
.ec-single-pro-tab-nav li {
  display: inline-block;
  float: left;
  margin-right: 2px;
}
li {
  list-style: none;
} */

.ec-single-pro-tab-nav .nav-tabs .nav-link.active {
  color: #ffffff;
  background-color: #f9670b;
  border: 1px solid #f9670b;
  
}

.ec-single-pro-tab-nav .nav-tabs .nav-link {
  border: 1px solid #eeeeee;
  text-transform: capitalize;
  line-height: 24px;
  color: #444444;
  padding: 8px 28px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  display: inline-block;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 0;
  letter-spacing: 0;
  border-radius: 5px;
  /* margin-right: 10px; */
  margin-top: 20px;
}
.nav-tabs .nav-link.active {
  color: #495057;
  background-color: #ffffff;
  border-color: #eeeeee #eeeeee #ffffff;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-link {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.ec-single-pro-tab-content {
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  padding: 35px 30px 21px 30px;
  border: 1px solid #eeeeee;
  border-radius: 0;
  color: #202020;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
  border-radius: 5px;
}