@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", serif;
  background-color: white;
}

nav {
  background-color: white;
  display: flex;
  align-items: center;
  z-index: 1000;
  justify-content: space-between;
  padding: 2rem 1rem;
  width: 100%;
  position: fixed;
}
nav .furniture {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
nav .furniture .arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: green;
  background-color: white;
  padding: 0.6rem;
  border: 1px solid rgba(137, 134, 134, 0.501);
  border-radius: 0.3rem;
}
@media (max-width: 920px) {
  nav .furniture .arrow {
    display: none;
  }
}
nav .furniture1 {
  display: flex;
  gap: 1rem;
  align-items: center;
}
nav .furniture1 .picker2 {
  display: flex;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: light;
  align-items: center;
}
@media (max-width: 920px) {
  nav .furniture1 .picker2 {
    display: none;
  }
}
nav .furniture1 .picker2 .bx-chevron-down {
  font-weight: 1.4rem;
}
@media (max-width: 920px) {
  nav .furniture1 .picker2 .bx-chevron-down {
    display: none;
  }
}
nav .furniture1 .bx-search {
  font-size: 1.5rem;
  background-color: white;
  color: black;
  border-radius: 50%;
  border: 0.5px solid rgba(128, 128, 128, 0.749);
  padding: 0.5rem;
}
@media (max-width: 920px) {
  nav .furniture1 .bx-search {
    display: none;
  }
}
nav .furniture1 .join {
  background-color: #009f7f;
  color: white;
  padding: 0.6rem;
  border-radius: 0.3rem;
}
@media (max-width: 920px) {
  nav .furniture1 .join {
    display: none;
  }
}
nav .furniture1 .join1 {
  background-color: #009f7f;
  color: white;
  padding: 0.6rem;
  border-radius: 0.3rem;
}
@media (max-width: 679px) {
  nav .furniture1 .join1 {
    display: none;
  }
}

.filter {
  background-color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  border: 1px solid rgba(128, 128, 128, 0.382);
}
.filter .filter1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  gap: 0.5rem;
  width: 20%;
  border: 1px solid rgba(103, 98, 98, 0.38);
  background-color: aliceblue;
  border-radius: 0.3rem;
}
.filter .arrow {
  display: flex;
  gap: 0.5rem;
}

.main-section {
  background-color: #c3e4e4;
  padding: 133px 0px;
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 920px) {
  .main-section {
    padding-top: 70px;
    flex-direction: column;
  }
}
.main-section .main1 {
  width: 30%;
  position: relative;
  padding-top: 0;
}
@media (max-width: 920px) {
  .main-section .main1 {
    display: none;
  }
}
.main-section .main3 {
  position: absolute;
  left: 1%;
  top: 25%;
  position: fixed;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.5rem;
  width: 30%;
}
@media (max-width: 920px) {
  .main-section .main3 {
    display: none;
  }
}
.main-section .main3 .chair {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
  background-color: white;
  border-radius: 0.5rem;
}
.main-section .main2 {
  width: 70%;
  display: flex;
  gap: 0.2rem;
  flex-direction: column;
  padding-top: 1.5rem;
  padding-left: 1rem;
  position: relative;
}
@media (max-width: 920px) {
  .main-section .main2 {
    width: 100%;
    padding-left: 0;
  }
}
.main-section .main2 .furn {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(128, 128, 128, 0.355);
  border-radius: 0.4rem;
}
.main-section .main2 .miranda {
  background-color: white;
  display: flex;
  align-content: center;
  justify-content: space-between;
  border: 1px solid rgba(128, 128, 128, 0.263);
  border-radius: 0.5rem;
  gap: 2rem;
  padding: 1rem;
}
@media (max-width: 920px) {
  .main-section .main2 .miranda {
    flex-direction: column;
    align-items: center;
  }
}
.main-section .main2 .miranda .miranda1 {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 45%;
  padding-left: 2rem;
  padding-top: 1.8rem;
}
@media (max-width: 920px) {
  .main-section .main2 .miranda .miranda1 {
    width: 100%;
  }
}
.main-section .main2 .miranda .miranda1 .home1 {
  font-weight: bolder;
}
.main-section .main2 .miranda .miranda1 .home2 {
  font-size: 1rem;
  color: gray;
}
@media (max-width: 820px) {
  .main-section .main2 .miranda .miranda1 .home2 {
    font-size: 0.8rem;
  }
}
.main-section .main2 .miranda .miranda1 .home {
  background-color: black;
  border-radius: 0.5rem;
  color: white;
  padding: 0.6rem 0.8rem;
  border: none;
  font-size: 0.9rem;
  width: 33%;
  text-align: center;
}
@media (max-width: 430px) {
  .main-section .main2 .miranda .miranda1 .home {
    width: 40%;
  }
}
.main-section .main2 .miranda .miranda2 {
  width: 45%;
  display: flex;
  align-items: right;
}
@media (max-width: 920px) {
  .main-section .main2 .miranda .miranda2 {
    flex-direction: column;
    align-items: left;
    width: 100%;
  }
}
.main-section .main2 .miranda .miranda2 .flower {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-section .main2 .bag {
  background-color: #009f7f;
  width: 10%;
  padding: 0.7rem 0.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  position: absolute;
  right: 2%;
  top: 9%;
}
@media (max-width: 802px) {
  .main-section .main2 .bag {
    display: none;
  }
}
.main-section .main2 .bag .bxs-shopping-bag {
  color: white;
}
.main-section .main2 .bag .bag1 {
  background-color: white;
  color: #009f7f;
  padding: 0.6rem;
  border-radius: 0.5rem;
}
.main-section .main2 .items {
  padding: 0.1rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 540px) {
  .main-section .main2 .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-section .main2 .items .items1 {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(128, 128, 128, 0.355);
  border-radius: 0.3rem;
  position: relative;
}
@media (max-width: 540px) {
  .main-section .main2 .items .items1 {
    font-size: 0.8rem;
    font-weight: bolder;
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 390px) {
  .main-section .main2 .items .items1 {
    padding: 0.5rem;
    font-size: 0.6rem;
    font-weight: bolder;
  }
}
.main-section .main2 .items .items1 .items2 {
  width: 100%;
}
.main-section .main2 .items .items1 .items2 .din {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 540px) {
  .main-section .main2 .items .items1 .items2 .din {
    width: 100%;
    height: 190px;
  }
}
.main-section .main2 .items .items1 .cash {
  color: gray;
  text-decoration: line-through;
}
.main-section .main2 .items .items1 .cent {
  background-color: #eab308;
  padding: 0.3rem 0.5rem;
  border-radius: 1rem;
  position: absolute;
  right: 3%;
  top: 2%;
}
.main-section .linka {
  background-color: rgba(215, 6, 6, 0.824);
  padding: 0.5rem;
  width: 100%;
  font-weight: bolder;
  display: none;
}
@media (max-width: 470px) {
  .main-section .linka {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.8rem;
    overflow-x: auto;
    background-color: white;
  }
}
.main-section .linka .chair {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  background-color: #c3e4e4;
  border-radius: 1.3rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(128, 128, 128, 0.382);
}
.main-section .linka .chair .bed {
  width: 15px;
  height: 15px;
}
.main-section .linka .chair .nalu {
  font-size: 0.7rem;
}/*# sourceMappingURL=style.css.map */