.app__stores {
  font-family:
    "Gilroy",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 500;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 576px) {
  .stores-grid {
    gap: 14px;
  }
}

@media (min-width: 768px) {
  .stores-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.app__store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  padding: 12px 16px;
  border-radius: 30px;
  text-decoration: none;
  color: #222;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.app__store:hover {
  background: rgba(220, 0, 0, 0.07);
  color: #000;
  transform: translateY(-1px);
  border-color: rgba(220, 0, 0, 0.15);
}

.app__store:active {
  transform: scale(0.97);
}

.store-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.store-label {
  font-weight: 500;
  white-space: nowrap;
}

/* Для мобильных */
@media (max-width: 374px) {
  .stores-grid {
    gap: 6px;
  }
  .app__store {
    padding: 10px 10px;
    font-size: 0.8rem;
  }
  .store-icon {
    width: 18px;
    height: 18px;
  }
}
