.shop-listing-sec {
  padding: 80px 0px;
}

.shop-sidebar-box {
  border: 1px solid #eee;
  border-radius: 20px;
  margin-bottom: 20px;
}

.shop-sidebar-box .shop-sidebar-box-heading {
  padding: 20px 30px;
  text-align: start;
  background-color: var(--green-color);
  border-radius: 20px 20px 0px 0px;
}

.shop-sidebar-box .shop-sidebar-box-heading h3 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.shop-sidebar-box .shop-sidebar-box-content {
  padding: 20px 30px;
}

.shop-sidebar-box .shop-sidebar-box-content ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.shop-sidebar-box .shop-sidebar-box-content ul li {
  margin-bottom: 20px;
  border-bottom: 1px dashed #333;
  padding-bottom: 10px;
}

.shop-sidebar-box .shop-sidebar-box-content ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.shop-sidebar-box .shop-sidebar-box-content ul li a:hover {
  color: var(--green-color);
}

.shop-sidebar-box-content form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.shop-sidebar-box-content form input {
  border-radius: 100px;
  padding: 15px;
  border: 1px solid #eee;
  width: 100%;
  height: 50px;
  outline: none;
  font-size: 14px;
}

.shop-sidebar-box-content form button {
  background-color: var(--green-color);
  width: 45px;
  height: 40px;
  border-radius: 100%;
  outline: none;
  border: none;
}

.shop-listing-box {
  border: 1px solid #eee;
  padding: 80px 30px 30px 30px;
  transition: all ease 0.4s;
  border-radius: 20px;
  margin-bottom: 20px;
}

.shop-listing-box img {
  width: 100%;
  object-fit: cover;
}

.shop-listing-box-content {
  margin-top: 20px;
}

.shop-listing-box-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.shop-listing-box-content .shop-pricing p {
  color: var(--green-color);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}

.shop-listing-box-content .shop-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.shop-listing-box-content .shop-listing-box-footer {
  margin-top: 20px;
}

.shop-listing-box-content .shop-listing-box-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.shop-listing-box-content .shop-listing-box-footer a {
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.shop-listing-box:hover {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.pagination-btn {
  padding: 8px 12px;
  margin: 0 2px;
  border: 1px solid #ddd;
  background: white;
  color: #565e15;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.pagination-btn:hover {
  background: #565e15;
  color: white;
  border-color: #565e15;
}

.pagination-btn.active {
  background: #565e15;
  color: white;
  border-color: #565e15;
  font-weight: bold;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.results-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .pagination-btn {
    padding: 6px 10px;
    font-size: 12px;
    margin: 2px 1px;
  }
}
