@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html {
  scroll-behavior: smooth;
}

/* header */
header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #1D232C;
  color: white;
  padding: 1%;
  flex-wrap: wrap;
}

header i {
  cursor: pointer;
}

/* header__section */
.header__section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5% 1%;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__section ul {
  display: flex;
  list-style: none;
  gap: 15px;
  padding: 1%;
  color: black;
}

.header__section ul li a{
  color: black;
  text-decoration: none;
}

.header__section ul li:hover {
  text-decoration: underline;
  cursor: pointer;
}

.header__section i {
    cursor: pointer;
}

/* sidenav */
.sidenav {
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 100vh;
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 5%;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 150;
}

.sidenav.active {
    transform: translateX(0);
}

/* close icon inside sidenav */
.sidenav #close {
    position: absolute;       /* position relative to sidenav */
    top: 20px;                /* distance from top */
    right: 20px;              /* distance from right */
    font-size: 1.5rem;        /* make it bigger if you want */
    cursor: pointer;
    color: white;
}

.sidenav ul{
    list-style: none;
    padding: 20%;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.sidenav ul li a{   
    text-decoration: none;
    color: white;
}

.sidenav ul li:hover{
    cursor: pointer;
    text-decoration: underline;
}
/* Collections */
.navbar-search {
    border: solid #1D232C 1px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    width: 95%;
}
.navbar-search input {
    border: none;
    width: 100%;
    background-color: transparent;
}
.navbar-search input:focus{
  outline: none;
}
.divide-section{
    display: flex;
}

.filter-section{
    flex-basis: 25%;
    position: relative;
    font-size: 1.5rem;
    padding: 1%;
}

.product-section{
    flex-basis: 75%;
    position: relative;
}

.vertical-line {
    border: none;
    border-left: 3px solid #1D232C; /* Adjust color and width as needed */
    height: 100%; /* Adjust height as needed */
    margin: 0 20px; /* Adjust margin as needed */
    position: absolute;
    top: 0px;
    left: 80%;
  }

.filter-section-price,.filter-section-arrivals,.filter-section-occasion,.filter-section-colors{
    margin-top: 3%;
    margin-bottom: 2%;
    
}

.product-section{
    padding: 10px;
}

.products{
    margin-top: 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size:0.7rem;
}

.signupbtn {
  position: fixed;
  bottom: 5%;
  right: 5%;
  padding: 10px 20px;
  background-color: rgb(0, 0, 0);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 100;
}

/* footer */
.footer {
  margin-top: 5%;
  padding: 40px;
  background-color: #1d232c;
  color: #e2e1e1;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-box-1 {
  display: flex;
  flex-direction: column;
}

.footer-box-2 {
  display: flex;
}

.footer-icon-container i {
  padding: 2%;
}

.subtitle {
  display: block;
}

.footer p,
.footer h2 {
  font-size: 1.5rem;
}

/* media Queries */
@media (min-width: 700px) {
  .header__section i {
    display: none;
  }
}
@media (max-width: 699px) {
  .header__section h1{
    font-size: 1.2rem;
  }
  h1{
    font-size: 0.4rem;
  }
  .header__section ul {
    display: none;
  }
  .products{
    font-size: 0.2rem;
  }
  .filter-section{
    font-size: 0.6rem;
  }
  .footer p,
  .footer h2 {
    font-size: 0.6rem;
  }
  .footer-icon-container i{
    font-size: 0.6rem;
  }
}