section.best-sellers-section {
  margin-bottom: 19rem;
}
section.best-sellers-section .container {
  width: clamp(var(--wd-container-w), 95%, 100%);
  margin: auto;
  padding: 0 15px;
}
section.best-sellers-section .container .title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.best-sellers-section .container .title-container .title {
  font-size: 3.6rem;
  margin: 5.6rem 0;
}
section.best-sellers-section .container .title-container .a {
  font-size: 1.8rem;
  text-decoration: underline;
  color: #000;
}
section.best-sellers-section .container .product-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
section.best-sellers-section .container .product-list .product-item .media {
  width: 100%;
  aspect-ratio: 331/441;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ebebeb;
  margin-bottom: 4.8rem;
  position: relative;
}
section.best-sellers-section .container .product-list .product-item .media img.hover {
  opacity: 0;
  transition: opacity 0.7s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
section.best-sellers-section .container .product-list .product-item .media img.hover:hover {
  opacity: 1;
}
section.best-sellers-section .container .product-list .product-item .content .name {
  font-size: 1.8rem;
  color: #000;
  text-align: center;
  padding: 0 15%;
  box-sizing: border-box;
}
section.best-sellers-section .container .product-list .product-item .content .color {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  gap: 5px;
}
section.best-sellers-section .container .product-list .product-item .content .color .color-card {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
}
section.best-sellers-section .container .product-list .product-item .content .price {
  font-size: 2rem;
  text-align: center;
}
@media all and (max-width: 768px) {
  section.best-sellers-section {
    max-width: 100vw !important;
  }
  section.best-sellers-section .container {
    width: 100%;
    box-sizing: border-box;
  }
  section.best-sellers-section .container .title-container {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  section.best-sellers-section .container .title-container .title {
    flex: 1;
    font-size: 2.6rem;
    margin: 3.6rem 0;
  }
  section.best-sellers-section .container .product-list {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}
