header picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.online-shops-list > li {
  display: flex;
}

.online-shops-card {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(141, 15, 39, 0.15);
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.online-shops-card__title {
  min-width: 0;
  word-break: break-word;
}

.online-shops-card:hover {
  border-color: rgba(141, 15, 39, 0.45);
  box-shadow: 0 8px 24px rgba(141, 15, 39, 0.08);
}

.online-shops-card__cta img {
  transform: rotate(-90deg);
}

[dir="rtl"] .online-shops-card__cta img {
  transform: rotate(90deg);
}

@media (max-width: 576px) {
  .online-shops-card {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
