@media (min-width: 1024px) {
  .disk-catalog-full-products {
    display: block !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .disk-catalog-full-products > aside {
    display: none !important;
  }

  .disk-floating-cart {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 10020;
    display: none;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: linear-gradient(145deg, #00e676, #00a85b);
    color: #fff;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(0, 184, 100, 0.42);
    transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  }

  .disk-floating-cart.is-visible {
    display: flex;
    animation: disk-cart-enter 180ms ease-out;
  }

  .disk-floating-cart:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.06);
    box-shadow: 0 20px 44px rgba(0, 184, 100, 0.5);
  }

  .disk-floating-cart__count {
    position: absolute;
    top: -5px;
    right: -5px;
    display: inline-flex;
    min-width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid #00b864;
    border-radius: 999px;
    background: #fff;
    color: #047844;
    font: 900 12px/1 Inter, system-ui, sans-serif;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
  }
}

@keyframes disk-cart-enter {
  from { opacity: 0; transform: translateY(10px) scale(0.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
