.jzs-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.jzs-action-row .jz-button,
.jzs-supplier-promo .jz-button {
  border-radius: 10px;
}

.jzs-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.jzs-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: 14px;
  color: var(--jz-orange, #ff8a1f);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.jzs-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.jzs-dynamic-card:hover .jzs-icon,
.jzs-dynamic-card:focus-within .jzs-icon {
  transform: translateY(-3px) rotate(-3deg);
  border-color: currentColor;
  background: color-mix(in srgb, currentColor 9%, transparent);
}

[dir="rtl"] .jzs-dynamic-card:hover .jzs-icon,
[dir="rtl"] .jzs-dynamic-card:focus-within .jzs-icon {
  transform: translateY(-3px) rotate(3deg);
}

@media (max-width: 720px) {
  .jzs-action-row {
    align-items: stretch;
  }

  .jzs-action-row .jz-button,
  .jzs-supplier-promo .jz-account-promo__actions .jz-button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jzs-icon {
    transition: none;
  }
}
