/* Install Banner Styles */

.install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3da5d9 0%, #2364aa 100%);
  color: white;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: slideUp 0.3s ease-out;
  border-top: 4px solid #fec601;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.install-banner-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.install-banner-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fec601 0%, #ea7317 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(254, 198, 1, 0.3);
}

.install-banner-text {
  flex: 1;
}

.install-banner-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 0.25rem 0;
  color: #fec601;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.install-banner-description {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0;
}

.install-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.install-banner-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--border-radius);
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.install-banner-btn-primary {
  background: linear-gradient(135deg, #fec601 0%, #ea7317 100%);
  color: #2364aa;
  box-shadow: 0 2px 8px rgba(254, 198, 1, 0.4);
}

.install-banner-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 198, 1, 0.5);
}

.install-banner-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.install-banner-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.install-banner-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.install-banner-close:hover {
  opacity: 1;
}

/* iOS Instructions */
.install-banner-ios-instructions {
  margin-top: 0.5rem;
  padding: 0.875rem;
  background: rgba(254, 198, 1, 0.15);
  border-radius: var(--border-radius);
  border: 1px solid rgba(254, 198, 1, 0.3);
  font-size: 0.875rem;
  line-height: 1.5;
}

.install-banner-ios-instructions strong {
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .install-banner {
    padding: 1.25rem 1rem;
  }

  .install-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .install-banner-icon {
    align-self: center;
    width: 64px;
    height: 64px;
    font-size: 32px;
  }

  .install-banner-text {
    text-align: center;
  }

  .install-banner-title {
    font-size: 1.25rem;
  }

  .install-banner-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .install-banner-btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
  }
}
