@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300&family=Anton&family=Heebo:wght@300&family=Lobster&family=Open+Sans:wght@500&family=PT+Sans+Narrow&family=Poppins:wght@100;200&family=Quicksand:wght@600&family=Ramabhadra&family=Roboto:wght@100&family=Spline+Sans+Mono:wght@500&family=Wix+Madefor+Text&display=swap');
:root{
    --bg-color: #fff;
    --letter-color: #1c1c1c;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --font-wix: 'Wix Madefor Text', sans-serif;
    --font-superKH: AKbalthom SuperheroKH;
    --font-forte: Forte;
}
body{
    margin: 0;
    padding: 0;
}

/* side bar */
.side-bar{
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
}
.sidebar {
    height: 100%;
    width: 0;
    margin-top: 90px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.sidebar li{
    list-style: none;
}
.sidebar li a {
    /* padding: 8px 8px 8px 32px; */
    margin-left: 30px;
    padding: 10px 0;
    text-decoration: none;
    font-size: 15px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
.side-bar li a:hover{
    color: var(--bg-color);
}
.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    background: none;
    border: none;
    outline: none;
    color: var(--bg-color);
    cursor: pointer;
}
.side-bar a{
    text-decoration: none;
}
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    color: var(--dark);
    padding: 10px 15px;
    border: none;
}
  
.main{
    position: fixed;
    transition: margin-left .5s;
    padding: 16px;
}
.image-side-bar img{
    display: block;
    margin-left: 30px;
}

/* side-product */
.side-product{
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    margin-left: 250px;
    margin-right: 20px;
    /* background-color: #007bff; */
}
/* part-product */
.banner-shop-all{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.banner-shop-all img{
    margin-top: 50px;
}
.product-1{
    width: 90%;
    height: auto;
    padding: 20px 0;
    margin-left: 5%;
    margin-top: 20px;
    /* background-color: #007bff; */
    cursor: pointer;
}
.product-1 h1{
    margin-bottom: 10px;
}
.product-items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    border: 0.1px solid var(--gray);
}
.items{
    width: 220px;
    height: 340px;
    margin-top: 10px;
    margin-bottom: 10px;
    /* background-color: #111; */
}
.items img{
    width: 200px;
    height: 200px;
    margin-left: 10px;
    transition: 0.5s;
}
.items img:hover{
    transform: scale(1.1);
}
.items p, h3{
    font-family: var(--font-wix);
    font-size: 12px;
    margin-left: 15px;
    margin-top: 5px;
}
.items:hover a, h3{
    color: var(--orange);
}
.items .star{
    margin-left: 15px;
    margin-top: 10px;
}
.items .star i{
    color: var(--warning);
    transition: 0.5s;
}
.star i:hover{
    transform: scale(1.2);
}
.product-2{
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: auto;
    padding: 20px 0;
    margin-left: 5%;
    margin-top: 20px;
}
.box-items-1{
    width: 300px;
    height: 400px;
    /* background-color: #007bff; */
}
.box-items-1-a{
    width: 100%;
    height: 190px;
    /* background-color: #6610f2; */
    overflow: hidden;
}
.box-items-1-a img{
    width: 100%;
    transition: 0.5s;
    cursor: pointer;
}
.box-items-1-a:hover img{
    transform: scale(1.1);
}
.box-items-2{
    width: 480px;
    height: 400px;
    /* background-color: #111; */
    overflow: hidden;
}
.box-items-2 img{
    width: 100%;
    transition: 0.5s;
    cursor: pointer;
}
.box-items-2:hover img{
    transform: scale(1.1);
}
.box-items-3{
    width: 300px;
    height: 400px;
    /* background-color: #17a2b8; */
    overflow: hidden;
}
.box-items-3 img{
    width: 100%;
    transition: 0.5s;
    cursor: pointer;
}
.box-items-3:hover img{
    transform: scale(1.1);
}