section {
  max-width: calc(100% - 30px);
  width: 936px;

  position: relative;
}

section h2 {
  margin: 0;
  margin-top: 8px;
  margin-bottom: 12px;
}

section .product_container {
  display: flex;
  flex-direction: row;
  gap: 15px;

  overflow: hidden;
}

section .product_container .product_item {
  height: 310px;
  width: 260px;
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  border-radius: 10px;
  border: solid var(--c-background-3) 1px;
  background-color: var(--c-background-2);
  text-decoration: none;

  margin-bottom: 2px;
  padding: 20px;

  transition: background-color 0.25s ease, border 0.25s ease,
    transform 0.3s ease-in-out;
}

section .product_container .product_item:hover {
  background-color: var(--c-primary);

  border: solid rgba(0, 0, 0, 0) 1px;
}

section .product_container .product_item:active {
  transform: scale(0.98);
}

section .product_container .product_item div:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 7px;
  overflow: hidden;
}

section .product_container .product_item > div:nth-child(1) > img {
  padding-top: 5px;
}

section .product_container .product_item div:nth-child(1) > img {
  width: 220px;

  mix-blend-mode: darken;
}

section .product_container .product_item div:nth-child(1) .image_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

section .product_container .product_item div:nth-child(1) .image_list img {
  mix-blend-mode: normal;

  aspect-ratio: 1.4;
}

section .product_container .product_item div:nth-child(2) {
  height: 41%;
  width: 100%;
}

section .product_container .product_item div:nth-child(2) ul {
  padding-top: 0;
}

.nav-button {
  position: absolute;
  bottom: 172px;

  width: 36px;
  height: 36px;

  background: #ccc;
  border: none;
  cursor: pointer;

  border-radius: 50px;
}

.prev1,
.prev2 {
  left: 10px;
}

.next1,
.next2 {
  right: 10px;
}

@media screen and (max-width: 1020px) {
  .nav-button {
    visibility: hidden;
  }

  section .product_container {
    overflow-x: auto;
  }
}
