/* Shop Page Styling */
.woocommerce ul.products li.product {
  border: 1px solid #ddd;       /* subtle frame around products */
  border-radius: 8px;           /* rounded corners */
  padding: 15px;                /* inner spacing */
  margin: 15px;                 /* space between products */
  background: #fff;             /* clean background */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);  /* lift effect on hover */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.1em;
  font-weight: 600;
  margin: 10px 0;
  text-align: center;
}

/* Price Styling */
.woocommerce ul.products li.product .price {
  color: #0073aa;               /* accent color */
  font-weight: bold;
  text-align: center;
}

/* Add to Cart Button */
.woocommerce ul.products li.product .button {
  display: block;
  width: 100%;
  text-align: center;
  background: #0073aa;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
  background: #005f8d;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .woocommerce ul.products li.product {
    flex: 0 0 100%;   /* one product per row on mobile */
    margin: 10px 0;
  }
}
