*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



html{
    scroll-behavior:smooth;
}

body{
    direction:rtl;
    font-family:'Vazirmatn',sans-serif;

    background:var(--bg);
    color:var(--text);
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

.section{
    margin-top:60px;
    margin-bottom:60px;
}
:root{

    --gold:#D4AF37;
    
    --bg:#0B0B0B;
    
    --card:#171717;
    --card2:#202020;
    
    --border:#2A2A2A;
    
    --text:#FFFFFF;
    --text2:#AAAAAA;
    
    }
.glass{

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;
}
.btn{

    background:var(--gold);

    color:black;

    padding:12px 22px;

    border-radius:12px;

    font-weight:700;

    display:inline-block;

    transition:.3s;
}

.btn:hover{

    transform:translateY(-2px);
}

.header{

    position:sticky;

    top:0;

    z-index:9999;

    background:rgba(11,11,11,.9);

    backdrop-filter:blur(12px);

    border-bottom:1px solid var(--border);
}






.product-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:.3s;

    min-height:520px;

    display:flex;

    flex-direction:column;
}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.4);
}

.product-image{

    width:100%;
    height:180px;
    object-fit:contain;

    background:#fff;
    padding:15px;
}

.product-body{

    padding:20px;
}

.product-title{

    font-size:15px;

    font-weight:700;

    min-height:48px;

    line-height:1.8;
}

.product-brand{

    color:var(--text2);

    margin-top:10px;
}

.product-price{

    color:var(--gold);

    font-size:26px;

    font-weight:900;

    margin-top:20px;
}

.product-btn{

    display:block;

    margin-top:20px;

    text-align:center;

    background:var(--gold);

    color:var(--card);

    padding:12px;

    border-radius:12px;

    font-weight:700;
}

.product-title{

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;
}

.product-card{

    position:relative;
}

.product-card:hover .product-image{

    transform:scale(1.05);
}

.product-image{

    transition:.4s;
}

.container{

    width:100%;

    max-width:1400px;

    margin:0 auto;

    padding:0 30px;
}



.logo{

    font-size:34px;

    font-weight:900;

    color:var(--text);

    text-decoration:none;
}

.logo span{

    color:var(--gold);
}

.search-box{

    flex:1;
}

.search-box input{

    width:100%;

    height:52px;

    border:none;

    border-radius:16px;

    background:var(--card);

    color:var(--text);

    padding:0 20px;

    font-size:20px;
}

.header-icons{

    display:flex;

    align-items:center;

    gap:20px;
}

.header-icons a{

    color:white;

    text-decoration:none;

    font-size:24px;
}

.container{
    width:95%;
    max-width:1500px;
    margin:auto;
}


.nav-right{
    width:250px;
    display:flex;
    align-items:center;
}

.nav-center{
    flex:1;
    margin:0 40px;
}

.nav-left{
    width:250px;

    display:flex;
    align-items:center;
    justify-content:flex-end;

    gap:25px;
}

.logo{
    color:var(--text);
    font-size:32px;
    font-weight:900;
    text-decoration:none;
}

.logo span{
    color:var(--gold);
}

.search-box input{
    width:100%;
    padding:14px 18px;

    border:1px solid var(--border);

    border-radius:14px;

    background:var(--card2);

    color:var(--text);
}

.search-box input:focus{
    outline:none;

    box-shadow:0 0 15px rgba(212,175,55,.35);
}

/* Container اصلی سایت */

.container,
.navbar-inner{
    width:95%;
    max-width:1400px;
    margin:auto;
}

/* Navbar */

.navbar{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(15px);
    background:rgba(10,10,10,.85);
    border-bottom:1px solid rgba(212,175,55,.15);
}

.navbar-inner{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/* لوگو */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:80px;
    width:auto;
}

/* سرچ */

.search-box{
    flex:1;
    max-width:700px;
}

.search-box input{
    width:100%;
    height:50px;
    border-radius:14px;
    border:1px solid rgba(212,175,55,.15);
    background:var(--card);
    color:var(--text);
    padding:0 20px;
    box-shadow:0 0 15px rgba(212,175,55,.08);
}



.product-card{
    background:#151515;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.12);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 40px rgba(0,0,0,.4);
}

.product-image{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.product-card:hover .product-image{
    transform:scale(1.08);
}

.product-content{
    padding:20px;
}

.product-title{
    font-size:16px;
    font-weight:700;
    line-height:1.9;
    min-height:60px;
}

.product-brand{
    color:var(--text2);
    margin-top:10px;
}

.product-price{
    color:var(--gold);
    font-size:24px;
    font-weight:900;
    margin-top:15px;
}

.product-stock{
    margin-top:10px;
    color:#57d957;
}

.product-btn{
    display:block;
    text-align:center;
    background:var(--gold);
    color:var(--card);
    padding:12px;
    border-radius:12px;
    margin-top:15px;
    font-weight:700;
}

.product-page{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:40px;

    align-items:start;
}

.product-gallery{

    background:#151515;

    border-radius:25px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.12);
}

.product-main-image{

    width:100%;

    height:550px;

    object-fit:cover;
}

.product-info h1{

    font-size:36px;

    margin-bottom:25px;
}

.product-meta{

    color:var(--text2);

    margin-bottom:15px;

    font-size:18px;
}

.product-price-big{

    color:var(--gold);

    font-size:40px;

    font-weight:900;

    margin:30px 0;
}

.product-stock-big{

    color:#57d957;

    font-size:18px;

    margin-bottom:30px;
}

.buy-btn{

    display:block;

    width:100%;

    text-align:center;

    padding:18px;

    background:var(--gold);

    color:black;

    border-radius:14px;

    font-weight:700;

    font-size:18px;
}

.product-description{

    margin-top:60px;

    background:#151515;

    padding:30px;

    border-radius:24px;
}

/* ========= STYLE MENU ========= */

.mega-navbar{

    background:var(--card);

    border-top:1px solid rgba(255,255,255,.05);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.main-menu{

    display:flex;

    align-items:center;

    gap:40px;

    list-style:none;

    height:65px;
}

.main-menu li{

    position:relative;
}

.main-menu li a{

    color:white;

    font-size:15px;

    font-weight:600;

    transition:.3s;
}

.main-menu li a:hover{

    color:var(--gold);
}

.mega-menu{

    position:absolute;

    top:65px;

    right:0;

    width:1200px;

    min-height:500px;

    background:#151515;

    display:flex;

    border-radius:20px;

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

    z-index:99999;


}

.mega-trigger:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.mega-right{

    width:320px;

    border-left:1px solid rgba(255,255,255,.06);

    padding:25px;
}


.mega-left{

    flex:1;

    overflow:hidden;
}

.mega-left img{

    width:100%;

    height:100%;

    object-fit:cover;
}
.mega-parent-item{

    position:relative;

    padding:15px 20px;

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.mega-parent-item:hover{

    background:#1b1b1b;

    border-right:4px solid var(--gold);
}

.parent-link{

    display:block;

    color:white;

    font-weight:700;
}


.navbar{
    background:var(--card);
    border-bottom:1px solid rgba(212,175,55,.15);
}

.navbar-inner{
    max-width:1400px;
    margin:auto;

    height:85px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

.nav-right{
    flex:1;

    display:flex;
    align-items:center;

    gap:30px;
}

.nav-center{
    width:600px;
}

.nav-center input{
    width:100%;
}

.nav-left{
    flex:1;

    display:flex;
    justify-content:flex-end;
    align-items:center;

    gap:20px;
}

.logo-img{
    height:55px;
}
.mobile-menu{

    position:fixed;

    right:-350px;
    top:0;

    width:320px;
    height:100vh;

    background:var(--card);

    transition:.35s;

    z-index:99999;
}

.mobile-menu.open{
    right:0;
}


.hamburger-btn{

    background:none;

    border:none;

    color:white;

    font-size:32px;

    cursor:pointer;
}


.hamburger-btn{

    background:none;

    border:none;

    color:white;

    font-size:30px;

    cursor:pointer;
}

/* overlay */

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;
}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;
}

/* menu */

.mobile-menu{

    position:fixed;

    top:0;

    right:-350px;

    width:320px;

    height:100vh;

    background:var(--card);

    z-index:9999;

    transition:.35s;

    padding:25px;

    border-left:1px solid rgba(212,175,55,.15);
}

.mobile-menu.active{

    right:0;
}

.mobile-menu-header{

    display:flex;

    justify-content:flex-end;

    margin-bottom:30px;
}

.mobile-menu-header button{

    background:none;

    border:none;

    color:white;

    font-size:24px;

    cursor:pointer;
}

.mobile-menu a{

    display:block;

    padding:16px 0;

    color:var(--text2);

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.mobile-menu a:hover{

    color:var(--gold);

    padding-right:10px;
}

.mobile-categories{

    position:relative;
}

.parent-item{

    position:relative;

    padding:15px;

    border-bottom:1px solid rgba(255,255,255,.05);

    cursor:pointer;

    transition:.3s;
}

.parent-item:hover{

    background:#1b1b1b;

    padding-right:25px;

    border-right:3px solid var(--gold);
}

.parent-title{

    color:white;

    font-size:15px;

    font-weight:700;
}

/* ستون فرزند */

.child-menu{

    position:absolute;

    top:0;

    right:100%;

    width:260px;

    min-height:100%;

    background:var(--card);

    border-right:1px solid rgba(212,175,55,.15);

    padding:20px;

    opacity:0;

    visibility:hidden;

    transition:.3s;
}

.parent-item:hover .child-menu{

    opacity:1;

    visibility:visible;
}

.child-menu a{

    display:block;

    padding:12px 0;

    color:white;

    transition:.3s;
}

.child-menu a:hover{

    color:var(--gold);

    padding-right:8px;
}

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9998;
}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;
}

.mobile-menu{

    position:fixed;

    top:0;

    right:-350px;

    width:320px;

    height:100vh;

    background:var(--card);

    transition:.35s;

    z-index:9999;

    padding:30px;
}

.mobile-menu.active{

    right:0;
}

.mobile-menu a{

    display:block;

    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-parent{

    margin-bottom:15px;

    border-bottom:1px solid rgba(255,255,255,.08);

    padding-bottom:10px;
}

.mobile-parent-title{

    color:var(--gold);

    font-size:16px;

    font-weight:bold;

    margin-bottom:10px;
}

.mobile-children{

    padding-right:15px;
}

.mobile-children a{

    display:block;

    padding:8px 0;

    color:#ddd;

    font-size:14px;
}

.mobile-children a:hover{

    color:var(--gold);
}

.mega-center{

    width:300px;

    background:var(--card);

    border-left:1px solid rgba(255,255,255,.05);

    padding:20px;
}

.mobile-category-title{

    padding:15px;

    cursor:pointer;

    font-weight:bold;

    color:var(--gold);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-category-list{

    display:none;
}

.mobile-category-list.show{

    display:block;
}

.mobile-category-list a{

    display:block;

    padding:12px 20px;

    color:var(--text2);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.mobile-category-layout{

    display:flex;

    height:500px;
}

.mobile-parent-column{

    width:50%;

    border-left:1px solid rgba(255,255,255,.08);

    overflow:auto;
}

.mobile-child-column{

    width:50%;

    overflow:auto;

    padding:10px;
}

.mobile-parent-item{

    padding:15px;

    cursor:pointer;

    border-bottom:1px solid rgba(255,255,255,.05);
}

.mobile-parent-item:hover{

    background:#1a1a1a;

    color:var(--gold);
}

.child-group{

    display:none;
}

.child-group.active{

    display:block;
}

.child-group a{

    display:block;

    padding:12px;

    border-bottom:1px solid rgba(255,255,255,.05);
}

.mega-menu{

    width:1200px;

    height:500px;

    display:flex;
}

.mega-right{

    overflow: auto;
    width:260px;

    background:#151515;

}



.mega-center{

    width:300px;

    background:#1b1b1b;

    overflow:hidden;

    padding:20px;
}

.mega-left{

    flex:1;
}

.mega-parent-item{

    padding:18px;

    cursor:pointer;

    border-bottom:1px solid rgba(255,255,255,.05);
}

.mega-parent-item:hover{

    background:#222;

    color:var(--gold);
}

.mega-child-group{

    display:none;
}

.mega-child-group.active{

    display:block;
}

.mega-child-group a{

    display:block;

    padding:12px;

    color:white;
}

.mega-child-group a:hover{

    color:var(--gold);
}

.mega-left img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.3s;
    border-radius: 1vh;
}

.mega-right::-webkit-scrollbar,
.mega-center::-webkit-scrollbar{

    width:6px;
}

.mega-right::-webkit-scrollbar-track,
.mega-center::-webkit-scrollbar-track{

    background:var(--card);
}

.mega-right::-webkit-scrollbar-thumb,
.mega-center::-webkit-scrollbar-thumb{

    background:#333;

    border-radius:20px;
}

.mega-right::-webkit-scrollbar-thumb:hover,
.mega-center::-webkit-scrollbar-thumb:hover{

    background:var(--gold);
}

.footer-bottom{
    width:100%;
    text-align:center;
    padding:20px;
    border-top:1px solid #222;
    color:var(--text2);
}

.site-footer{
    width:100vw;
    background:var(--card);
    border-top:1px solid rgba(212,175,55,.15);
    margin-top:60px;
    margin-right:calc(50% - 50vw);
    margin-left:calc(50% - 50vw);
}

.footer-top{
    width:100%;
    padding:50px 60px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:30px;
}

.footer-bottom{
    width:100%;
    text-align:center;
    padding:20px;
    border-top:1px solid #222;
}

.footer-top{
    width:100%;
    max-width:none;
    padding:50px 60px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:30px;
}


.footer-top{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:50px 30px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:30px;
} 


    
    .footer-container{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
    }
    
    .site-footer a{
    display:block;
    color:white;
    text-decoration:none;
    margin:8px 0;
    }



            
            .footer-top{
            max-width:1400px;
            margin:auto;
            padding:50px 20px;
            display:grid;
            grid-template-columns:
            2fr 1fr 1fr 1fr;
            gap:30px;
            }
            
            .footer-box{
            color:white;
            }
            
            .footer-box h3{
            margin-bottom:15px;
            }
            
            .footer-box a{
            display:block;
            margin-bottom:10px;
            color:#ddd;
            text-decoration:none;
            }
            
            .footer-logo{
            height:70px;
            margin-bottom:15px;
            }
            
            .footer-bottom{
            text-align:center;
            padding:20px;
            border-top:1px solid #222;
            color:var(--text2);
            }

            .logo img{
                height:60px;
                width:auto;
                display:block;
                }

                body{
                    background:#0f0f0f;
                    color:var(--text);
                }
                
                .shop-page{
                    display:flex;
                    flex-direction:row-reverse;
                    align-items:flex-start;
                    gap:30px;
                
                    width:95%;
                    max-width:1600px;
                    margin:30px auto;
                }
                
                
                .shop-content{
                    flex:1;
                }
                
                .products-grid{
                    display:grid;
                    grid-template-columns:repeat(3,1fr);
                    gap:25px;
                }

                .filter-group{
                    display:flex;
                    align-items:center;
                    justify-content:space-between;
                    gap:15px;
                    margin-bottom:30px;
                }
                
                .filter-group span{
                    color:var(--text);
                    font-size:16px;
                    font-weight:600;
                    line-height:1.8;
                    text-align:right;
                }
                
                .switch{
                    flex-shrink:0;
                    width:60px;
                    height:32px;
                    position:relative;
                }
                
                .filter-box h3{
                    color:var(--gold);
                    margin-bottom:20px;
                    text-align:center;
                }
                
                .filter-box input,
                .filter-box select{
                    width:100%;
                    background:#222;
                    color:var(--text);
                    border:1px solid #444;
                    padding:10px;
                    border-radius:10px;
                    margin-bottom:12px;
                }

                .product-card{
                    background:#161616;
                    border:1px solid var(--border);
                    border-radius:15px;
                    overflow:hidden;
                    transition:.3s;
                }
                
                .product-card:hover{
                    border-color:var(--gold);
                    transform:translateY(-5px);
                }

                
                
                .product-content{
                    padding:15px;
                }
                
                .product-title{
                    color:var(--text);
                    font-size:18px;
                    margin-bottom:10px;
                }
                
                .product-price{
                    color:var(--gold);
                    font-weight:bold;
                    font-size:20px;
                    margin-top:10px;
                }

                .product-btn{
                    display:block;
                    text-align:center;
                    background:var(--gold);
                    color:var(--card);
                    text-decoration:none;
                    padding:12px;
                    border-radius:10px;
                    margin-top:15px;
                    font-weight:bold;
                }
                
                .product-btn:hover{
                    background:var(--card);
                }


                .filter-box{
                    background:#161616;
                    border:1px solid var(--gold);
                    border-radius:20px;
                    padding:25px;
                    box-shadow:0 0 20px rgba(212,175,55,.15);
                }
                .filter-title{
                    font-size:22px;
                    font-weight:bold;
                    color:var(--gold);
                    margin-bottom:25px;
                    text-align:center;
                    border-bottom:1px solid #333;
                    padding-bottom:15px;
                }

                .filter-box input{
                    width:100%;
                    height:50px;
                    background:#222;
                    border:1px solid var(--border);
                    color:white;
                    border-radius:12px;
                    padding:0 15px;
                    font-size:15px;
                }
                
                .filter-box input:focus{
                    border-color:var(--gold);
                    outline:none;
                }

                .price-preview{
                    text-align:center;
                    color:var(--gold);
                    font-size:18px;
                    font-weight:bold;
                    margin:15px 0;
                }

                input[type=range]{
                    width:100%;
                    accent-color:var(--gold);
                }
                
                .switch{
                    position:relative;
                    display:inline-block;
                    width:55px;
                    height:28px;
                }
                
                .switch input{
                    display:none;
                }
                
                .slider{
                    position:absolute;
                    inset:0;
                    background:#444;
                    border-radius:50px;
                    cursor:pointer;
                }
                
                .slider:before{
                    content:"";
                    width:22px;
                    height:22px;
                    background:white;
                    position:absolute;
                    left:3px;
                    top:3px;
                    border-radius:50%;
                    transition:.3s;
                }
                
                input:checked + .slider{
                    background:var(--gold);
                }
                
                input:checked + .slider:before{
                    transform:translateX(27px);
                }

                .filter-btn{
                    width:100%;
                    height:55px;
                    border:none;
                    border-radius:14px;
                    background:var(--gold);
                    color:var(--card);
                    font-weight:bold;
                    font-size:17px;
                    cursor:pointer;
                    margin-top:20px;
                }
                
                .filter-btn:hover{
                    transform:translateY(-2px);
                }

                .shop-toolbar{
                    background:var(--card);
                    border:1px solid var(--border);
                    border-radius:15px;
                    padding:20px 20px;
                    margin-bottom:25px;
                
                    display:flex;
                    justify-content:space-between;
                    align-items:center;
                }

                .filter-group h4{
                    margin-bottom:15px;
                    color:var(--gold);
                    font-size:18px;
                }
                .filter-box h4{
                    margin-top: 22px;
                    text-align:center;
                }
                .price-values{
                    display:flex;
                    justify-content:center;
                    gap:10px;
                    margin-bottom:20px;
                
                    color:var(--text);
                    font-weight:700;
                    font-size:16px;
                }
                
                input[type=range]{
                    width:100%;
                    margin:12px 0;
                    accent-color:var(--gold);
                }

                .shop-toolbar{
                    background:var(--card);
                
                    border:1px solid rgba(212,175,55,.15);
                
                    border-radius:20px;
                
                    padding:20px 25px;
                
                    margin-bottom:30px;
                
                    display:flex;
                    justify-content:space-between;
                    align-items:center;
                }
                
                .result-count{
                
                    font-size:20px;
                    font-weight:700;
                
                    color:white;
                }
                
                .sort-select{
                    width:260px;
                    height:55px;
                
                    background:#222;
                
                    color:white;
                
                    border:1px solid var(--gold);
                
                    border-radius:14px;
                
                    font-size:16px;
                
                    padding:0 15px;
                
                    cursor:pointer;
                }
                
                .sort-select:focus{
                
                    outline:none;
                
                    box-shadow:
                    0 0 15px rgba(212,175,55,.3);
                }

                .available-box{

                    display:flex;
                
                    justify-content:space-between;
                
                    align-items:center;
                
                    background:#1b1b1b;
                
                    border:1px solid rgba(212,175,55,.15);
                
                    border-radius:15px;
                
                    padding:15px;
                
                    margin-bottom:25px;
                }
                
                .available-text{
                
                    color:var(--text);
                
                    font-size:15px;
                
                    font-weight:600;
                }

                .switch{

                    position:relative;
                
                    width:60px;
                
                    height:32px;
                
                    flex-shrink:0;
                }
                
                .switch input{
                
                    display:none;
                }
                
                .slider{
                
                    position:absolute;
                
                    inset:0;
                
                    background:#333;
                
                    border-radius:50px;
                
                    transition:.3s;
                
                    cursor:pointer;
                }
                
                .slider::before{
                
                    content:"";
                
                    position:absolute;
                
                    width:24px;
                
                    height:24px;
                
                    top:4px;
                
                    left:4px;
                
                    background:white;
                
                    border-radius:50%;
                
                    transition:.3s;
                }
                
                .switch input:checked + .slider{
                
                    background:var(--gold);
                
                    box-shadow:
                    0 0 15px rgba(212,175,55,.4);
                }
                
                .switch input:checked + .slider::before{
                
                    transform:translateX(28px);
                }

                .filter-group{

                    margin-top:25px;
                }
                
                .filter-group h4{
                
                    color:var(--gold);
                
                    margin-bottom:15px;
                
                    font-size:18px;
                
                    font-weight:700;
                }
                
                .shop-sidebar{
                    width:380px;
                    min-width:380px;
                }
                
                .filter-box{
                    width:100%;
                }
                
                .switch{
                    flex-shrink:0;
                    width:60px;
                    height:32px;
                    position:relative;
                }

                .filter-group span{
                    white-space:nowrap;
                }

                .shop-sidebar{
                    width:380px;
                    min-width:380px;
                
                    position:sticky;
                    top:120px;
                
                    height:fit-content;
                
                    align-self:flex-start;
                }

                .shop-page{
                    display:flex;
                    flex-direction:row-reverse;
                    gap:30px;
                
                    align-items:flex-start;
                }

                .sub-grid{
                    display:grid;
                    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
                    gap:20px;
                    margin-top:30px;
                    }
                    
                    .sub-card{
                    background:var(--card);
                    padding:30px;
                    border-radius:20px;
                    text-decoration:none;
                    color:var(--text);
                    text-align:center;
                    border:1px solid rgba(212,175,55,.15);
                    transition:.3s;
                    }
                    
                    .sub-card:hover{
                    transform:translateY(-5px);
                    border-color:var(--gold);
                    }







/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width:1024px){

    .navbar-inner{
        gap:15px;
    }

    .nav-center{
        width:auto;
        flex:1;
    }

    .footer-top{
        grid-template-columns:repeat(2,1fr);
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .shop-page{
        flex-direction:column;
    }

    .shop-sidebar{
        width:100%;
        min-width:100%;
        position:static;
    }

    .product-page{
        grid-template-columns:1fr;
    }

    .mega-menu{
        display:none;
    }

    .dashboard-grid{
        grid-template-columns:repeat(2,1fr);
    }
}


/* ========================= */
/* MOBILE */
/* ========================= */




@media (max-width:768px){

    .container{
        width:95%;
        padding:0 10px;
    }

    .navbar-inner{
        height:auto;
        padding:15px 0;
        flex-wrap:wrap;
    }

    .nav-right{
        width:100%;
        flex:none;
    }

    .nav-center{
        width:100%;
        order:3;
    }

    .nav-left{
        order:3;
        width:auto;
        flex:none;

        display:flex;
        align-items:center;
        gap:12px;
    }


    .logo img{
        height:42px;
    }

    .search-box input{
        height:42px;
        font-size:13px;
        padding:0 12px;
    }

    .header-icons a,
    .nav-left a{
        font-size:20px;
    }


    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .product-image{
        height:180px;
    }

    .product-price{
        font-size:18px;
    }

    .product-btn{
        padding:10px;
        font-size:14px;
    }

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        margin:auto;
        margin-bottom:15px;
    }

    .shop-toolbar{
        flex-direction:column;
        gap:15px;
    }

    .sort-select{
        width:100%;
    }

    .product-main-image{
        height:320px;
    }

    .product-info h1{
        font-size:24px;
    }

    .product-price-big{
        font-size:28px;
    }

    .main-menu{
        display:none;
    }

    .dashboard-grid{
        grid-template-columns:1fr;
    }
}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width:480px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-card{
        min-height:auto;
    }

    .product-image{
        height:220px;
    }

    .footer-top{
        padding:30px 15px;
    }

    .shop-toolbar{
        padding:15px;
    }

    .result-count{
        font-size:16px;
    }

    .product-info h1{
        font-size:20px;
    }

    .product-price-big{
        font-size:24px;
    }
}

@media (max-width:768px){

    .products-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .product-card{
        display:flex;
        flex-direction:row;
        min-height:auto;
        padding:12px;
        align-items:center;
    }

    .product-image{
        width:110px;
        height:110px;
        object-fit:contain;
        flex-shrink:0;
        border-radius:12px;
    }

    .product-content{
        flex:1;
        padding:0 15px;
        display:flex;
        flex-direction:column;
        justify-content:space-between;
    }

    .product-title{
        min-height:auto;
        font-size:14px;
        line-height:1.8;
        margin-bottom:8px;
    }

    .product-brand{
        font-size:12px;
        margin-bottom:10px;
    }

    .product-price{
        font-size:18px;
        margin-top:auto;
        color:var(--gold);
        font-weight:900;
    }



}


@media (max-width:768px){

    .container{
        width:100%;
        padding:0 10px;
    }

    .shop-page{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .shop-sidebar{
        width:100%;
        min-width:100%;
        position:static;
        order:1;
    }

    .shop-content{
        width:100%;
        order:2;
    }

    .products-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
    }

    .product-card{
        display:flex;
        flex-direction:row;
        align-items:center;
        min-height:150px;
        padding:10px;
    }

    .product-image{
        width:110px;
        height:110px;
        object-fit:contain;
        flex-shrink:0;
    }

    .product-content,
    .product-body{
        flex:1;
        padding:0 12px;
    }

    .product-title{
        font-size:14px;
        line-height:1.8;
        min-height:auto;
    }

    .product-brand{
        font-size:12px;
    }

    .product-price{
        font-size:18px;
        margin-top:8px;
    }

    .product-btn{
        display:block;
        width:100%;
        margin-top:10px;
        padding:10px;
        font-size:13px;
    }

    .shop-toolbar{
        flex-direction:column;
        gap:12px;
        align-items:stretch;
    }

    .sort-select{
        width:100%;
    }

    .filter-box{
        width:100%;
    }
}


@media (max-width:768px){

    .shop-content{
        width:100%;
    }

    .products-grid{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .product-card{
        width:100%;
        display:flex;
        flex-direction:row;
        align-items:center;

        padding:15px;

        border-radius:16px;

        min-height:140px;
    }

    .product-image{
        width:120px;
        height:120px;
        flex-shrink:0;
    }

    .product-content{
        flex:1;
        padding-right:15px;
    }

}


@media (max-width:768px){

    .container{
        width:100%;
        padding:0 8px;
    }

}


/* ================= MOBILE HEADER ================= */

@media (max-width:768px){

    .navbar-inner{
        height:auto;
        padding:10px;
        gap:10px;
        flex-wrap:wrap;
    }

    .nav-right{
        width:auto;
        flex:none;
    }

    .nav-left{
        width:auto;
        flex:none;
        gap:15px;
    }

    .nav-center{
        width:100%;
        order:3;
        margin-top:10px;
    }

    .logo img{
        height:45px;
    }

    .search-box input{
        height:42px;
        font-size:14px;
    }

    .header-icons a{
        font-size:20px;
    }

}


/* ================= MOBILE FOOTER ================= */

@media (max-width:768px){

    .site-footer{
        margin-top:40px;
    }

    .footer-top{

        display:grid;

        grid-template-columns:1fr;

        gap:25px;

        padding:30px 20px;

        text-align:center;
    }

    .footer-box{
        width:100%;
    }

    .footer-logo{
        margin:auto;
        height:55px;
    }

    .footer-box h3{
        margin-bottom:12px;
    }

    .footer-box a{
        margin-bottom:8px;
    }

    .footer-bottom{
        padding:15px;
        font-size:13px;
        line-height:1.8;
    }

}

@media (max-width:768px){

    .nav-right{
        margin-right:auto;
    }

    .nav-left{
        margin-left:auto;
    }

}