.watch-store-shop-pwa-prompt {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  width: min(420px, calc(100vw - 24px));
}

.watch-store-shop-pwa-prompt[hidden] {
  display: none !important;
}

.watch-store-shop-pwa-prompt__shell {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 18px;
  border: 1px solid rgba(57, 39, 23, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(220, 5, 33, 0.15), transparent 36%),
    linear-gradient(180deg, #fffdf9 0%, #f7efe4 100%);
  box-shadow: 0 22px 50px rgba(33, 22, 16, 0.16);
  color: #221813;
}

.watch-store-shop-pwa-prompt__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 24, 19, 0.08);
  color: #221813;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.watch-store-shop-pwa-prompt__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 36px;
}

.watch-store-shop-pwa-prompt__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(220, 5, 33, 0.18);
}

.watch-store-shop-pwa-prompt__eyebrow {
  margin: 0 0 4px;
  color: #dc0521;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.watch-store-shop-pwa-prompt__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.watch-store-shop-pwa-prompt__text {
  margin: 16px 0 0;
  color: #5c473a;
  font-size: 14px;
  line-height: 1.65;
}

.watch-store-shop-pwa-prompt__steps {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #5c473a;
  font-size: 14px;
  line-height: 1.65;
}

.watch-store-shop-pwa-prompt__steps li + li {
  margin-top: 6px;
}

.watch-store-shop-pwa-prompt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.watch-store-shop-pwa-prompt__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.watch-store-shop-pwa-prompt__button:hover {
  transform: translateY(-1px);
}

.watch-store-shop-pwa-prompt__button--primary {
  border: 1px solid #dc0521;
  background: #dc0521;
  color: #fff;
  box-shadow: 0 12px 24px rgba(220, 5, 33, 0.2);
}

.watch-store-shop-pwa-prompt__button--secondary {
  border: 1px solid rgba(34, 24, 19, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: #221813;
}

.watch-store-shop-pwa-prompt.is-visible .watch-store-shop-pwa-prompt__shell {
  animation: watch-store-shop-pwa-prompt-rise 0.28s ease-out both;
}

@keyframes watch-store-shop-pwa-prompt-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .watch-store-shop-pwa-prompt {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .watch-store-shop-pwa-prompt__shell {
    padding: 18px 18px 16px;
    border-radius: 22px;
  }

  .watch-store-shop-pwa-prompt__title {
    font-size: 20px;
  }

  .watch-store-shop-pwa-prompt__actions {
    flex-direction: column;
  }

  .watch-store-shop-pwa-prompt__button {
    width: 100%;
  }
}
