@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;
}

*{
    margin: 0;
    padding: 0;
}
.logo_fix_at_footer{
    position: fixed;
    width: auto;
    height: auto;
    bottom: 0;
    right: 26px;
    z-index: 1;
}
.logo_fix_at_footer ul li{
    list-style: none;
    display: inline-block;
}
.logo_fix_at_footer ul li a img{
    width: 50px;
    height: 50px;
}
.product_sell{
    width: 96%;
    margin-left: 2%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid var(--orange);
}
.product_sell img{
    width: 100%;
    margin: auto;
}
.product_sell button{
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: linear-gradient(var(--green), var(--teal));
    color: var(--bg-color);
    transition: 0.5s;
    cursor: pointer;
}
.product_sell button:hover{
    background: linear-gradient(var(--teal), var(--green));
}
.product{
    display: flex;
    justify-content: baseline;
    flex-wrap: wrap;
}
.box-items{
    width: 270px;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}
.box-items img{
    width: 200px;
}
.box-items .brand{
    width: 190px;
    padding: 5px 5px;
    margin-left: 39px;
    background-color: var(--dark);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.box-items p{
    margin-top: 10px;
    font-weight: bold;
    font-family: var(--font-wix);
    color: var(--blue);
}
.box-items h1 span{
    text-align: center;
    color: var(--danger);
}
.box-items .ditail p{
    font-size: 10px;
    color: var(--dark);
    text-align: left;
}