/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 06 2026 | 01:27:20 */
/* ==========================================================================
   ---- FIXED GLOBAL PRODUCT CARDS STYLING (PERFECT 1-LINE & BOX LOOK) ----
   ========================================================================== */

/* 1. Global Card Layout Fix */
ul.products li.product, 
.woocommerce ul.products li.product,
.elementor-products-grid ul.products li.product,
.woocommerce-grid .product {
    background: #ffffff !important;
    border: 1px solid #eef2f5 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease-in-out !important;
    position: relative;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

/* Card Hover Effect */
ul.products li.product:hover,
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 22px rgba(255, 90, 0, 0.12) !important;
    border-color: #ff5a00 !important;
}

/* 2. Product Image Fix (Orange Border Problem Solved) */
ul.products li.product img,
.woocommerce ul.products li.product img {
    border-radius: 8px !important;
    border: 1px solid #f0f0f0 !important; /* Mota orange border khatam */
    margin-bottom: 12px !important;
    transition: transform 0.3s ease !important;
    width: 100% !important;
    height: auto !important;
}

/* 3. Strictly 1-Line Title Fix (No Text Cutting) */
ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-grid .product h2.woocommerce-loop-product__title {
    display: block !important;
    white-space: nowrap !important; /* Strict 1 line stretch */
    overflow: hidden !important;
    text-overflow: ellipsis !important; /* Baqi text par ... lag jaye */
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #222222 !important;
    margin-top: 0px !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
    height: auto !important; /* Height bounds hataye taake text bottom se na chhupe */
    padding: 2px 0 !important;
}

/* 4. Price Layout Fix */
ul.products li.product .price,
.woocommerce ul.products li.product .price {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    display: block !important;
}

ul.products li.product .price del,
.woocommerce ul.products li.product .price del {
    color: #999999 !important;
    font-size: 13px !important;
    margin-right: 5px !important;
}

ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins {
    color: #ff5a00 !important;
    text-decoration: none !important;
}

/* 5. Buttons Styling & Spacing */
ul.products li.product .button,
.woocommerce ul.products li.product .button {
    display: block !important;
    text-align: center !important;
    padding: 10px 12px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    transition: all 0.2s ease-in-out !important;
    margin-top: 6px !important;
    box-sizing: border-box !important;
}

/* Add to Cart Button */
ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .add_to_cart_button {
    background-color: #ff5a00 !important;
    color: #ffffff !important;
    border: none !important;
}

ul.products li.product .add_to_cart_button:hover {
    background-color: #e04f00 !important;
}

/* Quick View Button */
ul.products li.product .yith-wcqv-button,
.woocommerce ul.products li.product .yith-wcqv-button {
    background-color: #f2f4f7 !important;
    color: #455a64 !important;
    border: 1px solid #e2e8f0 !important;
}

ul.products li.product .yith-wcqv-button:hover {
    background-color: #455a64 !important;
    color: #ffffff !important;
    border-color: #455a64 !important;
}

/* Sale Badge Fix */
ul.products li.product .onsale,
.woocommerce ul.products li.product .onsale {
    background-color: #ff5a00 !important;
    color: #ffffff !important;
    font-size: 10px !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    top: 12px !important;
    left: 12px !important;
}