*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  color: white;
  text-align: center;
  background-color: #0b0f26;
  /* padding: 0 500px; */
  height: 100vh;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}
header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #13182f;
  padding: 0 500px;
}
header .logo {
  font-size: 30px;
  font-family: "Audiowide", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  width: 45px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
header .right-container {
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
}
header .right-container div {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid grey;
  display: flex;
  align-items: center;
}
header .right-container div img {
  width: 20px;
  height: auto;
  object-fit: cover;
  margin-right: 10px;
}
header .right-container div:last-child {
  border: none;
  padding-right: 0;
  margin-right: 0;
}

footer {
  width: 90%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #13182f;
  font-weight: bold;
  border-radius: 50px;
  padding: 0 10px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
footer > div {
  width: 25%;
  height: 70%;
  line-height: 70%;
  display: grid;
  place-items: center;
  border-radius: 50px;
  cursor: pointer;
}
footer > div.active {
  background-color: #13182f;
  color: white;
}

main {
  width: 100%;
  padding: 0 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 150px;
}
main .mobile-dollar-rate {
  align-items: center;
  font-size: 13px;
  margin: 10px 0;
  display: none;
  align-items: center;
  line-height: 20px;
}
main .mobile-dollar-rate img {
  width: 20px;
  height: auto;
  object-fit: cover;
  margin-right: 10px;
}
main .main-image {
  width: 640px;
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 20px;
}
main .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .product-list-wrapper {
  width: 100%;
}
main .product-list-wrapper h3 {
  text-align: left;
  margin-top: 20px;
}
main .product-list-wrapper .product-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 10px;
}
main .product-list-wrapper .product-list .item {
  width: 150px;
  height: 180px;
  position: relative;
  overflow: hidden !important;
}
main .product-list-wrapper .product-list .item .overlay {
  position: absolute;
  object-fit: cover;
  width: 55px;
  height: 35px;
  border-radius: 0 !important;
  top: 0;
  right: 0;
  /* background-color: rgba(0, 0, 0, 0.5); */
}
main .product-list-wrapper .product-list .item .flag-label {
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: 25px;
  background-color: rgb(123 44 235 / 86%);
  display: flex;
  align-items: center;
  justify-content: center;
}
main .product-list-wrapper .product-list .item img {
  width: 100%;
  height: 85%;
  object-fit: cover;
  border-radius: 10px;
}
main .product-list-wrapper .product-list .item .name {
  height: 15%;
  font-size: 13px;
}

/* ----------------------------------------------------------------------------- */
@media only screen and (max-width: 1920px) {
  header {
    padding: 0 400px;
  }
  main {
    padding: 0 400px;
  }
  main .image-container {
    width: 480px;
    height: 270px;
  }
  main .product-list-wrapper .product-list .item {
    width: 100px;
    height: 120px;
  }
}

@media only screen and (max-width: 1670px) {
  header {
    padding: 0 200px;
  }
  main {
    padding: 0 200px;
  }
  main .image-container {
    width: 480px;
    height: 270px;
  }
  main .product-list-wrapper .product-list .item {
    width: 100px;
    height: 120px;
  }
}

@media only screen and (max-width: 1100px) {
  header {
    padding: 0 100px;
  }
  main {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 900px) {
  header {
    padding: 0 20px;
  }
  main {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 750px) {
  header {
    padding: 0 15px;
  }
  main {
    padding: 0 15px;
  }
  main .product-list-wrapper .product-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (max-width: 650px) {
  header .logo {
    font-size: 20px;
  }
  header .right-container {
    height: 30px;
    line-height: 30px;
  }
  header .right-container div {
    padding-right: 10px;
    margin-right: 10px;
    font-size: 13px;
  }
  header .right-container div img {
    width: 15px;
    height: auto;
    object-fit: cover;
    margin-right: 10px;
  }
  header .dollar-rate {
    display: none !important;
  }
  main {
    padding-bottom: 100px;
  }
  main .mobile-dollar-rate {
    display: flex;
  }
  main .image-container {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
  }
  main .product-list-wrapper h3 {
    text-align: left;
    margin-top: 0px;
    font-size: 14px;
  }
  main .product-list-wrapper .product-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 10px;
    margin-top: 10px;
  }
  main .product-list-wrapper .product-list .item {
    width: 110px;
    height: 130px;
    overflow: hidden !important;
  }
  main .product-list-wrapper .product-list .item .name {
    font-size: 12px;
  }
  footer {
    width: 95%;
    height: 50px;
    border-radius: 30px;
    padding: 0 10px;
    bottom: 10px;
  }
  footer > div {
    width: 25%;
    height: 70%;
    line-height: 70%;
    border-radius: 30px;
    font-size: 13px;
  }
  footer > div.active {
    background-color: #13182f;
    color: white;
  }

  main .product-list-wrapper .product-list .item .overlay {
    width: 40px;
    height: 25px;
    top: 0;
    right: 0;
    /* background-color: rgba(0, 0, 0, 0.5); */
  }
  main .product-list-wrapper .product-list .item .flag-label {
    position: absolute;
    width: 100%;
    height: 22px;
    bottom: 20px;
    font-size: 12px;
    /* background-color: rgba(44, 197, 235, 0.86); */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 400px) {
  main .product-list-wrapper .product-list .item {
    width: 100px;
    height: 120px;
  }
}
@media only screen and (max-width: 360px) {
  header .right-container div {
    padding-right: 7px;
    margin-right: 7px;
    font-size: 12px;
  }
  main .product-list-wrapper .product-list .item {
    width: 95px;
    height: 110px;
  }
  main .product-list-wrapper .product-list .item .name {
    font-size: 11px;
  }
  footer > div {
    font-size: 12px;
  }
}
