.pl-n-01 .product-content {
  --product-category-width: 360px;
  --product-category-card-gap: 40px;
  --product-card-group-gap: 40px;
}

@media (max-width: 1535.98px) {
  .pl-n-01 .product-content {
    --product-category-width: 300px;
  }
}

@media (max-width: 1279.98px) {
  .pl-n-01 .product-content {
    --product-category-width: 200px;
    --product-category-card-gap: 30px;
  }
}

@media (max-width: 639.98px) {
  .pl-n-01 .product-content {
    --product-category-width: 100%;
    --product-category-card-gap: 10px;
    --product-card-group-gap: 20px;
  }
}

.pl-n-01 .product-content::after {
  display: block;
  content: '';
  clear: both;
}

.pl-n-01 .product-category {
  width: var(--product-category-width);
}

.pl-n-01 .product-category.pinned {
  background-color: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 8px rgb(0 0 0 / 0.2);
}

.pl-n-01 .product-category-item {
  color: #888;
  transition: all 0.5s;
}

@media (max-width: 639.98px) {
  .pl-n-01 .product-category {
    overflow-x: scroll;
  }

  .pl-n-01 .product-category-item {
    width: max-content;
  }
}

.pl-n-01 .product-category-item .marker {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 1em;
  background: url('../img/list-image.png') center/contain no-repeat;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s;
}

@media (max-width: 1535.98px) {
  .pl-n-01 .product-category-item .marker {
    width: 24px;
    height: 24px;
    margin-right: 0.75em;
  }
}

@media (max-width: 1279.98px) {
  .pl-n-01 .product-category-item .marker {
    width: 20px;
    height: 20px;
    margin-right: 0.5em;
  }
}

@media (max-width: 767.98px) {
  .pl-n-01 .product-category-item .marker {
    display: none;
  }
}

.pl-n-01 .product-category-item:hover,
.pl-n-01 .product-category-item:focus,
.pl-n-01 .product-category-item.active {
  color: #333;
}

.pl-n-01 .product-category-item:hover .marker,
.pl-n-01 .product-category-item:focus .marker,
.pl-n-01 .product-category-item.active .marker {
  opacity: 1;
  transform: translateX(0);
}

.pl-n-01 .product-card {
  width: calc(100% - var(--product-category-width) - var(--product-category-card-gap));
}

@media (max-width: 639.98px) {
  .pl-n-01 .product-card {
    width: 100%;
  }
}

.pl-n-01 .product-card-group {
  display: grid;
  grid: auto-flow dense / repeat(2, 1fr);
  gap: var(--product-category-card-gap);
  padding-top: var(--product-card-group-gap);
}

@media (max-width: 1023.98px) {
  .pl-n-01 .product-card-group {
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
  }
}

.pl-n-01 .product-card-group:not(:first-child) {
  margin-top: var(--product-card-group-gap);
}

@media (min-width: 768px) {
  .pl-n-01 .product-card-group:last-child {
    min-height: 65vh;
  }
}

.pl-n-01 .product-card-item a {
  border-radius: inherit;
  transition: all 1s;
}

.pl-n-01 .product-card-item .card-info {
  left: 0;
  bottom: 0;
  transition:
    left 1s,
    bottom 1s;
}

@media (min-width: 640px) {
  .pl-n-01 .product-card-item a:hover .card-info {
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
  }

  .pl-n-01 .product-card-item a:hover .card-info :is(h3, p) {
    transition: all 1s;
  }

  .pl-n-01 .product-card-item a:hover .card-info h3 {
    font-size: 26px;
  }

  .pl-n-01 .product-card-item a:hover .card-info p {
    font-size: 22px;
  }
}

@media (min-width: 1280px) {
  .pl-n-01 .product-card-item a:hover .card-info h3 {
    font-size: 30px;
  }
}

@media (min-width: 1536px) {
  .pl-n-01 .product-card-item a:hover .card-info h3 {
    font-size: 34px;
  }

  .pl-n-01 .product-card-item a:hover .card-info p {
    font-size: 26px;
  }
}
