

  /*=======================
      PWA INSTALL BUTTON 
  ========================*/
#installBtn{
  position: fixed;
  top: 70px; /* header ke niche */
  right: 14px;

  padding: 8px 14px;
  border-radius: 30px;

  background: #e3973b;
  color: #fff;
  border: none;

  font-size: 14px;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 6px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 99999;

  transition: 0.3s ease;
}

/* hover */
#installBtn:hover{
  transform: translateY(-2px);
  background: #cf832f;
}

/* 📱 mobile optimization */
@media(max-width:600px){
  #installBtn{
    padding: 6px 12px;
    font-size: 13px;
    top: 20px;
    right: 10px;
  }
}