.product-categories {
  margin-bottom: 35px; }
  .product-categories__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 30px; }
  @media (max-width: 767px) {
    .product-categories__list {
      grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.product-category-card {
  display: flex;
  flex-direction: column; }
  .product-category-card__preview {
    width: 100%;
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    margin-bottom: 16px; }
    .product-category-card__preview-link {
      display: flex;
      height: 100%;
      padding: 30px;
      align-items: center;
      justify-content: center; }
    .product-category-card__preview:hover {
      opacity: 0.9; }
      .product-category-card__preview:hover .product-category-card__img {
        transform: scale(1.1); }
  .product-category-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .product-category-card__title {
    font-size: 18px;
    line-height: 23px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333333; }
    .product-category-card__title:hover {
      color: #ff2f00; }
  .product-category-card__subcat-link, .product-category-card__more {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #333; }
    .product-category-card__subcat-link:hover, .product-category-card__more:hover {
      color: #ff2f00; }
  .product-category-card__subcat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 14px;
    font-size: 14px;
    height: 1.4em;
    overflow: hidden;
    transition: height 0.2s ease-in-out; }
    .product-category-card__subcat-list-item {
      margin-bottom: 10px; }
    .product-category-card__subcat-list--level-2 {
      height: auto;
      overflow: visible;
      margin: 8px 0 0 12px; }
    .product-category-card__subcat-list--nested {
      height: auto;
      overflow: visible;
      margin: 8px 0 0 12px; }
  .product-category-card__subcat-link--nested {
    color: #707070; }
  .product-category-card__more {
    font-weight: 500;
    color: #909090; }
    .product-category-card__more-icon {
      transition: transform 0.3s ease-in-out;
      margin-left: 8px;
      position: relative;
      stroke: #909090; }
    .product-category-card__more-caption-open {
      display: none; }
    .product-category-card__more:hover {
      color: #ff2f00; }
      .product-category-card__more:hover .product-category-card__more-icon {
        stroke: #ff2f00; }
  .product-category-card--open .product-category-card__subcat-list {
    height: auto;
    overflow: visible; }
  .product-category-card--open .product-category-card__more-icon {
    transform: rotate(180deg);
    top: -2px; }
  .product-category-card--open .product-category-card__more-caption {
    display: none; }
  .product-category-card--open .product-category-card__more-caption-open {
    display: inline; }
  @media (max-width: 767px) {
    .product-category-card__preview {
      height: 165px; }
      .product-category-card__preview-link {
        padding: 15px; }
    .product-category-card__title {
      font-size: 16px;
      line-height: 20px; } }
