/*
Theme Name:   	kutetheme-child
Theme URI: 		http://kutethemes.com/
Description:  	kutetheme child
Author:       	KuteTheme
Author URI:   	http://kutethemes.com/
Template:     	kutetheme
Version:      	1.0.0
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Tags:         	two-columns, left-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, translation-ready
Text Domain: 	kutetheme
*/
 
 @import url("../kutetheme/style.css");

.product-list {
    position: relative;
}
.nav-top-menu {
    background: #ff0304 !important;
}
.product-list > .text {
    display: none !important;
}
/* =====================================================
   SHOP BY CATEGORY
===================================================== */

.ali-category-section{
    margin:30px 0 50px;
}

.ali-heading{
    text-align:center;
    margin-bottom:40px;
}

.ali-heading span{
    color:#ff6600;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.ali-heading h2{
    font-size:42px;
    margin:10px 0;
    color:#222;
}

.ali-heading p{
    color:#777;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* =====================================================
   CATEGORY GRID
===================================================== */
.ali-category-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap: 33px;
}

.ali-category-card{
    width:100%;
}

.ali-category-card{
    background:#fff;
    text-align:center;
    padding:20px 15px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .3s ease;
    height:100%;
}

.ali-category-card:hover{
    transform:translateY(-6px);
}

.ali-category-card a{
    text-decoration:none;
}

/* =====================================================
   CATEGORY IMAGE
===================================================== */

.ali-image{
    width:140px;
    height:140px;
    margin:0 auto 15px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
    border:8px solid #f4f4f4;
}

.ali-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =====================================================
   CATEGORY CONTENT
===================================================== */

.ali-content{
    text-align:center;
}

.ali-content h3{
    color:#222;
    font-size:20px;
    font-weight:600;
    margin:10px 0 5px;
}

.ali-content span{
    color:#777;
    font-size:14px;
}

/* ======================================================
   PRODUCT SECTION
====================================================== */

.ali-section{
    margin:50px 0;
}

.ali-section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:2px solid #f2f2f2;
}

.ali-section-header h2{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#222;
}

.ali-view-all{
    padding:10px 18px;
    border-radius:6px;
    background:#ff6600;
    color:#fff !important;
    text-decoration:none;
    transition:.3s;
}

.ali-view-all:hover{
    background:#222;
}

/* ======================================================
   PRODUCT GRID
====================================================== */

.ali-product-grid{
    display:grid !important;
    grid-template-columns:repeat(6, minmax(180px, 1fr));
    gap:20px;
}

.ali-product-card{
    position:relative;
    overflow:hidden;
    padding:15px;
    border-radius:12px;
    background:#fff;
    text-align:center;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.ali-product-card:hover{
    transform:translateY(-5px);
}

.ali-product-card a{
    display:block;
    text-decoration:none;
}

/* ======================================================
   PRODUCT IMAGE
====================================================== */

.ali-product-image{
    height: 190px;
    overflow:hidden;
    border-radius:10px;
}

.ali-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.3s;
}

.ali-product-card:hover .ali-product-image img{
    transform:scale(1.05);
}

/* ======================================================
   PRODUCT TITLE
====================================================== */

.ali-product-card h3{
    margin-top:15px;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
    color:#222;
    min-height:45px;
}

/* ======================================================
   PRICE
====================================================== */

.ali-price{
    margin-top:8px;
    color:#ff6600;
    font-size:18px;
    font-weight:700;
}

/* ======================================================
   ADD TO CART BUTTON
====================================================== */

.ali-cart-button{
    position:absolute;
    left:15px;
    right:15px;
    bottom:-70px;
    opacity:0;
    transition:.3s;
}

.ali-product-card:hover .ali-cart-button{
    bottom:15px;
    opacity:1;
}

.ali-cart-button .button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:6px;
    background:#ff6600;
    color:#fff !important;
    font-weight:600;
}

.ali-cart-button .button:hover{
    background:#222;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width:1400px){

    .ali-product-grid{
        grid-template-columns:repeat(5,1fr);
    }
}

@media (max-width:1200px){

    .ali-product-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media (max-width:992px){

    .ali-product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){

    .ali-product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ali-section-header{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }
}

@media (max-width:480px){

    .ali-product-grid{
        grid-template-columns:repeat(1,1fr);
    }
}

.ali-about-section{
    display:flex;
    align-items:center;
    gap:50px;
    padding: 50px 0;
}

.ali-about-left{
    flex:1;
}

.ali-about-right{
    flex:1;
}

.ali-about-right img{
    width:100%;
    border-radius:20px;
}

.ali-about-left span{
    color:#ff6600;
    font-weight:700;
    text-transform:uppercase;
}

.ali-about-left h2{
    font-size:42px;
    margin:15px 0;
    line-height:1.3;
}

.ali-about-left p{
    color:#666;
    line-height:1.8;
}

.ali-about-features{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.ali-feature-box{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.ali-feature-box h3{
    color: #000000;
    font-size:28px;
    margin-bottom:5px;
    margin-top: 0px;
}

.ali-about-btn{
    display:inline-block;
    margin-top:30px;
    padding:12px 30px;
    background:#ff6600;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
}

.ali-about-btn:hover{
    background:#222;
    color:#fff;
}

@media(max-width:768px){

    .ali-about-section{
        flex-direction:column;
    }

    .ali-about-left h2{
        font-size:30px;
    }

    .ali-about-features{
        flex-direction:column;
    }
}

.ali-delivery-ticker{
    width:100%;
    overflow:hidden;
    background:#ff6600;
    padding:15px 0;
}

.ali-delivery-track{
    display:flex;
    width:max-content;
    animation:aliTicker 40s linear infinite;
}

.ali-delivery-track span{
    flex-shrink:0;
    margin-right:60px;
    color:#fff;
	text-transform:uppercase;
    font-size:18px;
    font-weight:600;
}

@keyframes aliTicker{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

@media (max-width:768px){

    .ali-delivery-track span{
        font-size:14px;
        margin-right:40px;
    }
}

.ali-service-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin: 0px 0;
}

.ali-service-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#f4fff9;
    border-radius:12px;
    padding: 13px;
    transition:.3s;
    border:1px solid #e4e4e4;
}

.ali-service-box:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.ali-icon{
    width: 50px;
    height: 50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#0d6832;
    color:#fff;
    font-size:30px;
}

.ali-text h3{
    margin: 0 0 0px;
    color:#222;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.ali-text p{
    margin:0;
    color:#666;
    line-height:1.6;
}

@media(max-width:992px){

    .ali-service-section{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .ali-service-section{
        grid-template-columns:1fr;
    }

    .ali-service-box{
        padding:20px;
    }

    .ali-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }
}
.vc_do_custom_heading {
    font-weight: 700;
}
.ali-footer{background:#06683c;padding: 40px 50px 25px;color:#fff;}


.ali-footer-container{

max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:60px;

}



.ali-footer-col h3{

font-size:24px;

margin-bottom:25px;

color:#fff;

}



.ali-footer-col p{

color:#d8e9df;

line-height:1.8;

font-size:15px;

}



.ali-footer-col ul{

padding:0;

margin:0;

list-style:none;

}



.ali-footer-col ul li{

margin-bottom:14px;

}



.ali-footer-col ul li a{

color:#fff;

text-decoration:none;

transition:.3s;

}



.ali-footer-col ul li a:hover{

color:#ff6600;

padding-left:6px;

}



/* Payment */


.ali-payment-icons{

margin-top:25px;

display:flex;

gap:15px;

}



.ali-payment-icons i{

font-size:38px;

color:white;

transition:.3s;

}


.ali-payment-icons i:hover{

color:#ff6600;

}



/* Contact */


.ali-contact-item{

display:flex;

align-items:center;

gap:15px;

margin-bottom:18px;

color:#eee;

}


.ali-contact-item i{

width:38px;

height:38px;

background:#08794a;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}



/* Social */


.ali-footer-col h4{

margin-top:25px;

font-size:18px;

}



.ali-social{

display:flex;

gap:12px;

}



.ali-social a{

width:42px;

height:42px;

border-radius:50%;

background:#08794a;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

transition:.3s;

}



.ali-social a:hover{

background:#ff6600;

transform:translateY(-3px);

}



/* Bottom */


.ali-footer-bottom{

border-top:1px solid rgba(255,255,255,.2);

margin-top:50px;

padding-top:20px;

text-align:center;

color:#ddd;

font-size:14px;

}



@media(max-width:991px){

.ali-footer-container{

grid-template-columns:1fr;

gap:35px;

}

}