@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');


:root{


    /* Brand Colors */

    --primary:#0F3040;

    --secondary:#464858;

    --rose:#A56F63;

    --sand:#D99B7F;



    /* Background */

    --bg-dark:#171923;



    /* Glass */

    --glass:rgba(255,255,255,.08);

    --border:rgba(255,255,255,.15);



    /* Text */

    --text:#ffffff;

    --text-muted:#dddddd;



    /* Shadow */

    --shadow-sm:0 10px 30px rgba(0,0,0,.2);

    --shadow-md:0 20px 50px rgba(0,0,0,.35);



    /* Radius */

    --radius-md:25px;

    --radius-lg:30px;



    /* Effects */

    --blur:20px;

    --transition:.35s;

}





*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}




html{

    scroll-behavior:smooth;

}




body{


    direction:rtl;


    font-family:"Vazirmatn",Tahoma,sans-serif;


    background:


    radial-gradient(

        circle at top right,

        rgba(165,111,99,.25),

        transparent 35%

    ),


    linear-gradient(

        135deg,

        #0F3040,

        #171923

    );



    min-height:100vh;


    color:var(--text);


}






a{

    color:inherit;

    text-decoration:none;

}







img{

    max-width:100%;

    display:block;

}







.container{


    width:92%;


    max-width:1300px;


    margin:auto;


}







h1,h2,h3,h4{


    font-weight:800;


    color:white;


}







button,
input,
textarea,
select{


    font-family:inherit;


}







::-webkit-scrollbar{


    width:8px;


}





::-webkit-scrollbar-thumb{


    background:var(--rose);


    border-radius:20px;


}





::selection{


    background:var(--sand);


    color:white;


}
/* =========================================================
   SUPPLIER-SHOP3
   GLOBAL RESPONSIVE
   Mobile / Tablet
========================================================= */


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px){

    .container{
        width:94%;
    }


    h1{
        font-size:30px;
    }


    h2{
        font-size:26px;
    }


    h3{
        font-size:22px;
    }


    body{
        overflow-x:hidden;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px){

    html{
        font-size:15px;
    }


    body{
        width:100%;
        min-width:0;
        overflow-x:hidden;
    }


    .container{
        width:92%;
        max-width:none;
    }


    h1{
        font-size:26px;
        line-height:1.5;
    }


    h2{
        font-size:23px;
        line-height:1.5;
    }


    h3{
        font-size:20px;
        line-height:1.5;
    }


    h4{
        font-size:18px;
    }


    img{
        max-width:100%;
        height:auto;
    }


    button,
    input,
    textarea,
    select{
        max-width:100%;
    }


}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px){

    .container{
        width:94%;
    }


    h1{
        font-size:23px;
    }


    h2{
        font-size:21px;
    }


    h3{
        font-size:18px;
    }


    h4{
        font-size:17px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px){

    .container{
        width:95%;
    }


    h1{
        font-size:21px;
    }


    h2{
        font-size:19px;
    }


    h3{
        font-size:17px;
    }

}