body {
  margin: 0;
  font-family: Poppins;
}

a {
  color: unset;
  text-decoration: none;
}

.container {
  width: 1100px;
  margin: auto;
  max-width: 90vw;
  text-align: center;
  padding-top: 10px;
  margin-bottom: 3rem;
}

.title {
  font-size: xx-large;
  padding: 20px 0;
}

.listProduct .item img {
  /* width: 90%;
  filter: drop-shadow(0 50px 20px #0009); */
  width: auto;
  /* max-width: 280px; */
  /* max-width: 180px; */
  max-height: 280px;
  height: auto;
  /* filter: drop-shadow(0 50px 20px #000); */
}

.listProduct {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.listProduct .item {
  background-color: #FFF;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px hsla(206, 4%, 4%, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.listProduct .item h2 {
  font-weight: 500;
  font-size: large;
  justify-content: center;
  width: 80%;
  font-size: 1.25rem;
  margin: 1rem 0;
  /* letter-spacing: .5px; */
}

.listProduct .item .price {
  letter-spacing: 7px;
  font-size: small;
}

/* detail page */

.detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  text-align: left;
  margin-bottom: 2rem;
}


.detail .image img {
  width: 90%;
}

.detail .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*.detail .image::before {*/
/*  position: absolute;*/
/*  width: 300px;*/
/*  height: 300px;*/
/*  content: '';*/
/*  background-color: #94817733;*/
/*  z-index: -1;*/
/*  border-radius: 190px 100px 170px 180px;*/
/*  left: calc(50% - 150px);*/
/*  top: 50px;*/

/*}*/

.detail .name {
  font-size: xxx-large;
  padding: 20px 0 0 0;
  margin: 0 0 10px 0;
}

.detail .price {
  font-weight: bold;
  font-size: x-large;
  letter-spacing: 7px;
  margin-bottom: 20px;
}

.detail .buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.detail .buttons button {
  display: flex;
  align-items: center;
  background-color: #eee;
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  font-family: Poppins;
  font-size: large;
  box-shadow: 0 5px 10px #2F2F2F77;
  transition: .4s;
}

.detail .buttons button:hover {
  transform: translateY(-12px);
}


.detail .buttons svg {
  width: 15px;
}

.detail .buttons span {
  background-color: orange;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 20px;
}

.detail .buttons button:nth-child(2) {
  background-color: #2F2F2F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  box-shadow: 0 10px 20px #2F2F2F77;
}

.detail .description {
  /* font-weight: 300; */
  line-height: 1.5;
  font-size: 1.15rem;
  color: black;
  text-align: justify;
}

.detail .description1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
  text-align: left;
}

.description1 {
  display: flex;
  width: 100%;
  line-height: 1.5;
}

/* // ipad */
@media only screen and (max-width: 992px) {
  .listProduct {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .detail {
    grid-template-columns: 40% 1fr;
  }
}


/* mobile */
@media only screen and (max-width: 768px) {
  .listProduct {
    grid-template-columns: repeat(2, 1fr);
  }

  .listProduct .item h2 {
    width: 100%;
  }

  .detail {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .detail .image img {
    width: unset;
    height: 40vh;
  }

  .detail .name {
    font-size: x-large;
    margin: 0;

  }

  .detail .buttons button {
    font-size: small;
  }

  .detail .buttons {
    justify-content: center;
  }
}

.content .buttons {
  margin-top: 2rem;
}

.marleft2 {
  margin-left: .5rem;
  font-size: 3rem;
}


/* SOLO */

main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solo-card-wrapper {
  max-width: 1100px;
  /* margin: 0 auto; */
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solo-img {
  /* width: 100%; */
  display: flex;
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

.solo-img-display {
  overflow: hidden;
}

.solo-img-showcase {
  display: flex;
  width: 100%;
  transition: all .5s ease;
}

.solo-img-showcase img {
  min-width: 100%;
}

.solo-img-select {
  display: flex;
}

.solo-img-item {
  margin: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.solo-img-item:nth-child(1),
.solo-img-item:nth-child(2),
.solo-img-item:nth-child(3) {
  margin-right: 0;
}

.solo-img-item:hover {
  opacity: 0.8;
}

.solo-product-content {
  padding: 0 2rem;
}

.solo-product-title {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  color: #12263a;
  margin: 1rem 0;
}

/* .solo-product-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 80px;
  background: #12263a;
} */

.solo-product-detail h2 {
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
}

.solo-product-detail p {
  font-size: 1.3rem;
  padding: 0.3rem;
  /* opacity: .8; */
}

.solo-product-detail ul {
  margin: 1rem 0;
  font-size: 1.2rem;
  /* opacity: .8; */
}

.solo-product-detail ul li {
  margin: 0;
  list-style: none;
  /* background: url();
  background-size: 18px;
  padding-left: 1.7rem;
  margin: 0.6rem 0;
  font-weight: 600;
  opacity: 0.9; */
  padding: 0.28rem;
  border-bottom: 1px solid #333;
}

@media screen and (min-width: 992px) {
  .solo-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }

  /* .solo-card-wrapper{
    height: 100vh;
  } */

  .solo-product-content {
    padding-left: 2rem;
  }
}

/* .desc-detail {
  color: #5c5656;
  font-size: 18px;
  line-height: 33px;
  margin-bottom: 1rem;
} */

.desc-detail-box {
  padding: 0 2rem;
  text-align: left;
  color: #5c5656;
  font-size: 18px;
  line-height: 33px;
}

.desc-detail-box p {
  color: #5c5656;
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 1rem;
}

.desc-detail-box.pad0{
    padding: 0 0 1rem 0;
}