/* ============================================================
   施設シングルページ（Klook風レイアウト）
   ============================================================ */
.ks { background: var(--color-bg, #f8f6f3); }
.ks-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.ks-pankuzu .container { max-width: 1160px; padding: 0 24px; }

.ks-section { scroll-margin-top: 120px; margin-bottom: 48px; }
.ks-h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

/* ---- 施設名ヘッダー ---- */
.ks-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 20px;
  scroll-margin-top: 120px;
}
.ks-badges { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.ks-badge {
  display: inline-block;
  background: var(--color-dark);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 2px;
}
.ks-badge:hover { background: var(--color-accent); opacity: 1; }
.ks-title { font-size: 2.8rem; font-weight: 500; line-height: 1.35; color: var(--color-dark); }
.ks-title-en {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.ks-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; font-size: 1.35rem; color: var(--color-muted); }
.ks-meta__rating { display: inline-flex; align-items: center; gap: 6px; color: var(--color-dark); }
.ks-meta__rating strong { font-size: 1.5rem; }
.ks-meta__sep { color: #ccc; }
.ks-meta__loc { display: inline-flex; align-items: center; gap: 5px; color: var(--color-muted); }
.ks-meta__loc:hover { color: var(--color-accent); opacity: 1; }

/* ★評価 */
.ks-stars { color: var(--color-gold, #c4a96e); letter-spacing: 1px; font-size: 1.4rem; }
.ks-star-empty { color: #dcd6cc; }
.ks-star-half { position: relative; color: #dcd6cc; }

/* ---- ギャラリー（モザイク） ---- */
.ks-gallery {
  position: relative;
  display: grid;
  gap: 8px;
  border-radius: 6px;
  overflow: hidden;
  height: 440px;
  margin-bottom: 28px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.ks-gallery__item {
  border: none;
  padding: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: opacity 0.2s;
  min-height: 0;
}
.ks-gallery__item:hover { opacity: 0.92; }
/* 1枚目を大きく */
.ks-gallery--3 .ks-gallery__item:first-child,
.ks-gallery--4 .ks-gallery__item:first-child,
.ks-gallery--5 .ks-gallery__item:first-child {
  grid-row: 1 / 3;
}
.ks-gallery--1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.ks-gallery--2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
.ks-gallery__more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.ks-gallery__allbtn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--color-dark);
  font-size: 1.3rem;
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.ks-gallery__allbtn:hover { background: #f2efe9; }

/* ---- アンカータブ ---- */
.ks-tabs {
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 50;
  display: flex;
  gap: 4px;
  background: var(--color-bg, #f8f6f3);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ks-tabs::-webkit-scrollbar { display: none; }
.ks-tabs a {
  padding: 14px 22px;
  font-size: 1.4rem;
  color: var(--color-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.ks-tabs a:hover { color: var(--color-dark); opacity: 1; }
.ks-tabs a.is-active { color: var(--color-dark); border-bottom-color: var(--color-gold, #c4a96e); font-weight: 500; }

/* ---- 2カラム ---- */
.ks-layout { display: flex; gap: 40px; align-items: flex-start; }
.ks-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
/* セクション表示順：概要→客室→設備・サービス→プラン→アクセス→クチコミ→周辺観光→その他 */
.ks-main > .ks-section { order: 8; }
#overview   { order: 1; }
#rooms      { order: 2; }
#facilities { order: 3; }
#plans      { order: 4; }
#access     { order: 5; }
#reviews    { order: 6; }
#spots      { order: 7; }
.ks-side { width: 320px; flex-shrink: 0; }

/* ---- 概要 ---- */
.ks-catch { font-size: 2rem; font-weight: 500; line-height: 1.7; color: var(--color-dark); margin-bottom: 16px; }
.ks-desc { font-size: 1.5rem; line-height: 2; color: var(--color-text); }
.ks-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.ks-highlights li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  padding: 12px 8px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 6px;
  font-size: 1.2rem;
  color: var(--color-dark);
  text-align: center;
}
.ks-highlights li svg { flex-shrink: 0; }
.ks-highlights li span {
  line-height: 1.4;
  word-break: break-all;
}
.ks-highlights li svg { color: var(--color-accent, #8b7355); }
.ks-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.ks-tags a {
  font-size: 1.25rem;
  padding: 5px 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text);
}
.ks-tags a:hover { background: var(--color-dark); color: #fff; opacity: 1; }

/* ---- プラン ---- */
.ks-plans { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.ks-plan {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px;
}
.ks-plan__img { flex: 0 0 180px; }
.ks-plan__img img { width: 100%; height: 120px; object-fit: cover; border-radius: 4px; display: block; }
.ks-plan__body { flex: 1; min-width: 0; }
.ks-plan__name { font-size: 1.6rem; font-weight: 500; color: var(--color-dark); margin-bottom: 6px; }
.ks-plan__meal { font-size: 1.3rem; color: var(--color-muted); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ks-plan__side { flex: 0 0 150px; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.ks-plan__price { font-size: 1.5rem; font-weight: 600; color: var(--color-accent, #8b7355); line-height: 1.4; }
.ks-plan__btn {
  background: var(--color-dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 20px;
  font-size: 1.3rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.ks-plan__btn:hover { background: var(--color-accent); }
.plan-modal__book {
  display: block;
  text-align: center;
  margin-top: 16px;
  background: var(--color-gold, #c4a96e);
  color: #1a1a1a;
  padding: 13px;
  border-radius: 4px;
  font-weight: 500;
}
.plan-modal__book:hover { background: #a8905a; color: #fff; opacity: 1; }

/* ---- 客室 ---- */
.ks-rooms { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.ks-room { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; padding: 20px 22px; }
.ks-room--img { display: flex; gap: 22px; padding: 0; overflow: hidden; }
.ks-room__img {
  flex: 0 0 260px;
  position: relative;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  display: block;
}
.ks-room__img img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; display: block; transition: transform 0.4s; }
.ks-room__img:hover img { transform: scale(1.05); }
.ks-room__imgcount {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 100px;
}
.ks-room--img .ks-room__main { flex: 1; min-width: 0; padding: 20px 22px 20px 0; }
.ks-room__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }
.ks-room__name { font-size: 1.7rem; font-weight: 500; color: var(--color-dark); }
.ks-room__spec { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.ks-room__spec li { font-size: 1.35rem; color: var(--color-text); }
.ks-room__spec li span { color: var(--color-muted); font-size: 1.2rem; margin-right: 5px; }
.ks-room__desc { font-size: 1.4rem; line-height: 1.9; color: var(--color-text); margin-bottom: 12px; }
.ks-room__feats { display: flex; flex-wrap: wrap; gap: 8px; }
.ks-feat {
  display: inline-block;
  font-size: 1.25rem;
  padding: 4px 14px;
  background: #f4efe6;
  color: var(--color-accent, #8b7355);
  border: 1px solid #e5dccb;
  border-radius: 100px;
}

/* ---- 設備・サービス アイコン一覧 ---- */
.ks-amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px 16px;
}
.ks-amenities li { display: flex; align-items: center; gap: 8px; font-size: 1.35rem; color: var(--color-dark); }
.ks-amenities li svg { color: var(--color-accent, #8b7355); flex-shrink: 0; width: 20px; height: 20px; }
.ks-amenities__note { font-size: 1.35rem; line-height: 1.9; color: var(--color-text); margin-bottom: 24px; padding: 14px 16px; background: #fff; border: 1px solid var(--color-border); border-radius: 6px; }

/* ---- 情報テーブル ---- */
.ks-info { margin-bottom: 24px; }
.ks-info__title { font-size: 1.5rem; font-weight: 500; color: var(--color-dark); margin-bottom: 10px; }
.ks-info__dl {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}
.ks-info__row { display: flex; border-bottom: 1px solid var(--color-border); }
.ks-info__row:last-child { border-bottom: none; }
.ks-info__row dt {
  flex: 0 0 34%;
  padding: 13px 18px;
  background: #faf8f5;
  color: var(--color-accent, #8b7355);
  font-size: 1.3rem;
  font-weight: 500;
  border-right: 1px solid var(--color-border);
}
.ks-info__row dd { flex: 1; padding: 13px 18px; font-size: 1.35rem; color: var(--color-text); line-height: 1.7; }
.ks-info__free { font-size: 1.4rem; line-height: 1.9; color: var(--color-text); }

/* ---- アクセス ---- */
.ks-access { margin-bottom: 18px; }
.ks-access__addr { display: flex; align-items: center; gap: 6px; font-size: 1.4rem; color: var(--color-dark); margin-bottom: 6px; }
.ks-access__addr svg { color: var(--color-accent); flex-shrink: 0; }
.ks-access__tel { font-size: 1.4rem; }
.ks-access__tel a { color: var(--color-accent); }
.ks-map { border-radius: 6px; overflow: hidden; margin-bottom: 24px; }
.ks-map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---- クチコミ ---- */
.ks-rev-summary { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.ks-rev-score { display: flex; align-items: center; gap: 12px; }
.ks-rev-num { font-size: 3rem; font-weight: 600; color: var(--color-dark); line-height: 1; }
.ks-rev-count { font-size: 1.3rem; color: var(--color-muted); }
.ks-rev-google { display: inline-flex; align-items: center; gap: 6px; font-size: 1.3rem; color: var(--color-muted); }
.ks-reviews { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ks-review { background: #fff; border: 1px solid var(--color-border); border-radius: 8px; padding: 18px 20px; }
.ks-review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ks-review__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ks-review__avatar--txt { display: flex; align-items: center; justify-content: center; background: var(--color-accent); color: #fff; font-size: 1.6rem; }
.ks-review__author { font-size: 1.4rem; font-weight: 500; color: var(--color-dark); }
.ks-review__meta { font-size: 1.2rem; color: var(--color-muted); display: flex; align-items: center; gap: 8px; }
.ks-review__text { font-size: 1.35rem; line-height: 1.85; color: var(--color-text); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.ks-rev-more { display: inline-block; margin-top: 20px; padding: 11px 28px; border: 1px solid var(--color-dark); font-size: 1.35rem; color: var(--color-dark); transition: background 0.2s, color 0.2s; }
.ks-rev-more:hover { background: var(--color-dark); color: #fff; opacity: 1; }
.ks-rev-empty { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 48px 20px; background: #fff; border: 1px dashed var(--color-border); border-radius: 8px; color: var(--color-muted); text-align: center; }
.ks-rev-empty svg { opacity: 0.4; }
.ks-rev-empty p { font-size: 1.4rem; line-height: 1.8; }

/* ---- 体験レポ ---- */
.ks-acts { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ks-acts a { display: block; background: #fff; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.ks-acts a:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.08); transform: translateY(-2px); opacity: 1; }
.ks-acts img { width: 100%; height: 150px; object-fit: cover; display: block; }
.ks-acts span { display: block; padding: 12px 14px; font-size: 1.35rem; font-weight: 500; color: var(--color-dark); }
.ks-more-link { text-align: center; margin-top: 24px; }
.ks-more-link a { display: inline-block; padding: 12px 36px; border: 1px solid var(--color-dark); font-size: 1.35rem; color: var(--color-dark); transition: background 0.2s, color 0.2s; }
.ks-more-link a:hover { background: var(--color-dark); color: #fff; opacity: 1; }

/* ---- 周辺観光 ---- */
.ks-spots { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ks-spots > li > a, .ks-spots > li > div { display: block; }
.ks-spots__img { border-radius: 6px; overflow: hidden; }
.ks-spots__img img { width: 100%; height: 130px; object-fit: cover; display: block; transition: transform 0.5s; }
.ks-spots a:hover .ks-spots__img img { transform: scale(1.05); }
.ks-spots__name { font-size: 1.35rem; font-weight: 500; line-height: 1.5; margin-top: 10px; color: var(--color-dark); }
.ks-spots a:hover .ks-spots__name { color: var(--color-accent); }
.ks-spots__desc { font-size: 1.2rem; color: var(--color-muted); line-height: 1.6; margin-top: 4px; }

/* ---- 関連施設（カルーセル） ---- */
.ks-related-wrap { position: relative; }
.ks-related {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ks-related::-webkit-scrollbar { display: none; }
.ks-related > li {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}
.ks-related__img { border-radius: 6px; overflow: hidden; }
.ks-related__img img { width: 100%; height: 130px; object-fit: cover; display: block; transition: transform 0.5s; }
.ks-related a:hover .ks-related__img img { transform: scale(1.05); }
.ks-related__name { font-size: 1.35rem; font-weight: 500; line-height: 1.5; margin-top: 10px; color: var(--color-dark); }
.ks-related a:hover .ks-related__name { color: var(--color-accent); }
.ks-related-arrow {
  position: absolute;
  top: 65px;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-dark);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: background 0.2s;
}
.ks-related-arrow:hover { background: var(--color-dark); color: #fff; }
.ks-related-arrow--prev { left: -18px; }
.ks-related-arrow--next { right: -18px; }
.ks-related-wrap.has-overflow .ks-related-arrow { display: flex; }
.ks-related-arrow.is-hidden { display: none !important; }

/* ---- 予約パネル（追従） ---- */
.ks-book {
  position: sticky;
  top: calc(var(--header-h, 72px) + 60px);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ks-book__price { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--color-border); }
.ks-book__price-label { display: block; font-size: 1.2rem; color: var(--color-muted); margin-bottom: 4px; }
.ks-book__price-val { font-size: 2rem; font-weight: 600; color: var(--color-dark); }
.ks-book__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--color-gold, #c4a96e);
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px;
  border-radius: 6px;
  transition: background 0.2s;
}
.ks-book__btn:hover { background: #a8905a; color: #fff; opacity: 1; }
.ks-book__sub {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1.35rem;
  color: var(--color-dark);
}
.ks-book__sub:hover { border-color: var(--color-dark); opacity: 1; }
.ks-book__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-dark);
}
.ks-book__tel svg { color: var(--color-accent); }
.ks-book__addr { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--color-border); font-size: 1.25rem; color: var(--color-muted); line-height: 1.6; }

/* ---- ライトボックス ---- */
.ks-lightbox { display: none; position: fixed; inset: 0; z-index: 9500; background: rgba(0,0,0,0.9); }
.ks-lightbox.is-open { display: block; }
.ks-lightbox__close { position: fixed; top: 20px; right: 24px; z-index: 2; background: transparent; border: none; color: #fff; cursor: pointer; }
.ks-lightbox__inner { position: absolute; inset: 0; overflow-y: auto; padding: 60px 20px; max-width: 900px; margin: 0 auto; }
.ks-lightbox__inner figure { margin: 0 0 16px; }
.ks-lightbox__inner img { width: 100%; border-radius: 4px; display: block; }
.ks-lightbox__inner figcaption { color: rgba(255,255,255,0.7); font-size: 1.3rem; text-align: center; padding: 8px 0; }

/* ---- モバイル固定バー ---- */
.ks-mobilebar { display: none; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1000px) {
  .ks-layout { flex-direction: column; }
  .ks-side { width: 100%; order: -1; }
  .ks-book { position: static; box-shadow: none; }
  .ks-book__addr { display: none; }
}
@media (max-width: 768px) {
  .ks-container { padding: 0 16px 90px; }
  .ks-head { flex-direction: column; }
  .ks-title { font-size: 2.2rem; }
  /* ギャラリー：枚数に応じて崩れないように */
  .ks-gallery { height: 260px; }
  .ks-gallery--1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
  .ks-gallery--2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .ks-gallery--3,
  .ks-gallery--4,
  .ks-gallery--5 {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .ks-gallery--3 .ks-gallery__item:first-child,
  .ks-gallery--4 .ks-gallery__item:first-child,
  .ks-gallery--5 .ks-gallery__item:first-child { grid-row: 1 / 3; }
  .ks-gallery--4 .ks-gallery__item:nth-child(n+4),
  .ks-gallery--5 .ks-gallery__item:nth-child(n+4) { display: none; }
  .ks-highlights { grid-template-columns: repeat(3, 1fr); }
  .ks-plan { flex-direction: column; align-items: stretch; }
  .ks-plan__img { flex: none; }
  .ks-plan__img img { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; }
  .ks-room--img { flex-direction: column; }
  .ks-room__img { flex: none; }
  .ks-room__img img { height: 200px; min-height: 0; }
  .ks-room--img .ks-room__main { padding: 18px 20px; }
  .ks-plan__side { flex: none; text-align: left; align-items: stretch; }
  .ks-plan__btn { width: 100%; }
  .ks-info__row { flex-direction: column; }
  .ks-info__row dt { flex: none; border-right: none; border-bottom: 1px solid var(--color-border); }
  .ks-reviews { grid-template-columns: 1fr; }
  .ks-acts { grid-template-columns: repeat(2, 1fr); }
  .ks-spots { grid-template-columns: repeat(2, 1fr); }
  .ks-related > li { flex: 0 0 46%; }
  .ks-related-wrap.has-overflow .ks-related-arrow { display: none; }
  .ks-map iframe { height: 260px; }

  /* モバイル予約バー表示 */
  .ks-mobilebar {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 10px 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  }
  .ks-mobilebar__price { font-size: 1.5rem; font-weight: 600; color: var(--color-dark); flex-shrink: 0; }
  .ks-mobilebar__btn { flex: 1; text-align: center; background: var(--color-gold, #c4a96e); color: #1a1a1a; font-weight: 600; padding: 13px; border-radius: 6px; font-size: 1.5rem; }
}
