/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor (Shows 20 products per page)
Author: Your Name
Template: hello-elementor
Version: 1.0.1
*/

/* ============================= */
/* CLEAN PRODUCT CARD DESIGN */
/* ============================= */

/* Product Card Box */
.woocommerce ul.products li.product {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Image Center */
.woocommerce ul.products li.product img {
    margin-bottom: 15px;
}

/* Title Fix Height */
.woocommerce ul.products li.product h2 {
    font-size: 15px;
    font-weight: 500;
    min-height: 48px;
}

/* Stock Text */
.woocommerce ul.products li.product .stock {
    color: #28a745;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Price */
.woocommerce ul.products li.product .price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.woocommerce ul.products li.product .price del {
    color: #888;
    font-size: 14px;
}

/* Push button to bottom */
.woocommerce ul.products li.product .button {
    margin-top: auto;
    background: #17a2b8;
    color: #fff;
    border-radius: 4px;
    padding: 12px 14px;
  	width: 100%;
  	text-align: center;
}

.woocommerce ul.products li.product .button:hover {
    background: #138496;
}

/* Sale Badge */
.woocommerce span.onsale {
    background: #ff5722;
    border-radius: 30px;
    padding: 0px 5px;
    font-size: 12px;
}
/* Right Product Summary Box */
.single-product div.product .summary {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

/* Space below title */
.single-product .product_title {
    margin-bottom: 15px;
}

.single-product .price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.single-product .price del {
    color: #999;
    font-size: 18px;
}
.single-product .stock {
    color: #2e7d32;
    font-weight: 500;
    margin-bottom: 15px;
}
.single-product .quantity input {
    height: 45px;
    border: 1px solid #ddd;
    text-align: center;
}
.single-product .single_add_to_cart_button {
    background: #f4511e;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 6px;
}

.single-product .single_add_to_cart_button:hover {
    background: #d84315;
}

.woocommerce-loop-product__title {
  font-size: 14px;
  color: #1e1e1e;
  line-height: 17px;
}
.woocommerce-Price-amount {
  font-size: 16px;
  font-weight: 700;
  color: #1e1e1e;
}
