/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}


/* ===== Colours ===== */
:root{
    --body-color: #ffffff;
    --nav-color: #ffffff;
    --side-nav: #010718;
    --text-color: rgb(0, 89, 255);
    --search-bar: #F2F2F2;
    --search-text: #010718;
}

body{
    height: 100vh;
    background-color: var(--body-color);
}

body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
}

/*header section*/

/* top navbar */
.top-navbar {
    display: flex;
    justify-content: end;
    background: rgb(0, 89, 255);
    background-size: cover;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: -1px;
    padding-right: 40px;
}

.top-navbar a {
    text-decoration: none;
    color: #ffffff;
    margin-left: -5px;
    font-size: 15px;
    font-weight: 600;
}

.top-navbar a img {
    margin-bottom: 3px;
    margin-right: 5px;
    margin-left: 10px;
}

.top-navbar .icons2 {
    margin-left: 40px;
}

.top-navbar .icons2 a{
    padding-left: 15px;
}

/* navbar */
#navbar {
    background-color: var(--nav-color);
}

#logo{
    margin-right: auto;
    margin-left: 80px;
    color: var(--text-color);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 5px;
}

.navbar-nav {
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item {
    margin-left: 25px;
}

.nav-item .nav-link {
    color: var(--text-color);
    margin-left: 2px;
    text-shadow: 0 0 1px var(--text-color);
    transition: 0.5s ease;
}

.nav-item .nav-link:hover {
    color: #ff0000;
}

#menu-icon {
    color: #b0defc;
}
.button-nav button{
    border: none;
}
.button-nav .btn-box {
    position: relative;
    display: inline-flex;
    text-decoration: none;
    padding: 10px 20px;
    background: rgb(0, 89, 255);
    border-radius: 15px;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 800;
    
    box-shadow: 5px 3px 6px black;
}

.btn-box i {
    font-size: 13px;
    margin-left: 5px;
    margin-top: 5px;
}

body.dark nav{
    border: 1px solid #393838;
}

.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.dark-light i,
.searchToggle i{
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}

.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}

/* slider section*/

.slider {
    position: relative;
    width: 100%;
    background: var(--body-color);
}
.myslider {
    /* height: 557px; */
    display: none;
    overflow: hidden;
}

.myslider img {
  max-width: 100%; 
  display: block; 
  height: auto ;
    
}
.dotsbox {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 20px;
    cursor: pointer;
}
.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 3px solid var(--body-color);
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}
.active, .dot:hover{
    border-color: #4070F4;
}

/* icon section */

.icons{
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    justify-content: space-evenly;
    align-items: center;
}

.first_icon{
    margin-left: 65px;
}

.first_icon p{
    margin-left: 8px;
    font-size: 16px;
}

.first_icon img{
    height: 65px;
    width: 25px;
}

/* Sale Section */

#flash_title{
    text-align: center;
    font-weight: 600;
    font-size: 55px;
    font-style: italic;
    color: red;
    margin-top: 10px;
    text-decoration: underline;
    font-family: 'Conv_Cambria Italic' !important;
    line-height: 1.1;
    
}

#view_all{
    text-align: end;
    margin-right: 35px;
    font-size: 20px;
    color: red;
    text-decoration: underline;
    font-weight: 500;
}

.flash_sale{
    width: 100%;
    margin-left: 50px;
    cursor: pointer;
}

.flash_product{
    display: inline-block;
    margin-left: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.flash_img .label
{
    background-color: rgb(0, 89, 255);
    width: max-content;
    padding: 2px;
    height: 40px;
    width: 40px;
    text-align: center;
    color: #ffffff;
    font-size: large;
    font-weight: bold;
    border-radius: 50%;
    margin: -15px -20px;
    position: absolute;
    z-index: 10;
}

.flash_img .label p{
    font-size: 14px;
    margin-top: 10px;
}

.flash_img img{
    width: 150px;
    height: 150px;
    margin-top: 5px; 
    padding: 0px 15px;
}

.flash_text{
    text-align: center;
    margin-top: 5px;
    margin-bottom: -7px;
}

.flash_details p{
    text-align: center;
    font-weight: bold;
    margin-bottom: -0.5px;
}

#sub_detail{
    opacity: 80%;
    font-weight: normal;
    font-size: 12px;
}

.flash_price{
    display: flex;
    text-align: center;
    justify-content: center;
}

.flash_price p {
    color: rgb(8, 61, 160);
    font-size: 20px;
    font-weight: bold;
}

.flash_price #og_price{
    margin-left: 15px;
    margin-top: 4px;
    text-decoration: line-through;
    opacity: 50%;
    color: black;
    font-size: 15px;
    font-weight: normal;
}

.play_store{
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play_store img{
    width: 350px;
}

.banner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* Latest Section*/

#latest_title{
    font-size: 45px;
    font-style: italic;
    font-weight: 500;
    /* margin-left: 45px; */
    margin-top: 45px;
    margin-bottom: -25px;
    font-family: 'Conv_Cambria Italic' !important;
    line-height: 1.2;
    color: inherit;
    text-align: center;
}

/* Old Sectiom*/

#old_main{
    text-align: center;
    font-size: 40px;
    font-family: 'Conv_Cambria Italic' !important;
    color: red;
    text-decoration: underline;
}

#old_title{
    font-size: 45px;
    font-style: italic;
    font-weight: 500;
    /* margin-left: 45px; */
    margin-top: 45px;
    margin-bottom: -25px;
    font-family: 'Conv_Cambria Italic' !important;
    line-height: 1.2;
    color: inherit;
    text-align: center;
}

#view_all{
    text-align: end;
    margin-right: 35px;
    font-size: 20px;
    color: red;
    text-decoration: underline;
    font-weight: 500;
}

.old_sale{
    width: 100%;
    margin-left: 50px;
    cursor: pointer;
    /* display: flex; */
}

.old_product{
    display: inline-block;
    margin-left: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.old_img .label
{
    background-color: rgb(255, 0, 0);
    width: max-content;
    padding: 2px;
    height: 40px;
    width: 40px;
    text-align: center;
    color: #ffffff;
    font-size: large;
    font-weight: bold;
    border-radius: 50%;
    margin: -10px -10px;
    position: absolute;
    z-index: 10;
}

.old_img .label p{
    font-size: 14px;
    margin-top: 10px;
}

.old_img{
    display: flex;
}

.old_img img{
    width: 150px;
    height: 150px;
    object-fit: fill;
    margin-top: 5px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.old_text{
    text-align: center;
    margin-top: 5px;
}

.old_detail p{
    text-align: center;

}

.old_price{
    display: flex;
    text-align: center;
    justify-content: center;
}

.old_price p {
    color: blue;
    font-size: 20px;
    font-weight: bold;
}

#og_price{
    margin-left: 15px;
    text-decoration: line-through;
    opacity: 50%;
    color: black;
    font-size: 20px;
    font-weight: normal;
}

.contact_btn{
    display: flex;
    width: 115px;
    height: 30px;
    background-color: rgb(35, 214, 35);
    border-radius: 5px;
    color: #FFF;
    justify-content: center;
    margin-left: 8px;
    
}

.contact_btn i{
    margin-top: 7px;
    margin-left: 5px;
}

.contact_btn p{
    margin-top: 4px;
    margin-left: 1px;
}
#btn_text{
    color:rgb(255, 255, 255);
    text-decoration: none;
  }

/* media for responsive */

@media screen and (max-width: 2560px){
    .top-navbar {
        display: block;
        text-align: end;
    }

    .icons{
        padding-top: 30px;
        margin: 0;
    }

    .first_icon {
       margin: 0;
    }

    .first_icon img {
        width: 60px;
    }

    .first_icon p{
        font-size: 13px;
        
    }
    #flash_title {
        font-size: 45px;
    }
    #latest_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    #old_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    .play_store img{
        width: 200px;
    }
    #view_all {
        font-size: 18px;
        margin-right: 18px;
    }
    .flash_sale {
        padding-bottom: 10px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;  
      }
      
    .flash_sale::-webkit-scrollbar {
        display: none;
      }  

    .flash_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
        position: relative; 
    }
    
    .flash_img {
        display: inline-block;
        vertical-align: top;
        position: relative; 
    }
    
    .label {
        position: absolute;
        top: 10px; 
        left: 10px;
        background-color: rgba(255, 255, 255, 0.7);
        padding: 5px; 
        border-radius: 5px; 
    }

    .old_sale {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
    }

    .old_sale::-webkit-scrollbar {
        display: none;
      } 
    
    .old_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
    }
    
    .old_img {
        display: inline-block;
        vertical-align: top;
        position: relative;
    }

}

.privacy-body{
    text-align:right;
}



@media screen and (max-width: 1440px){
    .top-navbar {
        display: block;
        text-align: center;
    }

    .icons{
        padding-top: 30px;
        margin: 0;
    }

    .first_icon {
       margin: 0;
    }

    .first_icon img {
        width: 60px;
    }

    .first_icon p{
        font-size: 13px;
    }
    #flash_title {
        font-size: 45px;
    }
    #latest_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    #old_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    .play_store img{
        width: 200px;
    }
    #view_all {
        font-size: 18px;
        margin-right: 18px;
    }
    .flash_sale {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
      }

    .flash_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
        position: relative; 
    }
    
    .flash_img {
        display: inline-block;
        vertical-align: top;
        position: relative; 
    }
    
    .label {
        position: absolute;
        top: 10px; 
        left: 10px;
        background-color: rgba(255, 255, 255, 0.7);
        padding: 5px; 
        border-radius: 5px; 
    }

    .old_sale {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
    }
    
    .old_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
    }
    
    .old_img {
        display: inline-block;
        vertical-align: top;
        position: relative;
    }

}

@media screen and (max-width: 900px){
    .top-navbar {
        display: block;
        text-align: center;
    }


    .icons{
        padding-top: 30px;
        margin: 0;
    }

    .first_icon {
       margin: 0;
    }

    .first_icon img {
        width: 60px;
    }

    .first_icon p{
        font-size: 13px;
    }
    #flash_title {
        font-size: 45px;
    }
    #latest_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    #old_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    .play_store img{
        width: 200px;
    }
    #view_all {
        font-size: 18px;
        margin-right: 18px;
    }
    .flash_sale {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
      }

    .flash_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
        position: relative; 
    }
    
    .flash_img {
        display: inline-block;
        vertical-align: top;
        position: relative; 
    }
    
    .label {
        position: absolute;
        top: 10px; 
        left: 10px;
        background-color: rgba(255, 255, 255, 0.7);
        padding: 5px; 
        border-radius: 5px; 
    }

    .old_sale {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
    }
    
    .old_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
    }
    
    .old_img {
        display: inline-block;
        vertical-align: top;
        position: relative;
    }

}

@media screen and (max-width: 700px) {
    .top-navbar {
        display: block;
        text-align: center;
    }
    .icons{
        padding-top: 30px;
        margin: 0;
    }

    .first_icon {
       margin: 0;
    }

    .first_icon img {
        width: 60px;
    }

    .first_icon p{
        font-size: 13px;
    }
    #flash_title {
        font-size: 45px;
    }
    #latest_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    #old_title {
        font-size: 35px;
        text-align: start;
        margin-left: 10px;
    }
    .play_store img{
        width: 200px;
    }
    #view_all {
        font-size: 18px;
        margin-right: 18px;
    }
    .flash_sale {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
      }

    .flash_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
        position: relative; 
    }
    
    .flash_img {
        display: inline-block;
        vertical-align: top;
        position: relative; 
    }
    
    .label {
        position: absolute;
        top: 10px; 
        left: 10px;
        background-color: rgba(255, 255, 255, 0.7);
        padding: 5px; 
        border-radius: 5px; 
    }

    .old_sale {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; 
    }
    
    .old_product {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        margin-right: 10px; 
    }
    
    .old_img {
        display: inline-block;
        vertical-align: top;
        position: relative;
    }
}

@media screen and (max-width: 400px) {
    .top-navbar {
        display: block;
        text-align: center;
    }
    .top-navbar a {
        font-size: 13px;
    }

    .top-navbar a img {
        width: 15px;
    }

    .icons2 {
        margin: 0;
    }

    #logo {
        margin: 0;
    }

    .first_icon img{
        width: 25px;
        height: 20px;
    }

    .first_icon p{
        font-size: 5px;
        margin-left: -3px;
    }

    .dotsbox{
        bottom: 4px;
    }

    .dot{
        width: 5px;
        height: 5px;

    }
}

@media screen and (max-width: 320px) {
    .top-navbar {
        display: block;
        text-align: center;
    }
    .top-navbar a {
        font-size: 10px;
    }

    .top-navbar a img {
        width: 13px;
    }

    .icons2 {
        margin: 0;
    }

    #logo {
        margin: 0;
    }
    
    .first_icon img{
        width: 25px;
        height: 20px;
    }

    .first_icon p{
        font-size: 5px;
        margin-left: -3px;
    }

    .dotsbox{
        bottom: 4px;
    }

    .dot{
        width: 5px;
        height: 5px;

    }
    #old_main{
        font-size: 25px;
        margin: 5px;
    }
}

@media screen and (max-width: 240px) {
    .top-navbar {
        display: block;
        text-align: center;
    }
    .top-navbar a {
        font-size: 8px;
        margin-left: 0;
    }

    .top-navbar a img {
        width: 10px;
        margin-left: 0;
    }

    .icons2 {
        margin: 0;
    }

    #logo {
        margin: 0;
    }
    .icons{
        padding-top: 30px;
        margin: 0;
    }

    .first_icon {
       margin: 0;
    }

    .first_icon img {
        width: 40px;
    }

    .first_icon p{
        font-size: 10px;
    }
    #flash_title {
        font-size: 25px;
    }
    #latest_title {
        font-size: 25px;
        text-align: start;
        margin-left: 10px;
    }
    #old_title {
        font-size: 25px;
        text-align: start;
        margin-left: 10px;
    }
    .play_store img{
        width: 100px;
    }
    #view_all {
        font-size: 14px;
        margin-right: 14px;
    }
}

