* {
  box-sizing: border-box;
}

.crisp {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #eaeaea;
}

/* ================= LOADER ================= */

.crisp-loader-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.crisp-loader-track {
  display: flex;
  gap: 24px;
}

.crisp-loader-item {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
}

.crisp-loader-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= HERO ================= */

.crisp-hero {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.crisp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.crisp-slide.is-current {
  opacity: 1;
}

.crisp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= CONTENT ================= */

.crisp-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  pointer-events: none;
}

.crisp-title {
  font-size: clamp(48px, 6vw, 120px);
  mix-blend-mode: difference;
}

.crisp-sub {
  margin-top: 16px;
  opacity: .8;
  mix-blend-mode: difference;
}

/* ================= THUMBS ================= */

.crisp-thumbs {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 6;
}

.crisp-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
}

.crisp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crisp-thumb.is-current {
  border-color: white;
}

/* === LOADER KAPALI === */
.crisp-loader-stage {
  display: none !important;
}
