/*
Theme Name: GenzDeals Child
Template: hello-elementor
Version: 1.0
*/

.livedeals1-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:20px !important;
    width:100% !important;
}

.livedeals1-card{
    display:flex !important;
    align-items:center !important;
    gap:15px !important;
    padding:15px !important;
    border:1px solid #e5e5e5 !important;
    border-radius:10px !important;
    background:#fff !important;
    box-sizing:border-box !important;
    min-height:220px !important;
    overflow:visible !important;
}

.livedeals1-card:hover{
    transform:translateY(-3px);
    box-shadow:0 4px 15px rgba(0,0,0,.1);
}
.livedeals1-left{
    width:180px !important;
    min-width:180px !important;
    position:relative !important;
    overflow:visible !important;
}

.livedeals1-product-img{
    width:180px !important;
    height:180px !important;
    object-fit:contain !important;
    display:block !important;
}

.livedeals1-discount{
    position:absolute !important;
    top:5px !important;
    left:5px !important;

    width:55px !important;
    height:55px !important;

    border-radius:50% !important;
    background:#e74c3c !important;
    color:#fff !important;

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    text-align:center !important;
    font-size:11px !important;
    font-weight:700 !important;
    line-height:1.1 !important;

    z-index:9999 !important;
}

.livedeals1-discount{
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}

.livedeals1-right{
    flex:1 !important;
    min-width:0 !important;
}

.livedeals1-title{
    font-size:16px !important;
    font-weight:700 !important;
    line-height:1.4 !important;
    margin:0 0 10px !important;

    display:-webkit-box !important;
    -webkit-line-clamp:2 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
}

.livedeals1-price-row{
    margin-bottom:8px !important;
}

.livedeals1-current-price{
    font-size:24px !important;
    font-weight:700 !important;
    color:#000 !important;
}
.livedeals1-current-price{
    color:#111;
    font-size:28px;
}

.livedeals1-original-price{
    margin-left:8px !important;
    color:#888 !important;
    text-decoration:line-through !important;
    font-size:15px !important;
}

.livedeals1-store{
    margin:8px 0 !important;
}

.livedeals1-store img{
    width:70px !important;
    max-width:70px !important;
    height:22px !important;
    object-fit:contain !important;
    display:block !important;
}

.livedeals1-buy-btn{
    display:inline-block !important;
    background:#2f6ea8 !important;
    color:#fff !important;
    padding:8px 18px !important;
    border-radius:4px !important;
    text-decoration:none !important;
    font-weight:600 !important;
}
.livedeals1-buy-btn::before{
    content:"🛒";
    color:#fff !important;
    font-size:16px;
    display:inline-block;
    margin-right:5px;
}

@media(max-width:1024px){
    .livedeals1-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}

@media(max-width:768px){
    .livedeals1-grid{
        grid-template-columns:1fr !important;
    }

    .livedeals1-left{
        width:120px !important;
        min-width:120px !important;
    }

    .livedeals1-product-img{
        width:120px !important;
        height:120px !important;
    }
}


/* ==================================================
   COUPONS SECTION CSS
   Shortcode: [coupons1]
   ================================================== */


/* Coupon Grid */
.coupons1-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:20px !important;
    width:100% !important;
}


/* Coupon Card */
.coupons1-card{
    display:flex !important;
    align-items:center !important;
    background:#fff !important;
    border:1px solid #dbe6f1 !important;
    border-left:4px solid #2f6ea8 !important;
    border-radius:8px !important;
    padding:20px !important;
    box-sizing:border-box !important;
}


/* Left Section */
.coupons1-left{
    width:140px !important;
    min-width:140px !important;
    text-align:center !important;
    border-right:1px dashed #ccc !important;
    padding-right:15px !important;
}


/* Discount Text */
.coupons1-discount{
    font-size:28px !important;
    font-weight:700 !important;
    color:#2f4f7f !important;
    line-height:1.3 !important;
    margin-bottom:15px !important;
}


/* Store Logo */
.coupons1-logo{
    max-width:80px !important;
    max-height:40px !important;
    width:auto !important;
    height:auto !important;
    object-fit:contain !important;
}


/* Right Section */
.coupons1-right{
    flex:1 !important;
    padding-left:20px !important;
}


/* Coupon Title */
.coupons1-title{
    font-size:20px !important;
    font-weight:600 !important;
    line-height:1.4 !important;
    margin-bottom:15px !important;
}


/* Coupon Code */
.coupons1-code{
    display:inline-block !important;
    background:#f7f7f7 !important;
    border:1px dashed #999 !important;
    padding:8px 15px !important;
    font-size:15px !important;
    font-weight:700 !important;
    margin-bottom:15px !important;
}


/* View Coupon Button */
.coupons1-btn{
    display:inline-block !important;
    background:#2f6ea8 !important;
    color:#fff !important;
    padding:10px 20px !important;
    border-radius:4px !important;
    text-decoration:none !important;
    font-weight:600 !important;
}

.coupons1-btn:hover{
    opacity:.9 !important;
}


/* Tablet */
@media(max-width:1024px){

    .coupons1-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

}


/* Mobile */
@media(max-width:768px){

    .coupons1-grid{
        grid-template-columns:1fr !important;
    }

    .coupons1-card{
        flex-direction:column !important;
        text-align:center !important;
    }

    .coupons1-left{
        border-right:none !important;
        border-bottom:1px dashed #ccc !important;
        padding-right:0 !important;
        padding-bottom:15px !important;
        margin-bottom:15px !important;
    }

    .coupons1-right{
        padding-left:0 !important;
    }

}

/* Coupon Info */
.livedeals1-coupon-info{
    color:#d35400;
    font-size:13px;
    font-weight:600;
    margin:6px 0;
}

/* Extra Row */
.livedeals1-extra-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
    gap:10px;
}

/* COD Badge */
.livedeals1-cod{
    background:#ffebee;
    color:#e53935;
    border:1px solid #ffcdd2;
    padding:3px 8px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
}

/* Upload Time */
.livedeals1-time{
    color:#777;
    font-size:12px;
}

