
/* ============================
   LIFE09 SHOP CUSTOMIZER PRO
   ============================ */

/* Global Background */
body,
#page,
.site,
.site-content,
.woocommerce-shop,
.woocommerce-cart,
.woocommerce-checkout {
    background-color: #ffffff !important;
}

/* Remove Breadcrumb (fallback) */
.woocommerce-breadcrumb {
    display: none !important;
}

/* Shop Title */
.woocommerce-products-header__title.page-title {
    font-size: 32px;
    font-weight: 600;
    color: #1f2a44;
    text-align: center;
    margin-bottom: 40px;
}

/* Product Grid */
.woocommerce ul.products {
    display: flex;
    gap: 32px;
}

/* Product Card */
.woocommerce ul.products li.product {
    position: relative;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* Hover Effect */
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.09);
}

/* Product Image */
.woocommerce ul.products li.product img {
    border-radius: 12px;
    margin-bottom: 18px;
}

/* Product Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a44;
    text-align: center;
    margin-bottom: 10px;
}

/* Price */
.woocommerce ul.products li.product .price {
    font-size: 17px;
    font-weight: 700;
    color: #e67e22;
    text-align: center;
    margin-bottom: 18px;
}

/* CTA Button */
.woocommerce a.button {
    background-color: #e67e22;
    color: #ffffff;
    border-radius: 30px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.woocommerce a.button:hover {
    background-color: #cf6d17;
}

/* Best Value Badge */
.woocommerce ul.products li.product.featured::before {
    content: "Best Value";
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1f2a44;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 20px;
}

/* Popular Badge */
.woocommerce ul.products li.product.on-sale::before {
    content: "Popular";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e67e22;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 20px;
}

/* Trust Section under products */
.woocommerce-after-shop-loop {
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    color: #555;
}

.woocommerce-after-shop-loop::before {
    content: "🔒 Secure Payments  |  💬 Confidential Support  |  ⭐ Trusted by Professionals";
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce ul.products {
        gap: 20px;
    }
    .woocommerce ul.products li.product {
        padding: 16px;
    }
}
