.achat-ios-install {
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 14px;
  z-index: 99999;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 12px 12px 14px;
  color: #f8fafc;
  background: rgba(10, 10, 10, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.achat-ios-install.is-visible {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.achat-ios-install__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #000;
}

.achat-ios-install__content {
  min-width: 0;
  flex: 1 1 auto;
}

.achat-ios-install__title {
  margin: 0 0 3px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.achat-ios-install__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.78);
}

.achat-ios-install__action {
  flex: 0 0 auto;
  min-width: 58px;
  height: 34px;
  padding: 0 12px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  background: #f6d96d;
}

.achat-ios-install__close {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: rgba(248, 250, 252, 0.74);
  font-size: 22px;
  line-height: 30px;
  border: 0;
  background: transparent;
}

@media (max-width: 360px) {
  .achat-ios-install {
    align-items: flex-start;
    gap: 10px;
    padding-right: 10px;
  }

  .achat-ios-install__action {
    min-width: 52px;
    padding: 0 10px;
  }
}
