.woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* space between products */
}

.woocommerce ul.products li.product {
    flex: 0 0 calc(33.333% - 20px); /* 3 columns desktop */
    box-sizing: border-box;
    min-height: 400px; /* prevent bouncing height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .woocommerce ul.products li.product {
        flex: 0 0 calc(50% - 15px); /* 2 columns tablet */
    }
}

/* Product container settings */
.woocommerce ul.products li.product {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* Hover shadow lift */
.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Image zoom on hover */
.woocommerce ul.products li.product img {
    transition: transform 0.4s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Light grey overlay */
.woocommerce ul.products li.product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 200, 200, 0.2); /* Light grey, 20% opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Keep products clickable */
}

/* Show overlay on hover */
.woocommerce ul.products li.product:hover::after {
    opacity: 1;
}

ul.products li.product {
  display: flex;
  flex-direction: column;
}

ul.products li.product .eael-product-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Make button stay at bottom and fill width */
ul.products li.product .button {
  margin-top: auto;
  align-self: stretch; /* Fills full width of parent */
  text-align: center; /* Optional: centers text inside */
  padding: 10px 15px; /* Adjust as needed */
  box-sizing: border-box;
}
.pewc-child-product-price-label {
  display: none !important;
}

/* .pewc-child-product-price-label {
  display: none !important;
} */


.pewc-group-wrap .pewc-field-label-text {
  font-size: 17px;
  color: #323232;
  line-height: 1.3;
  font-weight: 500; /* Optional: adds subtle emphasis */
}


.pewc-radio-image-desc {
  font-size: 14px !important;
  color: #323232 !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
}
.cart-empty.woocommerce-info {
  border-top: none !important;
}

.cart-empty.woocommerce-info::before {
  display: none !important;
}
ul.products li.product .eael-product-wrap {
  flex-grow: 1;
}

ul.products li.product img {
  margin-bottom: 0;
}

ul.products li.product .eael-product-title {
  margin-bottom: 0.3em;
}

.woocommerce ul.products li.product {
  min-height:300px;
}

.etq-account-btn {
  display:inline-flex; 
  gap:.5rem; 
  align-items:center;
  padding:.6rem 1rem; 
  border-radius:30px;
 
  text-decoration:none;
  color:#323232; /* text + icon color */
  font-weight:500;
}

.etq-account-btn:hover {
  
  color:#323232;
}

.pewc-total-field-wrapper {
  display: none !important;
}



/* Hide global WooCommerce out-of-stock message */
.woocommerce p.stock.out-of-stock,
.woocommerce div.product p.stock.out-of-stock,
.single-product div.product p.stock.out-of-stock {
    display: none !important;
}

/* 1. Hide by default */
.single-product .elementor-element-ed4e1b2 {
    display: none;
}

/* 2. Show only on products with tag "request-product" */
.single-product .product_tag-request-product .elementor-element-ed4e1b2 {
    display: block;
}

/* Hide RFQ container only on products tagged "request-product" */
.single-product .product_tag-request-product #rfq-container {
    display: none !important;
}