.elementor-725 .elementor-element.elementor-element-66ab2e4{--display:flex;}/* Start custom CSS for html, class: .elementor-element-5b4dd9a */.custom-shop {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* SIDEBAR */
.shop-sidebar h3 {
  margin-top: 30px;
}

.shop-sidebar input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
}

/* BUTTON */
#filterBtn {
  background: #1e73be;
  color: #fff;
  padding: 8px 20px;
  border: none;
  margin-top: 10px;
}

/* CATEGORIES */
#categories li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  cursor: pointer;
}

/* TOP */
.shop-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* PRODUCT (CLICKABLE LINK) */
.product {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product img {
  width: 100%;
  background: #f5f5f5;
  padding: 25px;
}

.product h4 {
  margin: 10px 0 5px;
}

.product .price {
  font-weight: bold;
}

/* PAGINATION */
.pagination {
  margin-top: 40px;
  display: flex;
  gap: 10px;
}

.pagination button {
  width: 45px;
  height: 45px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.pagination button.active {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .custom-shop {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px){
  .product-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */