@import url('../css/style.css');


.product-categories-bar {
    background-color: #F7F7F7;
    color: #6D6F72;

}

.categoryTitle {
  line-height: 2.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all .2s ease-in-out;
}

.product-categories-bar a {
    line-height: 2.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.product-category-title {
    color: #96C02E;
    transition: all .4s ease-in-out;
}


  
.categoryTitle:hover .categoryTitle-p{
    background-color: #96C02E;
    color: #FFFFFF;
}

  




  .product-count-bar {
    background-color: #F7F7F7;
    color: #96C02E;
    padding: 1rem;
  }

  .product-count-bar span {
    font-weight: 700;
  }

  /* .custom-product-card {
    border: 1px solid #9d767c;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #F7F7F7;s
    transition: all .2s ease-in-out;
    color: #A50B22;
    aspect-ratio: 5/5;
    justify-content: space-between;
  } */


  .custom-product-card {
    border: 1px solid #9d767c;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F7F7F7;
    transition: all .2s ease-in-out;
    color: #96C02E;
}

.custom-product-card-img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}


  .custom-product-card:hover {
    border: 1px solid #96C02E;
    background-color: #96C02E;
    color: #fff;
  }


  .custom-product-card-link {
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
    text-decoration: none;
    color: #96C02E;
  }
  
  .custom-product-card-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--white-color, black);
    transition: width 0.3s ease-in-out;
  }
  
  .custom-product-card-link:hover::after {
    background-color: var(--white-color, black);
    color: var(--white-color);

  }
  
  .custom-product-card-link:hover {
    color: var(--white-color);
  }

  
  #products-sort-bar-icon {
    transition: all .3s ease-in-out;
  }

  .custom-product-card p {
    font-weight: 700;
    font-size: 1.4rem;
    transition: all .2s ease-in-out;
  }


  .custom-product-card-link {
    position: relative;
    display: inline-block;
    padding-bottom: .6rem;
    text-decoration: none;
    color: #96C02E;

}

.custom-product-card-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--c, white);
    transition: width .3s ease-in-out;
}

.custom-product-card:hover .custom-product-card-link {
  color: var(--white-color);
}

.custom-product-card:hover .custom-product-card-link::after {
    width: 90%;
}


.custom-product-card-link-primary {
    --c: #96C02E;
}




.product-card-img-wrap {
    border: 1px solid #E6E6E6;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    background-color: #F7F7F7;
}

.product-card-img-wrap img {
    width: 70%;
}

.product-page-title {
    color: #AEAEAE;
    font-size: 1rem;
    line-height: 2.5rem;
}

.product-page-text {
    color: #96C02E;
    font-size: 1rem;
    font-weight: 600;

}

.product-prop-title-wrap {
    background-color: #F7F7F7;
    color: #96C02E;
    font-weight: 600;
}

.product-prop-text-wrap {
    border-bottom: 1px solid #F7F7F7;
    color: #96C02E;
    font-size: 1rem;
}

.custom-product-detail-table table {
  width: 100%;
}


.custom-product-detail-table tr {
  border-bottom: 1px solid #F7F7F7;
  color: #3F368D;
  font-size: 1rem;

}

.custom-product-detail-table td {
  padding: 1rem;
}

.custom-product-detail-table tr:nth-child(1)  {
  background-color: #C8CDEF;
  color: var(--primary-color);
  font-weight: 500;
  min-height: 5rem;
}

.custom-product-detail-table tr:nth-child(1) td {
  height: 5rem !important;
}


.filter-btn  {
  border: 1px solid #A50B22;
  color: #A50B22;
  padding: .4rem;
  border-radius: 2px;
  transition: all .2s ease-in-out;
  font-weight: 300;
}
.filter-btn:hover {
  color: #FFFFFF;
  background-color: #A50B22;
}


.slider-for, .slider-nav {
  max-width: 100%;
}


.slick-slide {
  margin: 0; /* Varsayılan margin'i kaldır */
  padding: 0; /* Varsayılan padding'i kaldır */
}


@media only screen and (max-width: 768px)  {
  
  .category-hover-menu {
    display: none;
  }

  .product-categories-bar a {
    line-height: 2rem;
  }

  .custom-product-card p {
    font-weight: 500;
    font-size: .9rem;
  }

}