.shop-collection__head > .shop-collection__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  direction: ltr;
}

.shop-save-home-link {
  appearance: none;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e4e5ea;
  background: #111111;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.13);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.shop-save-home-link:hover {
  transform: translateY(-1px);
  background: #242424;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.18);
}

.shop-save-home-link:focus-visible {
  outline: 3px solid rgba(177, 18, 34, 0.28);
  outline-offset: 3px;
}

.shop-save-home-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.shop-save-home-link[hidden] {
  display: none !important;
}

@media (max-width: 991.98px) {
  .shop-collection__head > .shop-collection__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .shop-collection__head > .shop-collection__actions {
    width: 100%;
    gap: 8px;
  }

  .shop-collection__actions .shop-save-home-link,
  .shop-collection__actions .shop-cart-link {
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-save-home-link {
    transition: none;
  }
}
