@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --poppins: 'Poppins', sans-serif;
    --lato: 'Lato', sans-serif;
    --complete: green;
    --logout: red;
    --light: #F9F9F9;
    --blue: #ff9900;
    --light-status: #ff990070;
    --light-blue: #CFE8FF;
    --grey: #eee;
    --dark-grey: #AAAAAA;
    --dark: #342E37;
    --red: #DB504A;
    --yellow: #FFCE26;
    --light-yellow: #FFF2C6;
    --orange: #FD7238;
    --light-orange: #FFE0D3;
    --details: #ff9900;
    --edit: royalblue;
    --delete: red;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: var(--poppins);
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #f5f5f5;
}

.main {
    height: 100vh;
    width: 100%;
    /* background-image: linear-gradient(45deg,
                transparent 25%,
                rgba(255, 255, 255, 0.05) 5%,
                rgba(255, 255, 255, 0.05) 80%,
                transparent 10%,
                transparent 10%,
                rgba(0, 0, 0, 0.05) 75%,
                rgba(0, 0, 0, 0.05) 100%);
        background-size: 10px 10px;
        background-color: #00172d; */
}

header.mobile_header {
    display: none;
}

header {
    background-color: #00172d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    height: 8vh;
}

header .content {
    display: flex;
    align-items: center;
    width: 90%;
    justify-content: space-between;
}

header .logo {
    width: 20%;
    height: 8vh;
    display: flex;
    align-items: center;
}

header .logo img {
    width: 200px;
}

header form {
    /* border: 2px solid #ff9900; */
    width: 50%;
    height: 5vh;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

header form input {
    width: 92%;
    z-index: 1;
    border: none;
    color: #fff;
    padding: 10px;
    padding-left: 20px;
    background-color: #000b18;
    height: 100%;
}

header form button[type="submit"] {
    width: 8%;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    justify-content: center;
    background-color: #ff9900;
}

header form button[type="submit"] i {
    font-size: 20px;
}

nav {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 5%;
}

.first_wave {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 8vh;
    width: 40%;
}

.first_wave a {
    position: relative;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 10;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150%;
    background-color: #000000;
    font-size: 12px;
    font-family: var(--poppins);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.tooltip:hover::after {
    opacity: 1;
}

.first_wave button {

    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    border: 2px solid #ff9900;

    background-color: #000b18;

}

.first_wave button i {
    font-size: larger;
}

.last_wave {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 6vh;
    width: 60%;
    border-left: 3px solid #ff9900;

}

.last_wave button {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    margin-left: 5px;
    color: #fff;

}

.row {
    height: 100%;
    width: 2px;
    background-color: #ff9900;
}

.last_wave button img {
    width: 100%;
    height: 100%;
}

.last_wave a.sell_btn {
    text-decoration: none;
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    background-color: #000b18;
    background-color: #ff9900;

}

.last_wave a i {
    font-size: 25px;
    margin-right: 10px;
}

.last_wave a p {
    font-size: 14px;
    font-family: var(--poppins);
}

nav .dropdown {
    position: relative;
}

nav .dropdown_menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    background-color: #fff;
    /* padding: 20px; */
    width: 200px;
    pointer-events: none;
    box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

nav .dropdown.active>button+.dropdown_menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.submenu {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    background-color: #fff;
    width: 100%;
    border: 2px solid var(--grey);
}

.submenu.help {
    width: 250px;
}

.submenu a.button_type {
    padding: 15px;
    width: 100%;
    background-color: #ff9900;
    background-color: red;
    color: #fff;
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.normal_link {
    margin-top: 10px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    text-align: start;
    transition: .2s ease-in-out;
    padding: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-grey);
}

.normal_link:hover {
    color: #ff9900;
    letter-spacing: 0.03rem;
}

/* --------------------------------------------------------------------------end of header-------------------------- */
.breadcrumbs {
    padding: 15px 0;
    background: #f8f9fa;
    margin-bottom: 30px;
    background-color: #fff;
    width: 90%;
    margin-left: 5%;
    margin-top: 10px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 8px;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 8px;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ff9900;
}

/* ------------------------------------------cateegory sider ---------cs--------------- */
.category_recognition {
    width: 90%;
    margin-left: 5%;
    margin-top: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content:center ;
    height: 60px;
    margin-bottom: 10px;
}
.category_recognition p{
    font-family: var(--lato);
    font-size: 30px;
    /* color: #00172d; */
    color: #ff9900;

}
.sub_categories {
    width: 90%;
    margin-left: 5%;
    margin-top: 10px;
    background-color: #fff;
    display: flex;
    align-items: center;
    height: 200px;
    padding: 5px;
    /* padding-bottom: 10px; */
    overflow-x: auto;
    gap: 10px;
    /* overflow-y: hidden; */
    margin-bottom: 20px;
}
.sub_categories::-webkit-scrollbar{
    height: 10px;
    background-color: #f1f1f1;
    border-radius: 10px;
}
.sub_categories::-webkit-scrollbar-thumb{
    background-color: #00172d40;
    border-radius: 10px;
}
.sub_categories  .sub_tab{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    height: 170px;
    /* border: 1px solid red; */
}
.sub_categories .sub_tab img{
    width: 140px;
    height: 140px;
    border-radius: 5px;
}

.sub_categories .sub_tab p {
    color: #00172d;
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
}
/* -------------------------------------the category and product section-------------------------------- */
.flex{
    display: flex;
    width: 90%;
    margin-left: 5%;
    margin-top: 10px;
}
.filter_tab{
    padding: 20px;
    width: 25%;
    background-color: #fff;
}
.filter_tab .title{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    /* border: 1px solid red; */
    border-bottom: 3px solid #ddd;
    
}
.filter_tab .title p{
    font-family: var(--poppins);
    color: #00172d;
    font-size: 18px;
}
.filter_tab .title img{
    width: 30px;
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(94%);
}

.desired_price ,.sort_by ,.ratings ,.oficial{
    border-bottom: 3px solid #ddd;
    width: 100%;
    height:auto;
    padding: 10px;
}

.filer_titles{
    font-family: var(--poppins);
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.filter_tab form{
    width: 100%;
    display: flex;
    flex-direction: column;
    
}
.filter_tab .desired_price form{
    display: flex;
    /* border: 1px solid red; */
    width: 100%;
    justify-content: space-between;
    flex-direction: row;

}
.filter_tab .desired_price form input{
    width: 32%;
    border-radius: 4px;
    height: 40px;
    padding: 5px;
    border: 2px solid #ddd;
}
.filter_tab .desired_price form input::-webkit-input-placeholder{
    font-size: 10px;
    font-family: "var(--poppins)";

}
.filter_tab .desired_price form select{
    width: 65%;
    border-radius: 4px;
    height: 40px;
    padding: 5px;
    border: 2px solid #ddd;
    cursor: pointer;
}
.filter_tab .desired_price form select::-webkit-input-placeholder{
    font-size: 10px;
    font-family: "var(--poppins)";

}
.filter_tab .desired_price form button{
    width: 30%;
    border-radius: 4px;
    height: 40px;
    cursor: pointer;
    border: none;
    color: #fff;
    background-color: #ff9900;
}
.joint{
    display: flex;
    align-items: center;
    /* border: 1px solid red; */
}
.joint  label{
    font-size: 12px;
    margin-left: 10px;
    color: #00172d;
}
.orange{
    filter: brightness(0) saturate(10%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(120%);

}
.grey{
    filter: brightness(0) saturate(10%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(20%);

}
/* -------------------------------------------------------Product css sectiom------------------------ */

.products{
    width: 74%;
    margin-left: 1%;
    background-color: #fff;
    padding: 10px;
}
.product_heading{
    width: 100%;
    display: flex;
    align-items: center;
    height: 60px;
    border-bottom: 2px solid #ddd;
}
.product_heading p{
    font-weight: 900;
    font-family: var(--poppins);
    font-size: 25px;
    text-transform: uppercase;
}
.product_cards{
    /* border: 1px solid red; */
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.product_cards a{
    /* border: 1px solid red; */
    width: 210px;
}
.product_cards a .card{
    width: 200px;
    border: 1px solid #dddddd60;
    /* padding: 5px; */
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.product_cards a .card .seller{
    /* border: 1px solid green; */
    width: 100%;
    height: 20px;
    
}
.shop_name{
    width: auto;
    min-width:40%;
    height: 100%;
    /*display: flex;*/
    /*align-items: center;*/
    background-color: #00172d;
    padding:5px;
}
.shop_name p{
    color: #fff;
    font-family: var(--poppins);
    margin-left: 5px;
    font-size: 10px;
}
.product_cards a .card .image{
    width: 100%;
    height: 210px;
    /* border: 1px solid red; */
}
.product_cards a .card .image img{
    width: 100%;
    border-radius: 2px 2px 20px 2px ;
    height: 100%;
}
.product_cards a .card .details{
    padding: 5px;
}
.product_name{
    color: #00172d;
    font-size: 12px;
    font-family: var(--poppins);
}

.pricing_rate{
    /* border: 1px solid red; */
    height: 60px;
    width: 100%;
    display: flex;
}
.prices{
    /* border: 1px solid red; */
    width: 70%;
    margin-top: 10px;
}
.prices .current_price{
    color: #ff9900;
    font-weight: 500;
    font-size: 16px;
}
.prices .previous_price{
    color: #666;
    text-decoration: line-through;
    font-weight: 300;
    font-weight: 900;
    font-size: 10px;
    margin-top: 5px;
}
.rating{
    border: 1px solid red;
    width: 30%;
    display: none;
}

.rating img{
    width: 10px;
    margin-right: 0;
}



/*----------------------------------Start od=f the category sidebar css ---------------------------------------*/
.category_sidebar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000b18;
    width: 0;
    overflow-x: hidden;
    height: 100vh;
    z-index: 100000;
    transition: 0.5s ease-in-out;
}

.category_sidebar .title {
    display: flex;
    width: 90%;
    height: 50px;
    margin-left: 5%;
    border-bottom: 3px solid #ff9900;
    align-items: center;
    justify-content: space-between;

}

.category_sidebar .title p {
    font-family: var(--lato);
    color: #ff9900;
    font-size: 25px
}

.category_sidebar .title button {
    font-family: var(--lato);
    color: #fff;
    background-color: red;
    padding: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
}

.category_sidebar ul {
    display: flex;
    width: 90%;
    height: 90vh;
    /* border: 1px solid red; */
    overflow: auto;
    margin-left: 5%;
    padding-right: 20px;
    flex-direction: column;
}

.category_sidebar ul::-webkit-scrollbar {
    background-color: #00172d;
    margin: 5px;
    width: 10px;
    margin-left: 10px;
}

.category_sidebar ul::-webkit-scrollbar-thumb {
    background-color: #ff990030;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .4s ease-in-out;
}

.category_sidebar ul::-webkit-scrollbar-thumb:hover {
    background-color: #ff9900;
}

.category_sidebar ul a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    background-color: #000;
}

.category_sidebar ul a span {
    background-color: #ff9900;
    padding: 5px;
    border-radius: 5px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category_sidebar ul a span img {
    filter: brightness(500%) saturate(100%) invert(100%) contrast(100%);
}

.category_sidebar ul a p {
    color: #fff;
    font-size: 16px;
    font-family: var(--poppins);
    transition: color .2s ease-in-out, letter-spacing .2s ease-in-out;

}

.category_sidebar ul a:hover p {
    color: #ff9900;
    letter-spacing: .05rem;

}


/* ------ ------ ------ ------ ------ ------end of the category sidebar  css  ------ ------*/
@media only screen and (max-width: 600px) {

    header {
        display: none;

    }

    header.mobile_header {
        display: block;
        width: 100%;
        height: auto;
        padding: 5px;

    }

    .menu_btn {
        background-color: #00172d;
        border: none;
        padding: 1px 5px;
    }
    .menu_btn img {
        filter: brightness(500%) saturate(100%) invert(100%) contrast(100%);

    }

    header .logo {
        width: 60%;
        height: 5vh;
        display: flex;
        align-items: center;
    }

    header .logo img {
        width: 70%;
        height: 40px;
        margin-top: 5px;
    }

    header .mobilephonelinks {
        width: 30%;
        height: 5vh;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    header .mobilephonelinks a {
        margin-right: 5px;
        padding: 1px 5px
    }

    header .mobilephonelinks a img {
        width: 20px;
        filter: brightness(500%) saturate(100%) invert(100%) contrast(100%);

    }
    header.mobile_header .bottom_section {
        width: 100%;
        height: 5vh;
        border-bottom: 1px solid #000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header.mobile_header form {
        /*border: 2px solid #ff9900;*/
        width: 100%;
        height: 4vh;
        margin-top: 5px;
        display: flex;
        overflow: hidden;
        border-radius: 5px;
        position: relative;
    }

    header.mobile_header form input {
        width: 85%;
        z-index: 1;
        border: none;
        color: #fff;
        padding: 10px;
        background-color: #000b18;
        height: 100%;
    }

    header.mobile_header form button[type="submit"] {
        width: 15%;
        border: none;
        display: flex;
        align-items: center;
        cursor: pointer;
        color: #fff;
        font-size: 10px;
        justify-content: center;
        background-color: #ff9900;
    }

    header.mobile_header form button[type="submit"] img {
        filter: brightness(500%) saturate(100%) invert(100%) contrast(100%);
    }

    .top_section {
        width: 100%;
        height: 5vh;
        border-bottom: 1px solid #000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
     
    /* --------------------------------------------------------------------------end of header-------------------------- */
    .breadcrums {
        width: 98%;
        margin-left: 1%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .breadcrums a {
        color: #ff9900;
        margin-right: 5px;
        margin-left: 5px;
        font-size: 10px;
        border-bottom: 1px solid #ff9900;
    }

    /* ------------------------------------------cateegory sider ---------cs--------------- */
    .category_recognition {
        width: 98%;
        margin-left: 1%;
        margin-top: 10px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        margin-bottom: 10px;
    }

    .category_recognition p {
        font-family: var(--lato);
        font-size: 18px;
        /* color: #00172d; */
        color: #ff9900;

    }

    .sub_categories {
        width: 98%;
        margin-left: 1%;
        margin-top: 10px;
        background-color: #fff;
        display: flex;
        align-items: center;
        height: auto;
        padding: 5px;
        /* padding-bottom: 10px; */
        overflow-x: auto;
        gap: 5px;
        /* overflow-y: hidden; */
        margin-bottom: 20px;
    }

    .sub_categories::-webkit-scrollbar {
        height: 10px;
        background-color: #f1f1f1;
        border-radius: 10px;
    }

    .sub_categories::-webkit-scrollbar-thumb {
        background-color: #00172d40;
        border-radius: 10px;
    }

    .sub_categories .sub_tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70px;
        height: 100px;
        /* border: 1px solid red; */
    }

    .sub_categories .sub_tab img {
        width: 70px;
        height: 70px;
        border-radius: 5px;
    }

    .sub_categories .sub_tab p {
        color: #00172d;
        margin-top: 10px;
        font-size: 8px;
        font-weight: bold;
    }

    /* -------------------------------------the category and product section-------------------------------- */
    .flex {
        display: flex;
        width: 98%;
        margin-left: 1%;
        margin-top: 10px;
    }

    .filter_tab {
        display: none;
        padding: 20px;
        width: 25%;
        
        background-color: #fff;
    }

    .filter_tab .title {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        /* border: 1px solid red; */
        border-bottom: 3px solid #ddd;

    }

    .filter_tab .title p {
        font-family: var(--poppins);
        color: #00172d;
        font-size: 18px;
    }

    .filter_tab .title img {
        width: 30px;
        margin-right: 10px;
        filter: brightness(0) saturate(100%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(94%);
    }

    .desired_price,
    .sort_by,
    .ratings,
    .oficial {
        border-bottom: 3px solid #ddd;
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .filer_titles {
        font-family: var(--poppins);
        font-size: 16px;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .filter_tab form {
        width: 100%;
        display: flex;
        flex-direction: column;

    }

    .filter_tab .desired_price form {
        display: flex;
        /* border: 1px solid red; */
        width: 100%;
        justify-content: space-between;
        flex-direction: row;

    }

    .filter_tab .desired_price form input {
        width: 32%;
        border-radius: 4px;
        height: 40px;
        padding: 5px;
        border: 2px solid #ddd;
    }

    .filter_tab .desired_price form input::-webkit-input-placeholder {
        font-size: 10px;
        font-family: "var(--poppins)";

    }

    .filter_tab .desired_price form select {
        width: 65%;
        border-radius: 4px;
        height: 40px;
        padding: 5px;
        border: 2px solid #ddd;
        cursor: pointer;
    }

    .filter_tab .desired_price form select::-webkit-input-placeholder {
        font-size: 10px;
        font-family: "var(--poppins)";

    }

    .filter_tab .desired_price form button {
        width: 30%;
        border-radius: 4px;
        height: 40px;
        cursor: pointer;
        border: none;
        color: #fff;
        background-color: #ff9900;
    }

    .joint {
        display: flex;
        align-items: center;
        /* border: 1px solid red; */
    }

    .joint label {
        font-size: 12px;
        margin-left: 10px;
        color: #00172d;
    }

    .orange {
        filter: brightness(0) saturate(10%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(120%);

    }

    .grey {
        filter: brightness(0) saturate(10%) invert(46%) sepia(97%) saturate(6693%) hue-rotate(29deg) brightness(114%) contrast(20%);

    }

    /* -------------------------------------------------------Product css sectiom------------------------ */

    .products {
        width: 98%;
        margin-left: 1%;
        background-color: #fff;
        padding: 10px;
    }

    .product_heading {
        width: 100%;
        display: flex;
        align-items: center;
        height: 60px;
        border-bottom: 2px solid #ddd;
    }

    .product_heading p {
        font-weight: 900;
        font-family: var(--poppins);
        font-size: 18px;
        text-transform: uppercase;
    }

    .product_cards {
        width: 100%;
        /* border: 1px solid red; */
        margin-top: 10px;
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
    }

    .product_cards a {
        /* border: 1px solid red; */
        width: 100%;
    }

    .product_cards a .card {
        width: 100%;
        border: 1px solid #dddddd60;
        /* padding: 5px; */
        background-color: #fff;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .product_cards a .card .seller {
        /* border: 1px solid green; */
        width: 100%;
        height: 20px;

    }

    .shop_name {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        background-color: #00172d;
    }

    .shop_name p {
        color: #fff;
        font-family: var(--poppins);
        margin-left: 5px;
        font-size: 12px;
    }

    .product_cards a .card .image {
        width: 100%;
        height: 210px;
        /* border: 1px solid red; */
    }

    .product_cards a .card .image img {
        width: 100%;
        border-radius: 2px 2px 20px 2px;
        height: 100%;
    }

    .product_cards a .card .details {
        padding: 5px;
    }

    .product_name {
        color: #00172d;
        font-size: 12px;
        font-family: var(--poppins);
    }

    .pricing_rate {
        /* border: 1px solid red; */
        height: 60px;
        width: 100%;
        display: flex;
    }

    .prices {
        /* border: 1px solid red; */
        width: 70%;
        margin-top: 10px;
    }

    .prices .current_price {
        color: #ff9900;
        font-weight: 600;
        font-size: 14px;
    }

    .prices .previous_price {
        color: #666;
        text-decoration: line-through;
        font-weight: 300;
        font-weight: 900;
        font-size: 10px;
        margin-top: 5px;
    }

    .rating {
        border: 1px solid red;
        width: 30%;
        display: none;
    }

    .rating img {
        width: 10px;
        margin-right: 0;
    }



    /*----------------------------------Start od=f the category sidebar css ---------------------------------------*/
    .category_sidebar {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #000b18;
        width: 0;
        overflow-x: hidden;
        height: 100vh;
        z-index: 100000;
        transition: 0.5s ease-in-out;
    }

    .category_sidebar .title {
        display: flex;
        width: 90%;
        height: 50px;
        margin-left: 5%;
        border-bottom: 3px solid #ff9900;
        align-items: center;
        justify-content: space-between;

    }

    .category_sidebar .title p {
        font-family: var(--lato);
        color: #ff9900;
        font-size: 25px
    }

    .category_sidebar .title button {
        font-family: var(--lato);
        color: #fff;
        background-color: red;
        padding: 8px;
        border: none;
        cursor: pointer;
        font-size: 15px;
        border-radius: 5px;
    }

    .category_sidebar ul {
        display: flex;
        width: 90%;
        height: 90vh;
        /* border: 1px solid red; */
        overflow: auto;
        margin-left: 5%;
        padding-right: 20px;
        flex-direction: column;
    }

    .category_sidebar ul::-webkit-scrollbar {
        background-color: #00172d;
        margin: 5px;
        width: 10px;
        margin-left: 10px;
    }

    .category_sidebar ul::-webkit-scrollbar-thumb {
        background-color: #ff990030;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color .4s ease-in-out;
    }

    .category_sidebar ul::-webkit-scrollbar-thumb:hover {
        background-color: #ff9900;
    }

    .category_sidebar ul a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        margin-top: 5px;
        background-color: #000;
    }

    .category_sidebar ul a span {
        background-color: #ff9900;
        padding: 5px;
        border-radius: 5px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category_sidebar ul a span img {
        filter: brightness(500%) saturate(100%) invert(100%) contrast(100%);
    }

    .category_sidebar ul a p {
        color: #fff;
        font-size: 16px;
        font-family: var(--poppins);
        transition: color .2s ease-in-out, letter-spacing .2s ease-in-out;

    }

    .category_sidebar ul a:hover p {
        color: #ff9900;
        letter-spacing: .05rem;

    }
}