body{
    background-color: var(--bg-100);
    margin: 0;
    padding: 0;
    font-family: 'Expletus Sans', sans-serif;
    color: var(--text-100);
    transition: .5s;
    overflow-x: hidden;
}
button{
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background-color: var(--bg-100);
}
::-webkit-scrollbar-thumb {
    background-color: var(--text-200);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-100);
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background-color: rgb(255, 255, 255, .40); 
  z-index: 100; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5em 0;
}

.left-header{
  margin-left: 1em;
  width: 15%;
}
.left-header i{
  font-size: 1.3em;
  cursor: pointer;
  transition: .5s;
}
.left-header i:hover{
  color: var(--accent-200);
}
.page-name{
  max-width: 60%;
}
.page-name h1{
margin: 0;
padding: 0;
color: var(--text-100);
font-size: 1.7em;
transition: .5s;
font-family: 'Anton';
cursor: pointer;
}
.page-name h1:hover{
  color: red !important;
}
.right-header{
  width: 15%;
  display: flex;
  justify-content: space-between;
  margin-right: 1em;
}
.right-header i{
  font-size: 1.3em;
  transition: .5s;
  cursor: pointer;
}
.right-header i:hover{
  color: var(--accent-200);
}


.reminder-not{
  color: var(--text-300);
  text-align: center;
  font-size: .8em;
  margin-top: 2em !important;
}
.reminder-not a{
  color: var(--accent-200);
}

.search-section{
  display: flex;
  justify-content: space-between;
  padding: 1em;
  margin-top: 5em;
}
.search-box{
  border: 1px solid var(--text-300);
  border-radius: .5em;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-300);
  font-size: 1em;
  font-family: 'Inter', 'Expletus Sans';
  font-weight: 300;
}
.used-box{
  background-color: var(--bg-100);
  border-radius: .5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-300);
  margin-left: .2em;
  padding: .1em .5em;
}
.used-box span{
  font-weight: 600;
  color: var(--accent-200);
}
.used-box select{
  background-color: transparent;
  border: none;
  text-align: center;
  border-radius: .5em;
  color: var(--text-300);
}
.search-button{
  background-color: var(--primary-100);
  color: var(--bg-100);
  font-size: 1.3em;
  padding: .5em;
  margin-left: .3em;
  border-radius: .3em;
  border: 2px solid var(--primary-100);
  transition: .5s;
}
.search-button:hover{
  background-color: var(--bg-100);
  color: var(--text-100);
}

footer{
  display: flex;
  flex-direction: column;
  background-color: var(--bg-300);
  justify-content: center;
  align-items: center;
  padding-bottom: .5em;
  padding-top: 1.5em;
}
.social-media{
  display: flex;
  flex-direction: column;
}
.follow-us{
  margin: 0;
  font-size: 1.2em;
  font-family: 'Inter', 'Expletus Sans';
  letter-spacing: 1px;
  text-align: center;
}
.social-links{
  margin-top: .5em;
}
.social-links a{
color: var(--text-100);
font-size: 1.3em;
margin:0 1em;
transition: .5s;
}
.social-links a:hover{
  color: var(--accent-200);
}
footer hr{
  width: 60%;
  border: 1px solid var(--text-300);
}
.credits{
  margin-top: 2em;
  font-size: 1em;
  text-decoration: none;
  transition: .5s;
  color: var(--text-300);
}
.cred-1{
  color: var(--text-300);
  letter-spacing: 1px;
  transition: .5s;
}
.cred-2{
  font-weight: 600;
  transition: .5s;
}
.cred-3{
  font-weight: 600;
  color: var(--text-300);
  transition: .5s;
}
.credits:hover .cred-2{
  color: var(--accent-200) !important;
}
.copyright{
  margin-top: 1.5em;
  color: var(--text-300);
  font-weight: 600;
  font-size: 1.1em;
}


nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  background: var(--bg-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-110%);
  transition: transform 0.5s ease-in-out;
  z-index: 999;
  box-shadow: 0 .5em 1em rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  justify-content: baseline;
}
.top-nav{
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 0;
  margin-bottom: .5em;
  margin-top: 1em;
}
.top-nav h2{
  margin: 0;
}
.top-nav i{
  font-size: 1.5em;
  transition: .5s;
}
.top-nav i:hover{
  color: var(--text-300);
}

nav hr{
  width: 90%;
  border: 1px solid var(--text-100);
  margin: 0;
  padding: 0;
}
.nav-section{
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: baseline;
  color: var(--text-100);
  width: 90%;
  margin-top: 1.5em;
}
.nav-section:hover h4{
  color: var(--accent-200);
}
.nav-section:hover hr{
  border: 1px solid var(--accent-200);
}
.nav-section hr{
  border: 1px solid var(--text-100);
  width: 100%;
  transition: .5s;
}
.nav-section h4{
  font-family: 'Oswald', 'Expletus Sans';
  margin: 0;
  color: var(--text-100);
  font-size: 1.2em;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
  margin-bottom: .5em;
  font-weight: 400;
  transition: .5s;
}
.nav-section ul{
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0;
  margin-top: .5em;
}
.nav-section ul li{
  padding: .3em 0;
  text-align: left;
  font-family: 'Inter', 'Expletus Sans';
  width: 100%;
  cursor: pointer;
  transition: .5s;
}
.nav-section a{
  color: var(--text-100);
  text-decoration: none;
  transition: .5s;
}
.nav-section li:hover a {
  color: var(--text-300);
}
.nav-bottom{
  height: 2.5em;
}


.top-menu-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 75%;
  background: var(--bg-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: baseline;
  transform: translateY(-110%);
  transition: transform 0.5s ease-in-out;
  z-index: 1000;
  box-shadow: 0 .5em 1em rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}
.top-nav-opt
{
display: flex;
width: 90%;
justify-content: space-between;
align-items: center;
flex-direction: row;
margin: 0;
margin-bottom: .5em;
margin-top: 1em;
padding-bottom: 1em;
}
.top-nav-opt h2{
margin: 0;
}
.top-nav-opt i{
font-size: 1.5em;
transition: .5s;
cursor: pointer;
}
.top-nav-opt i:hover{
color: var(--text-300);
}

.top-menu-nav hr{
width: 90%;
border: 1px solid var(--text-100);
margin: 0;
padding: 0;
}

.saved-items{
  width: 90%;
  display: flex;
  margin-bottom: 1em;
}
.saved-items ul{
  padding: 0;
  margin: 0;
  width: 100%;
}
.saved-items li{
  margin-top: 1em;
  background-color: var(--bg-100);
  border-radius: .5em;
  cursor: pointer;
  list-style: none;
}
.saved-items a{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-decoration: none !important;
}
.saved-items li img{
  width: 40%;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-200);
  border: none !important;
  object-fit: cover;
  border-top-left-radius: .5em;
  border-bottom-left-radius: .5em;
}
.item-info{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1em;
  font-family: 'Inter', 'Expletus Sans';
}
.item-brand-s{
  margin: 0;
  font-size: 1.2em;
  color: var(--accent-200);
  margin-bottom: 1.5em;
}
.item-model-s, .item-price-s{
  color: var(--text-100);
}
.remove-item{
  padding: .5em;
}
.remove-item i{
  color: var(--accent-200);
  transition: .5s;
}
.remove-item i:hover{
  color: red;
}


.account-info{
  display: flex;
  flex-direction: column;
  width: 90%;
  align-items: center;
  justify-content: baseline;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  
}
.style-acc-a{
  display: flex;
  text-decoration: none;
  margin: 0;
  font-size: 1.2em;
  color: var(--accent-200);
  width: 100%;
  text-align: center;
  margin-bottom: 1em;
  font-weight: 600;
  justify-content: center;
}
.account-info button{
  padding: .3em;
  border-radius: .5em;
  border: 2px solid var(--text-100);
  color: var(--text-100);
  width: 100%;
  background-color: var(--bg-300);
  font-weight: 600;
  transition: .5s;
}
.account-info button:hover{
  color: var(--bg-300) !important;
  background-color: var(--text-100);
}
.account-info span{
  margin-top: 1em;
}
.log-in-button, .register-button{
  margin-top: 1em;
  font-size: 1.2em;
}
.log-in-button{
  color: var(--accent-200) !important;
  border-color: var(--accent-200) !important;
}
.log-in-button:hover{
  background-color: var(--accent-200) !important;
}

.img-logo{
  display: flex;
  width: 100%;
  justify-content: center;
}
.img-logo img{
  width: 20%;
}
.terms-and-cond{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
}
.terms-and-cond h6{
  margin: 0;
  font-size: 1em;
  font-family: 'Inter', 'Expletus Sans';
  letter-spacing: 1px;
  text-align: center;
  color: var(--text-300);
}
.terms-and-cond small{
  width: 80%;
  text-align: justify;
  color: var(--text-300);
  font-size: .9em;
  margin-top: .5em;
}
.terms-dag{
  width: 80%;
  text-align: center;
  color: var(--text-300);
  font-size: .9em;
  margin-top: .5em;
}


  @media (min-width:700px){
    
      .left-header, .right-header{
        max-width: 3.5em;
      }
      .left-header{
        margin-left: 10%;
      }
      .right-header{
        margin-right: 10%;
      }
      .search-section{
        padding: 1em 10%;
      }


      .items-section{
        padding: 1em 10% !important;
      }
      .grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }
    }


    .pages-number{
      width: 80%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      margin-top: 2em;
      margin-left: 10%;
    }
    .pages-number a{
      margin: 0em .3em;
      color: var(--accent-200);
      transition: .5s;
    }
    .pages-number a:hover{
      color: var(--text-100);
    }
    .pages-number span{
      color: var(--accent-200);
    }
    @media (min-width:900px){
    nav{
      width: 20%;
      height: 100%;
      transform: translateY(0);
    }
    .page-name h1{
    font-size: 2.5em;
    }
    .top-nav{
      display: none;
    }
    .top-nav-hr{
      display: none;
    }
    .left-header{
      margin-left: 30%;
    }
    .search-section{
      padding-left: 30%;
    }
    footer{
      padding-left: 20%;
    }
    .top-menu-nav{
      width: 40%;
      left: 60%;
    }


    .items-section{
      padding-left: 30% !important;
    }
    .left-header{
      display: none;
    }
    .page-name{
      margin-left: 30%;
    }
    }
    
  



    .items-section{
      display: flex;
      flex-direction: column;
      padding: 1em;
    }
    .section-title{
      font-family: 'Oswald', 'Expletus Sans';
      font-size: 1.6em;
    }
    .container {
      display: flex;
      justify-content: center;
  }
  .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1em; 
      max-width: 800px;
      width: 100%;
  }
  .item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border-radius: .5em;
      font-family: 'Inter', 'Expletus Sans';
      margin-bottom: 1.5em;
      cursor: pointer;
      transition: .5s;
      text-decoration: none !important;
  }
  .item:hover{
      transform: translateY(-.5em);
  }
  .item img {
      width: 100%;
      aspect-ratio: 3 / 4;
      background-color: var(--bg-200);
      border: none !important;
      object-fit: cover;
  }
  .item h5{
    margin: 0;
    margin-top: .5em;
    font-size: 1.2em;
    width: 100%;
    text-align: left;
    color: var(--accent-200);
    font-family: 'Expletus Sans', 'Inter';
    font-weight: 600;
  }
  .item-model{
    margin-top: .2em;
    text-align: left;
    width: 100%;
    font-weight: 400;
    color: var(--text-100);
  }
  .item-price{
    margin-top: 1em;
    text-align: left;
    width: 100%;
    font-weight: 400;
    color: var(--text-100);
  }
  .item-spc{
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    color: var(--text-300);
  }