.product {}

.product .title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 19pt;
  font-weight: 600;
}

.product .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.product .tab li {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  font-size: 10pt;
  cursor: pointer;
  font-weight: 400;
  margin: 0 18px;
  border-bottom: 3px solid #FFF;
}

.product .tab li::after {
  content: '';
  position: absolute;
  background-color: #c9c9c9;
  width: 1px;
  height: 12px;
  top: 7px;
  right: -16px;
}

.product .tab li:last-child::after {
  display: none;
}

.product .tab li.active {
  border-bottom: 3px solid;
}

.list-product {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  margin: 60px 0;
  grid-gap: 25px 15px;
}

@media screen and (max-width: 1000px) {
  .list-product {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .list-product {
    grid-template-columns: repeat(2, 1fr);
  }
}

.list-items {
  position: relative;
  box-shadow: 0px 0px 5px 0px #dfdfdf;
  border-radius: 4px;
}

.list-items .items-image {
  border: .2px solid #f9f9f9;
  cursor: pointer;
}

.list-items .items-image .sold-out {
  margin: 0;
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #ff0000;
  font-weight: 800;
  font-size: 10pt;
  background-color: #ff00004f;
  padding: 7px;
}

.items-image .tag {
  position: absolute;
  font-size: 10pt;
  left: 10px;
  top: 10px;
  font-weight: 700;
}

.items-image img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-items .detail {
  padding: 15px 10px;
  text-align: center;
}

.list-items .detail h3 {
  font-size: 10pt;
  margin-bottom: 25px;
  font-weight: 300;
  text-align: left;
  height: 40px;
  overflow: hidden;
  line-height: 20px;
}

.list-items .detail .rate {
  margin: 10px 0;
}

.list-items .detail .rate .icons {
  font-size: 18px;
}

.list-items .detail .price {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10pt;
  column-gap: .8rem;
}

.list-items .detail .price span {
    background-color: var(--color-base);
    color: #FFF;
    display: flex;
    width: 80px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 4rem;
}

.list-items .detail .price span.discount {
  text-decoration: line-through;
  color: #d2d2d2;
}

.items-image .tag.discounts {
  left: inherit;
  right: 0;
  top: 5px;
  font-size: 7pt;
  background-color: #ff0000;
  color: #FFFFFF;
  width: 32px;
  text-align: center;
  padding: 2px 0;
  font-weight: 200;
}

.add-to-card {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  align-items: center;
  column-gap: 10px;
  font-weight: 100;
  cursor: pointer;
}

.add-to-card span {
  font-size: 9pt;
}

.add-to-card span.icons {
  margin-top: 3px;
}

.pagination {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.pagination li {
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  cursor: pointer;
  color: #adadad;
  align-items: center;
  justify-content: center;
  margin: 0 1px;
}

.pagination li:hover,
.pagination li.active {
  color: #3d3d3d;
  background-color: #f5f5f5;
}

/* .pagination li a {}

.pagination li a span {} */
