
body {
  margin-top: 70px;
}

/* Make navbar container a single-line flex row and avoid wrapping */
.navbar .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.navbar-nav {
  display: flex;
  gap: 8px;
  white-space: nowrap; /* keep nav links on one line */
}
.navbar-toggler {
  margin-left: auto; /* push toggler to the right */
}

/* Mobile bottom navigation (sharp style) */
.mobile-bottom-nav {
  display: none; /* shown only on small screens via media query */
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.06);
  z-index: 1050;
  justify-content: space-around;
  align-items: center;
  gap: 6px;
}
.mobile-bottom-nav a {
  color: #333;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 56px;
}
.mobile-bottom-nav a .fa-solid {
  font-size: 20px;
  line-height: 1;
}
.mobile-bottom-nav a span {
  display: block;
  font-size: 11px;
  margin-top: 2px;
}
.mobile-bottom-nav a.active {
  color: var(--bs-primary, #ffc107);
}

/* Reserve space for the nav on small screens so content isn't hidden */
@media (max-width: 991.98px) {
  body { padding-bottom: 90px; }
  .mobile-bottom-nav { display: flex; }
}
.navbar-brand {
  font-size: 1.5rem;
}
.card img {
  height: 220px;
  object-fit: cover;
}
.card img {
  height: 220px;
  object-fit: cover;
}
#searchInput {
  border-radius: 30px;
  padding-left: 15px;
}
.whatsapp-link {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1100; /* sit above the mobile bottom nav (which uses 1050) */
    }
    .whatsapp-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }
     .contact-links a,
            .contact-info a {
              text-decoration: none;
              color: inherit;
              transition: color 0.2s;
            }
            .contact-links a:hover,
            .contact-info a:hover {
              color: var(--bs-primary);
              text-decoration: underline;
            }
            .contact-info p {
              margin-bottom: 0.7rem;
              font-size: 1.05rem;
              display: flex;
              align-items: center;
              gap: 0.5rem;
            }
            .contact-info i {
              min-width: 1.3em;
            }

/* Ensure floating WhatsApp button sits above mobile bottom nav on small screens */
@media (max-width: 991.98px) {
  .whatsapp-link { bottom: calc(64px + 16px); z-index: 1100; }
  .whatsapp-icon { width: 56px; height: 56px; }
}

/* Ensure offcanvas (mobile menu) is not visible or interactive on desktop
   Keep it only for small viewports where the toggler is shown. */
@media (min-width: 992px) {
  .offcanvas { display: none !important; }
}

/* Skeleton loaders used while properties load (improves perceived performance) */
.skeleton-img{
  height:220px;
  background: linear-gradient(90deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.04) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
  border-radius: .375rem  .375rem 0 0;
}
.skeleton-line{
  height:12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.04) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
  margin: 12px 0;
  border-radius: 6px;
}
.skeleton-line.short{ width: 40%; }

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

/* Homepage ad/video: prevent user interactions (no pause/play) */
.hero-ad-video{
  pointer-events: none; /* disables click/pause */
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Ensure the video doesn't show default controls on platforms that might force them */
.hero-ad-video::-webkit-media-controls { display: none !important; }
.hero-ad-video::-webkit-media-controls-enclosure { display: none !important; }
