/* Kingprint Hero Slider */
:root {
  --kp-red: #e30613;
  --kp-yellow: #ffd100;
  --kp-black: #000000;
  --kp-white: #ffffff;
}

.kp-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #f6f6f6;
}
.kp-hero__track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.6s ease;
}
.kp-hero__slide {
  position: relative;
  min-height: 60vh;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kp-white);
}
.kp-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.05);
}
.kp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.35));
}
.kp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 56px 20px;
  text-align: center;
}
.kp-hero__title {
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.kp-hero__desc {
  font-size: clamp(16px, 2.3vw, 20px);
  color: #f1f1f1;
  margin: 0 auto 18px;
  max-width: 800px;
}
.kp-hero__cta {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--kp-red);
  color: var(--kp-white);
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .2s ease;
}
.kp-hero__cta:hover, .kp-hero__cta:focus {
  background: var(--kp-black);
  border-color: var(--kp-yellow);
  outline: none;
}

/* Controls */
.kp-hero__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kp-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: var(--kp-black);
  display: grid; place-items: center;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  pointer-events: auto;
}
.kp-hero__arrow--prev { left: 12px; }
.kp-hero__arrow--next { right: 12px; }
.kp-hero__arrow:hover { background: var(--kp-yellow); }

.kp-hero__dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex; justify-content: center; gap: 8px;
}
.kp-hero__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
}
.kp-hero__dot.is-active { background: var(--kp-red); }

@media (max-width: 767px) {
  .kp-hero__slide { min-height: 56vh; }
}
