/* SINGLE PRODUCT */
/* PRODUCT PAGE */

.ah-product-page{
    padding:80px 0;
    background:#F8FAFC;
}

.product-gallery-card{
    background:#fff;
    padding:25px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.product-details-card{
    position:sticky;
    top:120px;

    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.product-badge{
    display:inline-block;
    background:#DCFCE7;
    color:#166534;
    padding:8px 16px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:20px;
}

.product-title{
    font-size:48px;
    font-weight:800;
    color:#0F172A;
    line-height:1.1;
    margin-bottom:20px;
}

.product-short-desc{
    color:#64748B;
    line-height:1.9;
    margin:25px 0;
}

/* PRICE */

.product-price-box .price{
    display:flex;
    align-items:center;
    gap:12px;
}

.product-price-box ins{
    text-decoration:none;
}

.product-price-box ins .amount{
    font-size:40px;
    color:#16A34A;
    font-weight:900;
}

.product-price-box del .amount{
    font-size:20px;
    color:#94A3B8;
    text-decoration:line-through;
}

/* CART */

.product-cart-area{
    margin-top:25px;
}

.single_add_to_cart_button{
    background:#22C55E !important;
    border:none !important;
    border-radius:12px !important;
    padding:16px 35px !important;
}

/* TRUST */

.trust-boxes{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.trust-item{
    background:#F8FAFC;
    padding:15px;
    border-radius:12px;
    text-align:center;
    font-weight:600;
}

/* GALLERY FIX */

.woocommerce-product-gallery__image img{
    width:100% !important;
    height:auto !important;
    border-radius:18px;
}

.flex-control-thumbs{
    display:flex !important;
    gap:10px;
    margin-top:20px !important;
}

.flex-control-thumbs li{
    width:90px !important;
}

.flex-control-thumbs img{
    border-radius:10px;
}

/* TABS */

.product-tabs-section{
    padding:80px 0;
    background:#fff;
}

.woocommerce-tabs{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

/* MOBILE */

@media(max-width:991px){

    .product-title{
        font-size:32px;
    }

    .trust-boxes{
        grid-template-columns:1fr;
    }

    .product-details-card{
        position:relative;
        top:auto;
    }

}
/* ==========================
PRODUCT GALLERY MODERN UI
========================== */

.product-gallery-card{
    background:#ffffff;
    padding:25px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

/* Main Product Image */

.woocommerce-product-gallery__wrapper{
    margin-bottom:20px;
}

.woocommerce-product-gallery__image img{
    width:100% !important;
    height:auto !important;
    display:block;
    border-radius:20px;
}

/* Thumbnail Container */

.flex-control-thumbs{
    list-style:none !important;
    margin:0 !important;
    padding:15px !important;

    display:flex !important;
    gap:12px;

    flex-wrap:wrap;

    background:#F8FAFC;
    border-radius:16px;
}

/* Remove Number */

.flex-control-thumbs li{
    list-style:none !important;
    width:80px !important;
    margin:0 !important;
    padding:0 !important;
}

.flex-control-thumbs li::marker{
    content:'' !important;
    display:none !important;
}

/* Thumbnail */

.flex-control-thumbs img{

    width:100% !important;
    height:80px !important;

    object-fit:cover;

    border-radius:12px;

    border:2px solid transparent;

    cursor:pointer;

    transition:.3s ease;

}

/* Hover */

.flex-control-thumbs img:hover{

    border-color:#22C55E;

    transform:translateY(-2px);

}

/* Active Image */

.flex-control-thumbs .flex-active{

    border:3px solid #22C55E !important;

    box-shadow:
    0 0 0 4px rgba(34,197,94,.15),
    0 8px 20px rgba(34,197,94,.25);

}

/* Product Image Zoom Effect */

.woocommerce-product-gallery__image{

    overflow:hidden;
    border-radius:20px;

}

.woocommerce-product-gallery__image img{

    transition:.4s;

}

.woocommerce-product-gallery__image:hover img{

    transform:scale(1.03);

}

/* Mobile */

@media(max-width:768px){

    .flex-control-thumbs{

        justify-content:center;

    }

    .flex-control-thumbs li{

        width:65px !important;

    }

    .flex-control-thumbs img{

        height:65px !important;

    }

}



/*tabs page css start */
/* PRODUCT TABS */

.ah-tabs-wrapper{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.ah-tabs-nav{
    display:flex;
    gap:15px;
    list-style:none;
    padding:0;
    margin:0 0 30px;
    flex-wrap:wrap;
}

.ah-tabs-nav li{
    cursor:pointer;
}

.ah-tabs-nav li a{
    display:block;
    padding:14px 24px;
    border-radius:12px;
    background:#F1F5F9;
    color:#111827;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.ah-tabs-nav li.active a{
    background:#16A34A;
    color:#fff;
}

.ah-tab-pane{
    display:none;
}

.ah-tab-pane.active{
    display:block;
}

.ah-tab-pane h2{
    font-size:32px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.ah-tab-pane p{
    color:#64748B;
    line-height:1.9;
    font-size:16px;
}

.ah-tab-pane ul{
    padding-left:20px;
}

.ah-tab-pane li{
    margin-bottom:10px;
    color:#475569;
}

/* Reviews */

#tab-reviews{
    background:#FAFAFA;
    border-radius:16px;
    padding:25px;
}

/* Mobile */

@media(max-width:768px){

    .ah-tabs-wrapper{
        padding:20px;
    }

    .ah-tabs-nav{
        flex-direction:column;
    }

    .ah-tabs-nav li a{
        width:100%;
        text-align:center;
    }

}

/* Product Description Content */

.woocommerce-Tabs-panel img{
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto 25px;
    float:none !important;
}

.woocommerce-Tabs-panel p{
    clear:both;
}

.woocommerce-Tabs-panel h1,
.woocommerce-Tabs-panel h2,
.woocommerce-Tabs-panel h3,
.woocommerce-Tabs-panel h4,
.woocommerce-Tabs-panel h5{
    clear:both;
    display:block;
    width:100%;
    margin-top:25px;
}

/*tabs page css end */


/*review ke liye css start*/
/* Review Form */

#review_form_wrapper{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.comment-form{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.review-col{
    width:calc(50% - 8px);
}

.review-col input{
    width:100%;
    height:55px;
    border:1px solid #E5E7EB;
    border-radius:12px;
    padding:0 15px;
    font-size:15px;
}

.comment-form-comment{
    width:100%;
}

.comment-form-comment textarea{
    width:100%;
    min-height:150px;
    border:1px solid #E5E7EB;
    border-radius:12px;
    padding:15px;
}

.comment-form-rating{
    width:100%;
}

#submit{
    background:#16A34A;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:14px 35px;
    font-weight:700;
}

@media(max-width:768px){

    .review-col{
        width:100%;
    }

}



/* Review Submit Button */

#submit,
input[type="submit"]{

    background:linear-gradient(
        135deg,
        #16A34A,
        #22C55E
    ) !important;

    color:#fff !important;

    border:none !important;

    height:55px;

    padding:0 35px;

    border-radius:14px;

    font-size:16px;

    font-weight:700;

    letter-spacing:.3px;

    cursor:pointer;

    transition:.3s ease;

    box-shadow:
    0 10px 25px rgba(34,197,94,.30);

}

#submit:hover,
input[type="submit"]:hover{

    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        #15803D,
        #16A34A
    ) !important;

    box-shadow:
    0 15px 35px rgba(34,197,94,.40);

}

#submit:active,
input[type="submit"]:active{

    transform:scale(.98);

}

/* Full Width Mobile */

@media(max-width:768px){

    #submit,
    input[type="submit"]{

        width:100%;

        height:52px;

        font-size:15px;

    }

}

#submit{
    position:relative;
    padding-left:55px;
}

#submit::before{
    content:"★";
    position:absolute;
    left:22px;
    top:50%;
    transform:translateY(-50%);
    font-size:16px;
}


/*review css end*/


/*single-product-revies page css start */
#review_form_wrapper{
    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-top:30px;
}

.comment-form{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.review-col{
    width:calc(50% - 8px);
}

.review-col input{
    width:100%;
    height:55px;
    border:1px solid #E5E7EB;
    border-radius:12px;
    padding:0 15px;
}

.review-rating{
    width:100%;
}

.review-rating select{
    width:100%;
    height:55px;
    border:1px solid #E5E7EB;
    border-radius:12px;
    padding:0 15px;
}

.review-full{
    width:100%;
}

.review-full textarea{
    width:100%;
    border:1px solid #E5E7EB;
    border-radius:12px;
    padding:15px;
    min-height:150px;
}

.submit{
    background:#16A34A !important;
    color:#fff !important;
    border:none !important;
    padding:14px 35px !important;
    border-radius:12px !important;
    font-weight:700 !important;
}

@media(max-width:768px){

    .review-col{
        width:100%;
    }

}





/*archive product php page css start */
.shop-hero{
    padding:30px 0 20px;
    text-align:center;
    background:linear-gradient(180deg,#f7fff8,#ffffff);
}

.shop-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#dcfce7;
    color:#15803d;
    font-weight:700;
}

.shop-title{
    font-size:64px;
    font-weight:900;
    color:#064e3b;
    margin:20px 0 10px;
}

.shop-desc{
    color:#64748b;
    font-size:18px;
}

.shop-products{
    padding:40px 0 80px;
}

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.sale-badge{
    position:absolute;
    top:15px;
    left:15px;
    z-index:5;
    background:#ef4444;
    color:#fff;
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.product-img{
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
    text-align:center;
}

.product-content h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
}

.product-content h3 a{
    color:#0f172a;
    text-decoration:none;
}

.product-short{
    color:#64748b;
    font-size:15px;
    line-height:1.7;
    min-height:55px;
}

.product-price{
    margin:20px 0;
}

.product-price del{
    display:block;
    color:#94a3b8;
    font-size:18px;
}

.product-price ins{
    text-decoration:none;
}

.product-price ins .amount,
.product-price .amount{
    color:#16a34a;
    font-size:34px;
    font-weight:900;
}

.product-actions{
    display:flex;
    gap:10px;
}

.view-btn,
.cart-btn{
    flex:1;
    text-align:center;
    padding:14px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.view-btn{
    background:#22c55e;
    color:#fff;
}

.view-btn:hover{
    background:#16a34a;
    color:#fff;
}

.cart-btn{
    border:2px solid #22c55e;
    color:#22c55e;
}

.cart-btn:hover{
    background:#22c55e;
    color:#fff;
}

@media(max-width:991px){

    .shop-title{
        font-size:42px;
    }

    .product-img img{
        height:260px;
    }

    .product-actions{
        flex-direction:column;
    }
}
.shop-hero{
    padding:30px 0 30px;
    background:linear-gradient(
        180deg,
        #f8fffa 0%,
        #ffffff 100%
    );
    text-align:center;
    position:relative;
}

.shop-badge{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:#dcfce7;
    color:#15803d;
    font-size:15px;
    font-weight:700;
    margin-bottom:25px;
}

.shop-title{
    font-size:72px;
    font-weight:900;
    line-height:1;
    color:#064e3b;
    margin-bottom:10px;
    letter-spacing:-2px;
}

.shop-desc{
    max-width:700px;
    margin:0 auto;
    font-size:20px;
    line-height:1.8;
    color:#64748b;
}
.hero-divider{
    width:120px;
    height:5px;
    background:linear-gradient(
        90deg,
        #22c55e,
        #16a34a
    );
    margin:20px auto 0;
    border-radius:50px;
}
@media(max-width:991px){

    .shop-hero{
        padding:30px 0 60px;
    }

    .shop-title{
        font-size:46px;
    }

    .shop-desc{
        font-size:17px;
    }
}

/*shop page css end */

/*products page css strat */
/* =========================
   PRODUCTS PAGE
========================= */

.products-page{
    padding:30px 0 90px 0;
    background:
    linear-gradient(
    180deg,
    #F8FAFC,
    #ffffff
    );
}

.shop-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 24px;

    background:#DCFCE7;

    color:#166534;

    border-radius:999px;

    font-weight:700;

    margin-bottom:20px;
}

.products-page h1{
    font-size:60px;
    font-weight:800;
    color:#064E3B;
    margin-bottom:15px;
}

.products-page p{
    color:#64748B;
    font-size:18px;
}

/* Product Card */

.product-card{
    background:#fff;

    border-radius:24px;

    overflow:hidden;

    height:100%;

    border:1px solid #E5E7EB;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s ease;
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

/* Content */

.product-content{
    padding:25px;
    text-align:center;
}

.product-content h3{
    font-size:24px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:15px;
}

.product-content h3 a{
    color:#111827;
    text-decoration:none;
}

.product-content h3 a:hover{
    color:#16A34A;
}

.product-price{
    font-size:30px;
    font-weight:800;
    color:#16A34A;
    margin-bottom:20px;
}

/* Buttons */

.product-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:180px;
    height:55px;

    background:
    linear-gradient(
    135deg,
    #16A34A,
    #22C55E
    );

    color:#fff !important;

    text-decoration:none;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.product-btn:hover{

    transform:translateY(-3px);

    color:#fff !important;
}

/* Optional Sale Badge */

.product-card{
    position:relative;
}

.product-card .onsale{

    position:absolute;

    top:15px;
    left:15px;

    background:#EF4444;

    color:#fff;

    font-size:13px;

    padding:8px 14px;

    border-radius:999px;

    font-weight:700;

    z-index:2;
}

/* Mobile */

@media(max-width:991px){

    .products-page h1{
        font-size:42px;
    }

    .product-card img{
        height:280px;
    }

}

@media(max-width:768px){

    .products-page{
        padding:70px 0;
    }

    .products-page h1{
        font-size:32px;
    }

    .products-page p{
        font-size:16px;
    }

    .product-card img{
        height:240px;
    }

    .product-content{
        padding:18px;
    }

    .product-content h3{
        font-size:20px;
    }

    .product-price{
        font-size:24px;
    }

    .product-btn{
        width:100%;
    }

}

/*product page css end */

/*archive product php pge css end*/


/*sigle prduct revies page css end */


.product-desc{
    font-size:15px;
    line-height:1.7;
    color:#64748B;
    margin:12px 0 18px;
    min-height:70px;
}


/*input type qyy start*/

/* ==========================
MODERN QTY INPUT
========================== */

.quantity{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.input-text.qty.text{

    width:80px !important;
    height:52px !important;

    border:2px solid #E5E7EB !important;

    border-radius:14px !important;

    background:#F8FAFC !important;

    text-align:center !important;

    font-size:18px !important;

    font-weight:700 !important;

    color:#0F172A !important;

    outline:none !important;

    box-shadow:none !important;

    transition:.3s;
}

.input-text.qty.text:focus{

    border-color:#22C55E !important;

    background:#fff !important;

    box-shadow:
    0 0 0 4px rgba(34,197,94,.12) !important;

}

/* Remove browser arrows */

.input-text.qty.text::-webkit-outer-spin-button,
.input-text.qty.text::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.input-text.qty.text{
    -moz-appearance:textfield;
}
.qty-modern{

    display:flex;
    align-items:center;
    gap:10px;

}

.qty-minus,
.qty-plus{

    width:48px;
    height:48px;

    border:none;

    border-radius:12px;

    background:#22C55E;

    color:#fff;

    font-size:24px;
    font-weight:700;

    cursor:pointer;

}

/*input tye qyt end */