.dsi-header-cart-wrap {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.dsi-header-cart-link {
  pointer-events: all;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  color: #111111;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.12);
  text-decoration: none;
  border: 1px solid rgba(12, 182, 244, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.dsi-header-cart-link:hover,
.dsi-header-cart-link:focus {
  color: #0cb6f4;
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(12, 182, 244, 0.22);
}

.dsi-header-cart-link.is-active {
  color: #0cb6f4;
  border-color: rgba(12, 182, 244, 0.45);
}

.dsi-header-cart-glyph {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dsi-cart-count-badge {
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -6px;
  font-weight: 700;
  background: #f3f4f6;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.dsi-cart-count-badge.has-items {
  background: #0cb6f4;
  color: #fff;
  border-color: #0cb6f4;
}

@media (max-width: 575px) {
  .dsi-header-cart-wrap {
    right: 12px;
    bottom: 14px;
  }

  .dsi-header-cart-link {
    width: 48px;
    height: 48px;
  }
}
