@media (max-width: 640px) {
  .mini-cart-row-shell {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #a21e2d;
  }

  .mini-cart-row-shell::after {
    content: 'Rimuovi';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 118px;
    padding-top: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mini-cart-row-shell::before {
    content: '←';
    position: absolute;
    z-index: 1;
    top: calc(50% - 18px);
    right: 48px;
    color: #fff;
    font-size: 18px;
    pointer-events: none;
  }

  .mini-cart-row-shell .mini-cart-row {
    position: relative;
    z-index: 2;
    margin: 0;
    border-bottom: 0;
    background: #fff;
    touch-action: pan-y;
    will-change: transform;
  }

  .mini-cart-row-shell.removing {
    pointer-events: none;
  }
}
