/**
 * Above-the-fold shell: header layout, hero/LCP placeholder, skeleton loading.
 * Keep small — full theme loads asynchronously from bootstrap + main.css.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: #7e7e7e;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.header-area {
  background: #fff;
}

.header-height-2 {
  border-bottom: 1px solid #ececec;
}

.position-relative {
  position: relative;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.hero-slider-1 {
  position: relative;
}

.hero-slider-1 .single-hero-slider {
  height: 538px;
  border-radius: 30px;
  background-size: cover;
  background-position: center center;
}

.hero-slider-1 img {
  max-height: 538px;
  border-radius: 30px;
}

.home-hero-slider-skeleton .hero-banner-skeleton-block {
  width: 100%;
  min-height: 400px;
  padding-bottom: 35%;
  height: 0 !important;
  border-radius: 20px;
  background: #ececec;
}

@media (min-width: 768px) {
  .home-hero-slider-skeleton .hero-banner-skeleton-block {
    min-height: 500px;
    padding-bottom: 28%;
  }
}

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

.skeleton-shimmer {
  background: linear-gradient(90deg, #ececec 0%, #f5f5f5 40%, #ececec 80%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-region {
  pointer-events: none;
  user-select: none;
}

#app {
  min-height: 50vh;
}
