/* ---------- Shop Page Container ---------- */
.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fafafa;
}

/* ---------- Breadcrumb ---------- */
.woocommerce-breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #777;
}
.woocommerce-breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
.woocommerce-breadcrumb a:hover {
  color: #0073e6;
}

/* ---------- Page Title ---------- */
.woocommerce-products-header__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #222;
  border-bottom: 2px solid #0073e6;
  display: inline-block;
  padding-bottom: 5px;
}

/* ---------- Result Count & Sorting ---------- */
.woocommerce-result-count {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.woocommerce-ordering select {
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}
.woocommerce-ordering select:hover {
  border-color: #0073e6;
}

/* ---------- Product Grid ---------- */
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

/* ---------- Product Card ---------- */
ul.products li.product {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100% !important;
}
ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* ---------- Product Image ---------- */
ul.products li.product img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s ease;
}
ul.products li.product:hover img {
  transform: scale(1.05);
}

/* ---------- Product Title ---------- */
ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px;
  color: #222;
  text-align: center;
  transition: color 0.3s ease;
}
ul.products li.product:hover h2.woocommerce-loop-product__title {
  color: #0073e6;
}

/* ---------- Product Price ---------- */
ul.products li.product .price {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0073e6;
  margin: 10px 0;
  text-align: center;
}

/* ---------- Add to Cart Button ---------- */
ul.products li.product a.button {
  display: block;
  background: #0073e6;
  color: #fff;
  padding: 10px 15px;
  margin: 0 15px 15px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}
ul.products li.product a.button:hover {
  background: #005bb5;
  transform: scale(1.05);
}

/* ---------- Pagination ---------- */
.woocommerce-pagination {
  text-align: center;
  margin-top: 30px;
}
.woocommerce-pagination ul.page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 10px;
}
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  background: #f0f0f0;
  color: #333;
  transition: all 0.3s ease;
}
.woocommerce-pagination a.page-numbers:hover {
  background: #0073e6;
  color: #fff;
}
.woocommerce-pagination span.current {
  background: #0073e6;
  color: #fff;
  font-weight: 600;
}
div#sidebar {
    display: none;
}
ul.products::before{
display:none !important;
}