﻿/* BEADKIN site-level launch system: header/footer, contact, forms, inquiry list. */
:root {
  --bk-system-ink: #251912;
  --bk-system-muted: #766456;
  --bk-system-line: rgba(90, 62, 42, .14);
  --bk-system-paper: #fffaf4;
  --bk-system-gold: #b78348;
  --bk-system-dark: #20130d;
}

body {
  overflow-x: hidden;
}

.site-header {
  display: block !important;
}




}


}


}

.bk-site-contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 28px auto 0;
  padding: 18px clamp(18px, 4vw, 42px);
  width: min(1280px, calc(100% - 32px));
  border: 1px solid var(--bk-system-line);
  border-radius: 8px;
  background: rgba(255, 250, 244, .92);
  color: var(--bk-system-ink);
}

.bk-site-contact-strip strong {
  display: block;
  font-size: 14px;
}

.bk-site-contact-strip span {
  display: block;
  margin-top: 3px;
  color: var(--bk-system-muted);
  font-size: 12px;
  line-height: 1.5;
}

.bk-site-contact-actions,
.bk-site-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.bk-site-contact-actions a,
.bk-site-socials a,
.bk-system-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(123, 83, 49, .22);
  border-radius: 999px;
  background: #fff;
  color: var(--bk-system-ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.bk-site-contact-actions a:first-child,
.bk-system-btn.primary {
  background: var(--bk-system-dark);
  border-color: var(--bk-system-dark);
  color: #fff7eb;
}

.bk-inquiry-shell {
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 142, 83, .12), transparent 26%),
    linear-gradient(180deg, #fffaf4, #f4ebe1);
  color: var(--bk-system-ink);
}

.bk-inquiry-hero,
.bk-policy-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 28px;
}

.bk-inquiry-hero h1,
.bk-policy-hero h1 {
  margin: 0 0 14px;
  font: 400 clamp(38px, 6vw, 72px) / 1.05 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.bk-inquiry-hero p,
.bk-policy-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--bk-system-muted);
  font-size: 15px;
  line-height: 1.8;
}

.bk-inquiry-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 22px;
  align-items: start;
}

.bk-panel {
  border: 1px solid var(--bk-system-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 50px rgba(67, 45, 28, .06);
}

.bk-panel-head {
  padding: 22px 24px 0;
}

.bk-panel-head h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.bk-panel-head p {
  margin: 0;
  color: var(--bk-system-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bk-inquiry-items {
  display: grid;
  gap: 12px;
  padding: 22px 24px 24px;
}

.bk-inquiry-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--bk-system-line);
  border-radius: 8px;
  background: #fff;
}

.bk-inquiry-item img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee1d4;
}

.bk-inquiry-item b {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.35;
}

.bk-inquiry-item span,
.bk-inquiry-item small {
  color: var(--bk-system-muted);
  font-size: 12px;
  line-height: 1.5;
}

.bk-remove-item {
  border: 0;
  background: transparent;
  color: #8f5a36;
  font-weight: 900;
  cursor: pointer;
}

.bk-empty-state {
  padding: 28px;
  border: 1px dashed rgba(123, 83, 49, .28);
  border-radius: 8px;
  color: var(--bk-system-muted);
  background: rgba(255, 255, 255, .62);
}

.bk-form {
  display: grid;
  gap: 13px;
  padding: 22px 24px 24px;
}

.bk-form label {
  display: grid;
  gap: 6px;
  color: var(--bk-system-ink);
  font-size: 12px;
  font-weight: 800;
}

.bk-form input,
.bk-form select,
.bk-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(91, 65, 44, .18);
  border-radius: 6px;
  background: #fff;
  color: var(--bk-system-ink);
  padding: 10px 12px;
  font: inherit;
}

.bk-form textarea {
  min-height: 112px;
  resize: vertical;
}

.bk-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a1a12, #8f633a);
  color: #fff8ed;
  font-weight: 900;
}

.bk-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px 24px;
}

.bk-commerce-status {
  display: grid;
  gap: 8px;
  margin: 22px 24px;
  padding: 16px;
  border: 1px solid rgba(123, 83, 49, .18);
  border-radius: 8px;
  background: #fff;
}

.bk-commerce-status b {
  color: var(--bk-system-ink);
  font-size: 15px;
}

.bk-commerce-status span {
  color: var(--bk-system-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bk-commerce-status.is-ready {
  border-color: rgba(63, 126, 79, .34);
  background: #f6fbf4;
}

.bk-commerce-status.is-binding {
  border-color: rgba(183, 131, 72, .42);
  background: #fff8ed;
}

.bk-commerce-status.is-empty {
  border-style: dashed;
}

.bk-commerce-item small {
  display: block;
  margin-top: 5px;
}

.bk-commerce-bound {
  color: #3f7e4f !important;
}

.bk-commerce-bind-needed {
  color: #9a6531 !important;
}

.bk-commerce-actions {
  display: grid;
  gap: 10px;
  padding: 0 24px 24px;
}

.bk-commerce-checkout {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a1a12, #8f633a);
  color: #fff8ed;
  font-weight: 900;
}

.bk-commerce-checkout.is-disabled,
.bk-commerce-checkout:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.bk-commerce-note {
  margin: -6px 24px 22px;
  color: var(--bk-system-muted);
  font-size: 12px;
  line-height: 1.7;
}

.bk-policy-main {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: clamp(22px, 4vw, 46px);
}

.bk-policy-main h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

.bk-policy-main p,
.bk-policy-main li {
  color: #5d4b3f;
  line-height: 1.82;
  font-size: 15px;
}

.bk-policy-main a {
  color: #7a4d2d;
  font-weight: 800;
}

.bk-global-recent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bk-global-recent-card {
  display: block;
  min-width: 0;
  border: 1px solid rgba(100, 74, 52, .14);
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.bk-global-recent-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #ece2d8;
}

.bk-global-recent-card div {
  padding: 10px 12px 12px;
}

.bk-global-recent-card b {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.bk-global-recent-card span {
  display: block;
  color: var(--bk-system-muted);
  font-size: 11px;
  line-height: 1.45;
}

.bk-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483000;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(32, 19, 13, .94);
  color: #fff8ed;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(18px);
  transition: .22s ease;
  pointer-events: none;
}

.bk-toast.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header .header-inner,
  header.top {
    grid-template-columns: 1fr auto !important;
  }

  .site-header nav,
  header.top .nav,
  header.top nav {
    justify-self: start !important;
    grid-column: 1 / -1;
    overflow-x: auto;
    justify-content: flex-start !important;
    width: 100%;
  }

  .bk-site-contact-strip,
  .bk-inquiry-layout {
    grid-template-columns: 1fr;
  }

  .bk-site-contact-actions,
  .bk-site-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .bk-inquiry-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .bk-inquiry-item img {
    width: 64px;
    height: 64px;
  }

  .bk-remove-item {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .bk-global-recent-grid {
    grid-template-columns: 1fr 1fr;
  }
}




/* 覆盖系列页 site-header 的 grid 布局 - 改为 block 让 header-inner 获得完整宽度 */
.site-header {
  display: block !important;
}
/* ===== Issue 1: 头部布局加固 - 品牌最左，操作最右 ===== */
.site-header .header-inner,
header.top {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: clamp(14px, 2vw, 34px) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site-header .brand,
header.top .brand {
  justify-self: start !important;
  text-align: left !important;
  margin-right: 0 !important;
}

.site-header nav,
header.top .nav,
header.top nav {
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(14px, 2vw, 30px) !important;
  min-width: 0 !important;
}

.site-header .header-actions,
header.top .header-actions {
  justify-self: end !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

header.top.wrap,
header.top {
  width: 100% !important;
  max-width: none !important;
  min-height: 78px !important;
  margin: 0 !important;
  padding: 16px clamp(18px, 2.2vw, 42px) !important;
  border-bottom: 1px solid rgba(128, 92, 52, .12) !important;
  background: rgba(255, 253, 249, .86) !important;
  box-sizing: border-box !important;
}

header.top .brand,
header.top .brand:visited,
header.top .brand:hover {
  display: inline-grid !important;
  gap: 3px !important;
  color: var(--bk-system-ink) !important;
  text-decoration: none !important;
}

header.top .brand strong {
  color: var(--bk-system-ink) !important;
  font-size: 18px !important;
  letter-spacing: .14em !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

header.top .brand small {
  color: rgba(90, 62, 42, .72) !important;
  font-size: 9px !important;
  letter-spacing: .12em !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
}

header.top .nav a,
header.top nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 36px !important;
  color: #3d3026 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  white-space: nowrap !important;
}

header.top .nav a:hover,
header.top nav a:hover {
  color: var(--bk-system-gold) !important;
}

header.top .header-actions {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

header.top .bk-system-btn,
header.top .bk-account-link.bk-system-btn {
  min-height: 42px !important;
  padding: 0 16px !important;
  border-color: rgba(128, 92, 52, .18) !important;
  background: rgba(255, 253, 249, .88) !important;
  color: var(--bk-system-ink) !important;
  box-shadow: 0 8px 26px rgba(57, 35, 16, .06) !important;
  font-size: 12px !important;
  text-decoration: none !important;
}

/* ===== Issue 4: 导航文字可读性 ===== */
.site-header .main-nav > a,
.site-header .more-trigger {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.03em;
}

/* 首页导航在透明背景上保持可读 - 仅首页（无 page- 类）有效 */
body:not([class*="page-"]) .site-header:not(.header-scrolled) .main-nav > a,
body:not([class*="page-"]) .site-header:not(.header-scrolled) .more-trigger {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  color: #fff;
}
body:not([class*="page-"]) .site-header:not(.header-scrolled) .icon-btn {
  color: #fff;
}
body:not([class*="page-"]) .site-header:not(.header-scrolled) .icon-btn svg {
  stroke: #fff;
}
body:not([class*="page-"]) .site-header:not(.header-scrolled) .brand strong {
  color: #fff;
}
body:not([class*="page-"]) .site-header:not(.header-scrolled) .brand small {
  color: #e8d5be;
}

/* ===== Issue 2: 最近浏览 - 大图 + 左右箭头 ===== */
.bk-global-recent-wrapper {
  position: relative;
  width: 100%;
}

.bk-global-recent-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100%;
}

.bk-recent-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bk-system-line);
  background: #fff;
  color: var(--bk-system-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bk-recent-arrow:hover {
  background: var(--bk-system-dark);
  color: #fff;
  border-color: var(--bk-system-dark);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
}

.bk-recent-arrow.bk-recent-prev {
  left: -48px;
}

.bk-recent-arrow.bk-recent-next {
  right: -48px;
}

@media (max-width: 860px) {
  .bk-recent-arrow.bk-recent-prev {
    left: -12px;
  }
  .bk-recent-arrow.bk-recent-next {
    right: -12px;
  }
}

/* ===== Issue 3: 页脚联系信息整合设计 ===== */
.bk-footer-contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--bk-system-line);
}

.bk-footer-contact-bar .bk-fcb-left {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.bk-footer-contact-bar .bk-fcb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--bk-system-ink);
}

.bk-footer-contact-bar .bk-fcb-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--bk-system-gold);
  fill: none;
  stroke-width: 1.5;
}

.bk-footer-contact-bar .bk-fcb-item strong {
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.bk-footer-contact-bar .bk-fcb-item span {
  font-size: 11px;
  color: var(--bk-system-muted);
}

.bk-footer-contact-bar .bk-fcb-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bk-footer-contact-bar .bk-fcb-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--bk-system-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--bk-system-ink);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}

.bk-footer-contact-bar .bk-fcb-right a:hover {
  background: var(--bk-system-dark);
  color: #fff;
  border-color: var(--bk-system-dark);
}

.bk-footer-contact-bar .bk-fcb-right a.bk-fcb-primary {
  background: var(--bk-system-dark);
  color: #fff7eb;
  border-color: var(--bk-system-dark);
}

.bk-footer-contact-bar .bk-fcb-right svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

@media (max-width: 860px) {
  .bk-footer-contact-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .bk-footer-contact-bar .bk-fcb-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* 隐藏旧版联系条（由 JS 动态创建，设 display:none 以防冲突） */
.bk-site-contact-strip {
  display: none !important;
}

/* beadkin-site-final-fixes: one global layer for repeated site-wide issues */
.site-header .header-inner,
header.site-header .header-inner,
body .site-header > .header-inner.wrap,
body .site-header .wrap.header-inner {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: clamp(18px, 2.2vw, 42px) !important;
  padding-right: clamp(18px, 2.2vw, 42px) !important;
  display: grid !important;
  grid-template-columns: minmax(230px, auto) minmax(0, 1fr) minmax(170px, auto) !important;
  align-items: center !important;
  column-gap: clamp(18px, 2.6vw, 48px) !important;
  box-sizing: border-box !important;
}

.site-header .brand,
header.site-header .brand {
  justify-self: start !important;
}

.site-header nav,
.site-header .main-nav,
header.site-header nav,
header.site-header .main-nav {
  justify-self: center !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.site-header .header-actions,
header.site-header .header-actions {
  justify-self: end !important;
  margin-left: 0 !important;
}

.bk-footer-contact-bar{display:none!important}

.bk-footer-contact-links {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin-top: 8px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(128, 92, 52, .14) !important;
  color: inherit !important;
}

.bk-footer-contact-links b {
  font-size: 11px !important;
  letter-spacing: .08em !important;
  color: var(--accent, #a87945) !important;
}

.bk-footer-contact-links a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(128, 92, 52, .18) !important;
  background: rgba(255,255,255,.38) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

/* BEADKIN branded launcher for the connected tawk.to support window. */
.bk-footer-contact-links {
  display: none !important;
}

.bk-market-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 320;
}

.bk-market-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 112px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(128, 92, 52, .18);
  border-radius: 999px;
  background: rgba(255, 253, 249, .82);
  color: var(--bk-system-ink);
  box-shadow: 0 8px 26px rgba(57, 35, 16, .07);
  font: 800 11px / 1.1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.bk-market-trigger:hover,
.bk-market-switcher.is-open .bk-market-trigger {
  transform: translateY(-1px);
  border-color: rgba(183, 131, 72, .42);
  background: #fffaf4;
  box-shadow: 0 12px 34px rgba(57, 35, 16, .12);
}

.bk-market-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d6b174, #9f6b36);
  box-shadow: 0 0 0 3px rgba(183, 131, 72, .13);
  flex: 0 0 auto;
}

.bk-market-main,
.bk-market-symbol {
  display: inline-flex;
  align-items: center;
}

.bk-market-symbol {
  min-width: 18px;
  justify-content: center;
  color: var(--bk-system-gold);
}

.bk-market-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(326px, calc(100vw - 28px));
  display: none;
  padding: 14px;
  border: 1px solid rgba(128, 92, 52, .16);
  border-radius: 18px;
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 22px 54px rgba(43, 28, 15, .18);
  color: var(--bk-system-ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bk-market-switcher.is-open .bk-market-menu {
  display: block;
}

.bk-market-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 12px;
  border-bottom: 1px solid rgba(128, 92, 52, .12);
}

.bk-market-menu-head b {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bk-market-menu-head span,
.bk-market-section small,
.bk-market-note {
  color: var(--bk-system-muted);
  font-size: 11px;
  line-height: 1.45;
}

.bk-market-section {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.bk-market-section small {
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bk-market-language-grid,
.bk-market-currency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  overflow: auto;
  padding-right: 2px;
}

.bk-market-language-grid {
  max-height: 160px;
}

.bk-market-currency-grid {
  max-height: 238px;
}

.bk-market-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(128, 92, 52, .13);
  border-radius: 12px;
  background: #fff;
  color: var(--bk-system-ink);
  text-align: left;
  font: 700 11px / 1.2 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.bk-market-option span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bk-market-option strong {
  font-size: 12px;
  letter-spacing: .05em;
}

.bk-market-option b {
  flex: 0 0 auto;
  color: var(--bk-system-gold);
  font-size: 11px;
}

.bk-market-option:hover,
.bk-market-option.is-active {
  border-color: rgba(183, 131, 72, .42);
  background: rgba(247, 237, 222, .78);
}

.bk-market-note {
  margin: 12px 2px 0;
}

.bk-account-link.icon-btn {
  text-decoration: none;
}

header.top .bk-account-link.bk-system-btn {
  min-height: 38px;
}

body:not([class*="page-"]) .site-header:not(.header-scrolled) .bk-market-trigger {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(32, 19, 13, .28);
  color: #fff;
  box-shadow: 0 10px 28px rgba(25, 15, 8, .12);
}

body:not([class*="page-"]) .site-header:not(.header-scrolled) .bk-market-symbol {
  color: #f0d6a8;
}

iframe[src*="tawk.to"] {
  color-scheme: normal;
}

iframe[src*="tawk.to"][style*="64px"],
iframe[src*="tawk.to"][style*="60px"],
iframe[src*="tawk.to"][style*="56px"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.bk-tawk-launcher {
  position: fixed;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(18px, 2.8vw, 30px);
  z-index: 2147483000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  min-height: 54px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(216, 170, 106, .72);
  border-radius: 8px;
  background: linear-gradient(135deg, #251912 0%, #1b110c 100%);
  color: #fff8ee;
  box-shadow: 0 14px 34px rgba(36, 29, 25, .28), 0 0 0 4px rgba(216, 170, 106, .10);
  cursor: pointer;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.bk-tawk-launcher:hover,
.bk-tawk-launcher:focus-visible {
  background: linear-gradient(135deg, #302018 0%, #20130d 100%);
  box-shadow: 0 17px 40px rgba(36, 29, 25, .34), 0 0 0 5px rgba(216, 170, 106, .16);
  outline: none;
  transform: translateY(-2px);
}

.bk-tawk-launcher:focus-visible {
  outline: 2px solid #f2c47e;
  outline-offset: 3px;
}

.bk-tawk-launcher-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d59b4c, #a66b2b);
  color: #fff8ee;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
}

.bk-tawk-launcher-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bk-tawk-launcher-copy b {
  color: #fff8ee;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.bk-tawk-launcher-copy small {
  color: #d8c4ad;
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.bk-tawk-launcher-dot {
  display: none;
}

.bk-tawk-launcher.is-loading .bk-tawk-launcher-dot {
  background: #e5b36c;
  box-shadow: 0 0 0 4px rgba(229, 179, 108, .16);
}

body.page-diy .bk-tawk-launcher {
  bottom: clamp(86px, 8vh, 112px);
}

@media (max-width: 640px) {
  .bk-tawk-launcher {
    right: 14px;
    bottom: 16px;
    min-width: 122px;
    min-height: 48px;
    gap: 8px;
    padding: 6px 10px 6px 7px;
  }

  .bk-tawk-launcher-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 8px;
  }

  .bk-tawk-launcher-copy b {
    font-size: 12px;
  }

  .bk-tawk-launcher-copy small {
    display: none;
  }

  body.page-diy .bk-tawk-launcher {
    right: 12px;
    bottom: 84px;
  }
}

.bk-detail-title-row {
  display: grid !important;
  grid-template-columns: minmax(0, auto) 42px !important;
  align-items: center !important;
  gap: 14px !important;
}

.bk-detail-title-row > h1,
.bk-detail-title-row > h2,
.bk-detail-title-row > .women-detail-title,
.bk-detail-title-row > .men-petlike-title,
.bk-detail-title-row > .men-detail-title,
.bk-detail-title-row > .pet-detail-title {
  margin-right: 0 !important;
}

.bk-detail-favorite {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(196, 148, 72, .45) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: currentColor !important;
  display: inline-grid !important;
  place-items: center !important;
  cursor: pointer !important;
  font-size: 19px !important;
  line-height: 1 !important;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease !important;
  justify-self: end !important;
  flex: 0 0 auto !important;
}

.bk-detail-favorite:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(196, 148, 72, .85) !important;
}

.bk-detail-favorite.is-active {
  background: linear-gradient(180deg, #f5c76d, #c98c33) !important;
  color: #24160d !important;
  border-color: transparent !important;
}

.bk-related-carousel,
.bk-global-recent-wrapper {
  position: relative !important;
}

.bk-related-carousel-track,
.bk-global-recent-grid {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 42px) / 4) !important;
  grid-template-columns: none !important;
  gap: 14px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
  padding: 2px 0 6px !important;
}

body .bk-related-carousel > .bk-related-carousel-track,
body .bk-related-carousel > .bk-global-recent-grid,
body.page-women .bk-related-carousel > .women-detail-grid,
body.page-men .bk-related-carousel > .men-petlike-grid,
body.page-mystic .bk-related-carousel > .men-petlike-grid,
body.page-pet .bk-related-carousel > .pet-hoseiki-product-grid,
body.page-holidays .bk-related-carousel > .holiday-related-grid,
body.page-collections .bk-related-carousel > .pet-hoseiki-product-grid {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: calc((100% - 42px) / 4) !important;
  grid-template-columns: none !important;
  gap: 14px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
}

.bk-related-carousel-track::-webkit-scrollbar,
.bk-global-recent-grid::-webkit-scrollbar {
  display: none !important;
}

.bk-related-carousel-track > *,
.bk-global-recent-card {
  scroll-snap-align: start !important;
  min-width: 0 !important;
}

.bk-global-recent-card {
  display: grid !important;
  gap: 10px !important;
  text-decoration: none !important;
  color: inherit !important;
}

.bk-global-recent-card img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

.bk-global-recent-card b {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.bk-global-recent-card span {
  display: block !important;
  margin-top: 4px !important;
  font-size: 11px !important;
  opacity: .76 !important;
}

.bk-carousel-arrow,
.bk-recent-arrow {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(174, 130, 66, .35) !important;
  background: rgba(255, 255, 255, .88) !important;
  color: #6e4a24 !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 21px !important;
  line-height: 1 !important;
  box-shadow: 0 6px 18px rgba(49, 32, 18, .1) !important;
  cursor: pointer !important;
  z-index: 6 !important;
}

.bk-carousel-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.bk-carousel-arrow.bk-carousel-prev { left: -19px !important; }
.bk-carousel-arrow.bk-carousel-next { right: -19px !important; }

.bk-is-purchase-only,
.bk-capability-buy,
[data-bk-hidden-purchase="1"] {
  display: none !important;
}

@media (max-width: 900px) {
  .site-header .header-inner,
  header.site-header .header-inner,
  body .site-header > .header-inner.wrap,
  body .site-header .wrap.header-inner {
    grid-template-columns: minmax(160px, 1fr) auto !important;
    column-gap: 12px !important;
  }

  .site-header nav,
  .site-header .main-nav {
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
  }

  .bk-related-carousel-track,
  .bk-global-recent-grid {
    grid-auto-columns: minmax(170px, 76vw) !important;
  }
}

/* Mobile launch pass: keep desktop untouched while making phone layouts compact and usable. */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .site-header,
  header.site-header {
    height: 64px !important;
    min-height: 64px !important;
    overflow: visible !important;
  }

  .site-header .header-inner,
  header.site-header .header-inner,
  body .site-header > .header-inner.wrap,
  body .site-header .wrap.header-inner {
    min-height: 64px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .site-header .brand,
  header.site-header .brand,
  header.top .brand {
    min-width: 0 !important;
    max-width: 230px !important;
    color: #241913 !important;
    text-decoration: none !important;
  }

  .site-header .brand img,
  header.site-header .brand img {
    width: 34px !important;
    height: 34px !important;
  }

  .site-header .brand strong,
  header.site-header .brand strong,
  header.top .brand strong {
    font-size: 17px !important;
    letter-spacing: .12em !important;
    line-height: 1 !important;
  }

  .site-header .brand small,
  header.site-header .brand small,
  header.top .brand small {
    font-size: 6px !important;
    letter-spacing: .12em !important;
    line-height: 1.3 !important;
  }

  header.top .brand *,
  header.top .brand:visited {
    color: inherit !important;
    text-decoration: none !important;
  }

  .site-header .mobile-menu,
  header.site-header .mobile-menu {
    display: inline-grid !important;
    place-items: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 253, 249, .72) !important;
    border: 1px solid rgba(128, 92, 52, .16) !important;
  }

  .site-header nav,
  .site-header .main-nav,
  header.site-header nav,
  header.site-header .main-nav,
  header.top .nav,
  header.top nav {
    display: none !important;
    position: absolute !important;
    left: 10px !important;
    right: 10px !important;
    top: 64px !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100vh - 82px) !important;
    overflow: auto !important;
    grid-column: auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 10px !important;
    border: 1px solid rgba(128, 92, 52, .13) !important;
    border-radius: 18px !important;
    background: rgba(255, 253, 249, .98) !important;
    box-shadow: 0 22px 54px rgba(43, 28, 15, .16) !important;
    z-index: 300 !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  .site-header nav.open,
  .site-header .main-nav.open,
  header.site-header nav.open,
  header.site-header .main-nav.open,
  header.top .nav.open,
  header.top nav.open {
    display: flex !important;
  }

  .site-header nav a,
  .site-header .main-nav > a,
  .site-header .more-trigger,
  header.top .nav a,
  header.top nav a {
    display: flex !important;
    align-items: center !important;
    min-height: 42px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    letter-spacing: .02em !important;
    color: #3d3026 !important;
    white-space: normal !important;
  }

  .site-header nav a:hover,
  .site-header .main-nav > a:hover,
  .site-header .main-nav > a.active,
  .site-header .more-trigger:hover,
  header.top .nav a:hover,
  header.top nav a:hover {
    background: rgba(184, 139, 82, .11) !important;
  }

  .site-header .more-wrap {
    width: 100% !important;
  }

  .site-header .more-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 0 4px 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
  }

  .site-header .header-actions,
  header.site-header .header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
  }

  .site-header .bk-market-trigger,
  header.site-header .bk-market-trigger,
  header.top .bk-market-trigger {
    min-width: 76px !important;
    min-height: 36px !important;
    padding: 0 9px !important;
    gap: 5px !important;
    font-size: 10px !important;
  }

  .site-header .bk-market-symbol,
  header.site-header .bk-market-symbol,
  header.top .bk-market-symbol {
    display: none !important;
  }

  .site-header .bk-market-menu,
  header.site-header .bk-market-menu,
  header.top .bk-market-menu {
    position: fixed !important;
    top: 70px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-height: calc(100vh - 90px) !important;
    overflow: auto !important;
    z-index: 520 !important;
  }

  .site-header .bk-market-currency-grid,
  header.site-header .bk-market-currency-grid,
  header.top .bk-market-currency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-height: 260px !important;
  }

  .site-header .bk-market-language-grid,
  header.site-header .bk-market-language-grid,
  header.top .bk-market-language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-height: 190px !important;
  }

  .site-header .header-actions .desktop-only,
  header.site-header .header-actions .desktop-only {
    display: none !important;
  }

  header.top {
    width: calc(100% - 24px) !important;
    max-width: none !important;
    min-height: 64px !important;
    margin: 10px 12px 0 !important;
    padding: 10px 12px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    border: 1px solid rgba(128, 92, 52, .14) !important;
    border-radius: 20px !important;
    background: rgba(255, 253, 249, .88) !important;
    box-shadow: 0 14px 38px rgba(80, 50, 22, .08) !important;
  }

  header.top .header-actions {
    display: flex !important;
    justify-content: flex-end !important;
  }

  header.top .bk-system-btn {
    min-height: 38px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  .bk-inquiry-shell {
    background:
      radial-gradient(circle at 8% 0%, rgba(184, 139, 82, .12), transparent 34%),
      linear-gradient(180deg, #fffaf4 0%, #f2e7da 100%) !important;
  }

  .bk-inquiry-hero {
    margin: 18px 14px 12px !important;
    padding: 24px 18px !important;
    border-radius: 24px !important;
    background: rgba(255, 253, 249, .72) !important;
    border: 1px solid rgba(128, 92, 52, .12) !important;
  }

  .bk-inquiry-hero h1 {
    font-size: clamp(34px, 11vw, 46px) !important;
    line-height: 1 !important;
  }

  .bk-inquiry-hero p {
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  .bk-inquiry-layout {
    padding: 0 14px 24px !important;
    gap: 14px !important;
  }

  .bk-panel,
  .bk-policy-main.bk-panel {
    border-radius: 18px !important;
    padding: 18px !important;
  }

  .bk-policy-main.bk-panel {
    margin: 16px 14px 28px !important;
  }

  .bk-commerce-actions {
    gap: 9px !important;
  }

  .bk-commerce-actions > * {
    min-height: 44px !important;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 42px 12px !important;
  }

  .hero-copy,
  .page-diy .hero-copy {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero h1,
  .page-diy .hero h1,
  .editorial-audience-hero h1 {
    font-size: clamp(34px, 10.8vw, 44px) !important;
    line-height: .98 !important;
  }

  .hero p,
  .page-diy .hero p {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  .hero-buttons,
  .page-diy .hero-buttons {
    gap: 9px !important;
  }

  .btn,
  .page-diy .btn {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 11px !important;
  }

  .page-diy .hero {
    min-height: 520px !important;
  }

  .page-diy .hero-copy {
    padding-top: 92px !important;
    padding-bottom: 40px !important;
  }

  .page-diy .hero-dashboard,
  .page-diy .hero-side-note {
    display: none !important;
  }

  .page-diy .diy-full-source-section {
    padding-top: 0 !important;
  }

  .page-diy .diy-full-source-frame {
    height: 1780px !important;
  }

  .continuous-product-grid,
  .women-products-stage .continuous-product-grid,
  .product-endless-products .continuous-product-grid,
  body.page-women .women-products-stage #womenContinuousGrid,
  body.page-women .women-products-stage .continuous-product-grid,
  body.page-product-series .women-products-stage #womenContinuousGrid,
  body.page-product-series .women-products-stage .continuous-product-grid,
  #womenContinuousGrid,
  #seriesProductGrid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .continuous-product-card,
  body.page-women .continuous-product-card,
  body.page-product-series .continuous-product-card,
  .series-shop-item,
  .pet-hoseiki-product-card,
  .holiday-product-card,
  .product-card {
    min-width: 0 !important;
  }

  .continuous-product-card {
    border-radius: 16px !important;
    background: rgba(255, 253, 249, .72) !important;
  }

  .continuous-product-media,
  body.page-women .continuous-product-media,
  body.page-product-series .continuous-product-media,
  .series-shop-image {
    border-radius: 14px !important;
    margin-bottom: 9px !important;
  }

  .continuous-product-card h3,
  body.page-women .continuous-product-info h3,
  body.page-product-series .continuous-product-info h3,
  .series-shop-item h3,
  .pet-hoseiki-product-card h3,
  .product-card h3 {
    font-size: 13px !important;
    line-height: 1.28 !important;
    margin-top: 8px !important;
    margin-bottom: 4px !important;
  }

  .continuous-product-card p,
  .series-shop-item p,
  .pet-hoseiki-product-card p,
  .product-card p {
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .women-product-price-row,
  body.page-women .women-product-price-row,
  body.page-product-series .women-product-price-row {
    margin-top: 6px !important;
    gap: 5px !important;
  }

  .women-product-price-row strong,
  body.page-women .women-product-price-row strong,
  body.page-product-series .women-product-price-row strong {
    font-size: 16px !important;
  }

  .women-product-price-row small,
  body.page-women .women-product-price-row small,
  body.page-product-series .women-product-price-row small,
  .women-custom-pill {
    font-size: 10px !important;
  }
}

@media (max-width: 380px) {
  .continuous-product-grid,
  .women-products-stage .continuous-product-grid,
  .product-endless-products .continuous-product-grid,
  body.page-women .women-products-stage #womenContinuousGrid,
  body.page-women .women-products-stage .continuous-product-grid,
  body.page-product-series .women-products-stage #womenContinuousGrid,
  body.page-product-series .women-products-stage .continuous-product-grid,
  #womenContinuousGrid,
  #seriesProductGrid {
    gap: 8px !important;
  }

  .continuous-product-card h3,
  .series-shop-item h3,
  .pet-hoseiki-product-card h3,
  .product-card h3 {
    font-size: 12px !important;
  }
}


