/*==========================================
        SHOP PAGE
        Your Wellnez
==========================================*/

/*==========================================
        GLOBAL
==========================================*/

:root{

    --primary:#F4A51C;
    --primary-dark:#d98b00;
    --bg:#FFFDF8;
    --white:#ffffff;
    --text:#222222;
    --text-light:#666666;
    --border:#ececec;
    --shadow:0 15px 45px rgba(0,0,0,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--text);

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

button{

    font-family:inherit;

    cursor:pointer;

}

/*==========================================
            SHOP HERO
==========================================*/

.shop-hero{

    padding:140px 0 90px;

    background:linear-gradient(135deg,#fffdf8,#fff5e7);

    overflow:hidden;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.hero-content{

    max-width:560px;

}

.hero-badge{

    display:inline-block;

    padding:10px 22px;

    background:#fff;

    color:var(--primary);

    border-radius:40px;

    font-weight:600;

    box-shadow:var(--shadow);

    margin-bottom:25px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero-content p{

    font-size:17px;

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

}

.primary-btn{

    background:var(--primary);

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    transform:translateY(-4px);

    background:var(--primary-dark);

}

.secondary-btn{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:var(--primary);

    color:#fff;

}

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-circle{

    position:absolute;

    width:470px;

    height:470px;

    background:#ffe7b7;

    border-radius:50%;

    filter:blur(5px);

}

.hero-image img{

    position:relative;

    width:100%;

    max-width:430px;

    z-index:2;

    transition:.4s;

}

.hero-image img:hover{

    transform:scale(1.04);

}
/*==========================================
            SHOP TOOLBAR
==========================================*/

.shop-section{
    padding:80px 0 100px;
    background:#faf9f5;
}

.shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    margin-bottom:50px;
}

.toolbar-left h2{
    font-size:34px;
    color:#222;
    font-weight:700;
}

.toolbar-left p{
    margin-top:8px;
    color:#777;
    font-size:15px;
}

.toolbar-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.search-box{
    width:340px;
    height:55px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:50px;
    display:flex;
    align-items:center;
    padding:0 22px;
    transition:.3s;
}

.search-box:focus-within{
    border-color:#F4A51C;
    box-shadow:0 10px 25px rgba(244,165,28,.15);
}

.search-box i{
    color:#999;
}

.search-box input{
    flex:1;
    border:none;
    outline:none;
    margin-left:12px;
    font-size:15px;
    background:transparent;
}

#sortProducts{
    height:55px;
    min-width:200px;
    border-radius:50px;
    border:1px solid #ececec;
    background:#fff;
    padding:0 20px;
    font-size:15px;
    outline:none;
    cursor:pointer;
}

/*==========================================
            SHOP LAYOUT
==========================================*/

.shop-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:35px;
    align-items:start;
}

/*==========================================
            FILTER SIDEBAR
==========================================*/

.filter-sidebar{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    position:sticky;
    top:110px;
}

.filter-sidebar h3{
    font-size:22px;
    margin-bottom:25px;
}

.filter-group{
    margin-bottom:30px;
    padding-bottom:22px;
    border-bottom:1px solid #f1f1f1;
}

.filter-group:last-child{
    border-bottom:none;
    margin-bottom:0;
}

.filter-group h4{
    font-size:16px;
    margin-bottom:15px;
}

.filter-group label{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    color:#555;
    cursor:pointer;
    font-size:15px;
}

.filter-group input[type="checkbox"]{
    accent-color:#F4A51C;
}

.filter-group input[type="range"]{
    width:100%;
    margin:15px 0;
    accent-color:#F4A51C;
}

#priceValue{
    display:block;
    color:#F4A51C;
    font-weight:600;
}

.clear-filter{
    width:100%;
    height:52px;
    border:none;
    border-radius:14px;
    background:#F4A51C;
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.clear-filter:hover{
    background:#d98b00;
}

/*==========================================
            PRODUCTS GRID
==========================================*/

.products-area{
    width:100%;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:30px;
}
/*==========================================
            PREMIUM PRODUCT CARD
==========================================*/

.product-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.35s ease;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.product-card.search-highlight{
    box-shadow:0 0 0 3px var(--primary,#D4A017), 0 12px 35px rgba(0,0,0,.05) !important;
    animation:searchPulse 1.4s ease-in-out 2;
}

@keyframes searchPulse{
    0%,100%{ transform:scale(1); }
    50%{ transform:scale(1.015); }
}


.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 55px rgba(0,0,0,.10);

}

/* Full-card click link: sits over the image + title areas but never blocks
   the wishlist/quick-view buttons or the Add to Cart / Buy Now row. */
.product-card-link{

    position:absolute;

    inset:0;

    z-index:1;

    opacity:0;

    cursor:pointer;

}

.product-card .product-actions,
.product-card .product-buttons,
.product-card .cart-btn,
.product-card .buy-btn,
.product-card .wishlist-btn,
.product-card .quick-btn{
    position:relative;
    z-index:2;
}

/* Badge */

.product-badge{

    position:absolute;

    top:18px;

    left:18px;

    z-index:5;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    color:#fff;

}

.product-badge.bestseller{

    background:#F4A51C;

}

.product-badge.new{

    background:#27ae60;

}

/* Wishlist */

.product-actions{

    position:absolute;

    top:18px;

    right:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

    z-index:5;

}

.product-actions button{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0;

    line-height:1;

}

.product-actions button:hover{

    background:#F4A51C;

    color:#fff;

}

/* Product Image */

.product-image{

    height:340px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fffaf2;

    padding:35px;

}

.product-image img{

    max-height:260px;

    object-fit:contain;

    transition:.4s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

/* Content */

.product-content{

    padding:28px;

}

.product-category{

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

    color:#999;

}

.product-content h3{

    margin:12px 0;

    font-size:24px;

    color:#222;

}

.rating{

    color:#F4A51C;

    font-size:15px;

    margin-bottom:20px;

}

.rating span{

    color:#777;

    margin-left:10px;

}

.product-features{

    list-style:none;

    margin:0;

    padding:0;

}

.product-features li{

    padding:8px 0;

    color:#555;

    border-bottom:1px solid #f4f4f4;

}

.product-features li:last-child{

    border-bottom:none;

}

/* Price */

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:28px 0;

}

.price-row h4{

    font-size:32px;

    color:#222;

}

.price-row del{

    display:block;

    margin-top:6px;

    color:#999;

}

.save-price{

    padding:8px 14px;

    border-radius:30px;

    background:#fff6df;

    color:#F4A51C;

    font-weight:600;

    font-size:13px;

}

/* Buttons */

.product-buttons{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;

}

.cart-btn{

    height:52px;

    border:none;

    border-radius:14px;

    background:#F4A51C;

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.cart-btn:hover{

    background:#d88c00;

}

.buy-btn{

    height:52px;

    border:2px solid #F4A51C;

    border-radius:14px;

    background:#fff;

    color:#F4A51C;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.buy-btn:hover{

    background:#F4A51C;

    color:#fff;

}
/*==========================================
            COMBO OFFER
==========================================*/

.combo-offer{
    padding:90px 0;
    background:#fff;
}

.combo-box{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:50px;
    background:linear-gradient(135deg,#fff8eb,#fff3de);
    border-radius:30px;
    padding:60px;
    overflow:hidden;
}

.combo-tag{
    display:inline-block;
    padding:10px 20px;
    background:#F4A51C;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.combo-content h2{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
}

.combo-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.combo-price{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}

.combo-price h3{
    font-size:42px;
    color:#F4A51C;
}

.combo-price del{
    color:#888;
    font-size:20px;
}

.combo-btn{
    padding:16px 36px;
    border:none;
    border-radius:50px;
    background:#F4A51C;
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.combo-btn:hover{
    background:#d98b00;
    transform:translateY(-3px);
}

.combo-image{
    display:flex;
    justify-content:center;
}

.combo-image img{
    max-width:360px;
}

/*==========================================
                FOOTER
==========================================*/

.footer{
    background:#1f1f1f;
    color:#fff;
    padding:70px 0 40px;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-brand img{
    width:70px;
    margin-bottom:20px;
}

.footer h3,
.footer h4{
    margin-bottom:18px;
}

.footer p{
    color:#cfcfcf;
    line-height:1.8;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#ddd;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:#F4A51C;
}

/*==========================================
            QUICK VIEW MODAL
==========================================*/

.quick-view-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:1000;
}

.quick-view-content{
    width:90%;
    max-width:900px;
    background:#fff;
    border-radius:24px;
    padding:40px;
    position:relative;
}

.close-modal{
    position:absolute;
    top:20px;
    right:20px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#F4A51C;
    color:#fff;
}

/*==========================================
            CART DRAWER
==========================================*/

.cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    display:none;
    z-index:998;
}

.cart-drawer{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    max-width:100%;
    height:100vh;
    background:#fff;
    transition:.35s;
    z-index:999;
    display:flex;
    flex-direction:column;
}

.cart-drawer.active{
    right:0;
}

.cart-header{
    padding:25px;
    border-bottom:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.close-cart{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#F4A51C;
    color:#fff;
}

.cart-items{
    flex:1;
    overflow:auto;
    padding:25px;
}

.cart-footer{
    padding:25px;
    border-top:1px solid #eee;
}

.checkout-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:14px;
    background:#F4A51C;
    color:#fff;
    font-size:16px;
    font-weight:600;
}
/*==========================================
            TOAST
==========================================*/

.toast{
    position:fixed;
    right:30px;
    bottom:30px;
    background:#222;
    color:#fff;
    padding:16px 24px;
    border-radius:14px;
    display:flex;
    align-items:center;
    gap:10px;
    opacity:0;
    transform:translateY(20px);
    transition:.3s;
    z-index:9999;
}

.toast.show{
    opacity:1;
    transform:translateY(0);
}

.toast i{
    color:#7ed957;
}
/*==========================================
        RESPONSIVE
==========================================*/

/* Laptop */
@media (max-width:1200px){

    .container{
        width:95%;
    }

    .hero-wrapper{
        gap:40px;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-image img{
        max-width:380px;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

}

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

    .shop-hero{
        padding:120px 0 70px;
    }

    .hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-image{
        margin-top:30px;
    }

    .hero-image img{
        max-width:300px;
    }

    .hero-circle{
        width:340px;
        height:340px;
    }

    .shop-toolbar{
        flex-direction:column;
        align-items:stretch;
        gap:20px;
    }

    .toolbar-right{
        width:100%;
        flex-direction:column;
        gap:15px;
    }

    .search-box,
    #sortProducts{
        width:100%;
    }

    .shop-layout{
        grid-template-columns:1fr;
    }

    .filter-sidebar{
        position:static;
        margin-bottom:30px;
    }

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

    .combo-box{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

}
/*==========================================
        MOBILE
==========================================*/

@media (max-width:768px){

    .container{
        width:92%;
    }

    /* Hero */

    .shop-hero{
        padding:90px 0 50px;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:300px;
        text-align:center;
    }

    .hero-circle{
        width:260px;
        height:260px;
    }

    .hero-image img{
        max-width:220px;
    }

    /* Toolbar */

    .toolbar-left h2{
        font-size:28px;
    }

    .toolbar-left p{
        font-size:14px;
    }

    .search-box{
        height:50px;
    }

    #sortProducts{
        height:50px;
    }

    /* Sidebar */

    .filter-sidebar{
        padding:22px;
    }

    /* Products */

    .products-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .product-image{
        height:280px;
    }

    .product-image img{
        max-height:210px;
    }

    .product-content{
        padding:22px;
    }

    .product-content h3{
        font-size:22px;
    }

    .price-row{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .product-buttons{
        grid-template-columns:1fr;
    }

    /* Combo */

    .combo-box{
        padding:35px 25px;
    }

    .combo-content h2{
        font-size:30px;
    }

    .combo-price{
        justify-content:center;
        flex-wrap:wrap;
    }

    .combo-price h3{
        font-size:34px;
    }

    .combo-image img{
        max-width:250px;
    }

    /* Footer */

    .footer{
        padding:60px 0 30px;
    }

    /* Modal */

    .quick-view-content{
        width:95%;
        padding:25px;
    }

    /* Cart */

    .cart-drawer{
        width:100%;
    }

}

/*==========================================
        SMALL MOBILE
==========================================*/

@media (max-width:480px){

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:14px;
    }

    .hero-badge{
        font-size:11px;
        padding:8px 16px;
    }

    .hero-circle{
        width:210px;
        height:210px;
    }

    .hero-image img{
        max-width:180px;
    }

    .toolbar-left h2{
        font-size:24px;
    }

    .search-box{
        padding:0 16px;
    }

    .product-image{
        height:240px;
    }

    .product-image img{
        max-height:180px;
    }

    .product-content{
        padding:18px;
    }

    .product-content h3{
        font-size:20px;
    }

    .price-row h4{
        font-size:28px;
    }

    .combo-content h2{
        font-size:26px;
    }

    .combo-price h3{
        font-size:30px;
    }

    .combo-btn{
        width:100%;
    }

    .toast{
        left:15px;
        right:15px;
        bottom:15px;
    }

    .product-actions{
        top:12px;
        right:12px;
        gap:8px;
    }

    .product-actions button{
        width:36px;
        height:36px;
        font-size:14px;
    }

    .product-badge{
        top:12px;
        left:12px;
        padding:6px 12px;
        font-size:11px;
    }

}