*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  
  .menu-icon{
    width: 28px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .user-pic{
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 30px;
    margin-right: 30px;
  }
  
  a{
    text-decoration: none;
    color: #555;
  }
  p{
    color: #555;
  }
  .sub-menu-wrap{
    position:absolute;
    top: 100%;
    right: 0%;
    width: 320px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
  }
  .sub-menu-wrap.open-menu{
    max-height: 400px;
  }
  .sub-menu{
    background: #fff;
    padding: 20px;
    margin: 10px;
  }
  .user-info{
    display: flex;
    align-items: center;
  }
  .user-info h3{
    font-weight: 500;
  }
  .user-info img{
    width:60px;
    border-radius: 50%;
    margin-right: 15px;
  }
  .sub-menu hr{
    border: 0;
    height: 1px;
    width: 100%;
    background: #ccc;
    margin: 15px 0 10px;
  }
  .sub-menu-link{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #525252;
    margin: 12px 0;
  }
  .sub-menu-link p{
    width: 100%;
  }
  .sub-menu-link img{
    width: 40px;
    background: #e5e5e5;
    border-radius: 50%;
    padding: 8px;
    margin-right: 16px;
  }
  .sub-menu-link span{
    font-size: 22px;
    transition: transform 0.5s;
  }
  .sub-menu-link:hover span{
    transform: translateX(5px);
  }
  .sub-menu-link:hover p{
    font-weight: 600;
  }
  .container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
  }
  .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around ;
  }
  .col-2{
    flex-basis: 50%;
    min-width: 300px;
  }
  .col-2 img{
    max-width: 100%;
    padding: 50px 0;
  }
  .col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
  }
  .btn{
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: 0.5s;
  }
  .btn:hover{
    background: #563434;
  }
  .categories{
    margin: 70px 0;
  }
  .col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
  }
  .col-3 img{
    width: 100%;
  }
  .small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
  }
  .col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
  }
  .col-4 img{
    width: 100%;
  }
  .title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
  } 
  .title::after{
    content: ''; 
    background: #ff523b;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  h4{
    color: #555;
    font-weight: normal;
  }
  .col-4 p{
    font-size: 14px;
  }
  .rating .fa{
    color: #ff523b;
  }
  .col-4:hover{
    transform: translateY(-5px);
  }
  .offers{
    background: radial-gradient(#fff,#ffd6d6);
    margin-top: 80px;
    padding: 30px 0;
  }
  .col-2 .offer-img{
    padding: 50px;
  }
  small{
    color: #555;
  }
  .testimoinial{
    padding-top: 100px;
  }
  .testimoinial .col-3{
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px rgb(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.5s;
  }
  .testimoinial .col-3 img{
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;
  }
  .testimoinial .col-3:hover{
    transform: translateY(-10px);
  }
  .fa.fa-quote-left{
    font-size: 34px;
    color: #ff523b;
  }
  .col-3 p{
    font-size: 12px;
    margin: 12px 0;
    color-scheme: #777;
  }
  .testimoinial .col-3 h3{
    font-weight: 600;
    color: #555;
    font-size: 16px;
  }
  
  .brands{
    margin: 100px auto;
  }
  .col-5{
    width: 160px;
  }
  .col-5 img{
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
  }
  .col-5 img:hover{
    filter: grayscale(0); 
  }
  
  ul{
    list-style-type: none;
  }
  .app-logo{
    margin-top: 20px;
  }
  .app-logo img{
    width: 140px;
  }
  .footer hr{
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
  }
  .copyright{
    text-align: center;
  }
  
  
  
  
  /*--------------- All products page ----------------*/
  .row-2{
    justify-content: space-between;
    margin: 100px auto 50px;
  }
  select{
    border: 1px solid #ff523b;
    padding: 5px;
  }
  select:focus{
    outline: none;
  }
  .page-btn{
    margin: 0 auto 80px;
  }
  .page-btn span{
    display: inline-block;
    border: 1px solid#ff523b;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
  }
  .page-btn span:hover{
    background: #ff523b;
    color: #fff;
  }
  
  /*--------------- Singl product page ----------------*/
  
  .singl-product{
    margin-top: 80px;
  }
  .singl-product .col-2 img{
    padding: 0;
  }
  .singl-product .col-2{
    padding: 20px;
  }
  .singl-product .col-2 h4{
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
  }
  .singl-product select{
    display: block;
    padding: 10px;
    margin-top: 20px;
  }
  .singl-product input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b;
  }
  input:focus{
    outline: none;
  }
  .singl-product .fa{
    color: #ff523b;
    margin-left: 10px;
  }
  .small-img-row{
    display: flex;
    justify-content: space-between;
  }
  .small-img-col{
    flex-basis: 24%;
    cursor: pointer;
  }
  
  /*----------------cart item details-------------------*/
  
  .cart-page{
    margin: 80px auto;
  }
  table{
    width: 100%;
    border-collapse: collapse;
  }
  .cart-info{
    display: flex;
    flex-wrap: nowrap;
  }
  th{
    text-align: left;
    padding: 5px;
    color: #fff;
    background: #ff523b;
    font-weight: normal;
  }
  td{
    padding: 10px 5px;
  }
  td input{
    width: 40px;
    height: 30px;
    padding: 5px;
  }
  td a{
    color: #ff523b;
    font-size: 12px;
  }
  td img{
    width: 80px;
    height: 80px;
    margin-right: 10px;
  }
  
  .total-price{
    display: flex;
    justify-content: flex-end;
  }
  .total-price table{
    border-top: 3px solid #ff523b;
    width: 100%;
    max-width: 390px;
  }
  td:last-child{
    text-align: right;
  }
  th:last-child{
    text-align: right;
  }
  
  
  
  /*--------------------account page-----------*/
  
  .account-page{
    padding: 50px 0;
    background: radial-gradient(#fff,#ffd6d6);
  }
  .form-container{
    background: #fff;
    width: 300px;
    height: 400px;
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    box-shadow: 0 0 20px 0px rgb(0,0,0,0.1);
    overflow: hidden;
  }
  .form-container span{
    font-weight: bold;
    padding: 0 10px;
    color: #555;
    cursor: pointer;
    width: 100px;
    display: inline-block;
  }
  .form-btn{
    display: inline-block;
  }
  .form-container form{
    max-width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 130px;
    transition: transform 1s;
  }
  form input{
    width: 100%;
    height: 30px;
    margin: 10px 0;
    border: 1px solid #ccc;
  }
  form .btn{
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
  }
  form .btn:focus{
    outline: none;
  }
  #LoginForm{
    left: -300px; ;
  }
  #RegForm{
    left: 0;
  }
  form a{
    font-size: 12px;
  }
  #Indicator{
    width: 100px;
    border: none;
    background: #ff523b;
    height: 3px;
    margin-top: 8px;
    transform: translateX(100px);
    transition: transform 1s;
  }
  
  
  
  
  
  
  
  
  /*-----------Contact Us---------------------*/
  
  .location{
    width: 90%;
    margin: auto;
    padding: 80px 0;
  }
  .location iframe{
    width: 100%;
  }
  .location h1{
    text-align: center;
    margin-bottom: 30px;
  }
  .contact-us{
    width: 45%;
    margin: auto;
    align-items: center;
    display: inline-block;
    padding: 50px 30px;
  }
  .contact-col{
    width: 80%;
    margin-bottom: 30px;
  }
  .contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .contact-col .fa{
    margin: 10px;
    font-size: 28px;
    color: #ff523b;
   
  
  }
  .contact-col p{
    padding: 0;
  }
  .contact-col h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
  }
  .contact-us input, .contact-us textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    font-size: 15px;
  }
  .contact-us .btn{
    width: 40%;
  }
  
  
  /*-----------About us ------------------------*/
  
  .sub-header{
    background: radial-gradient(#fff,#ffd6d6);
  }
  .sub-header h1{
    margin-left: 200px;
    margin-right: 100px;
  }
  .about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
  
  }
  .about-col{
    flex-basis: 48%;
    padding: 30px 2px;
  }
  .about-col img{
    width: 100%;
    padding: 15px 0 85px;
  }
  .about-col h1{
    padding-top: 0;
  }
  .about-col p{
    padding: 15px 0 25px;
  }
  
  .col-2 .title1{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
  } 
  .title1::after{
    content: ''; 
    background: #ff523b;
    width: 220px;
    height: 2.5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  /*-----------Profile user---------------------*/
  
  .cover-img{
    width: 100%;
    border-radius: 6px;
    margin-bottom: 14px;
    margin-top: 30px;
  }
  .profile-details{
    width: 45%;
    margin: auto;
    align-items: center;
    display: inline-block;
    padding: 50px 30px;
  }
  .pd-col{
      width: 70%;
      margin-bottom: 30px;
  }
  .form{
  width: 90%;
  max-width: 600px;
  }
  .input-group{
    margin-bottom: 30px;
    position: relative;
  }
  .input-group .fa{
    color: #ff523b;
  }
  input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    background: transparent;
    font-size: 15px;
  }
  textarea, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    background: transparent;
    font-size: 15px;
  }
  label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    cursor: text;
    transition: 0.2s;
  }
  .profile-details .btn{
    padding: 10px 0;
    outline: none;
    border: 1 px solid #ff523b;
    cursor: pointer;
    display: inline-block;
    width: 40%;
    text-align: center;
  }
  .pd-col .btn{
    border: none;
    width: 30%;
    display: inline-block;
  }
  .pd-col .edit .btn{
    margin-left: 40px;
    width: 40%; 
  }
  .profile-details .pd-col img{
    width: 50%;
    position: center;
    margin-left: 20px;
   
  }
  .profile-details .pd-col h3{
    color: #ff523b;
    font-size: large;
    margin-left: 40px;
  }
  .profile-details .pd-col p{
    margin-left: 30px;
  }
  input:focus ~ label,
  input:valid ~ label{
    top: -35px;
    font-size: 14px;
  }
  textarea:focus ~ label,
  textarea:valid ~ label{
    top: -35px;
    font-size: 14px;
  }
  .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .row .input-group{
    flex-basis: 49%;
  }
  
  /*------------forget password----------*/
  
  .forgot-pass{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
  }
  .forgot-col{
    flex-basis: 48%;
    padding: 30px 2px;
  }
  
  .forgot-col img{
    width: 100%;
    padding: 25px 0 25px;
  }
  .forgot-col h1{
    padding: 0px 0 10px;
  }
  .forgot-col form{
    width: 300px;;
  }
  .forgot-col .btn{
  padding-left: 10px;
  padding-right: 10px;
  width: auto;
  }
  .col-2 .title2{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
  } 
  .title2::after{
    content: ''; 
    background: #ff523b;
    width: 420px;
    height: 2.5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  @media only screen and (max-width:800px){
  
     nav ul{
        position: absolute;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
    }
  }
  @media only screen and (max-width: 600px){
    .row{
        text-align: center;
    }
    .col-2, .col-3, .col-4{
      flex-basis: 100%;
    }
    .singl-product .row{
      text-align: left;
    }
    .singl-product .col-2{
      padding: 20px 0;
    }
    .singl-product h1{
      font-size: 26px;
      line-height: 32px;
    }
    .cart-info{
      display: none;
    }
  }
  
  