@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* font-family: "Inter", sans-serif; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --gray-bars: #202934;
  --main-white: #ffffff;
  --write: #181d25;
  --gray-200: #e0e5eb;
  --gray-400: #9ca3af;
  --gray-500: #6c727f;
  --dark-main: #161d25;
  --main-shop-btn: #edf1f6;
  --dark-shop-btn: #2f3d4c;
  --stars: #fc9231;
}

body {
  background-color: var(--main-white);
  transition: all 0.3s ease;
}

body.active {
  background-color: #161d25;
}

.container {
  max-width: 1296px;
  margin: 0 auto;
}

ul {
  list-style: none;
}

nav {
  background-color: var(--gray-bars);
  position: fixed;
  width: 100%;
  z-index: 999;
}

.nav_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.nav_top .logo {
  width: 141px;
}

.logo img {
  width: 100%;
}

.search {
  width: 490px;
  border: 2px solid var(--main-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  padding: 0px 12px;
  box-shadow: 0px 0px 10px 3px #5b697e;
}

.search input {
  width: 460px;
  padding: 12px 16px;
  border-radius: 0px 100px 100px 0px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  color: var(--main-white);
}

.search input::placeholder {
  color: #6c727f;
}

.search label {
  color: var(--main-white);
  font-size: 20px;
  cursor: pointer;
}

.nav_top .icons {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #e0e5eb;
  font-size: 15px;
}

.icons .changeMode {
  width: 30px;
  text-align: center;
  cursor: pointer;
}

.changeMode .fa-sun {
  display: none;
}

body.active .fa-sun {
  display: block;
}

body.active .fa-moon {
  display: none;
}

.shop {
  width: 48px;
  height: 48px;
  background-color: #333d4c;
  text-align: center;
  border-radius: 50%;
  padding-top: 15px;
}

.nav_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  gap: 140px;
  color: #ffffffcc;
}

.nav_bottom .detals {
  display: flex;
  align-items: center;
  gap: 45px;
}

.detals li {
  position: relative;
  padding: 4px 7px;
  cursor: pointer;
}

.detals li::after {
  content: " ";
  position: absolute;
  top: 13px;
  left: 40px;
  width: 0px;
  height: 0px;
  background-color: var(--main-shop-btn);
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 6px;
}

.detals li:hover {
  color: #141d25;
  z-index: 99;
}

.detals li:hover::after {
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.selection {
  display: flex;
  align-items: center;
  gap: 30px;
}

.selection .language {
  width: 48px;
  color: #ffffffcc;
  background-color: transparent;
  border: none;
  outline: none;
}

.language option {
  width: 58px;
  background-color: #1d2934;
}

.selection .summa {
  width: 71px;
  outline: none;
  border: none;
  background-color: transparent;
  color: #ffffffcc;
}

.summa option {
  width: 58px;
  background-color: #1d2934;
}

.hero .container {
  padding-top: 147px;
}
.headphone {
  background: linear-gradient(90deg, #accbee, #e7f0fd);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  padding-top: 15px;
  position: relative;
  transition: all 0.3s ease;
}

body.active .headphone {
  background: linear-gradient(90deg, #1b273a, #1f2632);
}

.line {
  bottom: 50px;
  right: 100px;
  width: 1100px;
  height: 4px;
  background-color: #cde4f7;
  border-radius: 100px;
  position: absolute;
}

.line1 {
  width: 300px;
  height: 3px;
  background-color: var(--main-white);
  border-radius: 100px;
  position: absolute;
}

.headphone .sound {
  width: 500px;
  padding-left: 100px;
  text-align: left;
}

.sound p {
  font-size: 16px;
  font-weight: 400;
  color: #4e5562;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

body.active .sound p {
  color: #cad0d9;
}

.sound h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--write);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

body.active .sound h1 {
  color: var(--main-white);
}

.sound button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f55266;
  color: var(--main-white);
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
}

.returns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 4px;
}

.returns .back {
  width: 300px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  /* border: 2px solid red; */
  border-radius: 200px;
  overflow: hidden;
}

.returns .back:hover {
  color: black;
  z-index: 56;
}

.returns .back::after {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  background-color: #f4f7fa;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

body.active .back::after {
  background-color: #1d2934;
}

.returns .back:hover::after {
  width: 100%;
  height: 100%;
}

.returns .back::before {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  background-color: #f4f7fa;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

body.active .back::before {
  background-color: #1d2934;
}

.returns .back:hover::before {
  width: 100%;
  height: 100%;
}

.back p {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  text-align: center;
  padding-top: 25px;
  background-color: #f5f7fa;
  color: var(--write);
  font-size: 30px;
  transition: all 0.3s ease;
}

.returns .back:hover p {
  background-color: #cde4f7;
}

body.active .back:hover p {
  background-color: #1b273a;
}

body.active .back p {
  background-color: #202934;
  color: #ffffff;
}

.orders {
  line-height: 25px;
}

.orders h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--write);
  transition: all 0.3s ease;
}
body.active .orders h3 {
  color: white;
}
.orders h4 {
  font-size: 14px;
  font-weight: 400;
  color: #4e5562;
  transition: all 0.3s ease;
}

body.active .orders h4 {
  color: #cad0d9;
}

.trending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e5eb;
  transition: all 0.3s ease;
}

body.active .trending {
  border-bottom: 2px solid #333d4c;
}

.trending h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--write);
  transition: all 0.3s ease;
  position: relative;
  border-radius: 10px;
  padding: 4px 5px;
}

.trending h2::after {
  content: " ";
  position: absolute;
  top: 17px;
  left: 0px;
  width: 0px;
  height: 0px;
  background-color: #6c727f;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  z-index: -1;
}

.trending h2:hover {
  color: white;
  z-index: 45;
}

.trending h2:hover::after {
  width: 100%;
  height: 100%;
  top: 0px;
}

body.active .trending h2 {
  color: white;
}

.trending p {
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #222934;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trending p:hover {
  transform: scale(1.1);
}

body.active .trending p {
  color: white;
}

.trending p span {
  font-size: 10px;
}

.boxs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.boxs .box {
  width: 306px;
  background-color: var(--main-white);
  padding: 20px 14px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.boxs .box:hover {
  box-shadow: 0px 0px 10px 3px #4e5562;
}

body.active .box {
  background-color: #141d25;
}

.foiz {
  top: 10px;
  left: 10px;
  width: 45px;
  border-radius: 5px;
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  padding: 3px 0px;
  background-color: #f03d3d;
  color: var(--main-white);
  position: absolute;
}

.foiz.foiz1 {
  background-color: #2f6ed5;
}

.box .photo {
  width: 268px;
  height: 240px;
  object-fit: cover;
  margin: 0px auto;
  margin-bottom: 20px;
}

.photo img {
  width: 100%;
}

.box p {
  font-size: 12px;
  color: var(--stars);
  margin-bottom: 10px;
}

.box p span {
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  transition: all 0.3s ease;
}

body.active .box p span {
  color: #6c727f;
}

.box h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--write);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

body.active .box h4 {
  color: white;
}

.box .sales {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sales h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--write);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

body.active .sales h2 {
  color: white;
}

.sales h2 span {
  font-size: 14px;
  font-weight: 400;
  color: #9ca3af;
}

.sales button {
  padding: 10px;
  background-color: #eef1f6;
  border-radius: 8px;
  border: none;
  color: #333d4c;
  font-size: 15px;
  transition: all 0.3s ease;
}

body.active .sales button {
  background-color: #2f3d4c;
  color: white;
}

.trending2 .time {
  display: flex;
  align-items: center;
  gap: 40px;
}

.trending2 .oclock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oclock button {
  padding: 10px 6px;
  border-radius: 8px;
  background-color: #f55266;
  border: none;
  color: var(--main-white);
  transition: all 0.3s ease;
}

.box .chiziq {
  width: 274px;
  height: 4px;
  border-radius: 100px;
  margin: 13px auto;
  background-color: #eef1f6;
  position: relative;
}

.chiziq .redline {
  top: 0px;
  left: 0px;
  width: 100px;
  height: 3px;
  background-color: #f55266;
  position: absolute;
}

.box h5 {
  font-size: 14px;
  font-weight: 400;
  color: #8c96a6;
  transition: all 0.3s ease;
}

.box h5 span {
  font-weight: 500;
  color: var(--write);
  transition: all 0.3s ease;
}

body.active .box h5 {
  color: white;
}

body.active .box h5 span {
  color: white;
}

.companys {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
}

.companys .company {
  width: 196px;
  height: 112px;
  border: 2px solid #e0e5eb;
  border-radius: 12px;
  text-align: center;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

body.active .company {
  border-color: #333d4c;
}

.company:hover {
  border-color: #161d25;
}

body.active .company:hover {
  border-color: white;
}

.company img {
  display: flex;
  width: 70%;
  height: 50%;
}

footer {
  background-color: var(--gray-bars);
}

.yuqori {
  border-bottom: 2px solid #333d4c;
  margin-bottom: 30px;
  padding-top: 60px;
  padding-bottom: 70px;
}

.account {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.got h1 {
  color: var(--main-white);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.got p {
  font-size: 14px;
  font-weight: 400;
  color: #cad0d9;
  margin-bottom: 20px;
}

.got .help {
  width: 252px;
  padding: 10px 20px;
  background-color: #2f3d4c;
  color: #e0e5eb;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  word-spacing: 4px;
  letter-spacing: 1px;
}

.malumotlar {
  line-height: 30px;
}

.malumotlar li {
  font-size: 14px;
  font-weight: 400;
  color: #e0e5eb;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.malumotlar li::before {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 10px;
  height: 1px;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.malumotlar li:hover {
  transform: scale(1.05);
}

.malumotlar li:hover::before {
  width: 100%;
  height: 2px;
}

.malumotlar .customer {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-white);
  margin-bottom: 10px;
}

.maxsulot {
  line-height: 50px;
}

.maxsulot p {
  font-size: 14px;
  font-weight: 400;
  color: #e0e5eb;
  word-spacing: 6.7px;
}

.past {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}

.past p {
  font-size: 12px;
  font-weight: 400;
  color: #5b697e;
}

.past .pays {
  display: flex;
  align-items: center;
  gap: 40px;
}

.bars {
  display: none;
}

.icons .glass {
  display: none;
}

.litter {
  display: flex;
  align-items: center;
  gap: 30px;
}

.litter p {
  cursor: pointer;
}

.icons .shop {
  cursor: pointer;
}

.headphone .girl {
  width: 500px;
}

.girl img {
  width: 100%;
}

.girl .ikki {
  display: none;
}

.box .dot {
  display: none;
}

.companys {
  flex-wrap: wrap;
}

footer .service {
  display: none;
}

.headphone .modal {
  display: none;
}

@media (max-width: 447px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .nav_top .bars {
    color: white;
    display: flex;
    align-items: center !important;
    gap: 10px;
    position: relative;
  }
  body {
    overflow-x: hidden;
  }
  .modal {
    position: absolute;
    bottom: -249px !important;
    left: -1100px;
    display: block;
    width: 270px;
    background-color: #f4f7fa;
    color: var(--dark-main);
    transition: all 0.4s ease;
    padding: 20px 10px 0px 10px;
    transition: all 0.3s ease-in-out;
  }
  body.active .modal {
    background-color: #141d25;
    color: white;
  }
  .modal h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cad0d9;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }

  .modal h4:hover {
    transform: scale(1.06);
  }

  .modal h4:nth-child(5) {
    border-bottom: none;
  }

  .modal.menu {
    left: -8px;
  }

  .bar {
    width: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .bar span {
    transition: all 0.3s ease;
  }

  .bar.menu span:nth-child(1) {
    transform: rotate(-45deg) translateY(13px);
  }
  .bar.menu span:nth-child(3) {
    transform: rotate(45deg) translateY(-13px);
  }
  .bar.menu span:nth-child(2) {
    opacity: 0;
    transform: translateX(25px);
  }

  .bar span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: white;
  }

  .nav_top .logo {
    display: none;
  }
  .nav_top .search {
    display: none;
  }
  .icons .litter {
    display: none;
  }
  .icons .changeMode {
    padding-left: 50px !important;
  }
  .icons .glass {
    text-align: right;
    width: 50px;
    display: inline-block;
    cursor: pointer;
  }
  .icons .shop {
    margin: 0px;
  }

  .nav_bottom {
    display: none;
  }

  .hero .container {
    padding-top: 130px;
  }
  .headphone {
    width: 100%;
    margin-top: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .sound {
    padding: 30px 20px;
    width: 80% !important;
    padding-left: 0px !important;
    margin: 0 auto !important;
    text-align: center !important;
    margin-bottom: 20px;
  }
  .roam {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sound p {
    font-size: 16px;
  }
  .sound h1 {
    font-size: 34px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 17px;
  }
  .girl {
    width: 100%;
    margin: 0 auto;
    display: flex;
  }
  .line {
    width: 247px;
  }
  .line1 {
    width: 50px;
  }
  .girl img {
    width: 100%;
  }
  .girl .bir {
    display: none;
  }
  .girl .ikki {
    display: block;
  }
  .returns {
    width: 100%;
  }
  .returns .back {
    width: 160px;
    display: flex;
    flex-direction: column;
    text-align: center !important;
    margin-bottom: 20px;
    border-radius: 40px;
    padding: 20px 0px;
  }

   .returns .back

  .orders h3 {
    font-size: 16px;
  }
  .orders h4 {
    font-size: 13px;
  }
  .trending h2 {
    font-size: 23px;
  }
  .trending p {
    font-size: 14px;
  }
  .boxs .box {
    width: 160px;
  }
  .box .dot {
    top: 7px;
    right: 7px;
    text-align: center;
    padding-top: 5px;
    border-radius: 4px;
    font-size: 15px;
    width: 32px;
    height: 32px;
    color: #333d4c;
    background-color: transparent;
    border: 1px solid #e0e5eb;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
  }
  body.active .dot {
    color: white;
  }
  .box .photo {
    width: 100%;
    height: 100%;
  }
  .box h4 {
    font-size: 14px;
  }

  .sales h2 {
    font-size: 14px;
    display: flex;
    line-height: 10px;
    flex-direction: column;
  }
  .trending2 {
    align-items: center;
  }
  .trending2 .time {
    width: 200px;
    gap: 0px;
    padding: 20px 0px;
    width: 250px;
    flex-direction: column;
    justify-content: left !important;
    line-height: 35px;
  }
  .oclock {
    width: 200px;
  }
  .box .chiziq {
    width: 100%;
  }

  .chiziq .redline {
    width: 40%;
  }

  .company {
    width: 166px !important;
    margin-bottom: 20px;
  }
  .company img {
    width: 50%;
    height: 40%;
  }
  .account {
    flex-direction: column;
  }
  .account .malumotlar {
    display: none;
  }
  .account .service {
    display: block;
    color: white;
    margin-top: 20px;
  }
  .service .angel {
    width: 350px !important;
    border-bottom: 2px solid #333d4c;
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-white);
  }
  .past {
    flex-direction: column-reverse;
    line-height: 40px;
  }
}
