.no-product {
    color: #FF5722;
    display: flex;
    line-height: 1.5rem;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    padding: 0 0px;
    font-weight: 500;
    text-decoration: none;
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

/* UL Reset */
.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Genel Buton Stili */
.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0 0px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.pagination li a {
    background: #ffffff;
    color: #ff4200;
    border: 1px solid #e5e5e5;
}

/* Hover Efekti */
.pagination li a:hover {
    background: linear-gradient(135deg, #ff6000, #ff3c00);
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(255, 96, 0, 0.3);
}

/* Aktif Sayfa */
.pagination li.active span {
    background: linear-gradient(135deg, #ff6000, #ff3c00);
    color: #fff;
    border: none;
    box-shadow: 0 6px 14px rgba(255, 96, 0, 0.3);
}

/* İlk - Son - Ok Butonları */
.pagination li a[href*="page="]:first-child,
.pagination li a[href*="page="]:last-child {
    font-size: 14px;
}


.filter-title {
	font-weight: 700;
    color: #1c1c1c;
    font-size: 17px;
	display:none;
    margin-bottom: 15px;
}

.filter-box {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.filter-header span{
    font-weight: 500;
    color: #3c3c3c;
    font-size: 13px;
    margin-bottom: 5px;
}
.filter-header i{
    color: #3c3c3c;
    font-size: 13px;
    margin-bottom: 5px;
}

.filter-content {
  margin-top: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-checkbox input {
 	margin-right: 7px;
    width: 12px;
    margin-top: -3px;
}
.filter-checkbox span{
	font-weight: 500;
    color: #1c1c1c;
    font-size: 13px;
    margin-bottom: 5px;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-range input {
  font-size: 12px;
    color: #1c1c1c;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.btn-filter {
	background: #ff6000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}


.category-page {
  background: #f5f6f8;
  padding: 20px 0;
}

.category-layout {
  display: flex;
  gap: 25px;
}

/* SIDEBAR */
.category-sidebar {
    width: 250px;
    background: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    height: fit-content;
}

/* CONTENT */
.category-content {
  flex: 1;
}

/* HEADER */
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}
.category-header h1{
	font-size: 26px;
    color: #1c1c1c;
    margin-bottom: 27px;
    font-weight: 900;
	margin-top: 0px;
}
.category-header p{
font-size: 13px;
    padding: 5px 20px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
    margin-top: 2px;
    background: #ff6000;
    border-radius: 15px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    transition: 0.3s;
    padding: 12px;
    width: 180px;
    flex-shrink: 0;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    text-align: center;
}

.product-image img {
	width: 100%;
    border-radius: 8px;
}

.product-info a {
    font-size: 12px;
    text-decoration: none;
    margin: 12px 0;
    color: #333;
    line-height: 1.6em;
    font-weight: 400;
    display: block;
    height: 57px;
}
.product-info{
    margin: 10px 0;
}


.product-price {
  margin: 0px 0px;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 12px;
  display: block;
}

.price-new {
      color: #ff6000;
    font-weight: 600;
    font-size: 14px;
}

.btn-add-cart {
  width: 100%;
  background: #ff6000;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-add-cart:hover {
  background: #e05500;
}

/* PAGINATION */
.pagination-wrapper {
  margin-top: 30px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 992px) {
  .category-layout {
    flex-direction: column;
  }

  .category-sidebar {
    width: 84%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	.product-card {
	width:84%;
	}
	.product-info a {height:100px;}
}


@media(max-width: 480px) {
.product-card {
	width: 84%;
	}
	.product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	.product-info a {height:100px;}
}