
.product-grid-section {
  padding: 7rem 0% 1rem
}

.shop-sidebar {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: sticky;
  top: 90px;
}

.shop-sidebar .single-widget {
  margin-bottom: 2rem;
}

.shop-sidebar .title {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  color: #333;
}

.shop-sidebar .title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100px;
  background-color: #15803d;
}

/* Category List */
.categor-list {
  padding: 0;
  list-style: none;
  margin: 0;
}

.categor-list li {
  margin-bottom: 0.75rem;
  border-bottom: 1px dashed #eee;
}

.categor-list li a {
  color: #555;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.75rem 0.5rem;
  position: relative;
  font-weight: 500;
}

.categor-list li a:hover, 
.categor-list li a.active {
  color: #15803d;
  transform: translateX(5px);
  background-color: rgba(21, 128, 61, 0.10);
  border-radius: 5px;
  padding-left: 1rem;
}

/* Product Header */
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-count {
  font-size: 0.9rem;
  color: #666;
}

.shop-sorting {
  position: relative;
}

.sorting-select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}


/* Style for discount badge */
.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #e53e3e;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
  z-index: 1;
}

/* No Products Found */
.no-products-found {
  text-align: center;
  padding: 4rem 2rem;
}

.no-products-found img {
  max-width: 200px;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.no-products-found h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
  font-family: 'UTM Azuki', sans-serif;
}

.no-products-found p {
  color: #666;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.no-products-found .btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #15803d;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(21, 128, 61, 0.2);
}

.no-products-found .btn-primary:hover {
  background-color: #166534;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.3);
}
