.store-app {
  background: var(--white);
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.store-app__content {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.store-app__main {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.store-app__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.store-app__naming {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1;
}
.store-app__title {
  font-size: 30px;
  font-weight: 700;
}
.store-app__org {
  color: var(--grey);
}
.store-app__action {
  display: flex;
  gap: 8px;
}
.store-app__devices {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
}
.store-app__img {
  display: flex;
  flex-basis: 200px;
}
.store-app__img img {
  width: 100%;
  height: auto;
}
.store-app__meta {
  display: flex;
}
.store-app__meta-item {
  padding: 0 40px;
  border-right: 1px solid var(--grey);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.store-app__meta-item:first-child {
  padding-left: 0;
}
.store-app__meta-item:last-child {
  border-right: none;
}
.store-app__meta-item-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}
.store-app__meta-item-text {
  font-size: 12px;
  text-align: center;
  display: flex;
  gap: 3px;
  align-items: center;
}
.green-action {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #01875f;
  font-weight: 500;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.green-action:hover {
  opacity: 0.7;
}
.store-app__share {
  position: relative;
}
.store-app__share-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 8px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
  min-width: 220px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition:
    opacity 0.15s ease,
    visibility 0.15s ease,
    transform 0.15s ease;
}
.store-app__share-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.store-app__share-item {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  text-align: left;
}
.store-app__share-item + .store-app__share-item {
  margin-top: 4px;
}
.store-app__share-item:hover {
  background: var(--grey-light);
}
.store-app__share-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-app__share-item-text {
  flex: 1;
}
.store-app__btn {
  padding: 10px 32px;
}
.store-app__mobile-img {
  display: none;
}
@media (max-width: 992px) {
  .store-app {
    padding: 20px;
  }
}
@media (min-width: 767px) {
  .store-app__btn--mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .store-app {
    background: transparent;
    padding: 0;
    gap: 12px;
  }
  .store-app__title {
    font-size: 22px;
  }
  .store-app__img {
    display: none;
  }
  .store-app__mobile-img {
    display: flex;
    width: 70px;
  }
  .store-app__header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .store-app__btn:not(.store-app__btn--mobile),
  .store-app__action {
    display: none;
  }
  .store-app__content {
    background: var(--white);
    border-radius: 14px;
    padding: 14px;
  }
  .store-app__main {
    width: 100%;
  }
  .store-app__btn {
    margin-left: auto;
  }
  .store-app__meta {
    justify-content: space-between;
  }
  .store-app__meta-item {
    flex: 1;
  }
  .store-app__header {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .store-app__title {
    font-size: 18px;
    font-weight: 500;
  }
  .store-app__org {
    font-size: 12px;
  }
  .store-app__mobile-img {
    width: 58px;
    overflow: hidden;
    border-radius: 10px;
  }
}
@media (max-width: 525px) {
  .store-app__title {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .store-app__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 115px;
  }
  .store-app__meta-item {
    padding: 0 10px;
  }
  .store-app__main {
    gap: 16px;
  }
}
@media (max-width: 420px) {
  .store-app__btn {
    padding: 10px 14px;
  }
}
@media (max-width: 390px) {
  .store-app__devices {
    font-size: 10px;
    padding: 0 15px;
  }
  .store-app__devices-icon {
    width: 17px;
  }
  .store-app__title {
    font-size: 14px;
    max-width: 80px;
  }
}
@media (max-width: 350px) {
  .store-app__btn {
    font-size: 12px;
  }
  .store-app__mobile-img {
    width: 49px;
  }
}
