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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
}
/* Common classes */
.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  display: inline-block;
}

/* top-section */
.top-section {
  padding: 10px 0;
  text-align: center;
  color: white;
  background-color: #000000;
}
.top-section > :first-child {
  margin-right: 10px;
  display: inline-block;
}
.top-section > :nth-child(2) {
  margin-right: 250px;
}
.top-section > a {
  color: white;
  text-decoration: underline;
}

/* Header section */
.header-section {
  padding: 40px 0 23px 0;
  border-bottom: 1px solid lightgray;
}
.header-section > div > div {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.nav-logo {
  max-width: 118px;
  max-height: 24px;
}
.nav-logo > a > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.nav-links > ul,
.sm-nav-links > ul {
  display: flex;
  gap: 30px;
  align-items: center;
  text-transform: uppercase;
}
.nav-links > ul > li > a,
.sm-nav-links > ul > li > a {
  color: #000000;
}
.active {
  text-decoration: underline;
}
.nav-right > ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.search-bar {
  max-width: 243px;
  max-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 12px 7px 24px;
  border-radius: 4px;
  background: #f5f5f5;
}
label {
  display: flex;
  align-items: center;
}
.search-bar > input[type="text"] {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: #f5f5f5;
}
.menu {
  display: none;
}
.sm-nav-links {
  display: none;
}
.search-bar > input[type="text"]::placeholder {
  color: rgb(138, 131, 131);
}

/* Banner section */
.banner-section > div > div {
  justify-content: space-between;
}
.banner-content {
  border-right: 1px solid lightgray;
  padding: 40px 20px 0 0;
}
.banner-content > p {
  margin-bottom: 16px;
}
.banner-content > :nth-child(1) {
  display: flex;
  gap: 70px;
}
.banner-content > :nth-child(2) {
  display: flex;
  gap: 94px;
}
.banner-img {
  max-width: 892px;
  max-height: 344px;
  padding-top: 40px;
}
.banner-img > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* categories card section */
.categories-card-section {
  padding: 100px 0 30px 0;
}
.empty {
  padding: 8px 6px;
  background-color: #db4444;
  margin-right: 10px;
  border-radius: 3px;
}
.categories-card-section > div > div > span {
  color: #db4444;
  font-weight: bold;
}
.categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.categories > h4 {
  font-size: 36px;
}
.categories-card-section > div > .row {
  margin-top: 40px;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.card {
  max-width: 170px;
  border: 1px solid lightgray;
  padding: 25px 54px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.card:hover {
  background-color: #db4444;
  cursor: pointer;
  border: none;
}

/* products card section */
.prdt-card-section {
  padding-block: 100px;
}
.prdt-card-section > div > div > div > span {
  color: #db4444;
  font-weight: bold;
}
.prdt-card-section > div > :nth-child(1) {
  margin-bottom: 60px;
}

.prdt {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prdt > h5 {
  font-size: 36px;
}
.prdt-btn {
  padding: 12px 30px;
  background-color: #db4444;
  border-radius: 4px;
  color: white;
  text-wrap: nowrap;
}
.prdt-btn:hover {
  background-color: #e65454;
}
.prdt-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prdt-img {
  background-color: lightgray;
  padding: 35px 40px;
  max-width: 270px;
  max-height: 270px;
  margin-bottom: 16px;
}
.prdt-content > p {
  font-weight: bold;
  margin-bottom: 10px;
}
.prdt-content > :nth-child(2) {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.prdt-content > :nth-child(2) > :first-child {
  color: #e65454;
}
.prdt-content > :nth-child(2) > :last-child {
  color: gray;
}
.prdt-stars {
  display: flex;
  gap: 10px;
  align-items: center;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars > img {
  object-fit: contain;
}
.prdt-stars > :last-child {
  color: gray;
}
.prdtcard {
  position: relative;
  /* box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5); */
}
.float {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 10px;
  right: 7px;
}

/* music section */
.music-section {
  padding: 60px 30px;
}
.music-section > div > div {
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
  justify-content: space-between;
  background-color: #000000;
  align-items: center;
  padding: 37px 44px 44px 56px;
}
.music-img {
  max-width: 600px;
  max-height: 420px;
}
.music-img > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.music-content > p {
  color: #00ff66;
  margin-bottom: 32px;
  font-weight: bold;
}
.music-content > h1 {
  font-size: 48px;
  color: #fafafa;
  margin-bottom: 32px;
}
.circle {
  font-size: 10px;
  color: white;
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
}
.first-circle {
  min-width: 62px;
  min-height: 62px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: black;
  background-color: white;
}
.first-circle > :first-child {
  font-weight: bold;
}
.music-content > a {
  padding: 16px 48px;
  color: white;
  background-color: #00ff66;
  border-radius: 4px;
}
.music-content > a:hover {
  background-color: #0fdf62;
}

/* extprdt card section */
.Explore {
  margin-bottom: 20px;
}
.Explore > div > span {
  color: #e65454;
  font-weight: bold;
}
.exp-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.exp-img > h1 {
  font-size: 36px;
}
.card3-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}
.exprdtcard-img {
  padding: 35px 40px;
  margin-bottom: 16px;
  background-color: lightgray;
}
.exprdt-content > p {
  font-weight: bold;
  margin-bottom: 10px;
}
.exprdt-content > div {
  display: flex;
  gap: 12px;
}
.exprdt-content > div > :first-child {
  color: #e65454;
}
.exprdt-content > div > :last-child {
  color: gray;
}
.exprdtcard {
  position: relative;
}
.float > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-circle {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.mini-circle > div {
  background-color: #e65454;
  min-width: 15px;
  min-height: 15px;
  border-radius: 50%;
}
.mini-first {
  border: 1.5px solid black;
  background-color: #fb1314 !important;
}
.mini-second {
  border: 1.5px solid black;
  background-color: yellow !important;
}
.mini-third {
  border: 1.5px solid black;
  background-color: black !important;
}
.mini-fourth {
  border: 1.5px solid black;
  background-color: green !important;
}
.card3-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card3-btn > a {
  padding: 16px 48px;
  background-color: #e65454;
  border-radius: 4px;
  color: white;
}
.card3-btn > a:hover {
  background-color: #db4444;
}
.box > span {
  padding: 4px 12px;
  background-color: #00ff66;
  color: white;
  border-radius: 4px;
  font-size: 12px;
  position: absolute;
  top: 12px;
  left: 12px;
}
.addcart {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 8px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 213px;
}

/* Arrival section */
.arrival-section {
  padding-block: 70px;
}
.Featured {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.Featured > :first-child {
  padding: 16px 6px;
  background-color: #e65454;
}
.Featured > :last-child {
  color: #db4444;
}
.arrival-section > div > :nth-child(2) > p {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
}
.play-img {
  padding: 69px 30px;
  background-color: #000000;
  border-radius: 4px;
  max-width: 611px;
  max-height: 611px;
}
.play-img > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.playstation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.other-img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.woman {
  border-radius: 4px;
  background-color: #0d0d0d;
  padding: 2px 2px 2px 120px;
  max-width: 600px;
  max-height: 300px;
  position: relative;
}
.woman > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.collection {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.spk-img {
  border-radius: 4px;
  background-color: #000000;
  padding: 31px 30px 31px 30px;
  max-width: 310px;
  max-height: 322px;
  position: relative;
}
.spk-img > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.per-img {
  border-radius: 4px;
  background-color: #000000;
  padding: 30px 30px 32px 30px;
  max-width: 310px;
  max-height: 322px;
  position: relative;
}
.per-img > img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.play-float {
  position: absolute;
  left: 32px;
  bottom: 32px;
}
.play-float > h1 {
  color: white;
  font-size: 24px;
}
.play-img {
  position: relative;
}
.play-float > p {
  color: white;
  font-size: 14px;
  margin-block: 16px;
}
.play-float > a {
  color: white;
  text-decoration: underline;
}
.spk-float {
  position: absolute;
  left: 24px;
  bottom: 24px;
}
.spk-float > h1 {
  color: white;
  font-size: 24px;
}
.spk-float > p {
  color: white;
  font-size: 14px;
  margin-block: 8px;
}
.spk-float > a {
  color: white;
  text-decoration: underline;
}
.woman-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.woman-float > h1 {
  color: white;
  font-size: 24px;
}
.woman-float > p {
  color: white;
  font-size: 14px;
  margin-block: 8px;
}
.woman-float > a {
  color: white;
  text-decoration: underline;
}

/* service section */
.service-section {
  padding-bottom: 60px;
}
.service-section > div > div {
  justify-content: center;
  gap: 50px;
}
.car,
.cust,
.gmoney {
  text-align: center;
}
.car > h1,
.cust > h1,
.gmoney > h1 {
  margin: 24px 0 8px 0;
}

/* Footer section */
.footer-section {
  padding-block: 50px;
  background-color: #000000;
  color: white;
}
.footer-section > div > div {
  justify-content: space-between;
}
.footer-section a {
  color: white;
}
.comp-logo,
.supp,
.acc,
.quick,
.down {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.comp-content > p {
  margin: 24px 0 16px 0;
}
.supp > div > :nth-child(2) {
  margin-block: 16px;
}
.acc-links > ul,
.quick-links > ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qrcode {
  margin: 8px 0 24px 0;
  display: flex;
  gap: 8px;
}
.icon > ul {
  display: flex;
  gap: 24px;
}
.search1-bar {
  border: 1px solid white;
  display: flex;
  padding: 7px 12px 7px 24px;
  align-items: center;
  border-radius: 4px;
}
label {
  display: flex;
  align-items: center;
}
.search1-bar > input[type="text"] {
  border: none;
  outline: none;
  background-color: #000000;
}
.copyright-section {
  padding: 16px 0 24px 0;
  background-color: #000000;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  border-top: 1px solid #ffffff;
}
.copyright-section > span {
  color: #a19999;
  text-wrap: nowrap;
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  .banner-content {
    display: none;
  }
  .banner-img {
    padding-top: 15px;
  }
  .banner-section > div > div {
    align-items: center;
    justify-content: center;
  }
  .categories-card-section > div > .row {
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .prdt-card {
    justify-content: center;
    gap: 20px;
  }
  .music-section > div > div {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .card3-section {
    justify-content: center;
  }
  .playstation {
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  .nav-links,
  .nav-right > ul > li:first-child {
    display: none;
  }

  .menu {
    display: block;
  }
  .nav-right {
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
  }
  .search-bar {
    display: none;
  }
  .sm-nav-links > ul {
    position: absolute;
    top: 60px;
    right: -15px;
    width: 100vw;
    flex-direction: column;
    background: white;
    display: none;
    z-index: 999;
    padding: 10px;
  }
  .sm-nav-links > ul > .search-bar {
    display: flex !important;
  }
  #hamburger:checked ~ .sm-nav-links > ul {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  /* .footer-section > div > div {
    justify-content: center;
    gap: 50px;
  } */
  .prdt-card-section {
    padding-block: 50px;
  }
  .music-section {
    padding: 40px 20px;
  }

  .collection,
  .other-img {
    gap: 10px;
  }
  .service-section > div > div {
    gap: 30px;
  }
  .footer-section > div > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .acc-links > ul,
  .quick-links > ul {
    gap: 10px;
  }
  .qrcode,
  .icon > ul {
    justify-content: center;
  }
}

@media screen and (max-width: 425px) {
  .header-section {
    padding: 15px 0 15px 0;
  }
  .top-section > :nth-child(2) {
    margin-right: 180px;
  }
  .nav-right,
  .nav-right > ul {
    gap: 15px;
  }
  .top-section > :first-child,
  .top-section > :nth-child(2),
  .lang {
    font-size: 12px;
  }
  .categories > h4 {
    font-size: 16px;
  }
  .arrows > a > img {
    max-width: 26px;
  }
  .categories-card-section > div > .row {
    margin-top: 20px;
  }
  .categories-card-section {
    padding: 50px 0 15px 0;
  }
  .prdt > h5 {
    font-size: 16px;
  }
  .prdt-card-section {
    padding-block: 30px;
  }
  .prdt-btn {
    padding: 6px 15px;
  }
}
@media screen and (max-width: 500px) {
  .card4,
  .card5,
  .card6 {
    display: none;
  }
  .prdt-img {
    padding: 20px 30px;
  }
  .music-content > h1 {
    font-size: 24px;
  }
  .circle {
    gap: 6px;
    margin-bottom: 16px;
  }
  .first-circle {
    min-width: 42px;
    min-height: 42px;
  }
  .music-content > a {
    padding: 8px 24px;
  }
  .music-section > div > div {
    padding-left: 26px;
  }
  .music-section > div > div {
    padding: 20px;
  }
  .music-content > p,
  .music-content > h1 {
    margin-bottom: 16px;
  }
  .exp-img > h1 {
    font-size: 16px;
  }
  .exp-img > div > a > img {
    max-width: 26px;
    max-height: 26px;
  }
  .prdt-card-section > div > :nth-child(1) {
    margin-bottom: 25px;
  }
  .card3-section {
    margin-bottom: 40px;
  }
  .exprdtcard1,
  .exprdtcard3,
  .exprdtcard5,
  .exprdtcard8 {
    display: none;
  }
  .exp-img {
    margin-bottom: 25px;
  }
  .arrival-section > div > :nth-child(2) > p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .playstation,
  .collection,
  .other-img {
    gap: 10px;
  }
  .play-float > h1 {
    font-size: 18px;
  }
  .play-float > p {
    font-size: 12px;
    margin-block: 12px;
  }
  .spk-float {
    font-size: 8px;
    bottom: 15px;
    left: 15px;
  }
  .spk-float > p {
    margin-block: 5px;
    font-size: 10px;
  }
  .spk-float > h1 {
    font-size: 16px;
  }
  .woman-float > h1 {
    font-size: 16px;
  }
  .woman-float > p {
    font-size: 10px;
    margin-block: 5px;
  }
  .woman-float {
    bottom: 15px;
    left: 15px;
  }
  .woman-float > a,
  .spk-float > a,
  .play-float > a {
    font-size: 14px;
  }
  .car > h1,
  .cust > h1,
  .gmoney > h1 {
    font-size: 18px;
  }
  .arrival-section {
    padding-block: 40px;
  }
  .service-section > div > div {
    gap: 20px;
  }
  .car > p,
  .cust > p,
  .gmoney > p {
    font-size: 12px;
  }
}
