:root {
  color-scheme: only light;
  --bt-pink: #f075a8;
  --bt-pink-hot: #e84d8e;
  --bt-soft: #ffe7f1;
  --bt-cream: #fff8e8;
  --bt-white: #fffefa;
  --bt-mint: #c8ecd8;
  --bt-blue: #c7e4ff;
  --bt-brown: #65423b;
  --bt-ink: #76505d;
  --bt-muted: rgba(118, 80, 93, .68);
  --bt-line: rgba(240, 117, 168, .82);
  --bt-soft-line: rgba(240, 117, 168, .24);
  --bt-red: #e84d8e;
  --bt-display: "Hiragino Maru Gothic ProN", "PingFang TC", "Noto Sans TC", system-ui, sans-serif;
  --bt-body: "PingFang TC", "Noto Sans TC", system-ui, sans-serif;
  --bt-radius: 8px;
  --bt-border: 2px;
  --bt-shadow: 8px 8px 0 rgba(240, 117, 168, .14);
  --bt-wrap: min(1240px, calc(100vw - 36px));
  --bt-ease-out: cubic-bezier(.16, 1, .3, 1);
  --bt-ease-pop: cubic-bezier(.34, 1.56, .64, 1);
  --bt-ease-soft: cubic-bezier(.45, 0, .2, 1);
  --bt-motion-fast: 140ms;
  --bt-motion-base: 220ms;
  --bt-motion-slow: 420ms;
  --bt-motion-page: 680ms;
  --bt-stagger: 36ms;
  --bt-pearl-border: var(--bt-pink);
  --bt-pearl-surface:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, .95) 0 18%, transparent 19%),
    linear-gradient(145deg, #8c5d4f, #3f2525);
  --bt-pearl-shadow: 3px 4px 0 rgba(240, 117, 168, .18);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: only light;
  scroll-behavior: smooth;
}

#main [id] {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  color: var(--bt-ink);
  background: var(--bt-cream);
  color-scheme: only light;
  forced-color-adjust: none;
  font-family: var(--bt-body);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.bt-grid-on {
  background:
    linear-gradient(color-mix(in srgb, var(--bt-ink) 9%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--bt-ink) 9%, transparent) 1px, transparent 1px),
    linear-gradient(180deg, var(--bt-soft), var(--bt-cream) 62%);
  background-size: 64px 64px, 64px 64px, auto;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text,
.bt-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bt-skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--bt-cream);
  background: var(--bt-ink);
  border-radius: 999px;
}

.bt-announcement {
  position: relative;
  z-index: 20;
  background: var(--bt-ink);
  color: var(--bt-cream);
  font-size: 14px;
  font-weight: 800;
}

.bt-announcement a {
  width: var(--bt-wrap);
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  line-height: 1.42;
}

.bt-announcement-dot,
.bt-kicker-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--bt-brown) 12%, transparent);
}

.bt-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bt-cream) 90%, white);
  border-bottom: var(--bt-border) solid var(--bt-ink);
  transition:
    box-shadow var(--bt-motion-base) var(--bt-ease-out),
    background var(--bt-motion-base) var(--bt-ease-out),
    transform var(--bt-motion-base) var(--bt-ease-out);
}

.bt-site-header.is-scrolled {
  background: color-mix(in srgb, var(--bt-cream) 96%, white);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--bt-ink) 12%, transparent);
}

.bt-header-inner {
  width: var(--bt-wrap);
  min-height: 124px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.bt-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--bt-ink);
  font-family: var(--bt-display);
  font-weight: 900;
  text-decoration: none;
}

.bt-brand img,
.custom-logo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  transition: transform var(--bt-motion-base) var(--bt-ease-out);
  transform-origin: center;
}

.bt-site-header.is-scrolled .bt-brand img,
.bt-site-header.is-scrolled .custom-logo {
  transform: scale(.96) rotate(-1deg);
}

.bt-brand-text {
  display: none;
  max-width: 270px;
  font-size: 17px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.bt-primary-nav {
  justify-self: center;
}

.bt-menu,
.bt-drawer-menu,
.bt-socials,
.bt-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bt-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bt-menu > .menu-item {
  position: relative;
}

.bt-menu a,
.bt-header-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--bt-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    background var(--bt-motion-fast) var(--bt-ease-out),
    transform var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-menu a:hover,
.bt-menu .menu-item:focus-within > a,
.bt-header-link:hover {
  background: var(--bt-soft);
  transform: translateY(-1px);
}

.bt-menu-disabled-link {
  cursor: default;
}

.bt-menu > .menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.bt-menu .sub-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 206px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 16px;
  background: var(--bt-cream);
  box-shadow: 8px 10px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(.98);
  transform-origin: 50% 0;
  transition:
    opacity var(--bt-motion-base) var(--bt-ease-out),
    transform var(--bt-motion-base) var(--bt-ease-out),
    visibility var(--bt-motion-base) var(--bt-ease-out);
  visibility: hidden;
}

.bt-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
}

.bt-menu .menu-item:hover > .sub-menu,
.bt-menu .menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  visibility: visible;
}

.bt-menu .sub-menu a {
  width: 100%;
  justify-content: space-between;
  min-height: 42px;
  border-radius: 12px;
  white-space: nowrap;
}

.bt-menu .sub-menu li {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity var(--bt-motion-fast) var(--bt-ease-out),
    transform var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-menu .menu-item:hover > .sub-menu li,
.bt-menu .menu-item:focus-within > .sub-menu li {
  opacity: 1;
  transform: translateY(0);
}

.bt-menu .sub-menu li:nth-child(2) { transition-delay: 24ms; }
.bt-menu .sub-menu li:nth-child(3) { transition-delay: 48ms; }
.bt-menu .sub-menu li:nth-child(4) { transition-delay: 72ms; }
.bt-menu .sub-menu li:nth-child(n+5) { transition-delay: 96ms; }

.bt-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.bt-account-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px 6px 7px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  color: var(--bt-ink);
  background: color-mix(in srgb, var(--bt-soft) 42%, var(--bt-cream));
  box-shadow: 4px 5px 0 color-mix(in srgb, var(--bt-ink) 15%, transparent);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-account-link:hover {
  background: var(--bt-soft);
  transform: translate(-1px, -1px);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 16%, transparent);
}

.bt-account-pearl {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: 1px 2px 0 color-mix(in srgb, var(--bt-ink) 16%, transparent);
}

.bt-account-pearl::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-radius: inherit;
  background: color-mix(in srgb, white 86%, var(--bt-soft));
  opacity: .9;
}

.bt-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  color: var(--bt-cream);
  background: var(--bt-ink);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    background var(--bt-motion-fast) var(--bt-ease-out),
    color var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
}

.bt-button:active,
.button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active {
  transform: translate(0, 0) scale(.99);
  box-shadow: 3px 4px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
}

.bt-button-secondary {
  color: var(--bt-ink);
  background: var(--bt-cream);
}

.bt-button-ink {
  color: var(--bt-cream);
  background: var(--bt-ink);
}

.bt-button-small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
}

.bt-icon-link,
.bt-drawer-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  color: var(--bt-ink);
  background: var(--bt-cream);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-icon-link {
  width: 46px;
  height: 46px;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.bt-icon-link span[aria-hidden="true"] {
  display: inline-block;
  transform: translateY(-1px);
}

.bt-drawer-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.bt-drawer-toggle span:not(.screen-reader-text) {
  width: 16px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform var(--bt-motion-base) var(--bt-ease-out), opacity var(--bt-motion-base) var(--bt-ease-out);
}

.bt-drawer-toggle[aria-expanded="true"] span:not(.screen-reader-text):first-child {
  transform: translateY(5px) rotate(42deg);
}

.bt-drawer-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(2) {
  opacity: 0;
}

.bt-drawer-toggle[aria-expanded="true"] span:not(.screen-reader-text):nth-child(3) {
  transform: translateY(-5px) rotate(-42deg);
}

.bt-cart-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  color: var(--bt-ink);
  background: var(--bt-cream);
  font-weight: 950;
  text-decoration: none;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-cart-link > span:first-child {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  overflow: hidden;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  color: transparent;
  background: var(--bt-pearl-surface);
  box-shadow: 1px 2px 0 color-mix(in srgb, var(--bt-ink) 16%, transparent);
}

.bt-cart-count {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bt-cream);
  background: var(--bt-pink);
  font-size: 12px;
  transition: transform var(--bt-motion-fast) var(--bt-ease-pop);
}

.bt-cart-link.has-cart-pulse {
  animation: bt-cart-pulse 620ms var(--bt-ease-pop);
}

.bt-cart-link.has-cart-pulse .bt-cart-count {
  transform: scale(1.12);
}

.bt-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--bt-ink) 42%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--bt-motion-base) var(--bt-ease-out);
}

.bt-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bt-drawer-panel {
  width: min(440px, 100vw);
  height: 100dvh;
  min-height: 0;
  margin-left: auto;
  padding: 22px;
  background: var(--bt-cream);
  border-left: var(--bt-border) solid var(--bt-ink);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 320ms var(--bt-ease-out);
  will-change: transform;
}

.bt-drawer.is-open .bt-drawer-panel {
  transform: translateX(0);
}

.bt-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.bt-drawer-head .bt-brand img {
  width: 78px;
  height: 78px;
}

.bt-drawer-head .bt-brand span {
  display: none;
}

.bt-drawer-menu > li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-top: var(--bt-border) solid color-mix(in srgb, var(--bt-ink) 18%, transparent);
}

.bt-drawer-menu > li:last-child {
  border-bottom: var(--bt-border) solid color-mix(in srgb, var(--bt-ink) 18%, transparent);
}

.bt-drawer-menu a {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  color: var(--bt-ink);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
}

.bt-submenu-toggle {
  width: 38px;
  height: 38px;
  margin: 0 0 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--bt-soft);
  color: var(--bt-ink);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-drawer-menu .sub-menu {
  grid-column: 1 / -1;
  clear: both;
  display: grid;
  max-height: 0;
  gap: 6px;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 320ms var(--bt-ease-out),
    opacity var(--bt-motion-base) var(--bt-ease-out),
    padding var(--bt-motion-base) var(--bt-ease-out),
    transform var(--bt-motion-base) var(--bt-ease-out);
}

.bt-drawer-menu .is-open > .sub-menu {
  max-height: 420px;
  padding: 0 0 14px 0;
  opacity: 1;
  transform: translateY(0);
}

.bt-drawer-menu .sub-menu a {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--bt-soft) 36%, transparent);
  font-size: 15px;
}

.bt-drawer-menu .is-open > .bt-submenu-toggle {
  transform: rotate(90deg);
}

.bt-drawer-footer {
  margin-top: 34px;
  padding: 18px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: var(--bt-soft);
  display: grid;
  gap: 14px;
}

.bt-drawer-footer p {
  margin: 0;
  font-weight: 800;
  line-height: 1.65;
}

.bt-drawer-account-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 16px;
  color: var(--bt-cream);
  background: var(--bt-ink);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  text-decoration: none;
}

.bt-drawer-account-card strong,
.bt-drawer-account-card em {
  display: block;
}

.bt-drawer-account-card strong {
  margin-bottom: 5px;
  font-family: var(--bt-display);
  font-size: 22px;
  line-height: 1.05;
}

.bt-drawer-account-card em {
  color: color-mix(in srgb, var(--bt-cream) 84%, white);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.bt-drawer-account-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1.5px solid color-mix(in srgb, var(--bt-cream) 72%, var(--bt-ink));
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: 2px 3px 0 color-mix(in srgb, black 18%, transparent);
}

.bt-drawer-account-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 9px;
  width: 10px;
  height: 10px;
  border-radius: inherit;
  background: color-mix(in srgb, white 86%, var(--bt-soft));
  opacity: .92;
}

.bt-main {
  min-height: 60vh;
}

.bt-hero {
  padding: clamp(50px, 6vw, 88px) 0 clamp(52px, 5vw, 82px);
  border-bottom: var(--bt-border) solid var(--bt-ink);
}

.bt-hero-inner,
.bt-section,
.bt-page-hero,
.bt-content,
.bt-footer-top,
.bt-footer-bottom {
  width: var(--bt-wrap);
  margin-inline: auto;
}

.bt-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.bt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--bt-brown);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.bt-hero h1,
.bt-page-hero h1 {
  margin: 0;
  font-family: var(--bt-display);
  font-size: 76px;
  line-height: 1.03;
  text-wrap: pretty;
}

.bt-hero h1 span {
  display: block;
  text-shadow: 3px 4px 0 color-mix(in srgb, var(--bt-brown) 24%, transparent);
}

.bt-hero-body,
.bt-page-hero p,
.bt-section-head p,
.bt-split-copy p,
.bt-friday-card p,
.bt-collab-inner p {
  max-width: 680px;
  font-size: 17px;
  font-weight: 700;
}

.bt-hero-body {
  max-width: 620px;
  margin: 18px 0 0;
  line-height: 1.78;
}

.bt-hero-actions,
.bt-section-action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}

.bt-hero-board {
  position: relative;
  min-height: 560px;
}

.bt-banner-card {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 0;
  width: min(100%, 540px);
  padding: 10px;
  border: 4px solid var(--bt-ink);
  background: var(--bt-cream);
  box-shadow: 12px 14px 0 color-mix(in srgb, var(--bt-ink) 32%, transparent);
  transform: rotate(3deg);
  transition:
    transform var(--bt-motion-slow) var(--bt-ease-out),
    box-shadow var(--bt-motion-slow) var(--bt-ease-out);
  will-change: transform;
}

.bt-hero-board:hover .bt-banner-card {
  transform: rotate(2deg) translate3d(-3px, -4px, 0) scale(1.01);
  box-shadow: 15px 17px 0 color-mix(in srgb, var(--bt-ink) 28%, transparent);
}

.bt-logo-orbit {
  position: absolute;
  z-index: 3;
  left: 6%;
  top: 156px;
  width: 330px;
  height: 330px;
  display: grid;
  place-items: center;
  border: 4px solid var(--bt-ink);
  border-radius: 999px;
  background: color-mix(in srgb, white 84%, var(--bt-cream));
  box-shadow: 10px 14px 0 color-mix(in srgb, var(--bt-ink) 28%, transparent);
  animation: bt-orbit-breathe 6.4s var(--bt-ease-soft) infinite;
  will-change: transform;
}

.bt-logo-orbit img {
  width: 74%;
}

.bt-sticker {
  position: absolute;
  z-index: 4;
  --bt-sticker-rest: 3deg;
  --bt-sticker-tilt: -3deg;
  padding: 14px 18px;
  border: var(--bt-border) solid var(--bt-ink);
  background: var(--bt-cream);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 22%, transparent);
  font-weight: 950;
  transition:
    transform var(--bt-motion-base) var(--bt-ease-pop),
    box-shadow var(--bt-motion-base) var(--bt-ease-out);
}

.bt-sticker:hover {
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--bt-ink) 20%, transparent);
}

.bt-sticker-1 {
  --bt-sticker-rest: 2deg;
  --bt-sticker-tilt: -3deg;
  left: 60%;
  top: 214px;
  bottom: auto;
  transform: rotate(var(--bt-sticker-rest));
}

.bt-sticker-1:hover {
  transform: rotate(0deg) translateY(-2px);
}

.bt-sticker-2 {
  --bt-sticker-rest: -5deg;
  --bt-sticker-tilt: -2deg;
  right: 0;
  top: 294px;
  bottom: auto;
  background: #c7ead8;
  transform: rotate(var(--bt-sticker-rest));
  animation-delay: .4s;
}

.bt-sticker-2:hover {
  transform: rotate(-2deg) translateY(-2px);
}

.bt-sticker-3 {
  --bt-sticker-rest: 4deg;
  --bt-sticker-tilt: -4deg;
  left: 60%;
  right: auto;
  top: 382px;
  bottom: auto;
  background: var(--bt-soft);
  transform: rotate(var(--bt-sticker-rest));
  animation-delay: .8s;
}

.bt-sticker-3:hover {
  transform: rotate(2deg) translateY(-2px);
}

.bt-cart-preview {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  width: min(255px, 42%);
  padding: 16px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: var(--bt-cream);
  box-shadow: var(--bt-shadow);
  transition:
    transform var(--bt-motion-slow) var(--bt-ease-out),
    box-shadow var(--bt-motion-slow) var(--bt-ease-out);
}

.bt-hero-board:hover .bt-cart-preview {
  transform: translate3d(2px, -3px, 0);
  box-shadow: 12px 14px 0 color-mix(in srgb, var(--bt-ink) 16%, transparent);
}

.bt-cart-preview strong,
.bt-cart-preview div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.55;
}

.bt-pearl-field {
  position: absolute;
  z-index: 1;
  inset: -18px -12px 0;
  pointer-events: none;
}

.bt-pearl-field span {
  position: absolute;
  width: var(--bt-pearl-size, 18px);
  height: var(--bt-pearl-size, 18px);
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: var(--bt-pearl-opacity, 0.72);
  animation: bt-pearl-drift var(--bt-pearl-duration, 10.8s) var(--bt-ease-soft) infinite;
  animation-delay: var(--bt-pearl-delay, 0s);
  transform-origin: 34% 30%;
  will-change: transform;
}

.bt-js-ready.bt-motion-normal.bt-hero-motion-on .bt-banner-card {
  animation: bt-c-sticker-float 4.8s ease-in-out infinite;
}

.bt-js-ready.bt-motion-normal.bt-hero-motion-on .bt-logo-orbit {
  animation: bt-c-mascot-pop 4.2s ease-in-out infinite;
}

.bt-js-ready.bt-motion-normal.bt-hero-motion-on .bt-sticker {
  animation-name: bt-c-sticker-wiggle;
  animation-duration: 3.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.bt-js-ready.bt-motion-normal.bt-hero-motion-on .bt-pearl-field span {
  animation-name: bt-c-pearl-rise;
  animation-duration: calc(var(--bt-pearl-duration, 10.8s) * .52);
  animation-timing-function: ease-in-out;
}

.bt-pearl-field span:nth-child(1) { left: 4%; top: 18%; --bt-pearl-size: 10px; --bt-pearl-x: 28px; --bt-pearl-y: -18px; --bt-pearl-r: 24deg; --bt-pearl-duration: 9.8s; --bt-pearl-delay: -1.4s; --bt-pearl-opacity: .62; }
.bt-pearl-field span:nth-child(2) { left: 14%; top: 76%; --bt-pearl-size: 14px; --bt-pearl-x: -18px; --bt-pearl-y: -42px; --bt-pearl-r: -18deg; --bt-pearl-duration: 11.6s; --bt-pearl-delay: -4.8s; }
.bt-pearl-field span:nth-child(3) { left: 28%; top: 12%; --bt-pearl-size: 20px; --bt-pearl-x: 24px; --bt-pearl-y: 36px; --bt-pearl-r: 34deg; --bt-pearl-duration: 13.2s; --bt-pearl-delay: -6.2s; --bt-pearl-opacity: .78; }
.bt-pearl-field span:nth-child(4) { left: 43%; top: 68%; --bt-pearl-size: 12px; --bt-pearl-x: -34px; --bt-pearl-y: -28px; --bt-pearl-r: -28deg; --bt-pearl-duration: 10.7s; --bt-pearl-delay: -2.1s; --bt-pearl-opacity: .66; }
.bt-pearl-field span:nth-child(5) { left: 54%; top: 22%; --bt-pearl-size: 16px; --bt-pearl-x: 18px; --bt-pearl-y: -46px; --bt-pearl-r: 20deg; --bt-pearl-duration: 12.4s; --bt-pearl-delay: -8.4s; }
.bt-pearl-field span:nth-child(6) { left: 68%; top: 58%; --bt-pearl-size: 9px; --bt-pearl-x: -22px; --bt-pearl-y: -18px; --bt-pearl-r: -14deg; --bt-pearl-duration: 9.2s; --bt-pearl-delay: -3.3s; --bt-pearl-opacity: .58; }
.bt-pearl-field span:nth-child(7) { left: 79%; top: 16%; --bt-pearl-size: 18px; --bt-pearl-x: 32px; --bt-pearl-y: 22px; --bt-pearl-r: 30deg; --bt-pearl-duration: 14.2s; --bt-pearl-delay: -7.7s; --bt-pearl-opacity: .74; }
.bt-pearl-field span:nth-child(8) { left: 91%; top: 46%; --bt-pearl-size: 13px; --bt-pearl-x: -28px; --bt-pearl-y: -34px; --bt-pearl-r: -22deg; --bt-pearl-duration: 10.9s; --bt-pearl-delay: -5.5s; }
.bt-pearl-field span:nth-child(9) { left: 20%; top: 42%; --bt-pearl-size: 8px; --bt-pearl-x: 38px; --bt-pearl-y: 14px; --bt-pearl-r: 18deg; --bt-pearl-duration: 12.8s; --bt-pearl-delay: -9.1s; --bt-pearl-opacity: .48; }
.bt-pearl-field span:nth-child(10) { left: 35%; top: 86%; --bt-pearl-size: 17px; --bt-pearl-x: -24px; --bt-pearl-y: -36px; --bt-pearl-r: -32deg; --bt-pearl-duration: 15.2s; --bt-pearl-delay: -10.8s; --bt-pearl-opacity: .62; }
.bt-pearl-field span:nth-child(11) { left: 59%; top: 82%; --bt-pearl-size: 11px; --bt-pearl-x: 30px; --bt-pearl-y: -24px; --bt-pearl-r: 24deg; --bt-pearl-duration: 13.6s; --bt-pearl-delay: -11.2s; --bt-pearl-opacity: .54; }
.bt-pearl-field span:nth-child(12) { left: 84%; top: 82%; --bt-pearl-size: 21px; --bt-pearl-x: -18px; --bt-pearl-y: -48px; --bt-pearl-r: -26deg; --bt-pearl-duration: 16.4s; --bt-pearl-delay: -12.4s; --bt-pearl-opacity: .68; }

.bt-pearl-density-low .bt-pearl-field span:nth-child(n+4) {
  display: none;
}

.bt-pearl-density-rich .bt-pearl-field span {
  opacity: calc(var(--bt-pearl-opacity, .72) + .08);
  animation-duration: calc(var(--bt-pearl-duration, 10.8s) * .88);
}

.bt-pearls-off .bt-pearl-field {
  display: none;
}

.bt-section {
  padding: clamp(56px, 6vw, 92px) 0;
}

.bt-section-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.bt-section-head::after {
  content: "";
  position: absolute;
  right: min(8px, 1vw);
  bottom: -18px;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: 0;
  pointer-events: none;
}

.bt-section h2,
.bt-page-hero h1,
.bt-split-copy h2,
.bt-collab h2,
.bt-follow h2 {
  font-family: var(--bt-display);
  font-size: 50px;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.bt-card-grid,
.bt-product-preview-grid,
.bt-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bt-product-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 300px));
  justify-content: start;
}

.bt-info-card,
.bt-product-card,
.bt-rhythm-card,
.bt-post-card,
.bt-friday-card,
.bt-fan-card,
.bt-collab-inner,
.bt-follow,
.bt-product-story-note,
.bt-checkout-helper,
.bt-empty-cart-copy,
.bt-thank-you-note {
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: color-mix(in srgb, var(--bt-cream) 92%, white);
  box-shadow: var(--bt-shadow);
  transition:
    transform var(--bt-motion-base) var(--bt-ease-out),
    box-shadow var(--bt-motion-base) var(--bt-ease-out),
    background var(--bt-motion-base) var(--bt-ease-out);
}

.bt-info-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--bt-ink);
  text-decoration: none;
  transition:
    transform var(--bt-motion-base) var(--bt-ease-out),
    box-shadow var(--bt-motion-base) var(--bt-ease-out),
    background var(--bt-motion-base) var(--bt-ease-out);
}

.bt-info-card:hover,
.bt-rhythm-card:hover,
.bt-work-row:hover,
.bt-work-card:hover,
.bt-work-use-card:hover,
.bt-passport-card:hover,
.bt-fan-wall .bt-rhythm-card:hover {
  transform: translate3d(-2px, -3px, 0) rotate(0deg);
  box-shadow: 12px 14px 0 color-mix(in srgb, var(--bt-ink) 15%, transparent);
}

.bt-info-card h2,
.bt-info-card h3,
.bt-rhythm-card h2,
.bt-rhythm-card h3 {
  margin: 0 0 12px;
  font-family: var(--bt-display);
  font-size: 23px;
  line-height: 1.16;
}

.bt-info-card p,
.bt-rhythm-card p {
  margin: 0;
  font-weight: 700;
}

.bt-card-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bt-pink);
  background: var(--bt-soft);
}

.bt-product-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  overflow: visible;
  border-radius: calc(var(--bt-radius) - 10px);
  background: color-mix(in srgb, var(--bt-cream) 88%, white);
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--bt-ink) 14%, transparent);
  transition:
    transform var(--bt-motion-base) var(--bt-ease-pop),
    box-shadow var(--bt-motion-base) var(--bt-ease-out);
}

.bt-product-hover-standard .bt-product-card:hover,
.bt-product-hover-playful .bt-product-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 9px 9px 0 color-mix(in srgb, var(--bt-ink) 14%, transparent);
}

.bt-product-hover-playful .bt-product-card:hover {
  transform: translateY(-6px) rotate(-1.25deg);
}

.bt-product-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border: 1.5px solid color-mix(in srgb, var(--bt-ink) 18%, transparent);
  border-radius: 6px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--bt-soft) 84%, white), var(--bt-cream));
  overflow: hidden;
}

.bt-product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 25% 20%, color-mix(in srgb, white 62%, transparent) 0 12%, transparent 28%),
    linear-gradient(120deg, transparent 35%, color-mix(in srgb, white 35%, transparent) 50%, transparent 65%);
  opacity: 0;
  pointer-events: none;
}

.bt-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--bt-motion-slow) var(--bt-ease-out), filter var(--bt-motion-slow) var(--bt-ease-out);
}

.bt-product-hover-standard .bt-product-card:hover .bt-product-thumb img {
  transform: scale(1.035);
  filter: saturate(1.03);
}

.bt-product-hover-playful .bt-product-card:hover .bt-product-thumb img {
  transform: scale(1.055) rotate(.4deg);
  filter: saturate(1.06);
}

.bt-product-hover-static .bt-product-card:hover .bt-product-thumb img {
  transform: none;
  filter: none;
}

.bt-product-card.is-adding .bt-product-thumb::after {
  animation: bt-sugar-flash 560ms var(--bt-ease-out);
}

.bt-js-ready.bt-motion-normal .bt-product-card.is-adding {
  animation: bt-c-card-bounce 620ms var(--bt-ease-pop) both;
}

.bt-badge,
.woocommerce span.onsale {
  position: absolute;
  --bt-sticker-rest: -3deg;
  --bt-sticker-tilt: 2deg;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 8px 12px 8px 11px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px 999px 999px 7px;
  color: var(--bt-cream);
  background: linear-gradient(135deg, var(--bt-pink), var(--bt-red));
  box-shadow: 3px 4px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .03em;
  transform: rotate(-3deg);
}

.bt-badge::before,
.woocommerce span.onsale::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: color-mix(in srgb, white 78%, var(--bt-soft));
  box-shadow: 1px 1px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
}

.bt-empty-shop,
.bt-empty-cart-copy,
.bt-related-empty,
.bt-product-story-note {
  position: relative;
  overflow: hidden;
}

.bt-empty-shop::after,
.bt-empty-cart-copy::after,
.bt-related-empty::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: 0;
  pointer-events: none;
}

.bt-product-story-note::before {
  content: "Preorder Note";
  position: absolute;
  z-index: 0;
  top: 18px;
  left: -220px;
  min-width: 200px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bt-cream) 92%, white);
  box-shadow: 4px 5px 0 color-mix(in srgb, var(--bt-ink) 12%, transparent);
  font-size: 12px;
  font-weight: 950;
  opacity: 0;
  transform: translateX(-90px) rotate(-2deg);
  pointer-events: none;
}

.bt-product-story-note > * {
  position: relative;
  z-index: 1;
}

.bt-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
}

.bt-product-card h3 {
  margin: 0 0 7px;
  font-family: var(--bt-display);
  font-size: 21px;
  line-height: 1.1;
}

.bt-product-card h3 a,
.bt-post-card a,
.bt-work-row,
.bt-work-card,
.bt-work-use-card {
  color: inherit;
  text-decoration: none;
}

.bt-product-card p {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
}

.bt-product-meta,
.bt-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bt-product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 10px;
  align-items: center;
  margin-top: 14px;
}

.bt-product-card-body .bt-product-actions {
  margin-top: auto;
  padding-top: 14px;
}

.bt-product-actions .button,
.bt-product-actions .added_to_cart {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 9px 10px;
  white-space: nowrap;
  font-size: 14px;
}

.bt-product-actions .add_to_cart_button {
  grid-column: 1;
  grid-row: 1;
}

.bt-product-actions .bt-loop-buy-now {
  grid-column: 2;
  grid-row: 1;
}

.bt-product-actions .added_to_cart,
.bt-product-actions .bt-text-link {
  width: auto;
  min-height: auto;
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--bt-ink);
  font-size: 14px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bt-product-actions .added_to_cart {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.bt-product-actions .bt-text-link {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.bt-price {
  font-weight: 950;
}

.bt-text-link {
  font-weight: 950;
  color: var(--bt-ink);
}

.bt-friday-card,
.bt-fan-card,
.bt-collab-inner,
.bt-follow {
  padding: clamp(24px, 4vw, 46px);
}

.bt-friday-card,
.bt-fan-card,
.bt-follow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: 28px;
  align-items: center;
}

.bt-friday-card {
  overflow: hidden;
}

.bt-friday-card::before {
  content: none;
  display: none;
}

.bt-friday-card > * {
  position: relative;
  z-index: 2;
}

.bt-friday-ribbon {
  position: absolute;
  z-index: 3;
  top: clamp(16px, 2vw, 24px);
  right: clamp(18px, 3vw, 42px);
  max-width: min(42%, 260px);
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px 6px;
  border: 2px solid var(--bt-pink);
  border-radius: 999px 999px 999px 8px;
  color: var(--bt-pink-hot);
  background: var(--bt-white);
  box-shadow: 4px 5px 0 rgba(240, 117, 168, .14);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(16px, -8px, 0) rotate(6deg);
}

@media (max-width: 700px) {
  .bt-friday-card {
    padding-top: 42px;
  }

  .bt-friday-ribbon {
    top: 18px;
    right: 24px;
    max-width: min(48%, 170px);
    min-height: 24px;
    padding: 5px 16px 6px;
    font-size: 11px;
    transform: translate3d(4px, -4px, 0) rotate(4deg);
  }
}

.bt-fan-card {
  grid-template-columns: minmax(0, .95fr) minmax(420px, .62fr);
  gap: 42px;
}

.bt-fan-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.bt-fan-actions .bt-button {
  margin: 0;
}

.bt-fan-actions .bt-socials-large {
  gap: 10px 12px;
}

.bt-fan-actions .bt-socials-large a {
  padding-inline: 14px;
}

.bt-video-placeholder {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: var(--bt-soft);
  overflow: hidden;
}

.bt-video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bt-video-placeholder span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 12px;
  border: var(--bt-border) solid var(--bt-ink);
  background: var(--bt-cream);
  font-weight: 950;
}

.bt-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: center;
}

.bt-split-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 4px solid var(--bt-ink);
  border-radius: 999px;
  background: color-mix(in srgb, white 82%, var(--bt-soft));
  box-shadow: var(--bt-shadow);
}

.bt-split-media img {
  width: min(70%, 280px);
}

.bt-rhythm-card {
  padding: 22px;
  background: var(--bt-soft);
}

.bt-rhythm-card span {
  display: inline-block;
  margin-bottom: 34px;
  font-family: var(--bt-display);
  font-size: 38px;
  line-height: 1;
  color: var(--bt-pink);
}

.bt-work-list {
  display: grid;
  gap: 12px;
}

.bt-works-stage,
.bt-works-lab {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.bt-work-player,
.bt-work-feature,
.bt-guide-ticket,
.bt-passport-cover,
.bt-fan-wall-head,
.bt-page-polaroid,
.bt-archive-ribbon,
.bt-search-panel {
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: color-mix(in srgb, var(--bt-soft) 68%, var(--bt-cream));
  box-shadow: var(--bt-shadow);
}

.bt-work-player {
  position: relative;
  min-height: 340px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  overflow: hidden;
}

.bt-work-feature {
  position: relative;
  min-height: 340px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: hidden;
}

.bt-work-feature::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 68px;
  height: 68px;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: .78;
  transform: rotate(-8deg);
}

.bt-work-player::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 54px;
  height: 54px;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
}

.bt-work-player::after {
  content: "";
  position: absolute;
  inset: auto 24px 28px 24px;
  height: 6px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bt-pink) 0 42%, var(--bt-cream) 42%);
  transform-origin: 0 50%;
}

.bt-work-player > * {
  position: relative;
  z-index: 1;
}

.bt-work-player span,
.bt-work-feature > span,
.bt-guide-ticket span,
.bt-passport-cover span,
.bt-fan-wall-head span,
.bt-page-polaroid span,
.bt-archive-ribbon span,
.bt-search-panel > span {
  color: var(--bt-brown);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.bt-work-player strong,
.bt-guide-ticket strong,
.bt-passport-cover strong,
.bt-fan-wall-head strong,
.bt-page-polaroid strong,
.bt-archive-ribbon strong {
  display: block;
  margin-top: 8px;
  font-family: var(--bt-display);
  font-size: 32px;
  line-height: 1.05;
}

.bt-work-player-note {
  max-width: 220px;
  margin: 14px 0 0;
  font-weight: 800;
  line-height: 1.55;
}

.bt-work-feature h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-family: var(--bt-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
}

.bt-work-feature p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.bt-work-feature .bt-button {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.bt-work-feature-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.bt-work-feature-meta div {
  min-height: 86px;
  padding: 14px;
  border: var(--bt-border) solid color-mix(in srgb, var(--bt-ink) 72%, transparent);
  border-radius: calc(var(--bt-radius) - 6px);
  background: color-mix(in srgb, white 70%, var(--bt-soft));
}

.bt-work-feature-meta strong,
.bt-work-feature-meta span {
  display: block;
}

.bt-work-feature-meta strong {
  margin-bottom: 5px;
  font-family: var(--bt-display);
  font-size: 18px;
  line-height: 1.15;
}

.bt-work-feature-meta span {
  color: color-mix(in srgb, var(--bt-ink) 78%, black);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.bt-player-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 92px;
}

.bt-player-bars i {
  width: 100%;
  min-width: 18px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px 999px 8px 8px;
  background: var(--bt-pink);
  transform-origin: 50% 100%;
}

.bt-player-bars i:nth-child(1) { height: 42%; }
.bt-player-bars i:nth-child(2) { height: 78%; background: #c7ead8; }
.bt-player-bars i:nth-child(3) { height: 56%; }
.bt-player-bars i:nth-child(4) { height: 92%; background: var(--bt-red); }
.bt-player-bars i:nth-child(5) { height: 64%; }

.bt-work-library-section {
  display: grid;
  gap: 24px;
}

.bt-work-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bt-work-filter {
  min-height: 42px;
  padding: 8px 16px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  color: var(--bt-ink);
  background: color-mix(in srgb, var(--bt-cream) 90%, white);
  box-shadow: 4px 5px 0 color-mix(in srgb, var(--bt-ink) 14%, transparent);
  font-weight: 950;
  cursor: pointer;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    background var(--bt-motion-fast) var(--bt-ease-out),
    color var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-work-filter:hover,
.bt-work-filter:focus-visible,
.bt-work-filter.is-active {
  color: var(--bt-cream);
  background: var(--bt-ink);
  transform: translate3d(-1px, -2px, 0);
  box-shadow: 6px 7px 0 color-mix(in srgb, var(--bt-ink) 16%, transparent);
}

.bt-work-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bt-work-card {
  position: relative;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: color-mix(in srgb, var(--bt-cream) 88%, white);
  box-shadow: var(--bt-shadow);
  overflow: hidden;
  transition:
    opacity var(--bt-motion-base) var(--bt-ease-out),
    transform var(--bt-motion-base) var(--bt-ease-out),
    box-shadow var(--bt-motion-base) var(--bt-ease-out),
    background var(--bt-motion-base) var(--bt-ease-out);
}

.bt-work-card:focus,
.bt-work-use-card:focus {
  outline: none;
}

.bt-work-card:focus-visible,
.bt-work-use-card:focus-visible,
.bt-work-filter:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--bt-pink) 80%, white);
  outline-offset: 4px;
}

.bt-work-card[hidden] {
  display: none;
}

.bt-work-card::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: .7;
  transition:
    transform var(--bt-motion-base) var(--bt-ease-pop),
    opacity var(--bt-motion-base) var(--bt-ease-out);
}

.bt-work-card:hover::before,
.bt-work-card:focus-visible::before {
  opacity: 1;
  transform: translate3d(-4px, -5px, 0) rotate(-10deg) scale(1.08);
}

.bt-work-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.bt-work-card-top span,
.bt-work-usage-head > span {
  color: var(--bt-brown);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.bt-work-card-top em {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bt-cream);
  background: var(--bt-pink);
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--bt-ink) 16%, transparent);
  font-style: normal;
  font-weight: 950;
}

.bt-work-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--bt-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.08;
}

.bt-work-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 780;
  line-height: 1.66;
}

.bt-work-card-cta {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: var(--bt-border) solid currentColor;
  font-weight: 950;
}

.bt-work-usage {
  display: grid;
  grid-template-columns: minmax(240px, .38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.bt-work-usage-head {
  padding: 24px 0;
}

.bt-work-usage-head h2 {
  margin: 8px 0 12px;
  font-family: var(--bt-display);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
}

.bt-work-usage-head p {
  margin: 0;
  font-weight: 800;
}

.bt-work-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bt-work-use-card {
  position: relative;
  min-height: 248px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: color-mix(in srgb, var(--bt-soft) 28%, var(--bt-cream));
  box-shadow: var(--bt-shadow);
  overflow: hidden;
  transition:
    transform var(--bt-motion-base) var(--bt-ease-out),
    box-shadow var(--bt-motion-base) var(--bt-ease-out),
    background var(--bt-motion-base) var(--bt-ease-out);
}

.bt-work-use-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bt-cream);
  background: var(--bt-ink);
  font-weight: 950;
}

.bt-work-use-card h3 {
  margin: 8px 0 0;
  font-family: var(--bt-display);
  font-size: 26px;
  line-height: 1.12;
}

.bt-work-use-card p {
  margin: 0;
  font-weight: 780;
  line-height: 1.62;
}

.bt-work-use-card em {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: var(--bt-border) solid currentColor;
  font-style: normal;
  font-weight: 950;
}

.bt-work-use-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: .72;
}

.bt-work-quick {
  display: grid;
  gap: 24px;
}

.bt-work-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 16px 20px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: var(--bt-cream);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 14%, transparent);
  overflow: hidden;
  transition:
    transform var(--bt-motion-base) var(--bt-ease-out),
    box-shadow var(--bt-motion-base) var(--bt-ease-out),
    background var(--bt-motion-base) var(--bt-ease-out);
}

.bt-work-row::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: 0;
  transform: translateY(-50%) scale(.8);
  transition:
    opacity var(--bt-motion-fast) var(--bt-ease-out),
    transform var(--bt-motion-fast) var(--bt-ease-pop);
}

.bt-work-row:hover::after,
.bt-work-row:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.bt-work-row em {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--bt-cream);
  background: var(--bt-ink);
  font-style: normal;
  font-weight: 950;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-work-row:hover em,
.bt-work-row:focus-visible em {
  background: var(--bt-pink);
  transform: scale(1.07);
}

.bt-work-row strong {
  font-family: var(--bt-display);
  font-size: 22px;
}

.bt-guide-map,
.bt-passport-board,
.bt-fan-wall {
  display: grid;
  gap: 22px;
}

.bt-guide-ticket,
.bt-passport-cover,
.bt-fan-wall-head,
.bt-archive-ribbon,
.bt-search-panel {
  padding: 22px;
}

.bt-guide-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: guide;
}

.bt-guide-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 8%;
  left: 8%;
  top: 75px;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--bt-pink) 0 18px, transparent 18px 30px);
  opacity: .48;
}

.bt-guide-step {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 22px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: var(--bt-cream);
  box-shadow: 6px 8px 0 color-mix(in srgb, var(--bt-ink) 14%, transparent);
  transition:
    transform var(--bt-motion-base) var(--bt-ease-out),
    box-shadow var(--bt-motion-base) var(--bt-ease-out),
    background var(--bt-motion-base) var(--bt-ease-out);
}

.bt-guide-step:hover {
  transform: translate3d(-2px, -4px, 0);
  box-shadow: 10px 12px 0 color-mix(in srgb, var(--bt-ink) 13%, transparent);
  background: color-mix(in srgb, var(--bt-cream) 82%, white);
}

.bt-guide-step::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  transform-origin: 50% 50%;
}

.bt-guide-step > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 999px;
  color: var(--bt-cream);
  background: var(--bt-pink);
  font-weight: 950;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-guide-step:hover > span {
  background: var(--bt-ink);
  transform: rotate(-5deg) scale(1.05);
}

.bt-guide-step h2 {
  margin: 0 0 12px;
  font-family: var(--bt-display);
  font-size: 26px;
  line-height: 1.1;
}

.bt-guide-step p {
  margin: 0;
  font-weight: 750;
}

.bt-passport-board .bt-card-grid {
  align-items: stretch;
}

.bt-passport-cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: #c7ead8;
  overflow: hidden;
}

.bt-passport-cover::before {
  content: "";
  position: absolute;
  right: 120px;
  top: 18px;
  width: 120px;
  height: 120px;
  border: 2px dashed color-mix(in srgb, var(--bt-ink) 38%, transparent);
  border-radius: 999px;
  opacity: .35;
  transform: rotate(-12deg);
}

.bt-passport-cover::after {
  content: "";
  width: 76px;
  height: 76px;
  display: block;
  border: var(--bt-border) solid var(--bt-pink);
  border-radius: 999px;
  background:
    color-mix(in srgb, var(--bt-white) 86%, var(--bt-cream))
    url("../images/doodles/doodle-boba-cup.png") center / 72% auto no-repeat;
  box-shadow: 4px 5px 0 rgba(240, 117, 168, .14);
  transform-origin: 50% 50%;
}

.bt-passport-card {
  position: relative;
  transform: rotate(-1deg);
  overflow: hidden;
}

.bt-passport-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border: var(--bt-border) dashed color-mix(in srgb, var(--bt-red) 72%, var(--bt-ink));
  border-radius: 999px;
  opacity: .36;
  transform: rotate(12deg) scale(.92);
  transition:
    opacity var(--bt-motion-base) var(--bt-ease-out),
    transform var(--bt-motion-base) var(--bt-ease-pop);
}

.bt-passport-card:hover::after,
.bt-passport-card:focus-visible::after {
  opacity: .72;
  transform: rotate(-4deg) scale(1);
}

.bt-passport-card:nth-child(even) {
  transform: rotate(1.5deg);
}

.bt-japan-page .bt-passport-board {
  width: min(100%, 980px);
  margin-inline: auto;
  gap: 18px;
}

.bt-japan-page .bt-passport-cover {
  min-height: 150px;
  padding: 22px;
}

.bt-japan-page .bt-passport-cover strong {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
}

.bt-japan-page .bt-passport-board .bt-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bt-japan-page .bt-passport-card {
  min-height: 190px;
  padding: 18px 20px;
  display: grid;
  align-content: start;
  gap: 14px;
  transform: none;
}

.bt-japan-page .bt-passport-card:nth-child(even),
.bt-japan-page .bt-passport-card:hover,
.bt-japan-page .bt-passport-card:focus-visible {
  transform: none;
}

.bt-japan-page .bt-passport-card .bt-card-mark {
  width: 36px;
  height: 36px;
  margin: 0;
  font-size: 14px;
}

.bt-japan-page .bt-passport-card h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(28px, 2.65vw, 38px);
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.bt-japan-page .bt-passport-card p {
  max-width: 22ch;
  margin: 0;
  color: var(--bt-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.bt-japan-page .bt-passport-card::after {
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  opacity: .25;
}

.bt-fan-wall {
  padding: 0;
}

.bt-fan-wall-head {
  position: relative;
  background: var(--bt-cream);
  overflow: hidden;
}

.bt-fan-wall-head::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 86px;
  height: 86px;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: .38;
  transform: translateY(-50%) rotate(-8deg);
}

.bt-fan-wall .bt-rhythm-card {
  position: relative;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bt-ink) 8%, transparent) 1px, transparent 1px),
    linear-gradient(var(--bt-soft), var(--bt-cream));
  background-size: 22px 100%, auto;
  transform: rotate(-.8deg);
}

.bt-fan-wall .bt-rhythm-card:nth-child(even) {
  transform: rotate(.7deg);
}

.bt-fan-wall .bt-rhythm-card:nth-child(3n) {
  transform: rotate(1.2deg);
}

.bt-fan-wall .bt-rhythm-card:hover {
  transform: translate3d(-2px, -3px, 0) rotate(0deg);
}

.bt-fan-wall .bt-rhythm-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 18px;
  width: 34px;
  height: 12px;
  background: color-mix(in srgb, var(--bt-pink) 35%, white);
  transform: rotate(6deg);
  transform-origin: 50% 50%;
  transition:
    transform var(--bt-motion-base) var(--bt-ease-pop),
    background var(--bt-motion-base) var(--bt-ease-out);
}

.bt-fan-wall .bt-rhythm-card:hover::before {
  background: color-mix(in srgb, var(--bt-pink) 48%, white);
  transform: rotate(-4deg) translateY(-1px);
}

.bt-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bt-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  background: var(--bt-cream);
  color: var(--bt-ink);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.bt-js-ready.bt-motion-normal .bt-badge,
.bt-js-ready.bt-motion-normal.woocommerce span.onsale,
.bt-js-ready.bt-motion-normal .woocommerce span.onsale,
.bt-js-ready.bt-motion-normal .bt-video-placeholder span,
.bt-js-ready.bt-motion-normal .bt-status-badge {
  animation: bt-c-sticker-wiggle 3.2s ease-in-out infinite;
  transform-origin: 52% 58%;
}

.bt-js-ready.bt-motion-normal .bt-section-head.is-visible::after,
.bt-js-ready.bt-motion-normal .bt-empty-shop.is-visible::after,
.bt-js-ready.bt-motion-normal .bt-empty-cart-copy.is-visible::after,
.bt-js-ready.bt-motion-normal .bt-related-empty.is-visible::after {
  animation: bt-c-pearl-rise 1.8s ease-in-out both;
}

.bt-js-ready.bt-motion-normal .bt-product-card.is-visible,
.bt-js-ready.bt-motion-normal.woocommerce ul.products li.product.is-visible,
.bt-js-ready.bt-motion-normal .woocommerce ul.products li.product.is-visible {
  animation: bt-c-card-pop-in 560ms var(--bt-ease-pop) both;
  animation-delay: calc(var(--bt-reveal-index, 0) * 42ms);
}

.bt-js-ready.bt-motion-normal .bt-product-card.is-adding,
.bt-js-ready.bt-motion-normal.woocommerce ul.products li.product.is-adding,
.bt-js-ready.bt-motion-normal .woocommerce ul.products li.product.is-adding {
  animation: bt-c-card-bounce 620ms var(--bt-ease-pop) both;
}

.bt-js-ready.bt-motion-normal .bt-product-story-note.is-visible::before {
  animation: bt-c-ribbon-slide 980ms var(--bt-ease-out) both;
  animation-delay: 160ms;
}

.bt-js-ready.bt-motion-normal .bt-friday-card.is-visible .bt-friday-ribbon {
  animation:
    bt-friday-ribbon-arrive 820ms var(--bt-ease-out) 160ms both,
    bt-friday-ribbon-drift 6.8s ease-in-out 1.16s infinite alternate;
}

.bt-faq-list {
  display: grid;
  gap: 12px;
}

.bt-shopping-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  max-width: 100%;
}

.bt-shopping-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;
  height: 7px;
  background: repeating-linear-gradient(90deg, var(--bt-pink) 0 16px, transparent 16px 30px);
  opacity: .26;
  pointer-events: none;
}

.bt-shopping-flow article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: 18px 16px 16px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bt-cream) 90%, white);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 13%, transparent);
}

.bt-shopping-flow article::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
}

.bt-shopping-flow span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bt-ink) 68%, var(--bt-pink));
  color: var(--bt-cream);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.bt-shopping-flow strong {
  color: var(--bt-ink);
  font-family: var(--bt-display);
  font-size: 21px;
  line-height: 1.12;
}

.bt-shopping-flow p {
  margin: 0;
  color: #6f5a63;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .bt-shopping-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bt-shopping-flow::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .bt-shopping-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .bt-shopping-flow article {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 12px;
  }

  .bt-shopping-flow span {
    grid-row: span 2;
  }

  .bt-shopping-flow p {
    grid-column: 2;
  }
}

.bt-faq-list details {
  padding: 18px 20px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: var(--bt-cream);
}

.bt-faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.bt-page-hero {
  position: relative;
  padding: clamp(56px, 7vw, 108px) 0 34px;
  border-bottom: var(--bt-border) solid color-mix(in srgb, var(--bt-brown) 28%, transparent);
}

.bt-page-hero.has-media {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.46fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
}

.bt-page-hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--bt-pink) 0 18px, transparent 18px 34px);
  opacity: 0.22;
  pointer-events: none;
}

.bt-page-hero > * {
  position: relative;
  z-index: 1;
}

.bt-page-hero-copy {
  min-width: 0;
}

.bt-page-hero .bt-kicker {
  max-width: none;
  font-size: 13px;
  font-weight: 950;
}

.bt-page-hero-body {
  max-width: 680px;
}

.bt-page-hero-body p {
  margin: 18px 0 0;
}

.bt-page-hero-actions {
  display: flex;
  margin-top: 22px;
  gap: 12px;
  flex-wrap: wrap;
}

.bt-page-hero-media {
  position: relative;
  margin: 0 8px 18px 0;
  aspect-ratio: 4 / 3;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: var(--bt-cream);
  box-shadow: var(--bt-shadow);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.bt-page-hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 12px;
  border: 1px solid color-mix(in srgb, white 68%, transparent);
  pointer-events: none;
}

.bt-page-hero-media img,
.bt-card-custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bt-card-custom-image {
  position: relative;
  z-index: 1;
  height: auto;
  max-height: 180px;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  border: var(--bt-border) solid color-mix(in srgb, var(--bt-ink) 76%, transparent);
  border-radius: calc(var(--bt-radius) - 6px);
  background: var(--bt-cream);
}

.bt-page-polaroid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 32px;
  padding: 22px;
  transform: rotate(-0.7deg);
}

.bt-page-polaroid p,
.bt-archive-ribbon strong {
  margin: 0;
  font-weight: 800;
}

.bt-page-polaroid-wide {
  transform: rotate(0.5deg);
}

.bt-archive-ribbon,
.bt-search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 30px;
}

.bt-search-panel form {
  min-width: min(620px, 100%);
}

.bt-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.bt-search-label {
  display: block;
  min-width: 0;
}

.bt-search-panel input[type="search"] {
  width: 100%;
  min-height: 54px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  background: var(--bt-cream);
  padding: 11px 18px;
  color: var(--bt-ink);
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--bt-pink) 9%, transparent);
  font-weight: 850;
}

.bt-search-panel .search-submit {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 0;
  padding: 0 20px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  background: var(--bt-ink);
  color: var(--bt-cream);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  font-weight: 950;
  cursor: pointer;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-search-panel .search-submit:hover,
.bt-search-panel .search-submit:focus-visible {
  transform: translate(2px, -2px);
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  background: color-mix(in srgb, var(--bt-ink) 90%, var(--bt-pink));
}

.bt-search-submit span[aria-hidden="true"] {
  font-size: 24px;
  line-height: 1;
}

.bt-contact-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.bt-contact-side,
.bt-contact-form {
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: color-mix(in srgb, var(--bt-cream) 92%, white);
  box-shadow: var(--bt-shadow);
}

.bt-contact-side {
  position: sticky;
  top: 112px;
  padding: 26px;
  background: var(--bt-soft);
  overflow: hidden;
}

.bt-contact-side::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  opacity: .32;
  pointer-events: none;
}

.bt-contact-stamp {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  background: var(--bt-cream);
  color: var(--bt-pink);
  font-weight: 950;
  transform-origin: 18% 50%;
}

.bt-contact-side h2 {
  margin: 0;
  font-family: var(--bt-display);
  font-size: 38px;
  line-height: 1.05;
}

.bt-contact-side p,
.bt-contact-side li {
  font-weight: 750;
}

.bt-contact-side ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.bt-contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.bt-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bt-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--bt-ink);
  font-weight: 950;
  transition:
    color var(--bt-motion-fast) var(--bt-ease-out),
    transform var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-contact-form label:focus-within {
  color: color-mix(in srgb, var(--bt-pink) 68%, var(--bt-ink));
  transform: translateY(-1px);
}

.bt-contact-form input,
.bt-contact-form select,
.bt-contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 14px;
  background: var(--bt-cream);
  color: var(--bt-ink);
  padding: 10px 13px;
  font-weight: 750;
  outline: 0;
  transition:
    border-color var(--bt-motion-fast) var(--bt-ease-out),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    background var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-contact-form input:focus,
.bt-contact-form select:focus,
.bt-contact-form textarea:focus {
  border-color: var(--bt-pink);
  background: color-mix(in srgb, var(--bt-cream) 86%, white);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--bt-pink) 18%, transparent);
}

.bt-contact-form textarea {
  resize: vertical;
}

.bt-form-alert {
  position: relative;
  padding: 14px 16px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 14px;
  font-weight: 900;
  animation: bt-notice-drop 420ms var(--bt-ease-out) both;
}

.bt-form-alert::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 9px;
  border: 1.5px solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  vertical-align: -1px;
}

.bt-form-alert.is-success {
  background: #c7ead8;
}

.bt-form-alert.is-error {
  background: color-mix(in srgb, var(--bt-red) 22%, var(--bt-cream));
}

.bt-contact-form.is-submitting {
  pointer-events: none;
}

.bt-contact-form.is-submitting .bt-button {
  transform: translate(0, 0) scale(.99);
  box-shadow: 3px 4px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
}

.bt-contact-form.is-submitting .bt-button::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 999px;
  animation: bt-button-spin 680ms linear infinite;
}

.bt-form-honey {
  position: absolute;
  left: -9999px;
}

.bt-content {
  max-width: 840px;
  padding-bottom: 70px;
  font-size: 18px;
}

.bt-content-wide {
  max-width: 1180px;
}

.bt-post-grid {
  width: var(--bt-wrap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto 44px;
}

.bt-post-card {
  overflow: hidden;
}

.bt-post-card a {
  display: block;
  padding: 20px;
}

.bt-single-image {
  width: var(--bt-wrap);
  margin: 0 auto 34px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  overflow: hidden;
  box-shadow: var(--bt-shadow);
}

.bt-site-footer {
  margin-top: 70px;
  padding: 56px 0 28px;
  border-top: var(--bt-border) solid var(--bt-ink);
  background:
    linear-gradient(color-mix(in srgb, var(--bt-ink) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--bt-ink) 7%, transparent) 1px, transparent 1px),
    var(--bt-cream);
  background-size: 54px 54px;
}

.bt-footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
}

.bt-brand-footer img {
  width: 58px;
  height: 58px;
}

.bt-footer-tagline {
  max-width: 420px;
  font-family: var(--bt-display);
  font-size: 28px;
  line-height: 1.1;
}

.bt-footer-intro {
  max-width: 460px;
  font-weight: 700;
}

.bt-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bt-footer-col {
  padding: 20px;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: var(--bt-radius);
  background: color-mix(in srgb, var(--bt-cream) 86%, white);
}

.bt-footer-col h2 {
  margin: 0 0 14px;
  font-family: var(--bt-display);
  font-size: 20px;
}

.bt-footer-col a {
  display: inline-flex;
  padding: 5px 0;
  font-weight: 800;
  text-decoration: none;
}

.bt-footer-bottom {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: var(--bt-border) solid color-mix(in srgb, var(--bt-ink) 24%, transparent);
  font-size: 14px;
  font-weight: 700;
}

.bt-pearl-pop {
  position: fixed;
  z-index: 9999;
  width: var(--bt-pop-size, 16px);
  height: var(--bt-pop-size, 16px);
  pointer-events: none;
  border: var(--bt-border) solid var(--bt-pearl-border);
  border-radius: 999px;
  background: var(--bt-pearl-surface);
  box-shadow: var(--bt-pearl-shadow);
  animation: bt-pearl-pop var(--bt-pop-duration, 760ms) var(--bt-ease-out) forwards;
  animation-delay: var(--bt-pop-delay, 0ms);
  transform: translate(-50%, -50%) scale(.65);
}

.bt-pearls-off .bt-pearl-pop,
.bt-cart-pearl-off .bt-pearl-pop {
  display: none;
}

.bt-floating-actions {
  position: fixed;
  z-index: 70;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  align-items: center;
  transform-origin: 100% 100%;
}

.bt-floating-panel {
  display: grid;
  grid-template-columns: 52px;
  gap: 8px;
  justify-items: center;
  max-height: 260px;
  overflow: hidden;
  transform-origin: 50% 100%;
  transition:
    max-height var(--bt-motion-base) var(--bt-ease-out),
    opacity var(--bt-motion-base) var(--bt-ease-out),
    transform var(--bt-motion-base) var(--bt-ease-pop);
}

.bt-floating-toggle,
.bt-floating-button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: var(--bt-border) solid var(--bt-ink);
  border-radius: 999px;
  color: var(--bt-cream);
  background: var(--bt-ink);
  box-shadow: 5px 6px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--bt-motion-fast) var(--bt-ease-pop),
    box-shadow var(--bt-motion-fast) var(--bt-ease-out),
    filter var(--bt-motion-fast) var(--bt-ease-out),
    opacity var(--bt-motion-base) var(--bt-ease-out);
}

.bt-floating-toggle {
  color: var(--bt-ink);
  background: var(--bt-cream);
}

.bt-floating-toggle::before {
  content: "×";
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.bt-floating-actions.is-collapsed .bt-floating-toggle::before {
  content: "+";
  font-size: 24px;
  transform: translateY(-2px);
}

.bt-floating-actions.is-collapsed .bt-floating-panel {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(.78);
}

.bt-floating-toggle:hover,
.bt-floating-toggle:focus-visible,
.bt-floating-button:hover,
.bt-floating-button:focus-visible {
  transform: translate(2px, -2px);
  box-shadow: 7px 8px 0 color-mix(in srgb, var(--bt-ink) 18%, transparent);
  filter: saturate(1.06);
}

.bt-floating-line {
  background: #06c755;
}

.bt-floating-ig {
  background: var(--bt-pink);
}

.bt-floating-fb {
  background: #1877f2;
}

.bt-floating-top {
  color: var(--bt-ink);
  background: var(--bt-cream);
}

.bt-js-ready.bt-motion-normal .bt-floating-actions {
  animation: bt-floating-actions-in 520ms var(--bt-ease-pop) both;
}

.bt-js-ready.bt-motion-normal .bt-floating-toggle,
.bt-js-ready.bt-motion-normal .bt-floating-button {
  animation: bt-floating-item-in 420ms var(--bt-ease-pop) both;
  animation-delay: calc(var(--bt-float-index, 0) * 54ms);
}

.bt-js-ready.bt-motion-normal .bt-floating-toggle { --bt-float-index: 0; }
.bt-js-ready.bt-motion-normal .bt-floating-panel > :nth-child(1) { --bt-float-index: 1; }
.bt-js-ready.bt-motion-normal .bt-floating-panel > :nth-child(2) { --bt-float-index: 2; }
.bt-js-ready.bt-motion-normal .bt-floating-panel > :nth-child(3) { --bt-float-index: 3; }
.bt-js-ready.bt-motion-normal .bt-floating-panel > :nth-child(4) { --bt-float-index: 4; }

.bt-js-ready.bt-motion-normal .bt-reveal {
  opacity: 0;
  transform: translate3d(0, var(--bt-reveal-y, 14px), 0) scale(var(--bt-reveal-scale, 1));
  filter: blur(4px);
  transition:
    opacity var(--bt-motion-page) var(--bt-ease-out),
    transform var(--bt-motion-page) var(--bt-ease-out),
    filter var(--bt-motion-page) var(--bt-ease-out);
  transition-delay: calc(var(--bt-reveal-index, 0) * var(--bt-stagger));
  will-change: opacity, transform, filter;
}

.bt-js-ready.bt-motion-normal .bt-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.bt-js-ready.bt-motion-normal.bt-hero-motion-on .bt-hero .bt-reveal {
  --bt-reveal-y: 18px;
}

.bt-scroll-reveal-off .bt-reveal,
.bt-hero-motion-off .bt-hero .bt-reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

.bt-js-ready.bt-motion-normal .bt-work-player.is-visible .bt-player-bars i {
  animation: bt-player-bar 1.45s var(--bt-ease-soft) infinite;
  animation-delay: calc(var(--bt-bar-index, 0) * 110ms);
}

.bt-js-ready.bt-motion-normal .bt-work-player.is-visible::after {
  animation: bt-progress-sweep 3.8s var(--bt-ease-soft) infinite;
}

.bt-player-bars i:nth-child(1) { --bt-bar-index: 0; }
.bt-player-bars i:nth-child(2) { --bt-bar-index: 1; }
.bt-player-bars i:nth-child(3) { --bt-bar-index: 2; }
.bt-player-bars i:nth-child(4) { --bt-bar-index: 3; }
.bt-player-bars i:nth-child(5) { --bt-bar-index: 4; }

.bt-js-ready.bt-motion-normal .bt-guide-step.is-visible::after {
  animation: bt-guide-stamp 520ms var(--bt-ease-pop) both;
  animation-delay: calc(var(--bt-reveal-index, 0) * 70ms + 120ms);
}

.bt-js-ready.bt-motion-normal .bt-guide-step.is-visible > span {
  animation: bt-guide-number-pop 520ms var(--bt-ease-pop) both;
  animation-delay: calc(var(--bt-reveal-index, 0) * 70ms);
}

.bt-js-ready.bt-motion-normal .bt-passport-cover.is-visible::after {
  animation: bt-passport-stamp 560ms var(--bt-ease-pop) both;
  animation-delay: calc(var(--bt-reveal-index, 0) * 70ms + 120ms);
}

.bt-js-ready.bt-motion-normal .bt-passport-card.is-visible::after {
  animation: bt-passport-card-stamp 560ms var(--bt-ease-pop) both;
  animation-delay: calc(var(--bt-reveal-index, 0) * 70ms + 120ms);
}

.bt-js-ready.bt-motion-normal .bt-fan-wall .bt-rhythm-card.is-visible::before {
  animation: bt-tape-settle 560ms var(--bt-ease-pop) both;
  animation-delay: calc(var(--bt-reveal-index, 0) * 60ms);
}

.bt-js-ready.bt-motion-normal .bt-contact-side.is-visible .bt-contact-stamp {
  animation: bt-stamp-wobble 680ms var(--bt-ease-pop) both;
}

.bt-js-ready.bt-motion-normal .bt-contact-form.is-visible label,
.bt-js-ready.bt-motion-normal .bt-contact-form.is-visible .bt-button {
  animation: bt-form-field-in 520ms var(--bt-ease-out) backwards;
  animation-delay: calc(var(--bt-form-index, 0) * 42ms);
}

.bt-contact-form label:nth-of-type(1) { --bt-form-index: 0; }
.bt-contact-form label:nth-of-type(2) { --bt-form-index: 1; }
.bt-contact-form label:nth-of-type(3) { --bt-form-index: 2; }
.bt-contact-form label:nth-of-type(4) { --bt-form-index: 3; }
.bt-contact-form label:nth-of-type(5) { --bt-form-index: 4; }
.bt-contact-form label:nth-of-type(6) { --bt-form-index: 5; }
.bt-contact-form .bt-button { --bt-form-index: 6; }

@keyframes bt-pearl-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  22% {
    transform: translate3d(calc(var(--bt-pearl-x, 18px) * .42), calc(var(--bt-pearl-y, -24px) * .32), 0) rotate(calc(var(--bt-pearl-r, 20deg) * .38)) scale(.96);
  }
  48% {
    transform: translate3d(var(--bt-pearl-x, 18px), var(--bt-pearl-y, -24px), 0) rotate(var(--bt-pearl-r, 20deg)) scale(1.08);
  }
  74% {
    transform: translate3d(calc(var(--bt-pearl-x, 18px) * -.52), calc(var(--bt-pearl-y, -24px) * .46), 0) rotate(calc(var(--bt-pearl-r, 20deg) * -.72)) scale(.93);
  }
}

@keyframes bt-c-sticker-float {
  0%, 100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-9px);
  }
}

@keyframes bt-c-mascot-pop {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.035);
  }
}

@keyframes bt-c-sticker-wiggle {
  0%, 100% {
    transform: rotate(var(--bt-sticker-rest, 3deg)) translateY(0);
  }
  50% {
    transform: rotate(var(--bt-sticker-tilt, -3deg)) translateY(-4px);
  }
}

@keyframes bt-c-pearl-rise {
  0% {
    transform: translateY(24px) scale(.8);
    opacity: 0;
  }
  35% {
    opacity: var(--bt-pearl-opacity, .72);
  }
  100% {
    transform: translateY(-86px) scale(1.18);
    opacity: 0;
  }
}

@keyframes bt-c-card-bounce {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-10px) rotate(-2deg);
  }
  70% {
    transform: translateY(1px) rotate(1deg);
  }
}

@keyframes bt-c-card-pop-in {
  0% {
    transform: translateY(16px) rotate(-2deg) scale(.96);
  }
  58% {
    transform: translateY(-7px) rotate(2deg) scale(1.018);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes bt-c-ribbon-slide {
  0% {
    opacity: 0;
    transform: translateX(-90px) rotate(-3deg);
  }
  42%, 78% {
    opacity: 1;
  }
  100% {
    opacity: .92;
    transform: translateX(248px) rotate(-1deg);
  }
}

@keyframes bt-friday-ribbon-arrive {
  0% {
    opacity: 0;
    transform: translate3d(22px, -12px, 0) rotate(8deg);
  }
  100% {
    opacity: .96;
    transform: translate3d(4px, 0, 0) rotate(4deg);
  }
}

@keyframes bt-friday-ribbon-drift {
  0% {
    opacity: .92;
    transform: translate3d(4px, 0, 0) rotate(4deg);
  }
  100% {
    opacity: .98;
    transform: translate3d(-4px, 4px, 0) rotate(-3deg);
  }
}

@keyframes bt-orbit-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 0) scale(1.012);
  }
}

@keyframes bt-player-bar {
  0%, 100% {
    transform: scaleY(.76);
  }
  42% {
    transform: scaleY(1.08);
  }
  68% {
    transform: scaleY(.9);
  }
}

@keyframes bt-progress-sweep {
  0%, 100% {
    background: linear-gradient(90deg, var(--bt-pink) 0 16%, var(--bt-cream) 16%);
  }
  48% {
    background: linear-gradient(90deg, var(--bt-pink) 0 68%, var(--bt-cream) 68%);
  }
}

@keyframes bt-guide-stamp {
  0% {
    opacity: 0;
    transform: translate3d(8px, -12px, 0) rotate(12deg) scale(1.35);
  }
  58% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(.94);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes bt-guide-number-pop {
  0% {
    transform: scale(.72) rotate(-8deg);
  }
  70% {
    transform: scale(1.08) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes bt-passport-stamp {
  0% {
    opacity: 0;
    transform: translate3d(8px, -18px, 0) rotate(-24deg) scale(1.42);
  }
  56% {
    opacity: .86;
    transform: translate3d(0, 0, 0) rotate(7deg) scale(.92);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes bt-passport-card-stamp {
  0% {
    opacity: 0;
    transform: translate3d(8px, -18px, 0) rotate(-24deg) scale(1.42);
  }
  56% {
    opacity: .86;
    transform: translate3d(0, 0, 0) rotate(7deg) scale(.92);
  }
  100% {
    opacity: .36;
    transform: translate3d(0, 0, 0) rotate(12deg) scale(.92);
  }
}

@keyframes bt-tape-settle {
  0% {
    transform: translate3d(0, -9px, 0) rotate(14deg) scale(.88);
  }
  64% {
    transform: translate3d(0, 1px, 0) rotate(-6deg) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(6deg) scale(1);
  }
}

@keyframes bt-stamp-wobble {
  0% {
    transform: rotate(-9deg) scale(.95);
  }
  58% {
    transform: rotate(5deg) scale(1.04);
  }
  100% {
    transform: rotate(0) scale(1);
  }
}

@keyframes bt-form-field-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@keyframes bt-pearl-pop {
  0% {
    transform: translate(-50%, -50%) scale(.65);
    opacity: 0;
  }
  18% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate(calc(-50% + var(--bt-pop-x, 36px)), calc(-50% + var(--bt-pop-y, -54px))) scale(.34);
    opacity: 0;
  }
}

@keyframes bt-cart-pulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  28% {
    transform: translate3d(-1px, -2px, 0) scale(1.045);
  }
  62% {
    transform: translate3d(0, 1px, 0) scale(.99);
  }
}

@keyframes bt-sugar-flash {
  0% {
    opacity: 0;
    transform: translateX(-35%);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(35%);
  }
}

@keyframes bt-flow-pearl {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .9;
  }
  48% {
    transform: translate3d(-3px, -5px, 0) scale(1.12);
    opacity: 1;
  }
}

@keyframes bt-notice-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, -10px, 0) scale(.99);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bt-floating-actions-in {
  0% {
    opacity: 0;
    transform: translate3d(8px, 14px, 0) scale(.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bt-floating-item-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(.86);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.bt-motion-off *,
.bt-motion-off *::before,
.bt-motion-off *::after,
.bt-motion-reduced *,
.bt-motion-reduced *::before,
.bt-motion-reduced *::after {
  animation: none !important;
  transition-duration: 0.001ms !important;
}

.bt-motion-off .bt-button:hover,
.bt-motion-off .button:hover,
.bt-motion-off .woocommerce a.button:hover,
.bt-motion-off .woocommerce button.button:hover,
.bt-motion-off .woocommerce input.button:hover,
.bt-motion-off .bt-product-card:hover,
.bt-motion-off .bt-info-card:hover,
.bt-motion-off .bt-rhythm-card:hover,
.bt-motion-off .bt-work-row:hover,
.bt-motion-off .bt-work-card:hover,
.bt-motion-off .bt-work-use-card:hover,
.bt-motion-off .bt-guide-step:hover,
.bt-motion-off .bt-fan-wall .bt-rhythm-card:hover,
.bt-motion-off .bt-contact-form label:focus-within,
.bt-motion-off .bt-floating-button:hover,
.bt-motion-reduced .bt-button:hover,
.bt-motion-reduced .button:hover,
.bt-motion-reduced .woocommerce a.button:hover,
.bt-motion-reduced .woocommerce button.button:hover,
.bt-motion-reduced .woocommerce input.button:hover,
.bt-motion-reduced .bt-product-card:hover,
.bt-motion-reduced .bt-info-card:hover,
.bt-motion-reduced .bt-rhythm-card:hover,
.bt-motion-reduced .bt-work-row:hover,
.bt-motion-reduced .bt-work-card:hover,
.bt-motion-reduced .bt-work-use-card:hover,
.bt-motion-reduced .bt-guide-step:hover,
.bt-motion-reduced .bt-fan-wall .bt-rhythm-card:hover,
.bt-motion-reduced .bt-contact-form label:focus-within,
.bt-motion-reduced .bt-floating-button:hover,
.bt-product-hover-static .bt-product-card:hover {
  transform: none;
}

@media (max-width: 1180px) and (min-width: 1081px) {
  .bt-header-inner {
    gap: 12px;
  }

  .bt-brand-text {
    max-width: 210px;
    font-size: 16px;
  }

  .bt-menu a,
  .bt-header-link {
    padding-inline: 8px;
  }

  .bt-header-actions {
    gap: 6px;
  }

  .bt-button-small {
    padding-inline: 12px;
  }

  .bt-cart-preview {
    width: min(238px, 40%);
  }
}

@media (max-width: 1080px) {
  .bt-header-inner {
    grid-template-columns: auto 1fr;
    min-height: 116px;
  }

  .bt-primary-nav {
    display: none;
  }

  .bt-drawer-toggle {
    display: inline-flex;
  }

  .bt-header-actions {
    justify-self: end;
  }

  .bt-hide-small,
  .bt-account-link {
    display: none;
  }

  .bt-hero-inner,
  .bt-section-head,
  .bt-friday-card,
  .bt-fan-card,
  .bt-follow,
  .bt-footer-top,
  .bt-works-stage,
  .bt-works-lab,
  .bt-work-usage,
  .bt-contact-stage {
    grid-template-columns: 1fr;
  }

  .bt-page-hero.has-media {
    grid-template-columns: 1fr;
  }

  .bt-page-hero-media {
    width: min(460px, 100%);
    margin: 12px 0 0;
  }

  .bt-work-library,
  .bt-work-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bt-contact-side {
    position: static;
  }

  .bt-guide-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bt-hero-board {
    min-height: 430px;
  }

  .bt-hero h1,
  .bt-page-hero h1 {
    font-size: 58px;
  }

  .bt-section h2,
  .bt-split-copy h2,
  .bt-collab h2,
  .bt-follow h2 {
    font-size: 42px;
  }

  .bt-logo-orbit {
    left: 6%;
    top: 138px;
    width: 292px;
    height: 292px;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .bt-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 24px;
  }

  .bt-hero-board {
    min-height: 500px;
  }

  .bt-hero h1 {
    font-size: 52px;
  }

  .bt-hero-body {
    max-width: 500px;
    font-size: 16px;
  }

  .bt-banner-card {
    right: 58px;
    width: min(calc(100% - 58px), 500px);
  }

  .bt-logo-orbit {
    left: 4%;
    top: 142px;
    width: 292px;
    height: 292px;
  }

  .bt-sticker-1 {
    left: 62%;
    top: 206px;
  }

  .bt-sticker-2 {
    right: 0;
    top: 292px;
  }

  .bt-sticker-3,
  .bt-cart-preview {
    display: none;
  }

}

@media (max-width: 760px) {
  :root {
    --bt-wrap: min(100vw - 32px, 1180px);
  }

  #main [id] {
    scroll-margin-top: 114px;
  }

  .bt-hide-small,
  .bt-cart-text {
    display: none;
  }

  .bt-announcement a {
    min-height: 0;
    padding: 8px 16px;
  }

  .bt-announcement-dot {
    display: none;
  }

  .bt-header-inner {
    min-height: 86px;
    gap: 8px;
  }

  .bt-brand img,
  .custom-logo {
    width: 72px;
    height: 72px;
  }

  .bt-brand-text {
    max-width: 138px;
    font-size: 14px;
    line-height: 1.1;
  }

  .bt-hero h1,
  .bt-page-hero h1 {
    font-size: clamp(34px, 9.2vw, 38px);
    line-height: 1.08;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .bt-hero-body,
  .bt-page-hero p,
  .bt-section-head p,
  .bt-split-copy p,
  .bt-friday-card p,
  .bt-fan-card p,
  .bt-collab-inner p,
  .bt-follow p,
  .bt-info-card p,
  .bt-rhythm-card p {
    font-size: 15px;
    line-height: 1.72;
  }

  .bt-page-hero-media {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .bt-card-custom-image {
    max-height: 150px;
  }

  .bt-section h2,
  .bt-split-copy h2,
  .bt-collab h2,
  .bt-follow h2 {
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.14;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .bt-hero-board {
    min-height: 430px;
  }

  .bt-banner-card {
    top: 4px;
  }

  .bt-logo-orbit {
    left: 4%;
    top: 110px;
    width: 230px;
    height: 230px;
  }

  .bt-sticker-1 {
    left: 2%;
    top: 354px;
    bottom: auto;
  }

  .bt-sticker-2,
  .bt-sticker-3,
  .bt-cart-preview {
    display: none;
  }

  .bt-card-grid,
  .bt-product-preview-grid,
  .bt-rhythm-grid,
  .bt-post-grid,
  .bt-work-library,
  .bt-work-feature-meta,
  .bt-work-usage-grid,
  .bt-footer-columns,
  .bt-guide-steps,
  .bt-form-grid,
  .bt-page-polaroid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bt-split,
  .bt-work-row {
    grid-template-columns: 1fr;
  }

  .bt-passport-cover,
  .bt-archive-ribbon,
  .bt-search-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bt-search-form {
    grid-template-columns: 1fr;
  }

  .bt-search-panel .search-submit {
    width: 100%;
  }

  .bt-work-player {
    min-height: 240px;
  }

  .bt-section-head {
    gap: 14px;
    margin-bottom: 22px;
  }

  .bt-hero {
    padding: 34px 0 42px;
  }

  .bt-hero-inner {
    gap: 22px;
  }

  .bt-page-hero {
    padding: 42px 0 26px;
  }

  .bt-page-hero::before {
    bottom: 15px;
    height: 6px;
    background-size: auto;
  }

  .bt-kicker {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .bt-button,
  .button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .bt-icon-link,
  .bt-drawer-toggle {
    width: 40px;
    height: 40px;
  }

  .bt-icon-link {
    font-size: 22px;
  }

  .bt-cart-link {
    min-height: 40px;
    padding: 7px 10px;
  }

  .bt-cart-count {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .bt-card-grid,
  .bt-product-preview-grid,
  .bt-rhythm-grid,
  .bt-work-library,
  .bt-work-usage-grid,
  .bt-guide-steps {
    gap: 14px;
  }

  .bt-info-card,
  .bt-rhythm-card,
  .bt-work-card,
  .bt-work-use-card,
  .bt-friday-card,
  .bt-fan-card,
  .bt-collab-inner,
  .bt-follow,
  .bt-page-polaroid,
  .bt-guide-ticket,
  .bt-passport-cover,
  .bt-fan-wall-head,
  .bt-archive-ribbon,
  .bt-search-panel {
    padding: 18px;
  }

  .bt-info-card,
  .bt-rhythm-card,
  .bt-guide-step {
    min-height: auto;
  }

  .bt-info-card h2,
  .bt-info-card h3,
  .bt-rhythm-card h2,
  .bt-rhythm-card h3,
  .bt-product-card h3 {
    font-size: 21px;
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .bt-card-mark,
  .bt-guide-step > span,
  .bt-rhythm-card span {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    font-size: 16px;
  }

  .bt-work-player strong,
  .bt-guide-ticket strong,
  .bt-passport-cover strong,
  .bt-fan-wall-head strong,
  .bt-page-polaroid strong,
  .bt-archive-ribbon strong {
    font-size: 25px;
    line-height: 1.14;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .bt-japan-page .bt-passport-board {
    width: 100%;
    gap: 14px;
  }

  .bt-japan-page .bt-passport-cover {
    min-height: auto;
  }

  .bt-japan-page .bt-passport-board .bt-card-grid {
    grid-template-columns: 1fr;
  }

  .bt-japan-page .bt-passport-card {
    min-height: auto;
    padding: 16px;
    gap: 10px;
  }

  .bt-japan-page .bt-passport-card h2 {
    max-width: none;
    font-size: 25px;
    line-height: 1.12;
  }

  .bt-japan-page .bt-passport-card p {
    max-width: none;
    font-size: 14px;
    line-height: 1.65;
  }

  .bt-fan-actions,
  .bt-socials-large,
  .bt-follow .bt-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .bt-socials a {
    min-height: 36px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .bt-page-polaroid {
    margin-top: 20px;
    margin-bottom: 24px;
    transform: none;
  }

  .bt-fan-wall-head::after,
  .bt-guide-step::after {
    width: 44px;
    height: 44px;
    opacity: .28;
  }

  .bt-work-feature,
  .bt-work-card,
  .bt-work-use-card {
    min-height: auto;
  }

  .bt-work-feature {
    padding: 18px;
  }

  .bt-work-filter-bar {
    gap: 8px;
  }

  .bt-work-filter {
    min-height: 40px;
    padding: 7px 13px;
    font-size: 14px;
  }

  .bt-guide-step {
    min-height: auto;
    padding: 18px;
  }

  .bt-floating-actions {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 6px;
    opacity: .92;
    transform: none;
    transition:
      opacity var(--bt-motion-base) var(--bt-ease-out),
      transform var(--bt-motion-base) var(--bt-ease-out);
  }

  .bt-floating-panel {
    grid-template-columns: 44px;
    gap: 6px;
    max-height: 210px;
  }

  .bt-js-ready.bt-motion-normal .bt-floating-actions,
  .bt-js-ready.bt-motion-normal .bt-floating-toggle,
  .bt-js-ready.bt-motion-normal .bt-floating-button {
    animation: none;
  }

  .bt-js-ready.bt-motion-normal .bt-floating-actions {
    opacity: .92;
    transform: none;
  }

  .woocommerce-cart .bt-floating-actions,
  .woocommerce-checkout .bt-floating-actions,
  .woocommerce-cart.bt-js-ready.bt-motion-normal .bt-floating-actions,
  .woocommerce-checkout.bt-js-ready.bt-motion-normal .bt-floating-actions {
    opacity: .84;
  }

  .bt-floating-toggle,
  .bt-floating-button {
    width: 44px;
    height: 44px;
    font-size: 12px;
  }

  .bt-floating-toggle::before {
    font-size: 24px;
  }

  .bt-floating-actions.is-collapsed .bt-floating-toggle::before {
    font-size: 22px;
  }

  .bt-split-media {
    min-height: 260px;
  }

  .bt-section {
    padding: 40px 0;
  }

  .bt-section.bt-follow {
    padding: 22px 20px 24px;
  }

  .bt-section.bt-page-polaroid {
    gap: 16px;
    padding: 28px 24px 30px;
  }

  .bt-section.bt-page-polaroid span {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.25;
  }

  .bt-section.bt-page-polaroid strong {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.16;
  }

  .bt-section.bt-page-polaroid p {
    margin: 0;
    font-size: 15px;
    line-height: 1.82;
  }

  .bt-section.bt-follow {
    gap: 18px;
  }

  .bt-section.bt-follow h2 {
    margin-bottom: 12px;
  }

  .bt-section.bt-follow p {
    margin: 0;
  }

  .bt-section.bt-follow .bt-socials {
    margin-top: 2px;
  }

  .bt-section.bt-follow .bt-socials a {
    padding-inline: 9px;
  }
}

/* Direction C alignment from c.html */
html {
  color: var(--bt-ink);
  background: var(--bt-soft);
}

body,
body.bt-grid-on,
body.bt-grid-off {
  color: var(--bt-ink);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, .7), transparent 22%),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(240, 117, 168, .11) 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(240, 117, 168, .11) 49px),
    var(--bt-soft);
  font-family: var(--bt-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.bt-announcement {
  display: block;
  border-bottom: 1.5px solid var(--bt-line);
  color: var(--bt-ink);
  background: rgba(255, 254, 250, .88);
}

.bt-announcement a {
  min-height: 38px;
  color: var(--bt-ink);
}

.bt-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1.5px solid var(--bt-line);
  background: rgba(255, 254, 250, .88);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.bt-site-header.is-scrolled {
  background: rgba(255, 254, 250, .92);
  box-shadow: none;
}

.bt-header-inner {
  width: auto;
  min-height: 73px;
  margin: 0;
  padding: 14px clamp(18px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bt-brand {
  gap: 10px;
  font-family: var(--bt-display);
  font-size: 20px;
  font-weight: 600;
}

.bt-brand img,
.custom-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.bt-site-header.is-scrolled .bt-brand img,
.bt-site-header.is-scrolled .custom-logo {
  transform: none;
}

.bt-brand-text {
  display: inline;
  max-width: 240px;
  font-size: 20px;
  line-height: 1.15;
}

.bt-primary-nav {
  display: block;
  justify-self: center;
}

.bt-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.bt-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.bt-cart-link,
.bt-button-small,
.bt-menu a,
.bt-header-link,
.bt-account-link,
.bt-icon-link,
.bt-drawer-toggle,
.bt-socials a,
.bt-work-filter {
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--bt-pink);
  border-radius: 999px;
  color: var(--bt-pink-hot);
  background: var(--bt-white);
  box-shadow: 6px 6px 0 rgba(240, 117, 168, .18);
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.bt-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.bt-cart-link:hover,
.bt-menu a:hover,
.bt-header-link:hover,
.bt-account-link:hover,
.bt-icon-link:hover,
.bt-drawer-toggle:hover,
.bt-socials a:hover,
.bt-work-filter:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 9px 9px 0 rgba(240, 117, 168, .2);
}

.bt-button:active,
.button:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active {
  transform: translate(0, 0) scale(.99);
  box-shadow: 4px 4px 0 rgba(240, 117, 168, .16);
}

.bt-button:not(.bt-button-secondary):not(.bt-button-ink),
.bt-button-small {
  color: var(--bt-pink-hot);
  background: linear-gradient(180deg, var(--bt-white), var(--bt-soft));
}

.bt-button-secondary,
.bt-button-ink {
  color: var(--bt-pink-hot);
  background: var(--bt-white);
}

.bt-cart-link {
  min-height: 34px;
  padding: 7px 13px;
  gap: 7px;
  color: var(--bt-ink);
  font-weight: 560;
  box-shadow: 4px 4px 0 rgba(240, 117, 168, .16);
}

.bt-cart-link > span:first-child {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  border: 1.5px solid var(--bt-pink);
  border-radius: 999px;
  color: transparent;
  background: var(--bt-pearl-surface);
  box-shadow: 1px 2px 0 rgba(240, 117, 168, .16);
}

.bt-cart-count {
  min-width: 22px;
  height: 22px;
  color: #fff;
  background: var(--bt-pink);
  font-size: 12px;
}

.bt-hero {
  min-height: calc(100vh - 73px);
  padding: clamp(40px, 7vw, 86px) 0;
  display: grid;
  align-items: center;
  border-bottom: 0;
}

.bt-hero-inner {
  width: var(--bt-wrap);
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.bt-kicker {
  width: fit-content;
  min-height: 34px;
  margin: 0;
  padding: 7px 13px;
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--bt-pink);
  border-radius: 999px;
  color: var(--bt-ink);
  background: var(--bt-white);
  box-shadow: 4px 4px 0 rgba(240, 117, 168, .16);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.25;
  text-transform: none;
}

.bt-kicker-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--bt-pink);
  border-radius: 999px;
  background: var(--bt-white);
  box-shadow: 2px 2px 0 rgba(240, 117, 168, .16);
}

.bt-hero h1,
.bt-page-hero h1 {
  max-width: 680px;
  margin: 26px 0 20px;
  font-family: var(--bt-display);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 500;
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.bt-hero h1 span,
.bt-page-hero h1,
.bt-sticker-text {
  display: inline;
  padding: 0 .14em .05em;
  border: 2px solid var(--bt-pink);
  border-radius: 8px;
  background: var(--bt-white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 6px 6px 0 rgba(240, 117, 168, .18);
  text-shadow: none;
}

.bt-hero h1 span {
  display: inline-block;
  margin: 0 0 .14em;
}

.bt-hero-body,
.bt-page-hero p,
.bt-section-head p,
.bt-split-copy p,
.bt-friday-card p,
.bt-collab-inner p,
.bt-follow p,
.bt-info-card p,
.bt-rhythm-card p {
  color: var(--bt-muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.bt-hero-body {
  max-width: 590px;
  margin: 0;
}

.bt-hero-actions,
.bt-section-action,
.bt-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.bt-hero-board {
  position: relative;
  min-height: 590px;
  border: 2px solid var(--bt-pink);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .28), rgba(255, 255, 255, .28)),
    repeating-linear-gradient(0deg, transparent 0 44px, rgba(101, 66, 59, .12) 45px),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(101, 66, 59, .12) 45px),
    var(--bt-pink);
  box-shadow: 10px 12px 0 rgba(240, 117, 168, .24);
  overflow: hidden;
}

.bt-banner-card {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  z-index: 2;
  width: auto;
  padding: 8px;
  border: 2px solid var(--bt-pink);
  background: var(--bt-white);
  box-shadow: 7px 7px 0 rgba(240, 117, 168, .22);
  transform: rotate(-2deg);
  animation: bt-c-sticker-float 4.8s ease-in-out infinite;
}

.bt-hero-board:hover .bt-banner-card {
  transform: rotate(-1deg) translateY(-9px);
  box-shadow: 7px 7px 0 rgba(240, 117, 168, .22);
}

.bt-banner-card img {
  width: 100%;
  aspect-ratio: 1707 / 282;
  object-fit: cover;
}

.bt-logo-orbit {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 3;
  width: 254px;
  height: 254px;
  display: grid;
  place-items: center;
  border: 2px solid var(--bt-pink);
  border-radius: 50%;
  background: var(--bt-white);
  box-shadow: 8px 10px 0 rgba(240, 117, 168, .24);
  transform: translate(-50%, -50%);
  animation: bt-c-mascot-pop 4.2s ease-in-out infinite;
}

.bt-logo-orbit img {
  width: 70%;
}

.bt-sticker {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  border: 2px solid var(--bt-pink);
  border-radius: 7px;
  color: var(--bt-ink);
  background: var(--bt-white);
  box-shadow: 5px 6px 0 rgba(240, 117, 168, .18);
  font-family: var(--bt-display);
  font-weight: 700;
  animation: bt-c-sticker-wiggle 3.2s ease-in-out infinite;
}

.bt-sticker:hover {
  box-shadow: 5px 6px 0 rgba(240, 117, 168, .18);
}

.bt-sticker-1 {
  left: 42px;
  top: auto;
  right: auto;
  bottom: 72px;
  transform: rotate(5deg);
}

.bt-sticker-2 {
  right: 38px;
  top: auto;
  left: auto;
  bottom: 96px;
  background: var(--bt-mint);
  transform: rotate(-6deg);
  animation-delay: .4s;
}

.bt-sticker-3 {
  left: 54%;
  top: auto;
  right: auto;
  bottom: 168px;
  display: block;
  background: var(--bt-blue);
  transform: rotate(4deg);
  animation-delay: .8s;
}

.bt-pearl-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.bt-pearl-field span,
.bt-js-ready.bt-motion-normal.bt-hero-motion-on .bt-pearl-field span {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--bt-pink);
  border-radius: 50%;
  background: var(--bt-white);
  box-shadow: none;
  opacity: 1;
  animation: bt-c-pearl-rise 4s ease-in-out infinite;
}

.bt-pearl-field span:nth-child(1) {
  left: 110px;
  top: auto;
  bottom: 120px;
}

.bt-pearl-field span:nth-child(2) {
  left: auto;
  right: 140px;
  top: auto;
  bottom: 190px;
  animation-delay: .6s;
}

.bt-pearl-field span:nth-child(3) {
  left: 150px;
  top: auto;
  bottom: 220px;
  animation-delay: 1.1s;
}

.bt-pearl-conveyor,
.pearl-conveyor {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  z-index: 6;
  height: 42px;
  border: 2px solid var(--bt-pink);
  border-radius: 999px;
  background: rgba(255, 254, 250, .82);
  box-shadow: 5px 6px 0 rgba(240, 117, 168, .16);
  overflow: hidden;
}

.bt-pearl-conveyor i,
.pearl-conveyor i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--bt-pink);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, .95) 0 18%, transparent 19%),
    linear-gradient(145deg, #8c5d4f, #3f2525);
  transform: translate(-42px, -50%);
  animation: bt-c-pearl-to-cart 4.2s ease-in-out infinite;
}

.bt-pearl-conveyor i:nth-child(2),
.pearl-conveyor i:nth-child(2) {
  animation-delay: .7s;
}

.bt-pearl-conveyor i:nth-child(3),
.pearl-conveyor i:nth-child(3) {
  animation-delay: 1.4s;
}

.bt-pearl-conveyor span,
.pearl-conveyor span {
  position: absolute;
  right: 10px;
  top: 50%;
  padding: 7px 11px;
  border: 1.5px solid var(--bt-pink);
  border-radius: 999px;
  color: var(--bt-pink-hot);
  background: var(--bt-white);
  font: 800 12px / 1 var(--bt-body);
  transform: translateY(-50%);
}

.bt-cart-preview {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 92px;
  width: min(320px, calc(100% - 68px));
  padding: 14px 16px;
  border: 2px solid var(--bt-pink);
  border-radius: 8px;
  color: var(--bt-ink);
  background: rgba(255, 254, 250, .9);
  box-shadow: 5px 6px 0 rgba(240, 117, 168, .16);
}

.bt-cart-preview strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bt-pink-hot);
  font: 800 13px / 1.25 var(--bt-body);
}

.bt-cart-preview div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--bt-muted);
  font-size: 13px;
  line-height: 1.45;
}

.bt-section {
  width: var(--bt-wrap);
  padding: 76px 0;
  border-top: 1.5px solid var(--bt-soft-line);
}

.bt-section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .48fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.bt-section-head::after {
  display: none;
}

.bt-section h2,
.bt-page-hero h1,
.bt-split-copy h2,
.bt-collab h2,
.bt-follow h2,
.woocommerce div.product .product_title,
.bt-related-products-head h2 {
  margin: 0;
  color: var(--bt-ink);
  font-family: var(--bt-display);
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

.bt-card-grid,
.bt-product-preview-grid,
.bt-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bt-product-preview-grid {
  justify-content: stretch;
}

.bt-info-card,
.bt-product-card,
.bt-rhythm-card,
.bt-post-card,
.bt-friday-card,
.bt-fan-card,
.bt-collab-inner,
.bt-follow,
.bt-product-story-note,
.bt-checkout-helper,
.bt-empty-cart-copy,
.bt-thank-you-note,
.bt-member-guide-head,
.bt-footer-col,
.bt-empty-shop,
.bt-related-empty,
.bt-page-polaroid,
.bt-guide-ticket,
.bt-guide-step,
.bt-passport-cover,
.bt-passport-card,
.bt-fan-wall-head,
.bt-archive-ribbon,
.bt-search-panel {
  border: 2px solid var(--bt-pink);
  border-radius: 8px;
  color: var(--bt-ink);
  background: var(--bt-white);
  box-shadow: 6px 6px 0 rgba(240, 117, 168, .15);
}

.bt-info-card:hover,
.bt-rhythm-card:hover,
.bt-work-row:hover,
.bt-work-card:hover,
.bt-work-use-card:hover,
.bt-passport-card:hover,
.bt-fan-wall .bt-rhythm-card:hover,
.bt-product-hover-standard .bt-product-card:hover,
.bt-product-hover-playful .bt-product-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 6px 6px 0 rgba(240, 117, 168, .15);
}

.bt-info-card {
  min-height: 220px;
  padding: 18px;
}

.bt-info-card h2,
.bt-info-card h3,
.bt-rhythm-card h2,
.bt-rhythm-card h3,
.bt-product-card h3 {
  color: var(--bt-ink);
  font-family: var(--bt-display);
  font-weight: 700;
}

.bt-card-mark,
.bt-guide-step > span,
.bt-rhythm-card span,
.bt-flow-step span {
  border: 1.5px solid var(--bt-pink);
  color: var(--bt-pink-hot);
  background: var(--bt-soft);
}

.bt-product-card {
  min-height: 330px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bt-product-thumb {
  flex: 1;
  min-height: 150px;
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--bt-soft-line);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--bt-soft), var(--bt-cream));
  overflow: hidden;
}

.bt-product-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: rgba(255, 255, 255, .45);
  opacity: 1;
}

.bt-product-thumb img {
  position: relative;
  z-index: 1;
  width: 60%;
  height: auto;
  object-fit: contain;
}

.bt-product-card h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.16;
}

.bt-product-card p {
  min-height: 38px;
  color: var(--bt-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.bt-product-meta {
  color: var(--bt-muted);
}

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

.bt-badge,
.woocommerce span.onsale,
.bt-status-badge {
  border: 1.5px solid var(--bt-pink);
  border-radius: 999px;
  color: var(--bt-pink-hot);
  background: var(--bt-white);
  box-shadow: 4px 4px 0 rgba(240, 117, 168, .16);
  font: 700 12px / 1 var(--bt-body);
  letter-spacing: 0;
}

.bt-badge::before,
.woocommerce span.onsale::before {
  display: none;
}

.bt-product-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.bt-product-actions .button,
.bt-product-actions .added_to_cart,
.bt-product-actions .bt-loop-buy-now {
  min-height: 40px;
  padding: 9px 10px;
  border: 2px solid var(--bt-pink);
  border-radius: 999px;
  background: var(--bt-pink);
  color: #fff;
  box-shadow: 4px 4px 0 rgba(240, 117, 168, .18);
  font-weight: 800;
}

.bt-product-actions .bt-loop-buy-now {
  color: var(--bt-pink-hot);
  background: var(--bt-white);
}

.bt-product-actions .bt-text-link,
.bt-product-actions .added_to_cart {
  color: var(--bt-pink-hot);
  font-weight: 700;
}

.bt-friday-card,
.bt-fan-card,
.bt-follow {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
}

.bt-product-story-note::before {
  border: 2px solid var(--bt-pink);
  border-radius: 7px;
  background: var(--bt-white);
  box-shadow: 4px 5px 0 rgba(240, 117, 168, .14);
}

.bt-video-placeholder,
.bt-split-media,
.bt-page-hero-media,
.bt-single-image,
.bt-work-player {
  border: 2px solid var(--bt-pink);
  border-radius: 8px;
  background: var(--bt-white);
  box-shadow: 8px 8px 0 rgba(240, 117, 168, .14);
}

.bt-video-placeholder img,
.bt-split-media img,
.bt-page-hero-media img {
  border-radius: 6px;
}

.bt-split {
  width: var(--bt-wrap);
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.bt-split-media {
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
}

.bt-split-media img {
  width: min(70%, 260px);
}

.bt-site-footer {
  margin-top: 70px;
  padding: 56px 0 28px;
  border-top: 1.5px solid var(--bt-soft-line);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, .55), transparent 22%),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(240, 117, 168, .11) 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(240, 117, 168, .11) 49px),
    var(--bt-soft);
}

.bt-footer-top,
.bt-footer-bottom {
  width: var(--bt-wrap);
}

.bt-footer-col {
  padding: 18px;
}

.bt-footer-bottom {
  border-top: 1.5px solid var(--bt-soft-line);
}

.bt-floating-toggle,
.bt-floating-button {
  border: 2px solid var(--bt-pink);
  color: var(--bt-pink-hot);
  background: var(--bt-white);
  box-shadow: 5px 6px 0 rgba(240, 117, 168, .18);
}

.bt-floating-line {
  background: var(--bt-mint);
}

.bt-floating-ig {
  color: #fff;
  background: var(--bt-pink);
}

.bt-floating-fb {
  color: #fff;
  background: var(--bt-blue);
}

.bt-floating-top {
  color: var(--bt-pink-hot);
  background: var(--bt-white);
}

input,
textarea,
select,
.search-field {
  border: 1.5px solid var(--bt-pink);
  border-radius: 8px;
  color: var(--bt-ink);
  background: var(--bt-white);
}

@keyframes bt-c-pearl-to-cart {
  0% {
    left: 0;
    transform: translate(-42px, -50%) scale(.86);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  72% {
    left: calc(100% - 90px);
    transform: translate(0, -50%) scale(1);
    opacity: 1;
  }
  100% {
    left: 100%;
    transform: translate(0, -50%) scale(.7);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .bt-primary-nav {
    display: none;
  }

  .bt-drawer-toggle {
    display: inline-flex;
  }

  .bt-hero-inner,
  .bt-section-head,
  .bt-friday-card,
  .bt-fan-card,
  .bt-follow,
  .bt-split,
  .bt-footer-top {
    grid-template-columns: 1fr;
  }

  .bt-card-grid,
  .bt-product-preview-grid,
  .bt-rhythm-grid,
  .bt-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --bt-wrap: min(100vw - 36px, 1240px);
  }

  .bt-header-inner {
    min-height: 64px;
    padding: 10px clamp(18px, 4vw, 52px);
  }

  .bt-brand {
    font-size: 17px;
  }

  .bt-brand img,
  .custom-logo {
    width: 42px;
    height: 42px;
  }

  .bt-brand-text {
    max-width: 152px;
    font-size: 17px;
  }

  .bt-header-actions .bt-button-small {
    padding: 7px 10px;
    font-size: 13px;
  }

  .bt-cart-link {
    max-width: 62px;
    padding: 7px 10px;
    overflow: hidden;
  }

  .bt-cart-text {
    display: none;
  }

  .bt-hero {
    min-height: auto;
    padding: 40px 0;
  }

  .bt-hero-inner,
  .bt-hero-inner > * {
    min-width: 0;
    max-width: 100%;
  }

  .bt-hero h1,
  .bt-page-hero h1 {
    font-size: 42px;
  }

  .bt-hero-board {
    min-height: 470px;
  }

  .bt-logo-orbit {
    width: 218px;
    height: 218px;
  }

  .bt-sticker-1 {
    left: 28px;
    bottom: 72px;
  }

  .bt-sticker-2 {
    right: 24px;
    bottom: 114px;
  }

  .bt-pearl-field span:nth-child(1) {
    left: 76px;
    bottom: 132px;
  }

  .bt-pearl-field span:nth-child(2) {
    right: 96px;
    bottom: 194px;
  }

  .bt-pearl-field span:nth-child(3) {
    left: 116px;
    bottom: 220px;
  }

  .bt-pearl-conveyor,
  .pearl-conveyor {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .bt-cart-preview {
    right: 22px;
    bottom: 82px;
    width: min(300px, calc(100% - 44px));
  }

  .bt-card-grid,
  .bt-product-preview-grid,
  .bt-rhythm-grid,
  .bt-footer-columns {
    grid-template-columns: 1fr;
  }

  .bt-section {
    padding: 42px 0;
  }
}

.wp-block-woocommerce-coming-soon.woocommerce-coming-soon-default,
.wp-block-cover:has(.woocommerce-coming-soon-banner) {
  color: var(--bt-ink) !important;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, .7), transparent 22%),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(240, 117, 168, .11) 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(240, 117, 168, .11) 49px),
    var(--bt-soft) !important;
}

.woocommerce-coming-soon-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 14px clamp(18px, 4vw, 52px) !important;
  border-bottom: 1.5px solid var(--bt-line);
  background: rgba(255, 254, 250, .88) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
}

.woocommerce-coming-soon-header .wp-block-site-title {
  color: var(--bt-ink);
  font-family: var(--bt-display);
  font-size: 20px;
  font-weight: 600;
}

.woocommerce-coming-soon-social-login {
  gap: 10px !important;
}

.woocommerce-coming-soon-header .wp-block-social-links {
  gap: 8px;
}

.woocommerce-coming-soon-header .wp-block-social-link,
.woocommerce-coming-soon-header .wp-block-social-link a,
.woocommerce-coming-soon-header .wp-block-loginout,
.woocommerce-coming-soon-header .wp-block-loginout a {
  border-radius: 999px !important;
}

.woocommerce-coming-soon-header .wp-block-social-link {
  width: 36px;
  height: 36px;
  display: inline-grid !important;
  place-items: center;
  border: 1.5px solid var(--bt-pink);
  color: var(--bt-ink) !important;
  background: var(--bt-white) !important;
  box-shadow: 4px 4px 0 rgba(240, 117, 168, .16);
}

.woocommerce-coming-soon-header .wp-block-loginout {
  min-height: 40px;
  padding: 9px 14px !important;
  border: 2px solid var(--bt-pink);
  color: var(--bt-pink-hot) !important;
  background: var(--bt-white) !important;
  box-shadow: 4px 4px 0 rgba(240, 117, 168, .16);
  font-family: var(--bt-body) !important;
  font-weight: 700;
}

.woocommerce-coming-soon-header .wp-block-loginout a {
  color: var(--bt-pink-hot) !important;
}

.woocommerce-coming-soon-banner-container {
  min-height: calc(100vh - 74px);
  padding: calc(74px + clamp(40px, 7vw, 86px)) clamp(18px, 5vw, 72px) clamp(40px, 7vw, 86px) !important;
}

.woocommerce-coming-soon-banner {
  width: fit-content;
  max-width: 920px;
  margin-inline: auto !important;
  padding: 0 .14em .05em !important;
  border: 2px solid var(--bt-pink);
  border-radius: 8px;
  color: var(--bt-ink) !important;
  background: var(--bt-white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 6px 6px 0 rgba(240, 117, 168, .18);
  font-family: var(--bt-display) !important;
  font-size: clamp(38px, 5.5vw, 70px) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  text-wrap: balance;
}

.woocommerce-coming-soon-powered-by-woo {
  color: var(--bt-muted);
}

@media (max-width: 640px) {
  .woocommerce-coming-soon-header {
    padding: 10px 18px !important;
  }

  .woocommerce-coming-soon-header .wp-block-site-title {
    font-size: 17px;
  }

  .woocommerce-coming-soon-banner {
    font-size: 42px !important;
  }
}

/* Requested structural removals */
.bt-hero-inner {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.bt-hero-board {
  width: min(100%, 760px);
  margin-inline: auto;
}

.bt-site-footer {
  padding: 28px 0;
}

.bt-footer-bottom {
  width: var(--bt-wrap);
  margin-top: 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  justify-items: center;
  justify-content: center;
  border-top: 0;
  text-align: center;
}

.bt-footer-block {
  min-width: 0;
}

.bt-footer-bottom p {
  margin: 0;
}

.bt-footer-social {
  width: 100%;
  display: grid;
  justify-items: center;
}

.bt-footer-bottom .bt-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.bt-footer-social-list {
  width: min(100%, 310px);
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  justify-items: stretch;
  list-style: none;
}

.bt-footer-social-list.is-horizontal {
  width: min(100%, 1180px);
  max-width: min(100%, 1180px);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, .8vw, 12px);
}

.bt-footer-social-list.is-horizontal li {
  flex: 1 1 0;
  min-width: 0;
}

.bt-footer-social-list.is-horizontal .bt-footer-social-pill {
  width: 100%;
  min-width: 0;
  grid-template-columns: clamp(25px, 2.2vw, 30px) minmax(0, 1fr);
  gap: clamp(7px, .9vw, 13px);
  padding-right: clamp(9px, 1.1vw, 18px);
  container-type: inline-size;
}

.bt-footer-social-list.is-vertical {
  width: min(100%, 310px);
}

.bt-footer-social-pill {
  min-height: 42px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 4px 18px 4px 4px;
  border: 1.5px solid var(--bt-ink);
  border-radius: 999px;
  color: var(--bt-ink);
  background: color-mix(in srgb, var(--bt-white) 88%, var(--bt-cream));
  box-shadow: none;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.bt-footer-social-pill:hover {
  border-color: var(--bt-pink);
  background: var(--bt-white);
  transform: translateY(-1px);
}

.bt-footer-social-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 999px;
  background: var(--bt-brown);
}

.bt-footer-social-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  display: block;
  background: var(--bt-cream);
  -webkit-mask: var(--bt-footer-social-icon) center / contain no-repeat;
  mask: var(--bt-footer-social-icon) center / contain no-repeat;
}

.bt-footer-social-facebook .bt-footer-social-icon::before {
  inset: 6px 9px 6px 10px;
}

.bt-footer-social-instagram {
  --bt-footer-social-icon: url("../icons/social/instagram.svg");
}

.bt-footer-social-facebook {
  --bt-footer-social-icon: url("../icons/social/facebook.svg");
}

.bt-footer-social-youtube {
  --bt-footer-social-icon: url("../icons/social/youtube.svg");
}

.bt-footer-social-tiktok {
  --bt-footer-social-icon: url("../icons/social/tiktok.svg");
}

.bt-footer-social-text {
  overflow: hidden;
  color: var(--bt-ink);
  font-size: clamp(11px, .82vw, 15px);
  font-weight: 650;
  letter-spacing: clamp(.02em, .2vw, .08em);
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@supports (font-size: 1cqw) {
  .bt-footer-social-list.is-horizontal .bt-footer-social-text {
    font-size: clamp(11px, 5.2cqw, 15px);
    letter-spacing: clamp(.02em, .24cqw, .08em);
  }
}

.bt-footer-legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bt-footer-info {
  display: grid;
  gap: 6px;
  justify-items: center;
  margin: 0;
  color: var(--bt-ink);
  font-size: clamp(14px, .9vw, 16px);
  font-weight: 800;
  line-height: 1.55;
}

.bt-footer-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.bt-footer-info dt,
.bt-footer-info dd {
  margin: 0;
}

.bt-footer-info dt {
  color: color-mix(in srgb, var(--bt-ink) 74%, white);
}

.bt-footer-info-separator {
  color: var(--bt-pink-hot);
  font-weight: 950;
}

.bt-footer-legal-menu a {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--bt-ink);
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.bt-footer-legal-menu a:hover {
  color: var(--bt-pink-hot);
  transform: translateY(-1px);
  box-shadow: none;
}

.bt-footer-copyright {
  color: var(--bt-ink);
  font-weight: 700;
}

@media (max-width: 640px) {
  .bt-hero-board {
    width: 100%;
  }

  .bt-footer-bottom {
    display: grid;
    justify-items: center;
  }

  .bt-footer-info {
    gap: 4px;
    font-size: 13px;
    line-height: 1.5;
  }

  .bt-footer-info-row {
    gap: 6px;
  }

  .bt-passport-cover::after {
    width: 66px;
    height: 66px;
  }

  .bt-footer-social-list,
  .bt-footer-social-list.is-horizontal,
  .bt-footer-social-list.is-vertical {
    width: min(100%, 310px);
    max-width: min(100%, 310px);
    display: grid;
    gap: 10px;
    justify-items: stretch;
  }

  .bt-footer-social-list li,
  .bt-footer-social-list.is-horizontal li {
    width: 100%;
  }

  .bt-footer-social-list.is-horizontal .bt-footer-social-pill {
    width: 100%;
    min-width: 0;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 13px;
    padding-right: 18px;
    container-type: normal;
  }

  .bt-footer-social-list.is-horizontal .bt-footer-social-text,
  .bt-footer-social-text {
    min-width: 0;
    font-size: 15px;
    letter-spacing: .08em;
    text-overflow: ellipsis;
  }
}

/* Floating action mic launcher */
.bt-floating-actions {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  gap: 10px;
}

.bt-floating-toggle {
  position: relative;
  width: 70px;
  height: 70px;
  padding: 0;
  overflow: hidden;
  border-color: var(--bt-pink);
  background: var(--bt-white);
}

.bt-floating-toggle::before,
.bt-floating-actions.is-collapsed .bt-floating-toggle::before {
  content: none;
}

.bt-floating-toggle::after {
  content: "×";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--bt-pink);
  border-radius: 999px;
  color: var(--bt-pink-hot);
  background: rgba(255, 255, 255, .92);
  box-shadow: 2px 2px 0 rgba(240, 117, 168, .16);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  opacity: 0;
  transform: scale(.72);
  transition:
    opacity var(--bt-motion-fast) var(--bt-ease-out),
    transform var(--bt-motion-fast) var(--bt-ease-pop);
}

.bt-floating-actions:not(.is-collapsed) .bt-floating-toggle::after {
  opacity: 1;
  transform: scale(1);
}

.bt-floating-mic {
  --bt-floating-mic-size: 66px;
  width: var(--bt-floating-mic-size);
  height: var(--bt-floating-mic-size);
  display: block;
  background-image: url("../images/floating-mic-sprite.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: calc(var(--bt-floating-mic-size) * 7) var(--bt-floating-mic-size);
  animation: bt-floating-mic-idle 1320ms steps(7) infinite;
}

.bt-floating-toggle:hover .bt-floating-mic,
.bt-floating-toggle:focus-visible .bt-floating-mic {
  animation-duration: 820ms;
}

.bt-floating-panel > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity var(--bt-motion-base) var(--bt-ease-out),
    transform var(--bt-motion-base) var(--bt-ease-pop);
  transition-delay: calc(var(--bt-float-index, 0) * 42ms);
}

.bt-floating-actions.is-collapsed .bt-floating-panel > * {
  opacity: 0;
  transform: translateY(8px) scale(.86);
  transition-delay: 0ms;
}

.bt-motion-off .bt-floating-mic,
.bt-motion-reduced .bt-floating-mic {
  animation: none !important;
  background-position: 0 0;
}

@keyframes bt-floating-mic-idle {
  to {
    background-position: calc(var(--bt-floating-mic-size) * -7) 0;
  }
}

@media (max-width: 640px) {
  .bt-floating-actions {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 6px;
  }

  .woocommerce-cart .bt-floating-actions,
  .woocommerce-checkout .bt-floating-actions,
  .woocommerce-cart.bt-js-ready.bt-motion-normal .bt-floating-actions,
  .woocommerce-checkout.bt-js-ready.bt-motion-normal .bt-floating-actions {
    opacity: .92;
  }

  .bt-floating-toggle {
    width: 56px;
    height: 56px;
  }

  .bt-floating-mic {
    --bt-floating-mic-size: 54px;
  }

  .bt-floating-toggle::after {
    right: 3px;
    bottom: 3px;
    width: 18px;
    height: 18px;
    font-size: 13px;
  }

  .bt-floating-panel {
    grid-template-columns: 44px;
    gap: 6px;
    max-height: 218px;
  }

  .bt-floating-toggle,
  .bt-floating-button {
    font-size: 12px;
  }

  .bt-floating-button {
    width: 44px;
    height: 44px;
  }
}

.bt-floating-toggle,
.bt-floating-toggle:hover,
.bt-floating-toggle:focus-visible {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.bt-floating-toggle::after,
.bt-floating-actions:not(.is-collapsed) .bt-floating-toggle::after {
  content: none;
}

/* Home hero layout tuning */
.home .bt-hero,
.front-page .bt-hero {
  min-height: auto;
  padding: clamp(32px, 4.8vw, 64px) 0 clamp(44px, 5.4vw, 78px);
  align-items: start;
}

.home .bt-hero-inner,
.front-page .bt-hero-inner {
  width: min(calc(100vw - clamp(36px, 7vw, 112px)), 1120px);
  grid-template-columns: 1fr;
  justify-content: center;
  gap: 0;
}

.home .bt-hero-board,
.front-page .bt-hero-board {
  width: 100%;
  max-width: 1120px;
  min-height: 0;
  aspect-ratio: 2 / 1;
  margin-inline: auto;
}

.home .bt-banner-card,
.front-page .bt-banner-card {
  left: clamp(24px, 4.2vw, 52px);
  right: clamp(24px, 4.2vw, 52px);
  top: clamp(22px, 3vw, 34px);
  padding: clamp(6px, .9vw, 10px);
  display: block;
  color: inherit;
  text-decoration: none;
  transform: rotate(-1.4deg);
}

.home .bt-logo-orbit,
.home .bt-sticker,
.home .bt-cart-preview,
.home .bt-pearl-conveyor,
.front-page .bt-logo-orbit,
.front-page .bt-sticker,
.front-page .bt-cart-preview,
.front-page .bt-pearl-conveyor {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.home .bt-banner-card:focus-visible,
.home .bt-logo-orbit:focus-visible,
.home .bt-sticker:focus-visible,
.home .bt-cart-preview:focus-visible,
.home .bt-pearl-conveyor:focus-visible,
.front-page .bt-banner-card:focus-visible,
.front-page .bt-logo-orbit:focus-visible,
.front-page .bt-sticker:focus-visible,
.front-page .bt-cart-preview:focus-visible,
.front-page .bt-pearl-conveyor:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .92);
  outline-offset: 3px;
}

.home .bt-logo-orbit,
.front-page .bt-logo-orbit {
  left: 27%;
  top: 52%;
  width: clamp(160px, 16vw, 188px);
  height: clamp(160px, 16vw, 188px);
}

.home .bt-sticker,
.front-page .bt-sticker {
  max-width: min(260px, 28vw);
  padding: 12px 16px;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.25;
  text-align: center;
}

.home .bt-sticker-1,
.front-page .bt-sticker-1 {
  left: clamp(42px, 6vw, 74px);
  top: 43%;
  bottom: auto;
}

.home .bt-sticker-2,
.front-page .bt-sticker-2 {
  right: clamp(44px, 6vw, 76px);
  top: 45%;
  bottom: auto;
}

.home .bt-sticker-3,
.front-page .bt-sticker-3 {
  left: 52%;
  top: 51%;
  bottom: auto;
}

.home .bt-cart-preview,
.front-page .bt-cart-preview {
  right: clamp(44px, 6vw, 76px);
  bottom: clamp(82px, 8.8vw, 104px);
  width: min(360px, 34%);
  padding: 14px 16px;
}

.home .bt-pearl-conveyor,
.home .pearl-conveyor,
.front-page .bt-pearl-conveyor,
.front-page .pearl-conveyor {
  left: clamp(36px, 5vw, 62px);
  right: clamp(36px, 5vw, 62px);
  bottom: clamp(28px, 3.6vw, 40px);
}

@media (max-width: 980px) {
  .home .bt-hero-inner,
  .front-page .bt-hero-inner {
    width: min(calc(100vw - 40px), 860px);
  }

  .home .bt-hero-board,
  .front-page .bt-hero-board {
    aspect-ratio: 1.62 / 1;
  }

  .home .bt-logo-orbit,
  .front-page .bt-logo-orbit {
    left: 28%;
    top: 64%;
    width: clamp(168px, 24vw, 210px);
    height: clamp(168px, 24vw, 210px);
  }

  .home .bt-cart-preview,
  .front-page .bt-cart-preview {
    width: min(330px, 40%);
  }
}

@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden;
  }

  .bt-site-header {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .home .bt-header-inner,
  .front-page .bt-header-inner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 9px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .home .bt-brand,
  .front-page .bt-brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 8px;
  }

  .home .bt-brand img,
  .home .custom-logo,
  .front-page .bt-brand img,
  .front-page .custom-logo {
    width: 36px;
    height: 36px;
  }

  .home .bt-brand-text,
  .front-page .bt-brand-text {
    max-width: 132px;
    font-size: 16px;
    line-height: 1.12;
  }

  .home .bt-header-actions,
  .front-page .bt-header-actions {
    position: absolute;
    top: 50%;
    right: 18px;
    justify-self: end;
    flex: 0 0 auto;
    gap: 5px;
    transform: translateY(-50%);
  }

  .bt-account-link,
  .home .bt-account-link,
  .front-page .bt-account-link {
    display: none !important;
  }

  .bt-site-header .bt-header-actions > .bt-icon-link {
    display: none !important;
  }

  .home .bt-icon-link,
  .home .bt-drawer-toggle,
  .front-page .bt-icon-link,
  .front-page .bt-drawer-toggle {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
  }

  .home .bt-cart-link,
  .front-page .bt-cart-link {
    width: 48px;
    max-width: 48px;
    min-height: 38px;
    padding: 6px 7px;
    gap: 4px;
  }

  .home .bt-cart-count,
  .front-page .bt-cart-count {
    min-width: 19px;
    width: 19px;
    height: 19px;
    font-size: 11px;
  }

  .home .bt-hero,
  .front-page .bt-hero {
    padding: 24px 0 36px;
  }

  .home .bt-hero-inner,
  .front-page .bt-hero-inner {
    width: min(calc(100vw - 56px), 390px);
  }

  .home .bt-hero-board,
  .front-page .bt-hero-board {
    min-height: 0;
    aspect-ratio: auto;
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: hidden;
  }

  .home .bt-pearl-field,
  .front-page .bt-pearl-field {
    display: none;
  }

  .home .bt-banner-card,
  .home .bt-logo-orbit,
  .home .bt-sticker,
  .home .bt-cart-preview,
  .home .bt-pearl-conveyor,
  .home .pearl-conveyor,
  .front-page .bt-banner-card,
  .front-page .bt-logo-orbit,
  .front-page .bt-sticker,
  .front-page .bt-cart-preview,
  .front-page .bt-pearl-conveyor,
  .front-page .pearl-conveyor {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    transform: none !important;
    animation: none !important;
  }

  .home .bt-banner-card,
  .front-page .bt-banner-card {
    padding: 6px;
    order: 1;
  }

  .home .bt-logo-orbit,
  .front-page .bt-logo-orbit {
    order: 2;
    justify-self: center;
    width: 148px;
    height: 148px;
  }

  .home .bt-sticker,
  .front-page .bt-sticker {
    min-height: 46px;
    padding: 10px 12px;
    display: grid;
    place-items: center;
    font-size: 14px;
  }

  .home .bt-sticker-1,
  .front-page .bt-sticker-1 {
    order: 3;
  }

  .home .bt-sticker-2,
  .front-page .bt-sticker-2 {
    order: 4;
  }

  .home .bt-sticker-3,
  .front-page .bt-sticker-3 {
    order: 5;
  }

  .home .bt-cart-preview,
  .front-page .bt-cart-preview {
    order: 6;
    display: block !important;
    padding: 12px 14px;
  }

  .home .bt-cart-preview div,
  .front-page .bt-cart-preview div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 12px;
  }

  .home .bt-cart-preview div span:last-child,
  .front-page .bt-cart-preview div span:last-child {
    text-align: left;
  }

  .home .bt-pearl-conveyor,
  .home .pearl-conveyor,
  .front-page .bt-pearl-conveyor,
  .front-page .pearl-conveyor {
    order: 7;
    height: 40px;
    overflow: hidden;
  }

  .home .bt-pearl-conveyor span,
  .home .pearl-conveyor span,
  .front-page .bt-pearl-conveyor span,
  .front-page .pearl-conveyor span {
    display: inline-flex;
    right: 8px;
    padding: 6px 9px;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .home .bt-brand-text,
  .front-page .bt-brand-text {
    max-width: 112px;
    font-size: 15px;
  }

  .home .bt-icon-link,
  .home .bt-drawer-toggle,
  .front-page .bt-icon-link,
  .front-page .bt-drawer-toggle {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .home .bt-cart-link,
  .front-page .bt-cart-link {
    width: 50px;
    max-width: 50px;
  }
}

/* Header search icon refinement */
.bt-header-actions > .bt-icon-link {
  width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  box-sizing: border-box;
}

.bt-header-actions > .bt-icon-link span[aria-hidden="true"] {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
  color: transparent;
  font-size: 0;
  line-height: 0;
  transform: none;
}

.bt-header-actions > .bt-icon-link span[aria-hidden="true"]::before,
.bt-header-actions > .bt-icon-link span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  display: block;
}

.bt-header-actions > .bt-icon-link span[aria-hidden="true"]::before {
  left: 2px;
  top: 2px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--bt-pink-hot);
  border-radius: 999px;
}

.bt-header-actions > .bt-icon-link span[aria-hidden="true"]::after {
  right: 3px;
  bottom: 4px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--bt-pink-hot);
  transform: rotate(45deg);
  transform-origin: center;
}

/* Home featured product card tuning */
.bt-featured .bt-product-preview-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 296px));
  align-items: stretch;
  justify-content: start;
}

.bt-featured .bt-product-card {
  min-height: 520px;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
}

.bt-featured .bt-product-thumb {
  flex: 0 0 auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: block;
  background: var(--bt-soft);
}

.bt-featured .bt-product-thumb::after {
  display: none;
}

.bt-featured .bt-product-thumb img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bt-featured .bt-badge {
  z-index: 2;
}

.bt-featured .bt-product-card-body {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 8px;
}

.bt-featured .bt-product-card h3 {
  min-height: calc(1.22em * 2);
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bt-featured .bt-product-card p {
  min-height: calc(1.45em * 2);
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bt-featured .bt-product-meta {
  min-height: 38px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-top: 2px;
}

.bt-featured .bt-price {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.2;
}

.bt-featured .bt-price del,
.bt-featured .bt-price ins {
  display: inline-block;
}

.bt-featured .bt-product-actions {
  align-self: end;
  gap: 8px;
  margin-top: 10px;
  padding-top: 0;
}

.bt-featured .bt-product-actions .button,
.bt-featured .bt-product-actions .added_to_cart,
.bt-featured .bt-product-actions .bt-loop-buy-now {
  min-height: 42px;
  padding: 8px 10px;
  font-size: 13px;
}

.bt-featured .bt-product-actions .added_to_cart,
.bt-featured .bt-product-actions .bt-text-link {
  font-size: 13px;
}

@media (max-width: 640px) {
  .bt-featured .bt-product-preview-grid {
    grid-template-columns: 1fr;
  }

  .bt-featured .bt-product-card {
    min-height: 0;
  }
}

/* Keep the lower Friday section minimal while hero CTAs stay visible. */
.home .bt-friday .bt-kicker,
.front-page .bt-friday .bt-kicker,
.home .bt-friday .bt-button,
.front-page .bt-friday .bt-button {
  display: none !important;
}

/* Compact homepage product cards */
.bt-featured .bt-product-card {
  min-height: 430px;
  gap: 12px;
  padding: 14px;
}

.bt-featured .bt-product-card-body {
  grid-template-rows: auto auto 1fr;
  gap: 10px;
}

.bt-featured .bt-product-card p,
.bt-product-card .bt-text-link {
  display: none !important;
}

.bt-featured .bt-product-meta {
  min-height: 46px;
  margin-top: 0;
}

.bt-featured .bt-product-actions {
  align-self: end;
  margin-top: 6px;
}

.bt-related-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  align-items: stretch;
  margin-top: 18px;
}

.bt-related-products .bt-product-card {
  min-height: 430px;
}

.bt-related-products .bt-product-card-body {
  min-width: 0;
}

.bt-related-products .bt-product-actions {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: end;
  margin-top: auto;
  padding-top: 12px;
}

.bt-related-products .bt-product-actions .button,
.bt-related-products .bt-product-actions .added_to_cart,
.bt-related-products .bt-product-actions .bt-loop-buy-now {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  max-height: 46px;
  padding: 8px 10px;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.15;
}

/* Product-card action lock: keep WooCommerce buttons inside every custom card. */
.bt-product-card,
.woocommerce ul.products li.product.bt-product-list-item .bt-product-card {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.bt-product-card-body,
.woocommerce ul.products li.product.bt-product-list-item .bt-product-card-body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.bt-product-card .bt-product-actions,
.woocommerce ul.products li.product.bt-product-list-item .bt-product-actions {
  position: static !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  align-items: center !important;
  align-self: end !important;
  justify-content: stretch !important;
  margin-top: auto !important;
  padding-top: 12px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.bt-product-card .bt-product-actions .button,
.bt-product-card .bt-product-actions .bt-loop-buy-now,
.woocommerce ul.products li.product.bt-product-list-item .bt-product-actions .button,
.woocommerce ul.products li.product.bt-product-list-item .bt-product-actions .bt-loop-buy-now {
  position: relative !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 40px !important;
  max-height: 46px !important;
  margin: 0 !important;
  padding: 8px 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.bt-product-card .bt-product-actions .add_to_cart_button,
.woocommerce ul.products li.product.bt-product-list-item .bt-product-actions .add_to_cart_button {
  grid-column: 1 !important;
}

.bt-product-card .bt-product-actions .bt-loop-buy-now,
.woocommerce ul.products li.product.bt-product-list-item .bt-product-actions .bt-loop-buy-now {
  grid-column: 2 !important;
}

.bt-featured .bt-product-thumb {
  aspect-ratio: 1 / 1;
}

.bt-featured .bt-product-thumb img {
  object-fit: cover;
}

.bt-price {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 9px;
  align-items: baseline;
  line-height: 1.2;
}

.bt-price del,
.bt-price ins {
  display: inline-flex;
  gap: 2px;
  align-items: baseline;
}

.bt-price del {
  color: color-mix(in srgb, var(--bt-ink) 54%, white);
  font-size: 13px;
  font-weight: 750;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.bt-price del::before {
  content: "定價:";
  color: color-mix(in srgb, var(--bt-ink) 62%, white);
  text-decoration: none;
}

.bt-price ins {
  color: #d84376;
  font-size: 19px;
  font-weight: 950;
  text-decoration: none;
}

.bt-price ins::before {
  content: "特價:";
  color: #d84376;
  font-size: 14px;
  font-weight: 900;
}

.bt-price > .amount,
.bt-price > .woocommerce-Price-amount {
  color: var(--bt-ink);
  font-size: 18px;
  font-weight: 950;
}

@media (max-width: 640px) {
  .bt-featured .bt-product-card {
    min-height: 0;
  }

  .bt-related-product-grid {
    grid-template-columns: 1fr;
  }

  .bt-related-products .bt-product-card {
    min-height: 0;
  }
}

/* Header logo-only refinement */
.bt-site-header .bt-brand-text {
  display: none !important;
}

.bt-site-header .bt-brand {
  gap: 0;
}

.bt-site-header .bt-brand img,
.bt-site-header .custom-logo {
  width: 64px;
  height: 64px;
}

.bt-site-header .bt-header-inner {
  min-height: 82px;
}

@media (max-width: 980px) {
  .bt-site-header .bt-drawer-toggle {
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-color: var(--bt-pink);
    color: #fff;
    background: var(--bt-pink);
  }

  .bt-site-header .bt-drawer-toggle:hover {
    color: #fff;
    background: var(--bt-pink-hot);
  }

  .bt-site-header .bt-drawer-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    background: #fff;
  }
}

@media (max-width: 640px) {
  .bt-site-header .bt-header-inner {
    min-height: 70px;
  }

  .bt-site-header .bt-brand img,
  .bt-site-header .custom-logo,
  .home .bt-brand img,
  .home .custom-logo,
  .front-page .bt-brand img,
  .front-page .custom-logo {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 700px) {
  .home .bt-header-inner,
  .front-page .bt-header-inner,
  .bt-site-header .bt-header-inner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .home .bt-header-actions,
  .front-page .bt-header-actions,
  .bt-site-header .bt-header-actions {
    position: static;
    flex: 0 0 auto;
    margin-left: auto;
    gap: 4px;
    transform: none;
  }

  .bt-site-header .bt-header-link.bt-hide-small {
    width: 74px;
    max-width: 74px;
    min-height: 42px;
    padding: 0 9px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 74px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .bt-site-header .bt-header-actions > .bt-icon-link {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    display: inline-grid !important;
    flex: 0 0 42px;
  }

  .bt-site-header .bt-header-actions > .bt-icon-link span[aria-hidden="true"] {
    width: 18px;
    height: 18px;
  }

  .bt-site-header .bt-cart-link {
    width: 54px;
    max-width: 54px;
    min-height: 46px;
    padding: 7px 8px;
    flex: 0 0 54px;
  }

  .bt-site-header .bt-cart-count {
    min-width: 21px;
    width: 21px;
    height: 21px;
    font-size: 12px;
  }

  .bt-site-header .bt-drawer-toggle {
    display: inline-flex;
    flex: 0 0 46px;
  }
}

/* Home hero floating CTA refinement */
.home .bt-sticker,
.front-page .bt-sticker {
  display: inline-grid !important;
  place-items: center;
}

@keyframes bt-mobile-hero-sticker-float {
  0%, 100% {
    translate: 0 0;
    rotate: var(--bt-sticker-rest, 3deg);
  }

  50% {
    translate: 0 -5px;
    rotate: var(--bt-sticker-tilt, -3deg);
  }
}

@media (max-width: 700px) {
  .home .bt-hero,
  .front-page .bt-hero {
    padding: 22px 0 34px;
  }

  .home .bt-hero-inner,
  .front-page .bt-hero-inner {
    width: min(calc(100vw - 28px), 420px);
  }

  .home .bt-hero-board,
  .front-page .bt-hero-board {
    position: relative;
    height: clamp(500px, 136vw, 560px);
    min-height: 0;
    padding: 0;
    display: block;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .home .bt-banner-card,
  .front-page .bt-banner-card {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 16px;
    width: auto;
    max-width: none;
    padding: 6px;
    transform: rotate(-1.4deg) !important;
    animation: bt-c-sticker-float 4.8s ease-in-out infinite !important;
  }

  .home .bt-logo-orbit,
  .front-page .bt-logo-orbit {
    position: absolute;
    left: 50%;
    top: 40%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%) !important;
    animation: none !important;
  }

  .home .bt-sticker,
  .front-page .bt-sticker {
    position: absolute;
    width: auto;
    max-width: 148px;
    min-height: 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    transform: none !important;
    translate: 0 0;
    rotate: var(--bt-sticker-rest, 3deg);
    animation: bt-mobile-hero-sticker-float 3.2s ease-in-out infinite !important;
  }

  .home .bt-sticker-1,
  .front-page .bt-sticker-1 {
    left: 20px;
    top: 53%;
    right: auto;
    bottom: auto;
    --bt-sticker-rest: -5deg;
    --bt-sticker-tilt: 3deg;
  }

  .home .bt-sticker-2,
  .front-page .bt-sticker-2 {
    right: 18px;
    top: 63%;
    left: auto;
    bottom: auto;
    --bt-sticker-rest: 5deg;
    --bt-sticker-tilt: -3deg;
  }

  .home .bt-sticker-3,
  .front-page .bt-sticker-3 {
    left: 34%;
    top: 73%;
    right: auto;
    bottom: auto;
    --bt-sticker-rest: -2deg;
    --bt-sticker-tilt: 4deg;
  }

  .home .bt-cart-preview,
  .front-page .bt-cart-preview {
    display: none !important;
  }

  .home .bt-pearl-conveyor,
  .home .pearl-conveyor,
  .front-page .bt-pearl-conveyor,
  .front-page .pearl-conveyor {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    height: 40px;
    max-width: none;
    transform: none !important;
    animation: none !important;
  }
}

/* Current header and home ticker refinement */
.bt-site-header .bt-brand img,
.bt-site-header .custom-logo,
.home .bt-brand img,
.home .custom-logo,
.front-page .bt-brand img,
.front-page .custom-logo {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.bt-site-header .bt-header-inner {
  min-height: 101px;
}

.bt-hero-ticker.ticker {
  overflow: hidden;
  border-block: 1.5px solid rgba(240, 117, 168, .28);
  background: rgba(255, 254, 250, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.bt-hero-ticker .ticker-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  padding: 14px 0;
  color: var(--bt-ink);
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
  animation: bt-hero-ticker-slide 24s linear infinite;
}

.bt-hero-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bt-hero-ticker img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(240, 117, 168, .18));
}

@keyframes bt-hero-ticker-slide {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-hero-ticker .ticker-track {
    animation: none;
  }
}

@media (max-width: 700px) {
  .bt-site-header .bt-header-inner {
    min-height: 101px;
  }

  .bt-site-header .bt-brand {
    flex: 0 0 85px;
  }

  .bt-site-header .bt-brand img,
  .bt-site-header .custom-logo,
  .home .bt-brand img,
  .home .custom-logo,
  .front-page .bt-brand img,
  .front-page .custom-logo {
    width: 85px;
    height: 85px;
  }

  .bt-site-header .bt-header-actions > .bt-icon-link span[aria-hidden="true"] {
    width: 18px;
    height: 18px;
  }

  .bt-site-header .bt-header-actions > .bt-icon-link span[aria-hidden="true"]::before {
    left: 1px;
    top: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--bt-pink-hot);
    border-radius: 999px;
  }

  .bt-site-header .bt-header-actions > .bt-icon-link span[aria-hidden="true"]::after {
    right: auto;
    bottom: auto;
    left: 12px;
    top: 12px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--bt-pink-hot);
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .bt-hero-ticker .ticker-track {
    gap: 30px;
    padding: 11px 0;
    font-size: 13px;
    animation-duration: 22s;
  }

  .bt-hero-ticker img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .bt-site-header .bt-header-inner {
    padding-inline: 8px;
    gap: 6px;
  }

  .bt-site-header .bt-header-actions {
    gap: 3px;
  }

  .bt-site-header .bt-header-link.bt-hide-small {
    width: 64px;
    max-width: 64px;
    padding-inline: 6px;
    flex-basis: 64px;
    font-size: 10px;
  }

  .bt-site-header .bt-header-actions > .bt-icon-link {
    width: 38px;
    height: 38px;
    min-height: 38px;
    flex-basis: 38px;
  }

  .bt-site-header .bt-cart-link {
    width: 48px;
    max-width: 48px;
    flex-basis: 48px;
    padding-inline: 6px;
  }

  .bt-site-header .bt-drawer-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* Light hand-drawn doodle accents */
:root {
  --bt-doodle-pearls: url("../images/doodles/doodle-pearls.png");
  --bt-doodle-cup: url("../images/doodles/doodle-boba-cup.png");
  --bt-doodle-sparkles: url("../images/doodles/doodle-sparkles.png");
  --bt-doodle-squiggle: url("../images/doodles/doodle-squiggle.png");
  --bt-doodle-plane: url("../images/doodles/doodle-plane.png");
  --bt-doodle-heart: url("../images/doodles/doodle-heart.png");
  --bt-doodle-music: url("../images/doodles/doodle-music.png");
  --bt-doodle-pompom: url("../images/doodles/doodle-pompom.png");
  --bt-doodle-bow: url("../images/doodles/doodle-bow.png");
  --bt-doodle-stamp: url("../images/doodles/doodle-stamp.png");
  --bt-doodle-soundwave: url("../images/doodles/doodle-soundwave.png");
}

.bt-page-hero,
.bt-section,
.woocommerce-message,
.bt-product-card {
  position: relative;
}

.bt-page-hero::after,
.home .bt-featured::before,
.front-page .bt-featured::before,
.home .bt-friday::after,
.front-page .bt-friday::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.bt-page-hero::after {
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(14px, 3vw, 36px);
  width: clamp(44px, 6.2vw, 82px);
  aspect-ratio: 1;
  background-image: var(--bt-doodle-sparkles);
  opacity: .48;
  transform: rotate(10deg);
}

.home .bt-featured::before,
.front-page .bt-featured::before {
  right: clamp(12px, 4vw, 56px);
  top: clamp(16px, 4vw, 42px);
  width: clamp(56px, 8vw, 96px);
  aspect-ratio: 1;
  background-image: var(--bt-doodle-cup);
  opacity: .36;
  transform: rotate(8deg);
}

.home .bt-friday::after,
.front-page .bt-friday::after {
  left: clamp(10px, 4vw, 58px);
  bottom: clamp(12px, 3vw, 34px);
  width: clamp(58px, 8vw, 108px);
  aspect-ratio: 1.24;
  background-image: var(--bt-doodle-plane);
  opacity: .34;
  transform: rotate(-8deg);
}

.bt-section > *,
.bt-page-hero > * {
  position: relative;
  z-index: 1;
}

.bt-section-head h2 {
  position: relative;
  display: inline-block;
}

.bt-section-head h2::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -.24em;
  height: .18em;
  min-height: 10px;
  background: var(--bt-doodle-squiggle) center / contain no-repeat;
  opacity: .42;
  pointer-events: none;
}

.bt-content ul:not(.products):not(.tabs) li,
.entry-content ul:not(.products):not(.tabs) li,
.woocommerce div.product .woocommerce-Tabs-panel ul li {
  list-style: none;
  position: relative;
  padding-left: 1.6em;
}

.bt-content ul:not(.products):not(.tabs) li::before,
.entry-content ul:not(.products):not(.tabs) li::before,
.woocommerce div.product .woocommerce-Tabs-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 1.05em;
  height: 1.05em;
  background: var(--bt-doodle-pearls) center / contain no-repeat;
  opacity: .72;
}

.bt-button,
.bt-button-small,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button {
  position: relative;
  overflow: visible;
}

.bt-button::before,
.bt-button-small::before,
.woocommerce a.button::before,
.woocommerce button.button::before,
.woocommerce input.button::before,
.single_add_to_cart_button::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: -11px;
  top: -12px;
  width: 24px;
  height: 24px;
  background: var(--bt-doodle-sparkles) center / contain no-repeat;
  opacity: 0;
  transform: scale(.68) rotate(-8deg);
  pointer-events: none;
  transition:
    opacity var(--bt-motion-fast) var(--bt-ease-out),
    transform var(--bt-motion-fast) var(--bt-ease-pop);
}

.bt-button:hover::before,
.bt-button:focus-visible::before,
.bt-button-small:hover::before,
.bt-button-small:focus-visible::before,
.woocommerce a.button:hover::before,
.woocommerce a.button:focus-visible::before,
.woocommerce button.button:hover::before,
.woocommerce button.button:focus-visible::before,
.woocommerce input.button:hover::before,
.woocommerce input.button:focus-visible::before,
.single_add_to_cart_button:hover::before,
.single_add_to_cart_button:focus-visible::before {
  opacity: .82;
  transform: scale(1) rotate(7deg);
}

.bt-product-card.is-adding::after,
.woocommerce-message::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  background: var(--bt-doodle-sparkles) center / contain no-repeat;
  pointer-events: none;
}

.bt-product-card.is-adding::after {
  right: 14px;
  top: 12px;
  animation: bt-doodle-pop 620ms var(--bt-ease-pop) both;
}

.woocommerce-message::after {
  right: 18px;
  top: 50%;
  opacity: .56;
  transform: translateY(-50%) rotate(8deg);
}

@keyframes bt-doodle-pop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(.6) rotate(-14deg);
  }
  58% {
    opacity: .92;
    transform: translateY(-4px) scale(1.08) rotate(8deg);
  }
  100% {
    opacity: .72;
    transform: translateY(0) scale(1) rotate(4deg);
  }
}

@media (max-width: 700px) {
  .bt-page-hero::after {
    width: 42px;
    right: 14px;
    bottom: 10px;
    opacity: .34;
  }

  .home .bt-featured::before,
  .front-page .bt-featured::before,
  .home .bt-friday::after,
  .front-page .bt-friday::after {
    width: 54px;
    opacity: .24;
  }

  .bt-section-head h2::after {
    opacity: .28;
  }

  .woocommerce-message::after {
    width: 26px;
    height: 26px;
    right: 10px;
    opacity: .38;
  }
}

/* Expanded doodle language across all templates */
.bt-global-doodles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bt-global-doodle {
  position: absolute;
  display: block;
  width: var(--bt-global-doodle-size, 82px);
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--bt-global-doodle-opacity, .16);
  filter: drop-shadow(0 12px 18px rgba(240, 117, 168, .12));
  transform: rotate(var(--bt-global-doodle-rot, 0deg));
  animation: bt-global-doodle-float var(--bt-global-doodle-dur, 8s) ease-in-out infinite;
}

.bt-global-doodle-pearls {
  left: max(-18px, 2vw);
  top: 30vh;
  --bt-global-doodle-size: 74px;
  --bt-global-doodle-rot: -8deg;
  background-image: var(--bt-doodle-pearls);
}

.bt-global-doodle-heart {
  right: clamp(18px, 5vw, 78px);
  top: 18vh;
  --bt-global-doodle-size: 52px;
  --bt-global-doodle-opacity: .18;
  --bt-global-doodle-rot: 8deg;
  --bt-global-doodle-dur: 9s;
  background-image: var(--bt-doodle-heart);
  animation-delay: -2s;
}

.bt-global-doodle-pompom {
  right: -30px;
  top: 58vh;
  --bt-global-doodle-size: 106px;
  --bt-global-doodle-opacity: .12;
  --bt-global-doodle-rot: 12deg;
  --bt-global-doodle-dur: 10s;
  background-image: var(--bt-doodle-pompom);
  animation-delay: -4s;
}

.bt-global-doodle-plane {
  left: 12vw;
  bottom: 8vh;
  --bt-global-doodle-size: 132px;
  --bt-global-doodle-opacity: .12;
  --bt-global-doodle-rot: -4deg;
  --bt-global-doodle-dur: 11s;
  background-image: var(--bt-doodle-plane);
  animation-delay: -1.4s;
}

.bt-site-header,
.bt-site-footer,
.bt-page-hero,
.bt-section {
  position: relative;
}

.bt-site-header,
.bt-site-footer {
  z-index: 2;
}

.bt-page-hero,
.bt-section {
  z-index: 1;
}

@keyframes bt-global-doodle-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(var(--bt-global-doodle-rot, 0deg));
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(calc(var(--bt-global-doodle-rot, 0deg) + 3deg));
  }
}

.bt-faq-list details {
  position: relative;
  overflow: hidden;
}

.bt-faq-list details::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 9px;
  width: 38px;
  height: 38px;
  background: var(--bt-doodle-heart) center / contain no-repeat;
  opacity: .11;
  transform: rotate(9deg);
  pointer-events: none;
}

.bt-faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 12px;
  align-items: center;
  list-style: none;
}

.bt-faq-list summary::-webkit-details-marker {
  display: none;
}

.bt-faq-list summary::after {
  content: "";
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--bt-pink);
  border-radius: 999px;
  background:
    var(--bt-doodle-bow) center / 20px 20px no-repeat,
    rgba(255, 255, 255, .74);
  box-shadow: 2px 3px 0 rgba(240, 117, 168, .14);
  transform: rotate(-8deg);
  transition: transform var(--bt-motion-fast) var(--bt-ease-pop);
}

.bt-faq-list details[open] summary::after {
  transform: rotate(10deg) scale(1.08);
}

.bt-shopping-flow article:nth-child(1)::before,
.bt-shopping-flow article:nth-child(2)::before,
.bt-shopping-flow article:nth-child(3)::before,
.bt-shopping-flow article:nth-child(4)::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .28;
  pointer-events: none;
}

.bt-shopping-flow article:nth-child(1)::before { background-image: var(--bt-doodle-heart); }
.bt-shopping-flow article:nth-child(2)::before { background-image: var(--bt-doodle-pearls); }
.bt-shopping-flow article:nth-child(3)::before { background-image: var(--bt-doodle-stamp); }
.bt-shopping-flow article:nth-child(4)::before { background-image: var(--bt-doodle-sparkles); }

.bt-product-card::before,
.woocommerce ul.products li.product .bt-product-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 13px;
  top: 13px;
  width: 34px;
  height: 34px;
  background: var(--bt-doodle-heart) center / contain no-repeat;
  opacity: .18;
  pointer-events: none;
  transform: rotate(7deg);
}

.bt-product-card:hover::before,
.woocommerce ul.products li.product .bt-product-card:hover::before {
  opacity: .34;
  transform: rotate(-5deg) scale(1.05);
}

.bt-contact-stage::before,
.bt-contact-routes::after,
.bt-passport-board::before,
.bt-works-lab::after,
.bt-work-library-section::after,
.bt-search-panel::after,
.bt-archive-ribbon::after,
.bt-page-polaroid::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.bt-contact-stage::before {
  right: clamp(12px, 5vw, 68px);
  top: clamp(16px, 4vw, 48px);
  width: clamp(54px, 8vw, 92px);
  aspect-ratio: 1;
  background-image: var(--bt-doodle-bow);
  opacity: .22;
  transform: rotate(8deg);
}

.bt-contact-routes::after {
  left: clamp(12px, 4vw, 54px);
  bottom: clamp(10px, 3vw, 28px);
  width: clamp(62px, 8vw, 118px);
  aspect-ratio: 1.24;
  background-image: var(--bt-doodle-plane);
  opacity: .18;
  transform: rotate(-7deg);
}

.bt-passport-board::before {
  right: clamp(12px, 5vw, 72px);
  top: clamp(12px, 4vw, 48px);
  width: clamp(60px, 8vw, 110px);
  aspect-ratio: 1;
  background-image: var(--bt-doodle-stamp);
  opacity: .2;
  transform: rotate(8deg);
}

.bt-works-lab::after,
.bt-work-library-section::after {
  right: clamp(10px, 4vw, 58px);
  bottom: clamp(12px, 3vw, 34px);
  width: clamp(54px, 7vw, 88px);
  aspect-ratio: 1;
  background-image: var(--bt-doodle-music);
  opacity: .2;
  transform: rotate(-9deg);
}

.bt-search-panel::after,
.bt-archive-ribbon::after {
  right: clamp(12px, 5vw, 68px);
  top: clamp(14px, 4vw, 48px);
  width: clamp(52px, 7vw, 86px);
  aspect-ratio: 1;
  background-image: var(--bt-doodle-sparkles);
  opacity: .22;
  transform: rotate(10deg);
}

.bt-page-polaroid::after {
  left: clamp(10px, 4vw, 56px);
  bottom: clamp(10px, 3vw, 30px);
  width: clamp(76px, 12vw, 164px);
  aspect-ratio: 7.7;
  background-image: var(--bt-doodle-soundwave);
  opacity: .18;
}

.bt-checkout-helper::after {
  content: "";
  width: 28px;
  height: 28px;
  margin-left: auto;
  background: var(--bt-doodle-pearls) center / contain no-repeat;
  opacity: .42;
}

.bt-kicker::before,
.woocommerce div.product .product_meta::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 7px;
  vertical-align: -5px;
  background: var(--bt-doodle-sparkles) center / contain no-repeat;
  opacity: .56;
}

@media (max-width: 700px) {
  .bt-global-doodle {
    opacity: .09;
    animation: none;
  }

  .bt-global-doodle-pompom,
  .bt-global-doodle-plane {
    display: none;
  }

  .bt-global-doodle-pearls {
    left: -18px;
    top: 38vh;
    --bt-global-doodle-size: 52px;
  }

  .bt-global-doodle-heart {
    right: 12px;
    top: 22vh;
    --bt-global-doodle-size: 38px;
  }

  .bt-faq-list summary {
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .bt-faq-list summary::after {
    width: 26px;
    height: 26px;
    background-size: 17px 17px;
  }

  .bt-product-card::before,
  .woocommerce ul.products li.product .bt-product-card::before {
    width: 27px;
    height: 27px;
    opacity: .15;
  }

  .bt-contact-stage::before,
  .bt-contact-routes::after,
  .bt-passport-board::before,
  .bt-works-lab::after,
  .bt-work-library-section::after,
  .bt-search-panel::after,
  .bt-archive-ribbon::after,
  .bt-page-polaroid::after {
    opacity: .12;
    width: 48px;
  }

  .bt-page-polaroid::after {
    width: 86px;
  }
}

/* Keep desktop dropdowns above hero artwork and doodle layers */
.bt-site-header {
  z-index: 120;
  isolation: isolate;
  overflow: visible;
}

.bt-primary-nav,
.bt-menu,
.bt-menu > .menu-item {
  position: relative;
  z-index: 121;
}

.bt-menu .sub-menu {
  z-index: 240;
}

/* Keep the social launcher pinned to the viewport, even though it is printed near the footer. */
.bt-floating-actions,
.bt-js-ready.bt-motion-normal .bt-floating-actions {
  position: fixed;
  z-index: 90;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}

@media (max-width: 640px) {
  .bt-floating-actions,
  .bt-js-ready.bt-motion-normal .bt-floating-actions {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* News/archive pages need extra breathing room because the sticker title can be tall. */
.bt-archive .bt-archive-hero {
  display: block;
  padding-top: clamp(62px, 7vw, 104px);
  padding-bottom: 42px;
}

.bt-archive .bt-archive-hero .bt-page-hero-copy {
  display: grid;
  gap: 14px;
  align-items: start;
}

.bt-archive .bt-archive-hero .bt-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0;
}

.bt-archive .bt-archive-hero h1 {
  display: inline-block;
  width: fit-content;
  max-width: min(100%, 720px);
  margin: 0;
  line-height: 1.05;
}

.bt-archive .bt-archive-hero .bt-page-hero-body {
  max-width: min(100%, 760px);
}

.bt-archive .bt-archive-hero .bt-page-hero-body,
.bt-archive .bt-archive-hero .bt-page-hero-body p {
  margin: 0;
}

.bt-archive .bt-archive-hero::before {
  bottom: 16px;
}

.bt-archive-ribbon {
  justify-content: center;
  min-height: 132px;
  padding: clamp(22px, 4vw, 46px);
  text-align: center;
}

.bt-archive-ribbon > span {
  display: none !important;
}

.bt-archive-ribbon strong {
  width: min(100%, 900px);
  margin: 0 auto;
}

@media (max-width: 700px) {
  .bt-archive .bt-archive-hero {
    padding-top: 42px;
    padding-bottom: 32px;
  }

  .bt-archive .bt-archive-hero .bt-page-hero-copy {
    gap: 12px;
  }

  .bt-archive .bt-archive-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
    line-height: 1.08;
  }

  .bt-archive .bt-archive-hero .bt-page-hero-body p {
    font-size: 15px;
    line-height: 1.7;
  }

  .bt-archive-ribbon {
    min-height: auto;
    margin-top: 22px;
    padding: 22px 18px;
    text-align: left;
  }

  .bt-archive-ribbon strong {
    font-size: 22px;
    line-height: 1.28;
  }
}

/* Full-width pages still need editorial text scale, not hero-sized blocks. */
.bt-page-full .bt-page-hero {
  padding-top: clamp(52px, 5.6vw, 82px);
  padding-bottom: 34px;
}

.bt-page-full .bt-page-hero h1 {
  max-width: min(100%, 760px);
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.08;
}

.bt-page-full .bt-page-polaroid-wide {
  width: min(100%, 980px);
  grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-top: 24px;
  margin-bottom: 26px;
  padding: clamp(26px, 4vw, 42px);
  transform: none;
}

.bt-page-full .bt-page-polaroid-wide span {
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.25;
}

.bt-page-full .bt-page-polaroid-wide strong {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.1;
  text-wrap: balance;
}

.bt-page-full .bt-page-polaroid-wide p {
  max-width: 46ch;
  margin: 0;
  color: var(--bt-ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.8;
}

.bt-page-full .bt-content-wide {
  width: min(calc(100% - 40px), 980px);
  max-width: 980px;
  margin-inline: auto;
  padding-bottom: 64px;
  color: var(--bt-ink);
  font-size: 16px;
  line-height: 1.9;
}

.bt-page-full .bt-content-wide > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.bt-page-full .bt-content-wide p {
  margin-top: 0;
  margin-bottom: 18px;
}

.bt-page-full .bt-content-wide h2,
.bt-page-full .bt-content-wide h3 {
  max-width: 760px;
  margin-top: 34px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.bt-page-full .bt-content-wide img,
.bt-page-full .bt-content-wide figure,
.bt-page-full .bt-content-wide .wp-block-image {
  max-width: min(100%, 760px);
}

.bt-page-full .bt-content-wide .alignwide,
.bt-page-full .bt-content-wide .alignfull {
  max-width: min(100%, 980px);
}

@media (max-width: 1080px) {
  .bt-page-full .bt-page-hero,
  .bt-landing-minimal .bt-page-hero,
  .bt-page-full .bt-page-polaroid-wide,
  .bt-landing-minimal .bt-content-wide {
    width: min(calc(100% - 40px), 980px);
  }
}

@media (max-width: 700px) {
  .bt-page-full .bt-page-hero,
  .bt-landing-minimal .bt-page-hero {
    width: calc(100% - 32px);
    padding-top: 28px;
    padding-bottom: 24px;
  }

  .bt-page-full .bt-page-hero-copy,
  .bt-landing-minimal .bt-page-hero-copy {
    display: grid;
    gap: 10px;
  }

  .bt-page-full .bt-page-hero .bt-kicker,
  .bt-landing-minimal .bt-page-hero .bt-kicker {
    width: max-content;
    max-width: calc(100% - 18px);
    margin: 0;
  }

  .bt-page-full .bt-page-hero h1,
  .bt-landing-minimal .bt-page-hero h1 {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: .12em .2em .16em;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
    box-decoration-break: slice;
    -webkit-box-decoration-break: slice;
  }

  .bt-page-full .bt-page-polaroid-wide {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
    margin-bottom: 20px;
    padding: 22px 18px;
  }

  .bt-page-full .bt-page-polaroid-wide strong {
    max-width: none;
    font-size: 25px;
  }

  .bt-page-full .bt-page-polaroid-wide p,
  .bt-page-full .bt-content-wide {
    font-size: 15px;
    line-height: 1.8;
  }

  .bt-page-full .bt-content-wide,
  .bt-landing-minimal .bt-content-wide {
    width: calc(100% - 32px);
    max-width: none;
    padding-bottom: 52px;
  }

  .bt-page-full .bt-content-wide > *,
  .bt-landing-minimal .bt-content-wide > * {
    max-width: 100%;
  }

  .bt-page-full .bt-content-wide p,
  .bt-landing-minimal .bt-content-wide p {
    margin-bottom: 16px;
  }

  .bt-page-full .bt-content-wide img,
  .bt-page-full .bt-content-wide figure,
  .bt-page-full .bt-content-wide .wp-block-image,
  .bt-landing-minimal .bt-content-wide img,
  .bt-landing-minimal .bt-content-wide figure,
  .bt-landing-minimal .bt-content-wide .wp-block-image {
    max-width: 100%;
    border-radius: 8px;
  }

  .bt-page-full .bt-content-wide .alignwide,
  .bt-page-full .bt-content-wide .alignfull,
  .bt-landing-minimal .bt-content-wide .alignwide,
  .bt-landing-minimal .bt-content-wide .alignfull {
    max-width: 100%;
  }
}

/* Legal / policy pages are reading surfaces, so keep them calmer and narrower. */
.bt-page-legal .bt-page-hero {
  padding-top: clamp(44px, 5vw, 78px);
  padding-bottom: 28px;
}

.bt-page-legal .bt-page-hero h1 {
  max-width: min(100%, 820px);
  margin-top: 14px;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.bt-page-legal .bt-page-hero::before {
  bottom: 14px;
  height: 7px;
  opacity: .18;
}

.bt-page-legal .bt-page-polaroid,
.bt-page-legal .bt-page-polaroid-wide {
  width: min(100%, 920px);
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  margin-top: 22px;
  margin-bottom: 38px;
  padding: clamp(22px, 3vw, 32px);
  transform: none;
}

.bt-page-legal .bt-page-polaroid span,
.bt-page-legal .bt-page-polaroid-wide span {
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.2;
}

.bt-page-legal .bt-page-polaroid strong,
.bt-page-legal .bt-page-polaroid-wide strong {
  max-width: none;
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.bt-page-legal .bt-page-polaroid p,
.bt-page-legal .bt-page-polaroid-wide p {
  max-width: 54ch;
  margin: 0;
  color: color-mix(in srgb, var(--bt-ink) 86%, white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.bt-page-legal .bt-content,
.bt-page-legal .bt-content-wide,
.bt-content-legal {
  width: min(calc(100% - 32px), 760px);
  max-width: 760px;
  margin-inline: auto;
  padding-bottom: 72px;
  color: var(--bt-ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.86;
}

.bt-page-legal .bt-content-wide > *,
.bt-content-legal > * {
  max-width: 100%;
}

.bt-content-legal h2,
.bt-content-legal h3,
.bt-content-legal h4,
.bt-page-legal .bt-content-wide h2,
.bt-page-legal .bt-content-wide h3,
.bt-page-legal .bt-content-wide h4 {
  max-width: 100%;
  color: var(--bt-ink);
  font-family: var(--bt-display);
  line-height: 1.22;
  text-wrap: balance;
}

.bt-content-legal h2,
.bt-page-legal .bt-content-wide h2 {
  margin: 36px 0 14px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--bt-ink) 16%, transparent);
  font-size: clamp(24px, 2.2vw, 30px);
}

.bt-content-legal h2:first-child,
.bt-page-legal .bt-content-wide h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.bt-content-legal h3,
.bt-page-legal .bt-content-wide h3 {
  margin: 28px 0 12px;
  font-size: clamp(20px, 1.8vw, 24px);
}

.bt-content-legal h4,
.bt-page-legal .bt-content-wide h4 {
  margin: 22px 0 10px;
  font-size: 17px;
}

.bt-content-legal p,
.bt-page-legal .bt-content-wide p {
  max-width: 100%;
  margin: 0 0 18px;
  color: color-mix(in srgb, var(--bt-ink) 92%, white);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.86;
}

.bt-content-legal strong,
.bt-page-legal .bt-content-wide strong {
  color: var(--bt-ink);
  font-weight: 950;
}

.bt-content-legal a,
.bt-page-legal .bt-content-wide a {
  color: var(--bt-pink-hot);
  font-weight: 850;
  text-underline-offset: 3px;
}

.bt-content-legal ul,
.bt-content-legal ol,
.bt-page-legal .bt-content-wide ul,
.bt-page-legal .bt-content-wide ol {
  margin: 0 0 22px;
  padding-left: 1.2em;
}

.bt-content-legal li,
.bt-page-legal .bt-content-wide li {
  margin: 0 0 10px;
  padding-left: 4px;
}

.bt-content-legal ul:not(.products):not(.tabs) li,
.bt-page-legal .bt-content-wide ul:not(.products):not(.tabs) li {
  list-style: disc;
  padding-left: 2px;
}

.bt-content-legal ul:not(.products):not(.tabs) li::before,
.bt-page-legal .bt-content-wide ul:not(.products):not(.tabs) li::before {
  display: none;
}

.bt-content-legal li::marker,
.bt-page-legal .bt-content-wide li::marker {
  color: var(--bt-pink-hot);
  font-weight: 950;
}

.bt-content-legal .has-large-font-size,
.bt-page-legal .bt-content-wide .has-large-font-size {
  font-size: 20px !important;
  line-height: 1.55;
}

.bt-content-legal table,
.bt-page-legal .bt-content-wide table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1.5px solid color-mix(in srgb, var(--bt-ink) 26%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bt-cream) 86%, white);
}

.bt-content-legal th,
.bt-content-legal td,
.bt-page-legal .bt-content-wide th,
.bt-page-legal .bt-content-wide td {
  padding: 12px 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--bt-ink) 14%, transparent);
  text-align: left;
  vertical-align: top;
}

.bt-content-legal th,
.bt-page-legal .bt-content-wide th {
  font-weight: 950;
}

@media (max-width: 700px) {
  .bt-page-legal .bt-page-hero {
    padding-top: 38px;
    padding-bottom: 24px;
  }

  .bt-page-legal .bt-page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.1;
  }

  .bt-page-legal .bt-page-polaroid,
  .bt-page-legal .bt-page-polaroid-wide {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 30px;
    padding: 20px 18px;
  }

  .bt-page-legal .bt-page-polaroid strong,
  .bt-page-legal .bt-page-polaroid-wide strong {
    font-size: 24px;
  }

  .bt-page-legal .bt-content,
  .bt-page-legal .bt-content-wide,
  .bt-content-legal {
    width: min(calc(100% - 32px), 760px);
    font-size: 15px;
    line-height: 1.82;
  }

  .bt-content-legal p,
  .bt-page-legal .bt-content-wide p {
    font-size: 15px;
    line-height: 1.82;
  }

  .bt-content-legal h2,
  .bt-page-legal .bt-content-wide h2 {
    margin-top: 30px;
    font-size: 22px;
  }
}

/* Floating contact actions */
.bt-floating-panel {
  max-height: 380px;
}

.bt-floating-email {
  color: var(--bt-pink-hot);
  background: #fff7fb;
}

.bt-floating-wechat {
  background: #63cf72;
}

.bt-floating-email span,
.bt-floating-wechat span {
  width: 31px;
  height: 31px;
  display: block;
  overflow: hidden;
  color: transparent;
  text-indent: 999px;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bt-floating-email span {
  background-image: url("../images/floating-email.svg");
}

.bt-floating-wechat span {
  background-image: url("../images/floating-wechat.svg");
}

.bt-js-ready.bt-motion-normal .bt-floating-panel > :nth-child(5) { --bt-float-index: 5; }
.bt-js-ready.bt-motion-normal .bt-floating-panel > :nth-child(6) { --bt-float-index: 6; }

@media (max-width: 640px) {
  .bt-floating-panel {
    max-height: 320px;
  }

  .bt-floating-email span,
  .bt-floating-wechat span {
    width: 27px;
    height: 27px;
  }
}

/* Site page flow / breadcrumbs */
.bt-page-flow {
  position: relative;
  z-index: 22;
  width: var(--bt-wrap);
  margin: clamp(14px, 2vw, 24px) auto 0;
}

.bt-page-flow-list {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 11px 16px;
  border: 1.5px solid color-mix(in srgb, var(--bt-pink) 72%, var(--bt-ink));
  border-radius: 999px;
  background: color-mix(in srgb, var(--bt-cream) 90%, white);
  box-shadow: 4px 5px 0 rgba(240, 117, 168, .12);
  list-style: none;
}

.bt-page-flow-item {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  color: color-mix(in srgb, var(--bt-ink) 58%, white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.bt-page-flow-item + .bt-page-flow-item::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin: 0 10px;
  border-radius: 999px;
  background: var(--bt-pink);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--bt-pink) 14%, transparent);
}

.bt-page-flow-item a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--bt-motion-fast) var(--bt-ease-out),
    transform var(--bt-motion-fast) var(--bt-ease-out);
}

.bt-page-flow-item a:hover {
  color: var(--bt-pink-hot);
  transform: translateY(-1px);
}

.bt-page-flow-item.is-current {
  color: var(--bt-ink);
}

.bt-page-flow + .bt-main {
  margin-top: clamp(10px, 1.4vw, 18px);
}

/* Left-aligned multi-level desktop menu */
.bt-menu .menu-item {
  position: relative;
}

.bt-menu .sub-menu {
  left: 0;
  right: auto;
  text-align: left;
  transform: translateY(8px) scale(.98);
  transform-origin: 0 0;
}

.bt-menu .sub-menu::before {
  left: 0;
  right: auto;
  width: 100%;
}

.bt-menu .menu-item:hover > .sub-menu,
.bt-menu .menu-item:focus-within > .sub-menu {
  transform: translateY(0) scale(1);
}

.bt-menu .sub-menu a {
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}

.bt-menu .sub-menu .menu-item-has-children > a {
  justify-content: flex-start;
}

.bt-menu .sub-menu .menu-item-has-children > a::after {
  content: none;
}

.bt-menu .sub-menu .sub-menu {
  position: static;
  min-width: 0;
  display: grid;
  gap: 6px;
  margin: 3px 0 4px;
  padding: 2px 0 2px 14px;
  border: 0;
  border-left: 2px dashed color-mix(in srgb, var(--bt-pink) 44%, transparent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.bt-menu .sub-menu .sub-menu::before {
  display: none;
}

.bt-menu .sub-menu .sub-menu a {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--bt-pink) 30%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--bt-soft) 38%, white);
  font-size: 13px;
}

.bt-menu .sub-menu .sub-menu li {
  opacity: 1;
  transform: none;
}

.bt-drawer-menu .is-open > .sub-menu {
  max-height: 760px;
}

.bt-drawer-menu .sub-menu .sub-menu {
  gap: 5px;
  max-height: none;
  overflow: visible;
  opacity: 1;
  transform: none;
  padding-left: 10px;
}

.bt-drawer-menu .sub-menu .menu-item-has-children > .bt-submenu-toggle {
  display: none;
}

.bt-drawer-menu .sub-menu .menu-item-has-children > .sub-menu {
  max-height: none;
  padding: 5px 0 10px 10px;
  opacity: 1;
  transform: none;
}

.bt-drawer-menu .sub-menu .sub-menu a {
  min-height: 36px;
  padding-left: 16px;
  border-left: 2px dashed color-mix(in srgb, var(--bt-pink) 34%, transparent);
  background: color-mix(in srgb, var(--bt-cream) 82%, white);
  font-size: 14px;
}

@media (max-width: 700px) {
  .bt-page-flow {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .bt-page-flow-list {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 12px;
    border-radius: 18px;
    scrollbar-width: none;
  }

  .bt-page-flow-list::-webkit-scrollbar {
    display: none;
  }

  .bt-page-flow-item {
    font-size: 13px;
  }

  .bt-page-flow-item + .bt-page-flow-item::before {
    margin: 0 8px;
  }
}
