.pwa-install-wrap {
  margin-top: 16px;
}

.pwa-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pwa-divider::before,
.pwa-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: rgba(180, 145, 60, 0.25);
}

.pwa-divider-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(180, 145, 60, 0.55);
  white-space: nowrap;
}

.btn-pwa-install {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(180, 145, 60, 0.45);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b4913c;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

.btn-pwa-install:hover:not(:disabled) {
  background: rgba(180, 145, 60, 0.08);
  border-color: rgba(180, 145, 60, 0.7);
  color: #d4a94a;
}

.btn-pwa-install:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-pwa-install svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.pwa-progress-wrap {
  display: none;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
}

.pwa-progress-wrap.visible {
  display: flex;
}

.pwa-progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.pwa-progress-step {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(180, 145, 60, 0.7);
  letter-spacing: 0.02em;
}

.pwa-progress-pct {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #b4913c;
  min-width: 36px;
  text-align: right;
}

.pwa-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(180, 145, 60, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.pwa-progress-fill {
  height: 100%;
  width: 0%;
  background: #b4913c;
  border-radius: 999px;
  transition: width 0.25s linear;
}

.pwa-success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(180, 145, 60, 0.3);
  border-radius: 4px;
  background: rgba(180, 145, 60, 0.06);
}

.pwa-success-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b4913c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pwa-success-icon svg {
  width: 10px;
  height: 10px;
  stroke: #0a0a0a;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pwa-success-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #b4913c;
  margin: 0 0 2px;
}

.pwa-success-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(180, 145, 60, 0.65);
  margin: 0;
  line-height: 1.5;
}

.pwa-help {
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(180, 145, 60, 0.72);
}