/*
 Theme Name:   Industrie Child
 Theme URI:    https://demo.rstheme.com/wordpress/industrie/
 Description:  Industrie Child
 Author:       RSTheme
 Author URI:   http://rstheme.com
 Template:     industrie
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 */

/* Product list: force title & description to each be on their own line */
.woocommerce ul.products li .woocommerce-loop-product__title {
  float: none !important;
  display: block;
  width: 100%;
}

/* Product attributes: label left, value right, value bold */
.woocommerce ul.products li.product .product-attributes {
  margin-top: 10px;
}
.woocommerce ul.products li.product .product-attributes .attribute-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px dashed #e5e5e5;
  font-size: 13px;
}
.woocommerce ul.products li.product .product-attributes .attribute-label {
  text-align: left;
  color: #666;
  flex: 1;
}
.woocommerce ul.products li.product .product-attributes .attribute-value {
  text-align: right;
  font-weight: 700;
  color: #1F1F1F;
  margin-left: 10px;
}

/* Product card border */
.woocommerce ul.products li.product {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px !important;
  box-sizing: border-box;
  margin-bottom: 30px !important;
}

/* Product detail button - same style as detail page add-to-cart */
.woocommerce ul.products li.product .product-btn-wrap {
  margin-top: 12px;
  text-align: center;
}
.woocommerce ul.products li.product .single_add_to_cart_button.button.alt {
  display: inline-block;
  padding: 10px 45px;
  color: #fff !important;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0;
}
.woocommerce ul.products li.product .single_add_to_cart_button.button.alt:hover {
  background-color: var(--e-global-color-8246ec9);
  color: #fff !important;
}