/* =============================================================================
   PS PWA — Custom Install Banner Styles
   ============================================================================= */

/* ── Banner container ──────────────────────────────────────────────────────── */
.ps-pwa-install-banner {
  position: fixed;
  top: 15px;
  left: 15px;
  right: 15px;
  z-index: 10000;
  background-color: #fdf6f3;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  padding: 16px 44px 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-family: 'Inter', Arial, sans-serif;
  animation: psPwaSlideDown 0.4s ease-out both;
}

@media (min-width: 600px) {
  .ps-pwa-install-banner {
    left: auto;
    right: 25px;
    width: 400px;
  }
}

/* ── Close button ──────────────────────────────────────────────────────────── */
.ps-pwa-close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.2s ease;
}

.ps-pwa-close-btn:hover {
  color: #333;
}

/* ── Content (icon + text) ─────────────────────────────────────────────────── */
.ps-pwa-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.ps-pwa-icon {
  width: 48px;
  height: 48px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.ps-pwa-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ps-pwa-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ps-pwa-title {
  font-size: 15px;
  font-weight: 700;
  color: #1c1917;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-pwa-subtitle {
  font-size: 12px;
  color: #78716c;
  margin: 0;
  line-height: 1.3;
}

/* ── Install button ────────────────────────────────────────────────────────── */
.ps-pwa-install-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #9a3412;
  cursor: pointer;
  padding: 8px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.ps-pwa-install-btn:hover {
  opacity: 0.75;
  transform: scale(1.05);
}

.ps-pwa-install-btn:active {
  transform: scale(0.95);
}

/* ── Slide-down animation ──────────────────────────────────────────────────── */
@keyframes psPwaSlideDown {
  from {
    transform: translateY(-120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
