﻿/* 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;
  }
}

/* Launch-safe unified product cards: one anatomy across Women, Men, Pets, Mystic, Holidays, and Collections. */
body.page-women { --bk-card-plus-bg: linear-gradient(180deg, #e5ad92, #d58c70); --bk-card-plus-fg: #1c120d; }
body.page-men { --bk-card-plus-bg: linear-gradient(180deg, #d9a74b, #bd8129); --bk-card-plus-fg: #160f09; }
body.page-pet { --bk-card-plus-bg: linear-gradient(180deg, #9daf8e, #7f946d); --bk-card-plus-fg: #fffdf8; }
body.page-mystic { --bk-card-plus-bg: linear-gradient(180deg, #e1b65d, #c48b31); --bk-card-plus-fg: #120d08; }
body.page-holidays { --bk-card-plus-bg: linear-gradient(180deg, #8fa483, #748a6b); --bk-card-plus-fg: #fffdf8; }
body.page-collections,
body.page-product-series { --bk-card-plus-bg: linear-gradient(180deg, #d6a77d, #bd825d); --bk-card-plus-fg: #1b120d; }

.bk-normalized-product-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  text-align: left !important;
  letter-spacing: 0 !important;
}

.bk-normalized-product-card .bk-card-media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  margin: 0 0 14px !important;
}

.bk-normalized-product-card .bk-card-media img,
.bk-normalized-product-card .bk-card-media picture,
.bk-normalized-product-card .bk-card-media video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.bk-normalized-product-card .bk-card-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 7px !important;
  padding: 0 4px !important;
  min-height: 0 !important;
  text-align: left !important;
}

.bk-normalized-product-card .bk-card-info > p,
.bk-normalized-product-card .bk-card-info > .men-note,
.bk-normalized-product-card .bk-card-info > .men-swatch-row {
  display: none !important;
}

.bk-normalized-product-card .bk-card-info h3,
.bk-normalized-product-card h3,
.bk-normalized-product-card .holiday-card-title,
.bk-normalized-product-card > strong {
  min-height: 0 !important;
  margin: 0 !important;
  color: var(--bk-card-title, inherit) !important;
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", serif !important;
  font-size: clamp(20px, 1.58vw, 26px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.bk-normalized-product-card .bk-capability-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 5px !important;
  min-height: 22px !important;
  margin: 1px 0 0 !important;
  order: 2 !important;
}

.bk-normalized-product-card .bk-capability-tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 20px !important;
  padding: 3px 7px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(177, 102, 92, .42) !important;
  background: rgba(255, 253, 249, .88) !important;
  color: var(--bk-card-badge-text, #8a4e45) !important;
  font: 760 10px / 1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  white-space: nowrap !important;
}

.bk-normalized-product-card .bk-customer-status-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 20px !important;
  padding: 3px 7px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(177, 102, 92, .42) !important;
  background: rgba(255, 253, 249, .9) !important;
  color: var(--bk-card-badge-text, #8a4e45) !important;
  font: 760 10px / 1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  white-space: nowrap !important;
}

.bk-normalized-product-card .bk-card-price-row,
.bk-normalized-product-card .continuous-product-price,
.bk-normalized-product-card .men-price-row,
.bk-normalized-product-card .product-price-row,
.bk-normalized-product-card .holiday-card-price,
.bk-normalized-product-card > span[data-bk-price-target] {
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: 100% !important;
  margin: 3px 0 0 !important;
  color: var(--bk-card-price, inherit) !important;
  order: 3 !important;
}

.bk-normalized-product-card .bk-card-price-row strong,
.bk-normalized-product-card .bk-card-price-row b,
.bk-normalized-product-card .bk-card-price-row,
.bk-normalized-product-card .continuous-product-price,
.bk-normalized-product-card .men-price-row,
.bk-normalized-product-card .product-price-row strong,
.bk-normalized-product-card .holiday-card-price strong,
.bk-normalized-product-card .holiday-card-price b {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(24px, 1.8vw, 30px) !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.bk-normalized-product-card .bk-card-price-row small,
.bk-normalized-product-card .continuous-product-price small,
.bk-normalized-product-card .product-price-row small,
.bk-normalized-product-card .holiday-card-price small {
  font-size: 12px !important;
  font-weight: 760 !important;
  line-height: 1.1 !important;
  color: var(--bk-card-muted, #806f62) !important;
}

.bk-normalized-product-card .men-custom-pill,
.bk-normalized-product-card .women-custom-pill,
.bk-normalized-product-card .mystic-custom-pill,
.bk-normalized-product-card .holiday-card-tags,
.bk-normalized-product-card .holiday-card-price em {
  display: none !important;
}

.bk-normalized-product-card [data-bk-action="add"],
.bk-normalized-product-card .bk-card-plus,
.bk-normalized-product-card .bk-unified-plus-action,
.bk-normalized-product-card .women-card-plus,
.bk-normalized-product-card .men-card-plus,
.bk-normalized-product-card .pet-card-plus,
.bk-normalized-product-card .holiday-card-plus,
.bk-normalized-product-card .mystic-card-plus,
.bk-normalized-product-card .product-card-plus,
.bk-normalized-product-card .quick-add,
.bk-normalized-product-card .continuous-product-add,
.bk-normalized-product-card .holiday-card-add,
.bk-normalized-product-card .pet-card-add,
.bk-normalized-product-card .men-card-add {
  position: absolute !important;
  right: 12px !important;
  bottom: 12px !important;
  z-index: 6 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .42) !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: var(--bk-card-plus-bg, linear-gradient(180deg, #e4b362, #c98c35)) !important;
  color: var(--bk-card-plus-fg, #1b110b) !important;
  box-shadow: 0 10px 20px rgba(68, 42, 22, .18) !important;
  font: 900 22px / 1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

.bk-normalized-product-card [data-bk-action="add"]:hover,
.bk-normalized-product-card .bk-card-plus:hover,
.bk-normalized-product-card .bk-unified-plus-action:hover {
  transform: translateY(-1px) scale(1.03) !important;
}

html[dir="rtl"] .bk-normalized-product-card,
html[dir="rtl"] .bk-normalized-product-card .bk-card-info,
html[dir="rtl"] .bk-normalized-product-card .bk-card-info h3,
html[dir="rtl"] .bk-normalized-product-card h3 {
  text-align: right !important;
  align-items: flex-start !important;
}

@media (max-width: 680px) {
  .bk-normalized-product-card .bk-card-media {
    border-radius: 16px !important;
    margin-bottom: 10px !important;
  }

  .bk-normalized-product-card .bk-card-info {
    gap: 6px !important;
    padding: 0 2px !important;
  }

  .bk-normalized-product-card .bk-card-info h3,
  .bk-normalized-product-card h3,
  .bk-normalized-product-card .holiday-card-title,
  .bk-normalized-product-card > strong {
    min-height: 0 !important;
    font-size: 15px !important;
    line-height: 1.24 !important;
  }

  .bk-normalized-product-card [data-bk-action="add"],
  .bk-normalized-product-card .bk-card-plus,
  .bk-normalized-product-card .bk-unified-plus-action,
  .bk-normalized-product-card .women-card-plus,
  .bk-normalized-product-card .men-card-plus,
  .bk-normalized-product-card .pet-card-plus,
  .bk-normalized-product-card .holiday-card-plus,
  .bk-normalized-product-card .mystic-card-plus,
  .bk-normalized-product-card .product-card-plus,
  .bk-normalized-product-card .quick-add,
  .bk-normalized-product-card .continuous-product-add,
  .bk-normalized-product-card .holiday-card-add,
  .bk-normalized-product-card .pet-card-add,
  .bk-normalized-product-card .men-card-add {
    right: 9px !important;
    bottom: 9px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 19px !important;
  }

  .bk-normalized-product-card .bk-card-price-row strong,
  .bk-normalized-product-card .bk-card-price-row b,
  .bk-normalized-product-card .bk-card-price-row,
  .bk-normalized-product-card .continuous-product-price,
  .bk-normalized-product-card .men-price-row,
  .bk-normalized-product-card .product-price-row strong,
  .bk-normalized-product-card .holiday-card-price strong,
  .bk-normalized-product-card .holiday-card-price b {
    font-size: 18px !important;
  }
}

@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: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.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-currency-option {
  min-height: 36px;
  padding: 7px 10px;
}

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

.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;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    gap: 0;
    padding: 8px;
    justify-content: center;
    border-radius: 50%;
  }

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

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

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

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

  .women-card-plus,
  .continuous-product-card .women-card-plus,
  .product-actions button {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    font-size: 19px !important;
  }

  .bk-cart-drawer {
    top: auto;
    bottom: 0;
    width: 100vw;
    height: min(86vh, 760px);
    border-left: 0;
    border-top: 1px solid rgba(126, 84, 42, .16);
    border-radius: 18px 18px 0 0;
    transform: translateY(106%);
    padding: 18px 16px;
  }

  .bk-cart-drawer.is-open {
    transform: translateY(0);
  }

  .bk-cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .bk-cart-line-side {
    grid-column: 2;
    grid-row: 2;
    justify-items: start;
    grid-auto-flow: column;
    align-items: center;
  }

  .bk-cart-discount {
    grid-template-columns: 1fr;
  }

  .bk-search-panel {
    padding: 76px 12px 20px;
  }

  .bk-search-shell {
    padding: 12px;
  }

  .bk-search-form {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .bk-search-form button[type="submit"] {
    font-size: 0;
  }

  .bk-search-form button[type="submit"]::before {
    content: "⌕";
    font-size: 18px;
  }

  .bk-search-close {
    grid-column: 2;
    grid-row: 1;
  }

  .bk-search-results {
    grid-template-columns: 1fr;
    max-height: 62vh;
  }

  .bk-favorite-shell {
    width: 100vw;
  }
}

.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;
}

.women-card-plus,
.continuous-product-card .women-card-plus,
.holiday-product-card .women-card-plus,
.product-card .quick-add,
.product-card .continuous-product-add,
.product-card [data-bk-action="add"],
[data-bk-action="add"].bk-unified-plus-action,
.product-actions button {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-grid !important;
  place-items: center !important;
  border: 1px solid rgba(125, 77, 34, .16) !important;
  background: linear-gradient(180deg, #e8bc68, #c68b43) !important;
  color: #1d130d !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(84, 47, 20, .16) !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.women-card-plus:hover,
.continuous-product-card .women-card-plus:hover,
.product-actions button:hover {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 12px 28px rgba(84, 47, 20, .22) !important;
}

.bk-cart-overlay,
.bk-search-panel,
.bk-favorite-panel {
  position: fixed;
  inset: 0;
  z-index: 2147482500;
  background: rgba(34, 22, 15, .34);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.bk-cart-overlay.is-open,
.bk-search-panel.is-open,
.bk-favorite-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.bk-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2147482600;
  width: min(440px, 100vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 253, 249, .98);
  color: #21170f;
  box-shadow: -20px 0 60px rgba(39, 25, 14, .18);
  border-left: 1px solid rgba(126, 84, 42, .16);
  transform: translateX(106%);
  transition: transform .24s ease;
}

.bk-cart-drawer.is-open {
  transform: translateX(0);
}

.bk-cart-lock {
  overflow: hidden;
}

.bk-cart-drawer-head,
.bk-favorite-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.bk-cart-drawer-head small,
.bk-favorite-head small {
  color: #9a6f38;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.bk-cart-drawer-head h2,
.bk-favorite-head h2 {
  margin: 4px 0 0;
  font: 400 30px / 1.1 Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.bk-cart-close,
.bk-favorite-head button,
.bk-search-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(126, 84, 42, .16);
  background: #fff;
  color: #24160d;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.bk-cart-progress {
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  border-radius: 8px;
  background: #f6ede0;
  color: #5b4027;
  font-size: 12px;
}

.bk-cart-progress span {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(119, 80, 38, .16);
}

.bk-cart-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9d6d34, #d5a55e);
}

.bk-cart-lines,
.bk-favorite-list {
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 2px;
}

.bk-cart-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(126, 84, 42, .14);
}

.bk-cart-line img,
.bk-favorite-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 8px;
  background: #f2e7d7;
}

.bk-cart-line-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.bk-cart-line-copy b,
.bk-favorite-item b {
  font-size: 13px;
  line-height: 1.35;
}

.bk-cart-line-copy span,
.bk-cart-line-copy small,
.bk-favorite-item small,
.bk-cart-foot small {
  color: #7c6450;
  font-size: 11px;
  line-height: 1.35;
}

.bk-cart-bound {
  color: #0f6f4b !important;
}

.bk-cart-pending {
  color: #9a5c26 !important;
}

.bk-commerce-preview,
.bk-commerce-bound {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(255, 249, 239, .9);
}

.bk-commerce-preview {
  color: #9a5c26 !important;
}

.bk-commerce-bound {
  color: #0f6f4b !important;
}

.bk-cart-remove {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: #7c4e2d;
  font-size: 11px;
  text-decoration: underline;
}

.bk-cart-line-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.bk-cart-line-price,
.bk-cart-subtotal b {
  font-size: 13px;
  white-space: nowrap;
}

.bk-cart-qty {
  display: inline-grid;
  grid-template-columns: 30px 32px 30px;
  align-items: center;
  height: 32px;
  overflow: hidden;
  border: 1px solid rgba(126, 84, 42, .24);
  border-radius: 999px;
  background: #fff;
}

.bk-cart-qty button {
  height: 100%;
  border: 0;
  background: transparent;
  color: #21170f;
}

.bk-cart-qty span {
  text-align: center;
  font-size: 12px;
}

.bk-cart-discount {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 8px;
}

.bk-cart-discount input,
.bk-search-form input {
  min-width: 0;
  border: 1px solid rgba(126, 84, 42, .18);
  border-radius: 8px;
  background: #fff;
  color: #21170f;
}

.bk-cart-discount input {
  height: 42px;
  padding: 0 12px;
}

.bk-cart-discount button,
.bk-cart-checkout,
.bk-cart-continue,
.bk-search-form button[type="submit"] {
  border-radius: 999px;
  border: 1px solid rgba(126, 84, 42, .18);
  cursor: pointer;
  font-weight: 800;
}

.bk-cart-discount button,
.bk-search-form button[type="submit"] {
  background: #fff8f0;
  color: #4c311b;
}

.bk-cart-foot {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(126, 84, 42, .14);
  padding-top: 14px;
}

.bk-cart-subtotal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

.bk-cart-checkout,
.bk-cart-continue {
  min-height: 46px;
}

.bk-cart-checkout {
  border: 0;
  background: linear-gradient(90deg, #9b6d42, #c2a080);
  color: #fff;
}

.bk-cart-checkout.is-disabled,
.bk-cart-checkout:disabled {
  opacity: .56;
  cursor: not-allowed;
}

.bk-cart-continue {
  background: #fff;
  color: #21170f;
}

.bk-cart-empty {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px dashed rgba(126, 84, 42, .24);
  border-radius: 8px;
  background: #fffaf5;
  color: #5f4938;
}

.bk-search-panel {
  display: grid;
  align-items: start;
  padding: 92px clamp(18px, 7vw, 120px) 30px;
}

.bk-search-shell {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(126, 84, 42, .16);
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 24px 70px rgba(39, 25, 14, .16);
  padding: 18px;
}

.bk-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 106px 38px;
  gap: 10px;
}

.bk-search-form input {
  height: 48px;
  padding: 0 14px;
  font-size: 15px;
}

.bk-search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  max-height: min(58vh, 520px);
  overflow: auto;
}

.bk-search-result,
.bk-favorite-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(126, 84, 42, .13);
  border-radius: 8px;
  background: #fff;
  padding: 9px;
}

.bk-search-result img,
.bk-search-result-mark {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0e1cd;
}

.bk-search-result-mark {
  display: grid;
  place-items: center;
  color: #8a5d2d;
  font-weight: 800;
}

.bk-search-result span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.bk-search-result small {
  color: #9a6f38;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bk-search-result b {
  font-size: 14px;
  line-height: 1.3;
}

.bk-search-result em,
.bk-search-empty {
  color: #7c6450;
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
}

.bk-favorite-panel {
  display: grid;
  justify-items: end;
  background: rgba(34, 22, 15, .22);
}

.bk-favorite-shell {
  width: min(380px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: 22px;
  background: #fffdf9;
  box-shadow: -20px 0 60px rgba(39, 25, 14, .14);
  transform: translateX(100%);
  transition: transform .24s ease;
}

.bk-favorite-panel.is-open .bk-favorite-shell {
  transform: translateX(0);
}

.fav.is-active,
.heart.is-active,
.bk-card-favorite.is-active {
  color: #b06d31 !important;
  background: #fff3df !important;
  border-color: rgba(176, 109, 49, .38) !important;
}

.bk-tawk-launcher.is-dragging {
  transition: none !important;
  cursor: grabbing !important;
  transform: none !important;
}

body.page-women .continuous-product-card .continuous-product-media .women-card-plus,
body.page-collections .continuous-product-card .continuous-product-media .women-card-plus,
body.page-pet .continuous-product-card .continuous-product-media .women-card-plus,
body.page-men .continuous-product-card .continuous-product-media .women-card-plus,
body.page-holidays .holiday-product-card .women-card-plus,
body .continuous-product-card .women-card-plus,
body [data-bk-action="add"].bk-unified-plus-action,
body .continuous-product-card [data-bk-action="add"],
body .holiday-product-card [data-bk-action="add"] {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  font-size: 20px !important;
}

body.bk-cart-lock .bk-tawk-launcher,
body.bk-overlay-lock .bk-tawk-launcher {
  display: none !important;
}

body.bk-cart-lock .bk-toast {
  right: auto !important;
  left: 20px !important;
  bottom: 20px !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;
  }
}

/* Final product-card normalization. Keep each series palette, unify card anatomy. */
body.page-women .continuous-product-card,
body.page-men .continuous-product-card,
body.page-pet .continuous-product-card,
body.page-collections .continuous-product-card,
body.page-product-series .continuous-product-card,
body.page-mystic .product-card,
body.page-holidays .holiday-product-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  overflow: visible !important;
  text-align: left !important;
}

body.page-women .continuous-product-media,
body.page-men .continuous-product-media,
body.page-pet .continuous-product-media,
body.page-collections .continuous-product-media,
body.page-product-series .continuous-product-media,
body.page-mystic .product-image,
body.page-holidays .holiday-card-media {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  margin: 0 0 18px !important;
}

body.page-women .continuous-product-media img,
body.page-men .continuous-product-media img,
body.page-pet .continuous-product-media img,
body.page-collections .continuous-product-media img,
body.page-product-series .continuous-product-media img,
body.page-mystic .product-image img,
body.page-holidays .holiday-card-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

body.page-women .continuous-product-info,
body.page-men .continuous-product-info,
body.page-pet .continuous-product-info,
body.page-collections .continuous-product-info,
body.page-product-series .continuous-product-info,
body.page-mystic .product-copy,
body.page-holidays .holiday-card-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 0 4px !important;
  text-align: left !important;
}

body.page-women .continuous-product-info h3,
body.page-men .continuous-product-info h3,
body.page-pet .continuous-product-info h3,
body.page-collections .continuous-product-info h3,
body.page-product-series .continuous-product-info h3,
body.page-mystic .product-card h3,
body.page-holidays .holiday-card-title,
body.page-holidays .holiday-product-card h3 {
  min-height: 2.45em !important;
  margin: 0 !important;
  color: var(--bk-card-title, inherit) !important;
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", serif !important;
  font-size: clamp(20px, 1.58vw, 26px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

body.page-men,
body.page-mystic {
  --bk-card-title: #fff3d5;
  --bk-card-muted: rgba(255, 243, 213, .78);
  --bk-card-price: #f0bd63;
}

body.page-women,
body.page-pet,
body.page-holidays,
body.page-collections,
body.page-product-series {
  --bk-card-title: #1f1712;
  --bk-card-muted: #806f62;
  --bk-card-price: #201611;
}

body.page-women .women-custom-pill,
body.page-men .men-custom-pill,
body.page-pet .women-custom-pill,
body.page-collections .women-custom-pill,
body.page-product-series .women-custom-pill,
body.page-mystic .mystic-custom-pill,
body.page-holidays .holiday-card-copy em,
body.page-holidays .holiday-card-price em,
body.page-holidays .holiday-card-tags span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 22px !important;
  padding: 4px 8px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

body.page-women .women-product-price-row,
body.page-men .women-product-price-row,
body.page-pet .women-product-price-row,
body.page-collections .women-product-price-row,
body.page-product-series .women-product-price-row,
body.page-mystic .product-price-row,
body.page-holidays .holiday-card-price {
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: 100% !important;
  margin-top: 0 !important;
  color: var(--bk-card-price) !important;
}

body.page-women .women-product-price-row strong,
body.page-men .women-product-price-row strong,
body.page-pet .women-product-price-row strong,
body.page-collections .women-product-price-row strong,
body.page-product-series .women-product-price-row strong,
body.page-mystic .product-price-row strong,
body.page-holidays .holiday-card-price strong,
body.page-holidays .holiday-card-price b {
  color: var(--bk-card-price) !important;
  font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif !important;
  font-size: clamp(23px, 1.75vw, 30px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

body.page-women .women-product-price-row small,
body.page-men .women-product-price-row small,
body.page-pet .women-product-price-row small,
body.page-collections .women-product-price-row small,
body.page-product-series .women-product-price-row small,
body.page-mystic .product-price-row small,
body.page-holidays .holiday-card-price small {
  color: var(--bk-card-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

body.page-women .women-card-plus,
body.page-men .men-card-plus,
body.page-pet .pet-card-plus,
body.page-collections .women-card-plus,
body.page-product-series .women-card-plus,
body.page-mystic .mystic-card-plus,
body.page-holidays .holiday-card-plus,
body.page-holidays .holiday-card-add {
  width: 42px !important;
  height: 42px !important;
  right: 12px !important;
  bottom: 12px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 680px) {
  body.page-women .continuous-product-media,
  body.page-men .continuous-product-media,
  body.page-pet .continuous-product-media,
  body.page-collections .continuous-product-media,
  body.page-product-series .continuous-product-media,
  body.page-mystic .product-image,
  body.page-holidays .holiday-card-media {
    border-radius: 16px !important;
    margin-bottom: 12px !important;
  }

  body.page-women .continuous-product-info,
  body.page-men .continuous-product-info,
  body.page-pet .continuous-product-info,
  body.page-collections .continuous-product-info,
  body.page-product-series .continuous-product-info,
  body.page-mystic .product-copy,
  body.page-holidays .holiday-card-copy {
    gap: 8px !important;
    padding: 0 2px !important;
  }

  body.page-women .continuous-product-info h3,
  body.page-men .continuous-product-info h3,
  body.page-pet .continuous-product-info h3,
  body.page-collections .continuous-product-info h3,
  body.page-product-series .continuous-product-info h3,
  body.page-mystic .product-card h3,
  body.page-holidays .holiday-card-title,
  body.page-holidays .holiday-product-card h3 {
    min-height: 2.55em !important;
    font-size: 15px !important;
    line-height: 1.26 !important;
  }

  body.page-women .women-card-plus,
  body.page-men .men-card-plus,
  body.page-pet .pet-card-plus,
  body.page-collections .women-card-plus,
  body.page-product-series .women-card-plus,
  body.page-mystic .mystic-card-plus,
  body.page-holidays .holiday-card-plus,
  body.page-holidays .holiday-card-add {
    width: 34px !important;
    height: 34px !important;
    right: 9px !important;
    bottom: 9px !important;
    font-size: 20px !important;
  }

  body.page-women .women-product-price-row strong,
  body.page-men .women-product-price-row strong,
  body.page-pet .women-product-price-row strong,
  body.page-collections .women-product-price-row strong,
  body.page-product-series .women-product-price-row strong,
  body.page-mystic .product-price-row strong,
  body.page-holidays .holiday-card-price strong,
  body.page-holidays .holiday-card-price b {
    font-size: 18px !important;
  }
}

/* Final BEADKIN unified product-card guard.
   This stays at the end so older page-specific series rules cannot reintroduce
   different title spacing, duplicate custom pills, or oversized plus buttons. */
html body .bk-normalized-product-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  text-align: left !important;
  letter-spacing: 0 !important;
}

html body .bk-normalized-product-card .bk-card-media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  margin: 0 0 12px !important;
}

html body .bk-normalized-product-card .bk-card-media img,
html body .bk-normalized-product-card .bk-card-media picture,
html body .bk-normalized-product-card .bk-card-media video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

html body .bk-normalized-product-card .bk-card-info,
html body.page-women .bk-normalized-product-card .continuous-product-info,
html body.page-men .bk-normalized-product-card .continuous-product-info,
html body.page-pet .bk-normalized-product-card .continuous-product-info,
html body.page-collections .bk-normalized-product-card .continuous-product-info,
html body.page-product-series .bk-normalized-product-card .continuous-product-info,
html body.page-mystic .bk-normalized-product-card .product-copy,
html body.page-holidays .bk-normalized-product-card .holiday-card-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 5px !important;
  padding: 0 4px !important;
  min-height: 0 !important;
  text-align: left !important;
}

html body .bk-normalized-product-card .bk-card-info > p,
html body .bk-normalized-product-card .bk-card-info > .men-note,
html body .bk-normalized-product-card .bk-card-info > .men-swatch-row {
  display: none !important;
}

html body .bk-normalized-product-card .bk-card-info h3,
html body .bk-normalized-product-card h3,
html body.page-women .bk-normalized-product-card .continuous-product-info h3,
html body.page-men .bk-normalized-product-card .continuous-product-info h3,
html body.page-pet .bk-normalized-product-card .continuous-product-info h3,
html body.page-collections .bk-normalized-product-card .continuous-product-info h3,
html body.page-product-series .bk-normalized-product-card .continuous-product-info h3,
html body.page-mystic .bk-normalized-product-card .product-card h3,
html body.page-mystic .bk-normalized-product-card .product-copy h3,
html body.page-holidays .bk-normalized-product-card .holiday-card-title,
html body.page-holidays .bk-normalized-product-card .holiday-product-card h3,
html body .bk-normalized-product-card > strong {
  min-height: 0 !important;
  margin: 0 !important;
  color: var(--bk-card-title, inherit) !important;
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", serif !important;
  font-size: clamp(20px, 1.58vw, 26px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

html body .bk-normalized-product-card .bk-capability-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 5px !important;
  min-height: 20px !important;
  margin: 0 !important;
  order: 2 !important;
}

html body .bk-normalized-product-card .bk-capability-tag {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 19px !important;
  padding: 3px 7px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(177, 102, 92, .42) !important;
  background: rgba(255, 253, 249, .88) !important;
  color: var(--bk-card-badge-text, #8a4e45) !important;
  font: 760 10px / 1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  white-space: nowrap !important;
}

html body .bk-normalized-product-card .women-custom-pill,
html body .bk-normalized-product-card .men-custom-pill,
html body .bk-normalized-product-card .mystic-custom-pill,
html body .bk-normalized-product-card .holiday-card-tags,
html body .bk-normalized-product-card .holiday-card-price em,
html body .bk-normalized-product-card .continuous-product-price em,
html body .bk-normalized-product-card .women-product-price-row em,
html body .bk-normalized-product-card .men-price-row em,
html body .bk-normalized-product-card .product-price-row em {
  display: none !important;
}

html body .bk-normalized-product-card .bk-card-price-row,
html body .bk-normalized-product-card .continuous-product-price,
html body .bk-normalized-product-card .men-price-row,
html body .bk-normalized-product-card .product-price-row,
html body .bk-normalized-product-card .holiday-card-price,
html body .bk-normalized-product-card > span[data-bk-price-target] {
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: 100% !important;
  margin: 2px 0 0 !important;
  color: var(--bk-card-price, inherit) !important;
  order: 3 !important;
}

html body .bk-normalized-product-card .bk-card-price-row strong,
html body .bk-normalized-product-card .bk-card-price-row b,
html body .bk-normalized-product-card .bk-card-price-row,
html body .bk-normalized-product-card .continuous-product-price,
html body .bk-normalized-product-card .men-price-row,
html body .bk-normalized-product-card .product-price-row strong,
html body .bk-normalized-product-card .holiday-card-price strong,
html body .bk-normalized-product-card .holiday-card-price b {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(24px, 1.8vw, 30px) !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

html body .bk-normalized-product-card [data-bk-action="add"],
html body .bk-normalized-product-card .bk-card-plus,
html body .bk-normalized-product-card .bk-unified-plus-action,
html body .bk-normalized-product-card .women-card-plus,
html body .bk-normalized-product-card .men-card-plus,
html body .bk-normalized-product-card .pet-card-plus,
html body .bk-normalized-product-card .holiday-card-plus,
html body .bk-normalized-product-card .mystic-card-plus,
html body .bk-normalized-product-card .product-card-plus,
html body .bk-normalized-product-card .quick-add,
html body .bk-normalized-product-card .continuous-product-add,
html body .bk-normalized-product-card .holiday-card-add,
html body .bk-normalized-product-card .pet-card-add,
html body .bk-normalized-product-card .men-card-add {
  position: absolute !important;
  right: 12px !important;
  bottom: 12px !important;
  z-index: 6 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .42) !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: var(--bk-card-plus-bg, linear-gradient(180deg, #e4b362, #c98c35)) !important;
  color: var(--bk-card-plus-fg, #1b110b) !important;
  box-shadow: 0 10px 20px rgba(68, 42, 22, .18) !important;
  font: 900 22px / 1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

html[dir="rtl"] body .bk-normalized-product-card,
html[dir="rtl"] body .bk-normalized-product-card .bk-card-info,
html[dir="rtl"] body .bk-normalized-product-card .bk-card-info h3,
html[dir="rtl"] body .bk-normalized-product-card h3 {
  text-align: right !important;
  align-items: flex-start !important;
}

@media (max-width: 680px) {
  html body .bk-normalized-product-card .bk-card-media {
    border-radius: 16px !important;
    margin-bottom: 10px !important;
  }

  html body .bk-normalized-product-card .bk-card-info {
    gap: 5px !important;
    padding: 0 2px !important;
  }

  html body .bk-normalized-product-card .bk-card-info h3,
  html body .bk-normalized-product-card h3,
  html body.page-holidays .bk-normalized-product-card .holiday-card-title,
  html body .bk-normalized-product-card > strong {
    min-height: 0 !important;
    font-size: 15px !important;
    line-height: 1.24 !important;
  }

  html body .bk-normalized-product-card [data-bk-action="add"],
  html body .bk-normalized-product-card .bk-card-plus,
  html body .bk-normalized-product-card .bk-unified-plus-action,
  html body .bk-normalized-product-card .women-card-plus,
  html body .bk-normalized-product-card .men-card-plus,
  html body .bk-normalized-product-card .pet-card-plus,
  html body .bk-normalized-product-card .holiday-card-plus,
  html body .bk-normalized-product-card .mystic-card-plus,
  html body .bk-normalized-product-card .product-card-plus,
  html body .bk-normalized-product-card .quick-add,
  html body .bk-normalized-product-card .continuous-product-add,
  html body .bk-normalized-product-card .holiday-card-add,
  html body .bk-normalized-product-card .pet-card-add,
  html body .bk-normalized-product-card .men-card-add {
    right: 9px !important;
    bottom: 9px !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    font-size: 19px !important;
  }

  html body .bk-normalized-product-card .bk-card-price-row strong,
  html body .bk-normalized-product-card .bk-card-price-row b,
  html body .bk-normalized-product-card .bk-card-price-row,
  html body .bk-normalized-product-card .continuous-product-price,
  html body .bk-normalized-product-card .men-price-row,
  html body .bk-normalized-product-card .product-price-row strong,
  html body .bk-normalized-product-card .holiday-card-price strong,
  html body .bk-normalized-product-card .holiday-card-price b {
    font-size: 18px !important;
  }
}


