
        html, body {
            height: 100vh;
            margin: 0;
            padding: 0;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            touch-action: pan-y;
            -webkit-user-scalable: no;
            -ms-user-scalable: no;
            user-scalable: no;
            overscroll-behavior-y: none;
            -webkit-text-size-adjust: none;
            -webkit-overflow-scrolling: touch;
        }
        body::-webkit-scrollbar {
            display: none;
        }
        body {
            background: #2c2c2c;
            display: flex;
            flex-direction: column;
            font-family: 'Poppins', sans-serif;
        }
        .osahan-profile {
            flex: 1 0 auto;
            padding-bottom: env(safe-area-inset-bottom);
        }
        .profile-details .user-info {
            padding: 20px;
            text-align: center;
        }
        .profile-details .btn-danger {
            background: #dc3545;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .profile-details .btn-danger:hover {
            background: #c82333;
        }
        .text-danger {
            color: #50c33e !important;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .text-danger:hover {
            color: #50c33e !important;
            transform: scale(1.05);
        }
        .bg-dark {
            background: #2c2c2c !important;
        }
        .profile-details .user-info h5 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 5px;
            overflow-wrap: break-word;
            white-space: normal;
            max-height: 48px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .profile-details .user-info h5.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        .profile-details .user-info p {
            font-size: 0.9rem;
            color: #b0b0b0;
            margin-bottom: 0;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            transition-delay: 0.1s;
        }
        .profile-details .user-info p.loaded {
            opacity: 1;
            transform: translateY(0);
        }
        
/* Fullscreen Loader */
#page-loader {
  position: fixed;
  inset: 0;
  background: #2c2c2c; /* matches your app */
  z-index: 99999;
  overflow-y: auto;
  padding: 20px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Shimmer effect */
.skeleton {
  background: linear-gradient(
    90deg,
    #3a3a3a 25%,
    #4a4a4a 37%,
    #3a3a3a 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 12px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* 🔝 Header placeholders */
.loader-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.skeleton-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.skeleton-title {
  width: 75px;
  height: 45px;
  border-radius: 6px;
}
.skeleton-titlee {
  width: 120px;
  height: 45px;
  border-radius: 6px;
}

/* 🔍 Search bar placeholder */
.loader-search {
  display: flex;
  justify-content: flex-start; /* pushes content to the right */
  gap: 12px;
}
.skeleton-loga {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
 .skeleton-search {
  width: 90%;
  max-width: 400px; /* optional: cap the width */
  height: 46px;
  border-radius: 16px;
}
 .skeleton-lastsearch {
  width: 90%;
  max-width: 400px; /* optional: cap the width */
  height: 46px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.skeleton-titla {
  width: 85px;
  height: 30px;
  border-radius: 6px;
}

.loader-searchh {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* centers vertically */
}

.loader-searchh .skeleton-searchh {
  width: 95%;
  height: 86px;
  border-radius: 16px;
}


/* 🎉 Promo banners */
.loader-promos {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.skeleton-banner {
  width: 100%;
  height: 140px;
  border-radius: 16px;
}

/* 🍴 Restaurant cards */
.loader-restaurants {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 10px;
}
.skeleton-card {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  margin-bottom: 10px;
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
