/* PWA Install Banner Styles */
#pwa-install-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: bottom 0.3s ease-out;
  border-top: 3px solid #000;
}

#pwa-install-banner.pwa-banner-visible {
  bottom: 0;
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 12px;
}

.pwa-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 2px solid #000;
  background: white;
}

.pwa-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pwa-banner-text strong {
  font-size: 16px;
  color: #000;
  font-family: 'Fredoka', sans-serif;
}

.pwa-banner-text span {
  font-size: 13px;
  color: #333;
  font-family: 'Fredoka', sans-serif;
}

.pwa-install-button {
  background: #dc2626;
  color: white;
  border: 2px solid #000;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Fredoka', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.1s, background 0.2s;
}

.pwa-install-button:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

.pwa-install-button:active {
  transform: scale(0.98);
}

.pwa-dismiss-button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.pwa-dismiss-button:hover {
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .pwa-banner-content {
    flex-wrap: wrap;
  }
  
  .pwa-banner-icon {
    width: 40px;
    height: 40px;
  }
  
  .pwa-banner-text {
    flex: 1 1 calc(100% - 100px);
  }
  
  .pwa-banner-text strong {
    font-size: 14px;
  }
  
  .pwa-banner-text span {
    font-size: 12px;
  }
  
  .pwa-install-button {
    padding: 8px 16px;
    font-size: 12px;
  }
}
