:root {
  --kfjh-bg: #fff8f0;
  --kfjh-bg-alt: #e9fbff;
  --kfjh-ink: #0f3d3e;
  --kfjh-ink-soft: #1f5c5f;
  --kfjh-coral: #ff8f6b;
  --kfjh-mint: #5dd9c1;
  --kfjh-sun: #ffd166;
  --kfjh-lilac: #c89bff;
  --kfjh-sky: #7ad7f0;
  --kfjh-card: #ffffff;
  --kfjh-radius: 22px;
  --kfjh-shadow: 0 18px 50px rgba(15, 61, 62, 0.12);
  --kfjh-max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--kfjh-ink);
  background: radial-gradient(
      circle at 12% 18%,
      rgba(255, 209, 102, 0.35),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(122, 215, 240, 0.45),
      transparent 28%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(200, 155, 255, 0.28),
      transparent 30%
    ),
    var(--kfjh-bg);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Syne", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.kfjh-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.kfjh-lock {
  overflow: hidden;
}

.kfjh-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.kfjh-main {
  flex: 1;
}

.kfjh-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(255, 248, 240, 0.82);
  border-bottom: 1px solid rgba(15, 61, 62, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kfjh-header-inner {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kfjh-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kfjh-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.kfjh-logo-svg {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.kfjh-logo:hover .kfjh-logo-svg {
  transform: rotate(-4deg) scale(1.04);
  filter: drop-shadow(0 8px 18px rgba(93, 217, 193, 0.55));
}

.kfjh-logo-text {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.4vw, 0.9rem);
}

.kfjh-nav {
  display: none;
  gap: 0.6rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

@media (min-width: 992px) {
  .kfjh-nav {
    display: flex;
  }
}

.kfjh-nav-link {
  position: relative;
  font-weight: 600;
  font-size: 0.7rem;
}

.kfjh-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--kfjh-coral), var(--kfjh-mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.kfjh-nav-link:hover::after,
.kfjh-nav-link.is-active::after {
  transform: scaleX(1);
}

.kfjh-nav-icon-link {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--kfjh-ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 61, 62, 0.1);
  box-shadow: 0 6px 16px rgba(15, 61, 62, 0.06);
}

.kfjh-nav-icon-link:hover {
  background: #fff;
  border-color: rgba(93, 217, 193, 0.45);
}

.kfjh-nav-icon-link.is-active {
  border-color: rgba(93, 217, 193, 0.65);
  box-shadow: 0 0 0 2px rgba(93, 217, 193, 0.28);
}

.kfjh-nav-icon-link .kfjh-badge {
  top: -4px;
  right: -4px;
}

.kfjh-nav-icon-svg {
  display: block;
}

.kfjh-header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.kfjh-search-wrap {
  position: relative;
  display: none;
}

@media (min-width: 720px) {
  .kfjh-search-wrap {
    display: block;
  }
}

.kfjh-search-input {
  border-radius: 999px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  padding: 0.45rem 0.95rem;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.9);
}

.kfjh-search-suggest {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--kfjh-shadow);
  padding: 0.35rem;
  z-index: 50;
}

.kfjh-suggest-item {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.kfjh-suggest-item:hover {
  background: rgba(93, 217, 193, 0.18);
}

.kfjh-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--kfjh-coral);
  color: #fff;
  font-size: 0.65rem;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.kfjh-burger {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .kfjh-burger {
    display: none;
  }
}

.kfjh-burger-bar {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--kfjh-ink);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.kfjh-burger.is-open .kfjh-burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.kfjh-burger.is-open .kfjh-burger-bar:nth-child(2) {
  opacity: 0;
}

.kfjh-burger.is-open .kfjh-burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.kfjh-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 61, 62, 0.45);
  backdrop-filter: blur(10px);
  z-index: 35;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 1rem;
}

.kfjh-menu-panel {
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(
    160deg,
    rgba(255, 248, 240, 0.98),
    rgba(233, 251, 255, 0.98)
  );
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: var(--kfjh-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .kfjh-menu-overlay {
    align-items: center;
    padding: 1.25rem;
  }

  .kfjh-menu-panel {
    border-radius: 28px;
    height: auto;
  }
}

.kfjh-menu-icon-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid rgba(15, 61, 62, 0.1);
}

.kfjh-menu-icon-link {
  flex: 1 1 0;
  max-width: 120px;
  min-height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--kfjh-ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 61, 62, 0.12);
  box-shadow: 0 6px 18px rgba(15, 61, 62, 0.06);
}

.kfjh-menu-icon-link.is-active {
  border-color: rgba(93, 217, 193, 0.65);
  box-shadow: 0 0 0 2px rgba(93, 217, 193, 0.35);
}

.kfjh-menu-icon-link .kfjh-badge {
  top: -4px;
  right: -4px;
}

.kfjh-menu-icon-svg {
  display: block;
}

.kfjh-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.kfjh-menu-nav .kfjh-nav-link {
  font-size: 1.35rem;
}

.kfjh-close {
  border: none;
  background: rgba(15, 61, 62, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
}

.kfjh-cart-page-wrap {
  max-width: var(--kfjh-max);
  margin: 0 auto;
}

.kfjh-cart-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .kfjh-cart-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.kfjh-cart-col-list {
  min-width: 0;
}

.kfjh-cart-page-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.kfjh-cart-page-actions {
  margin: 0;
}

.kfjh-cart-aside-inner {
  position: sticky;
  top: 5.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--kfjh-radius);
  background: #fff;
  border: 1px solid rgba(15, 61, 62, 0.1);
  box-shadow: 0 12px 36px rgba(15, 61, 62, 0.06);
}

.kfjh-cart-aside-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.kfjh-cart-total-line {
  margin: 0;
}

.kfjh-cart-total-label {
  font-size: 0.88rem;
  color: rgba(15, 61, 62, 0.65);
  font-weight: 600;
}

.kfjh-cart-total-value {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 0.25rem 0 0.75rem;
}

.kfjh-cart-total-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
}

.kfjh-cart-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kfjh-cart-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.kfjh-cart-field-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.kfjh-cart-field input {
  border-radius: 14px;
  border: 1px solid rgba(15, 61, 62, 0.15);
  padding: 0.65rem 0.85rem;
  font: inherit;
  background: #fff;
}

.kfjh-cart-submit {
  width: 100%;
}

.kfjh-cart-checkout-status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--kfjh-ink-soft);
  line-height: 1.45;
}

.kfjh-cart-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 16px;
  background: rgba(93, 217, 193, 0.12);
}

.kfjh-cart-thumb {
  border-radius: 12px;
  object-fit: cover;
}

.kfjh-cart-qty {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.35rem;
}

.kfjh-cart-qty button {
  border: none;
  border-radius: 10px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: #fff;
}

.kfjh-cart-remove {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.kfjh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kfjh-btn-primary {
  background: linear-gradient(
    120deg,
    var(--kfjh-coral),
    var(--kfjh-mint),
    var(--kfjh-sun)
  );
  color: #0b1f1f;
  box-shadow: 0 14px 30px rgba(255, 143, 107, 0.35);
}

.kfjh-btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 61, 62, 0.12);
}

.kfjh-btn:hover {
  transform: translateY(-2px);
}

.kfjh-btn.is-pulse {
  animation: kfjh-pulse 0.6s ease;
}

@keyframes kfjh-pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.kfjh-hero {
  position: relative;
  min-height: clamp(520px, 88vh, 900px);
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.kfjh-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kfjh-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) brightness(0.82);
}

.kfjh-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(15, 61, 62, 0.58) 0%,
    rgba(15, 61, 62, 0.32) 42%,
    rgba(15, 61, 62, 0.52) 100%
  );
}

.kfjh-hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.45;
}

.kfjh-blob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(6px);
  animation: kfjh-float 9s ease-in-out infinite;
}

.kfjh-blob:nth-child(1) {
  background: rgba(255, 209, 102, 0.75);
  top: 12%;
  left: 8%;
}

.kfjh-blob:nth-child(2) {
  background: rgba(122, 215, 240, 0.75);
  bottom: 18%;
  right: 10%;
  animation-delay: 1.4s;
}

.kfjh-blob:nth-child(3) {
  background: rgba(200, 155, 255, 0.65);
  top: 40%;
  right: 22%;
  animation-delay: 2.1s;
}

@keyframes kfjh-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-26px) scale(1.05);
  }
}

.kfjh-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding: clamp(5.25rem, 12vw, 7rem) 1.25rem clamp(2rem, 5vw, 3rem);
  align-self: start;
  display: grid;
  gap: 1rem;
}

.kfjh-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 12px 40px rgba(15, 61, 62, 0.45);
}

.kfjh-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 38ch;
}

.kfjh-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.kfjh-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem;
}

.kfjh-section-head {
  max-width: var(--kfjh-max);
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 520px) {
  .kfjh-section-head {
    flex-wrap: wrap;
  }
}

.kfjh-section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0;
}

.kfjh-grid {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.kfjh-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.kfjh-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.kfjh-section-intro {
  max-width: var(--kfjh-max);
  margin: -0.35rem auto 1.25rem;
}

.kfjh-home-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.kfjh-home-play {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: var(--kfjh-max);
  margin: 0 auto;
}

.kfjh-play-cta {
  max-width: var(--kfjh-max);
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.kfjh-trust-badges {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.kfjh-trust-badge {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--kfjh-radius);
  background: linear-gradient(
    140deg,
    rgba(255, 143, 107, 0.2),
    rgba(93, 217, 193, 0.25)
  );
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 28px rgba(15, 61, 62, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kfjh-trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 61, 62, 0.12);
}

.kfjh-trust-badge h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.kfjh-trust-badge p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--kfjh-ink-soft);
  font-weight: 600;
}

.kfjh-home-card {
  border-radius: var(--kfjh-radius);
  overflow: hidden;
  background: var(--kfjh-card);
  box-shadow: var(--kfjh-shadow);
  position: relative;
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.kfjh-home-card:hover {
  transform: translateY(-6px);
}

.kfjh-home-card img {
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}

.kfjh-home-card-cap {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.kfjh-home-card-cap .kfjh-price {
  margin-top: auto;
}

.kfjh-price {
  font-weight: 800;
  color: var(--kfjh-ink-soft);
}

.kfjh-article-card {
  border-radius: var(--kfjh-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--kfjh-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kfjh-article-card img {
  height: 200px;
  object-fit: cover;
}

.kfjh-article-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.kfjh-article-body .kfjh-row-btns {
  margin-top: auto;
}

.kfjh-pill {
  display: inline-flex;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(93, 217, 193, 0.25);
  font-size: 0.78rem;
  font-weight: 700;
}

.kfjh-feature {
  border-radius: var(--kfjh-radius);
  padding: 1.25rem;
  background: linear-gradient(
    140deg,
    rgba(255, 143, 107, 0.2),
    rgba(122, 215, 240, 0.25)
  );
  border: 1px solid rgba(255, 255, 255, 0.65);
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.kfjh-feature::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(255, 209, 102, 0.55),
    transparent 60%
  );
  animation: kfjh-spin 16s linear infinite;
}

@keyframes kfjh-spin {
  to {
    transform: rotate(360deg);
  }
}

.kfjh-feature h3 {
  position: relative;
  z-index: 1;
}

.kfjh-feature p {
  position: relative;
  z-index: 1;
}

.kfjh-review-swiper {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding-bottom: 2rem;
}

.kfjh-review-swiper .swiper-slide {
  height: auto;
  align-self: stretch;
  display: flex;
}

.kfjh-review-card {
  flex: 1;
  width: 100%;
  min-height: 100%;
  border-radius: var(--kfjh-radius);
  background: #fff;
  padding: 1.25rem;
  border: 1px solid rgba(15, 61, 62, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kfjh-review-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.kfjh-review-card h3 {
  margin: 0;
  flex-shrink: 0;
}

.kfjh-review-card p {
  margin: 0;
  flex: 1;
}

.kfjh-split {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .kfjh-split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.kfjh-map iframe {
  width: 100%;
  border: 0;
  border-radius: var(--kfjh-radius);
  min-height: 320px;
  box-shadow: var(--kfjh-shadow);
}

.kfjh-newsletter {
  border-radius: 32px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(
    120deg,
    rgba(93, 217, 193, 0.35),
    rgba(255, 209, 102, 0.45),
    rgba(200, 155, 255, 0.35)
  );
  max-width: var(--kfjh-max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.kfjh-news-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.kfjh-news-form input {
  flex: 1 1 220px;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1rem;
}

.kfjh-footer {
  background: #0c2b2c;
  color: #f4fffd;
  padding: 2.5rem 1.25rem 1.25rem;
  margin-top: 2rem;
}

.kfjh-footer-grid {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.kfjh-footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-family: "Syne", system-ui, sans-serif;
}

.kfjh-tagline {
  color: rgba(244, 255, 253, 0.78);
}

.kfjh-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.kfjh-social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.kfjh-footer-title {
  margin: 0 0 0.65rem;
}

.kfjh-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: rgba(244, 255, 253, 0.85);
}

.kfjh-footer-bar {
  max-width: var(--kfjh-max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.kfjh-payrow {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.kfjh-pay-icon {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.kfjh-footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.85rem;
}

.kfjh-cursor-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  mix-blend-mode: screen;
}

.kfjh-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px rgba(255, 143, 107, 1),
    0 0 16px rgba(93, 217, 193, 0.95),
    0 0 24px rgba(255, 209, 102, 0.75),
    0 0 32px rgba(200, 155, 255, 0.45);
}

.kfjh-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 143, 107, 0.75);
  box-shadow:
    0 0 0 1px rgba(93, 217, 193, 0.5) inset,
    0 0 14px rgba(255, 209, 102, 0.55);
  opacity: 0.9;
}

.kfjh-cursor-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.kfjh-cursor-root.is-hot .kfjh-cursor-ring {
  transform: scale(1.12);
  border-color: rgba(93, 217, 193, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 143, 107, 0.45) inset,
    0 0 18px rgba(122, 215, 240, 0.65);
}

.kfjh-cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  background: rgba(15, 61, 62, 0.92);
  color: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--kfjh-shadow);
}

.kfjh-cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.kfjh-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.kfjh-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  padding: max(1rem, env(safe-area-inset-top, 0px))
    max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.45);
}

.kfjh-cookie-modal-panel {
  background: #fff;
  color: var(--kfjh-ink);
  border-radius: 20px;
  padding: 1.25rem;
  width: min(420px, 92vw);
  max-height: min(88vh, 640px);
  overflow-y: auto;
  margin: auto;
  display: grid;
  gap: 0.75rem;
}

.kfjh-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kfjh-chat {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 65;
}

.kfjh-chat-launch {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(
    140deg,
    var(--kfjh-mint),
    var(--kfjh-sky),
    var(--kfjh-sun)
  );
  color: #0b1f1f;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(93, 217, 193, 0.55);
  animation: kfjh-launch 2.8s ease-in-out infinite;
}

@keyframes kfjh-launch {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.kfjh-chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(360px, 92vw);
  height: 460px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--kfjh-shadow);
  display: flex;
  flex-direction: column;
}

.kfjh-chat-head {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(15, 61, 62, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.kfjh-chat-title {
  margin: 0;
  font-weight: 800;
  font-size: 0.95rem;
}

.kfjh-chat-sub {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--kfjh-ink-soft);
}

.kfjh-chat-body {
  flex: 1;
  overflow: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.kfjh-chat-msg {
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  max-width: 92%;
}

.kfjh-chat-msg.bot {
  align-self: flex-start;
  background: rgba(93, 217, 193, 0.2);
}

.kfjh-chat-msg.user {
  align-self: flex-end;
  background: rgba(255, 143, 107, 0.2);
}

.kfjh-chat-time {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.25rem;
  color: rgba(15, 61, 62, 0.55);
}

.kfjh-chat-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
}

.kfjh-chat-quick button {
  border-radius: 12px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  background: #fff;
  padding: 0.45rem;
  cursor: pointer;
  font-size: 0.78rem;
}

.kfjh-chat-form {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem;
  border-top: 1px solid rgba(15, 61, 62, 0.08);
}

.kfjh-chat-form input {
  flex: 1;
  border-radius: 12px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  padding: 0.55rem 0.65rem;
}

.kfjh-product-layout {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .kfjh-product-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.kfjh-zoom-stage {
  border-radius: var(--kfjh-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--kfjh-shadow);
  cursor: zoom-in;
}

.kfjh-zoom-stage.is-zoom img {
  transform: scale(1.35);
}

.kfjh-zoom-stage img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.kfjh-product-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.kfjh-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.kfjh-row-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.kfjh-product-thumbs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}

.kfjh-thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  background: #fff;
}

.kfjh-thumb.is-active {
  border-color: var(--kfjh-mint);
}

.kfjh-filter-row {
  max-width: var(--kfjh-max);
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.kfjh-filter-chip {
  border-radius: 999px;
  border: 1px solid rgba(15, 61, 62, 0.12);
  padding: 0.45rem 0.95rem;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.kfjh-filter-chip.is-active {
  background: rgba(93, 217, 193, 0.35);
  border-color: transparent;
}

.kfjh-product-card {
  border-radius: var(--kfjh-radius);
  background: #fff;
  box-shadow: var(--kfjh-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.kfjh-card-visual {
  position: relative;
}

.kfjh-card-visual img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.kfjh-fav-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  color: rgba(15, 61, 62, 0.35);
}

.kfjh-fav-heart.is-on {
  color: var(--kfjh-coral);
}

.kfjh-chip-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(15, 61, 62, 0.78);
  color: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.kfjh-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.kfjh-card-desc {
  flex: 1 1 auto;
}

.kfjh-card-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.kfjh-shop-grid {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.kfjh-breadcrumb {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 0;
  font-size: 0.9rem;
  color: var(--kfjh-ink-soft);
}

.kfjh-gamble-note {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  border-radius: var(--kfjh-radius);
  background: linear-gradient(
    140deg,
    rgba(255, 248, 240, 0.95),
    rgba(233, 251, 255, 0.9)
  );
  border: 1px solid rgba(15, 61, 62, 0.1);
  box-shadow: var(--kfjh-shadow);
}

.kfjh-gamble-note h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.kfjh-gamble-note p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: var(--kfjh-ink-soft);
  font-weight: 600;
}

.kfjh-gamble-note p:last-child {
  margin-bottom: 0;
}

.kfjh-gamble-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kfjh-article-group-title {
  max-width: var(--kfjh-max);
  margin: 2.5rem auto 1.25rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-family: "Syne", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.kfjh-article-group-title:first-of-type {
  margin-top: 0;
}

.kfjh-policy {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding: 4.25rem 1.25rem 3rem;
}

.kfjh-policy figure {
  margin: 1.5rem 0;
  border-radius: var(--kfjh-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
}

.kfjh-policy figure img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.kfjh-policy h2 {
  margin-top: 2rem;
}

.kfjh-float-label {
  position: relative;
  margin-bottom: 1rem;
}

.kfjh-contact-form .kfjh-float-label {
  margin-bottom: 0.5rem;
}

.kfjh-float-label--hint-placeholder label {
  transform: translateY(-0.55rem);
  font-size: 0.68rem;
}

.kfjh-float-label--hint-placeholder input::placeholder {
  color: rgba(15, 61, 62, 0.42);
  font-size: 0.88rem;
}

.kfjh-contact-narrow {
  max-width: var(--kfjh-max);
  margin: 0 auto;
}

.kfjh-contact-h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0 0 0.5rem;
}

.kfjh-contact-lead {
  margin: 0;
}

.kfjh-section.kfjh-contact-page {
  padding: clamp(0.85rem, 2vw, 1.35rem) 1.25rem clamp(1.5rem, 3.5vw, 2.25rem);
}

.kfjh-contact-page .kfjh-section-head {
  margin-bottom: 0.75rem;
}

.kfjh-contact-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.kfjh-contact-stack-block {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(15, 61, 62, 0.08);
}

.kfjh-contact-stack-block:first-of-type {
  padding-top: 0;
  border-top: none;
}

.kfjh-contact-social {
  margin-top: 1rem;
}

.kfjh-contact-social .kfjh-social-link {
  background: rgba(15, 61, 62, 0.08);
  color: var(--kfjh-ink);
}

.kfjh-contact-social .kfjh-social-link:hover {
  background: rgba(93, 217, 193, 0.28);
}

.kfjh-map-section .kfjh-map {
  margin: 0;
}

.kfjh-float-label input,
.kfjh-float-label textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 61, 62, 0.15);
  padding: 1rem 0.85rem 0.55rem;
  background: #fff;
  font: inherit;
}

.kfjh-float-label textarea {
  min-height: 140px;
  resize: vertical;
}

.kfjh-float-label label {
  position: absolute;
  left: 0.85rem;
  top: 0.55rem;
  font-size: 0.78rem;
  color: rgba(15, 61, 62, 0.55);
  pointer-events: none;
  transition: transform 0.2s ease, font-size 0.2s ease;
}

.kfjh-float-label input:focus + label,
.kfjh-float-label input:not(:placeholder-shown) + label,
.kfjh-float-label textarea:focus + label,
.kfjh-float-label textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.55rem);
  font-size: 0.68rem;
}

.kfjh-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.kfjh-contact-form {
  max-width: 640px;
  margin: 0;
}

.kfjh-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  margin: 0.75rem 0 1rem;
}

.kfjh-contact-form .kfjh-check {
  margin: 0.45rem 0 0.65rem;
}

#kfjh-product-fav.is-on {
  box-shadow: 0 0 0 2px rgba(255, 143, 107, 0.8);
}

.kfjh-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  display: inline-block;
  animation: kfjh-spin2 0.8s linear infinite;
}

@keyframes kfjh-spin2 {
  to {
    transform: rotate(360deg);
  }
}

.kfjh-soft {
  color: var(--kfjh-ink-soft);
}

.kfjh-article-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}

.kfjh-article-toolbar .kfjh-search-wrap {
  display: block;
  min-width: 240px;
}

.kfjh-mini-card {
  border-radius: 18px;
  background: #fff;
  padding: 0.65rem;
  box-shadow: var(--kfjh-shadow);
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.kfjh-mini-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.kfjh-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.kfjh-timeline {
  border-left: 3px solid rgba(93, 217, 193, 0.65);
  padding-left: 1rem;
  display: grid;
  gap: 1rem;
}

.kfjh-tl-item strong {
  color: var(--kfjh-coral);
}

.kfjh-fomo-strip {
  max-width: var(--kfjh-max);
  margin: 0 auto 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    rgba(255, 143, 107, 0.35),
    rgba(200, 155, 255, 0.35)
  );
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.kfjh-fomo-time {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.6rem;
}

.swiper-pagination-bullet-active {
  background: var(--kfjh-coral) !important;
}

.kfjh-about-hero {
  max-width: var(--kfjh-max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem 0;
}

.kfjh-about-hero-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.kfjh-about-fig {
  margin: 0;
  border-radius: var(--kfjh-radius);
  overflow: hidden;
  box-shadow: var(--kfjh-shadow);
}

.kfjh-about-fig img {
  width: 100%;
  height: clamp(200px, 32vw, 320px);
  object-fit: cover;
  display: block;
}

.kfjh-museum-card.kfjh-product-card {
  padding: 0;
}

.kfjh-museum-card-hit {
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  background: none;
  font: inherit;
  color: inherit;
  min-height: 360px;
  position: relative;
  border-radius: var(--kfjh-radius);
  overflow: hidden;
}

.kfjh-museum-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.55s ease;
}

.kfjh-museum-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    185deg,
    rgba(12, 43, 44, 0.25) 0%,
    rgba(12, 43, 44, 0.55) 42%,
    rgba(12, 43, 44, 0.88) 100%
  );
}

.kfjh-museum-card-hit:hover .kfjh-museum-card-bg,
.kfjh-museum-card-hit:focus-visible .kfjh-museum-card-bg {
  transform: scale(1.04);
}

.kfjh-museum-narrow {
  max-width: var(--kfjh-max);
  margin-left: auto;
  margin-right: auto;
}

.kfjh-museum-card-front {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.1rem;
  gap: 0.45rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.kfjh-museum-card-front .kfjh-chip-label {
  position: relative;
  inset: auto;
  align-self: flex-start;
}

.kfjh-museum-card-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.kfjh-museum-card-teaser {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.93);
}

.kfjh-museum-card-btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.kfjh-museum-dlg {
  width: min(920px, 96vw);
  max-height: 92vh;
  margin: auto;
  border: none;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--kfjh-shadow);
}

.kfjh-museum-dlg::backdrop {
  background: rgba(15, 61, 62, 0.55);
}

.kfjh-museum-dlg-inner {
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

.kfjh-museum-dlg-hero {
  min-height: clamp(180px, 28vh, 280px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.kfjh-museum-dlg-scroll {
  overflow: auto;
  padding: 0 1.25rem 1.5rem;
  flex: 1;
  min-height: 0;
}

.kfjh-museum-dlg-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0 0.5rem;
  position: sticky;
  top: 0;
  background: linear-gradient(
    180deg,
    #fff 70%,
    rgba(255, 255, 255, 0.92) 100%
  );
  z-index: 1;
}

.kfjh-museum-dlg-title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.kfjh-museum-dlg-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--kfjh-ink-soft);
}

.kfjh-museum-dlg-body p {
  margin: 0 0 1rem;
}

[hidden] {
  display: none !important;
  pointer-events: none !important;
}
