
  .ice-category-showcase,
  .ice-category-showcase * {
    box-sizing: border-box;
  }

  .ice-category-showcase {
    --ice-cat-gap: 14px;
    width: 100%;
    margin: 0;
    padding: 38px 0 46px;
    overflow: hidden;
    background: #fff;
    color: #050505;
  }

  .ice-category-showcase a {
    color: inherit;
    text-decoration: none;
  }

  .ice-category-wrap {
    width: min(1680px, calc(100vw - 64px));
    margin: 0 auto;
  }

  .ice-category-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin: 0 0 18px;
  }

  .ice-category-title {
    margin: 0;
    color: #030303;
    font-family: Montserrat, OpenSans-Bold, Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 3.8vw, 54px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
  }

  .ice-category-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
  }

  .ice-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #111;
    border-radius: 50%;
    background: #fff;
    color: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
    appearance: none;
  }

  .ice-category-btn:hover {
    background: #050505;
    color: #fff;
    transform: translateY(-1px);
  }

  .ice-category-btn[disabled] {
    border-color: #d7d7d7;
    color: #c8c8c8;
    cursor: default;
    pointer-events: none;
  }

  .ice-category-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .ice-category-showcase.is-dragging .ice-category-viewport {
    cursor: grabbing;
  }

  .ice-category-track {
    display: flex;
    align-items: stretch;
    gap: var(--ice-cat-gap);
    transform: translate3d(0, 0, 0);
    transition: transform .34s ease;
    will-change: transform;
  }

  .ice-category-showcase.is-dragging .ice-category-track {
    transition: none;
  }

  .ice-category-card {
    position: relative;
    display: block;
    flex: 0 0 calc((100% - (var(--ice-cat-gap) * 3)) / 4);
    min-width: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    isolation: isolate;
    -webkit-user-drag: none;
  }

  .ice-category-card img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.001);
    transition: transform .48s ease, filter .48s ease;
    -webkit-user-drag: none;
    user-select: none;
  }

  .ice-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02) 0%, rgba(0, 0, 0, .08) 52%, rgba(0, 0, 0, .62) 100%);
    pointer-events: none;
  }

  .ice-category-card:hover img {
    filter: contrast(1.04) saturate(1.03);
    transform: scale(1.04);
  }

  .ice-category-info {
    position: absolute;
    left: 18px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .ice-category-name {
    display: block;
    min-width: 0;
    color: #fff;
    font-family: Montserrat, OpenSans-Bold, Arial, Helvetica, sans-serif;
    font-size: clamp(22px, 1.85vw, 30px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
  }

  .ice-category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 1;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .ice-category-card:hover .ice-category-arrow {
    background: #fff;
    color: #050505;
    transform: translateX(2px);
  }

  .ice-category-progress {
    position: relative;
    width: 100%;
    height: 1px;
    margin-top: 20px;
    overflow: hidden;
    background: #dedede;
  }

  .ice-category-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: #050505;
    transition: width .28s ease;
  }

  @media screen and (max-width: 1200px) {
    .ice-category-wrap {
      width: calc(100vw - 42px);
    }

    .ice-category-info {
      left: 14px;
      right: 12px;
      bottom: 14px;
    }

    .ice-category-arrow {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }
  }

  @media screen and (max-width: 900px) {
    .ice-category-showcase {
      padding: 36px 0 44px;
    }

    .ice-category-wrap {
      width: calc(100vw - 22px);
    }

    .ice-category-head {
      align-items: flex-end;
      gap: 16px;
      margin-bottom: 20px;
    }

    .ice-category-title {
      max-width: 300px;
      font-size: clamp(40px, 10.8vw, 48px);
      line-height: .94;
    }

    .ice-category-controls {
      gap: 8px;
    }

    .ice-category-btn {
      width: 46px;
      height: 46px;
      font-size: 20px;
    }

    .ice-category-track {
      gap: 14px;
    }

    .ice-category-card {
      flex-basis: calc((100% - 14px) / 2);
      aspect-ratio: 3 / 4;
    }

    .ice-category-info {
      left: 12px;
      right: 10px;
      bottom: 12px;
      gap: 10px;
    }

    .ice-category-name {
      font-size: 22px;
    }

    .ice-category-arrow {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }
  }
