.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-391 .elementor-element.elementor-element-618c676{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-widget-shortcode .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-shortcode .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-391 .elementor-element.elementor-element-3e41b40{width:var( --container-widget-width, 79% );max-width:79%;--container-widget-width:79%;--container-widget-flex-grow:0;}.elementor-391 .elementor-element.elementor-element-3e41b40.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-391 .elementor-element.elementor-element-3e41b40{--container-widget-width:95%;--container-widget-flex-grow:0;width:var( --container-widget-width, 95% );max-width:95%;}}@media(min-width:768px){.elementor-391 .elementor-element.elementor-element-618c676{--content-width:100%;}}/* Start custom CSS for shortcode, class: .elementor-element-3e41b40 */form.cart {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

form.cart input.qty {
  width: 50px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ccc;
}

form.cart button.add_to_cart_button {
  border-radius: 20px;
  padding: 6px 18px;
  background: #000;
  color: #fff;
  font-weight: 600;
}

.woocommerce ul.products li.product {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ✅ changed from center to flex-start */
  border: 1px solid;
  border-radius: 20px;
  box-shadow: none;
  background: transparent;
  padding: 20px;
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 15px;
  border-radius: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 18px;
  color: black;
  font-weight: bold;
  margin-bottom: 10px;
}

.woocommerce ul.products li.product .price {
  font-size: 16px;
  margin-bottom: 12px;
  color: #444;
}

.woocommerce ul.products li.product .button {
  background-color: transparent;
  color: black;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid black;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
  background-color: black;
  color: white;
}





/* Style WooCommerce quantity input to look like minimalist box */
.woocommerce .quantity input.qty {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    text-align: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    background-color: #fff;
}

/* Remove spinner arrows (Chrome, Safari, Edge) */
.woocommerce .quantity input.qty::-webkit-inner-spin-button,
.woocommerce .quantity input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Optional: Add custom plus/minus buttons if using a plugin or want full control */
.woocommerce .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
     width: auto;
    height: auto;
}

.woocommerce .quantity .minus,
.woocommerce .quantity .plus {
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 6px 10px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
}/* End custom CSS */