:root {
  --bt-ink: #171412;
  --bt-muted: #675d55;
  --bt-line: #e7dfd7;
  --bt-paper: #fffdfb;
  --bt-soft: #f6f1eb;
  --bt-deep: #2d2723;
  --bt-accent: #8f3f2b;
  --bt-width: 1180px;
  --bt-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bt-font-heading: "Playfair Display", Georgia, serif;
  --bt-font-mono: "JetBrains Mono", "Courier New", monospace;
}

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

body {
  margin: 0;
  color: var(--bt-ink);
  background: var(--bt-paper);
  font-family: var(--bt-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bt-font-heading);
  font-weight: 400;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.bt-announcement {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  background: #fff;
  color: rgba(18, 18, 18, 0.68);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.bt-site-header__inner {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr) minmax(118px, 160px);
  gap: 24px;
  align-items: center;
  max-width: var(--bt-width);
  margin: 0 auto;
  padding: 20px 30px;
}

.bt-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(18, 18, 18, 0.08);
}

.bt-logo {
  display: inline-flex;
  width: 178px;
  color: var(--bt-ink);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.bt-logo__mark {
  display: block;
  width: 100%;
  height: auto;
}

.bt-primary-nav,
.bt-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.bt-primary-nav {
  justify-content: center;
  gap: 28px;
}

.bt-header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.bt-primary-nav a,
.bt-header-actions a {
  position: relative;
  color: rgba(18, 18, 18, 0.72);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.bt-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease, opacity 180ms ease;
}

.bt-logo:hover,
.bt-logo:focus-visible,
.bt-primary-nav a:hover,
.bt-primary-nav a:focus-visible,
.bt-header-actions a:hover,
.bt-header-actions a:focus-visible {
  color: var(--bt-ink);
}

.bt-primary-nav a:hover::after,
.bt-primary-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.bt-icon-link {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.bt-icon-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.bt-cart-link .icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  max-width: none;
  fill: currentColor;
  stroke: none;
}

.beltoria-footer-social-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.beltoria-footer-social-icon:first-child svg,
.beltoria-footer-social-icon:nth-child(3) svg,
.beltoria-footer-social-icon:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.bt-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #cb020c;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.bt-cart-count:empty {
  display: none;
}

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

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  width: min(100%, var(--bt-width));
  margin: 24px auto;
  padding: 16px 18px;
  border: 1px solid var(--bt-line);
  background: #fff;
  color: var(--bt-ink);
  list-style: none;
}

.woocommerce-error {
  border-color: rgba(143, 63, 43, 0.36);
}

.woocommerce-message .button,
.woocommerce-info .button {
  float: right;
  min-height: 34px;
  margin-left: 16px;
  padding: 8px 14px;
  font-size: 12px;
}

body.woocommerce-cart .bt-page-shell {
  width: 100%;
  max-width: none;
  padding: 0;
}

.bt-cart-shell {
  width: min(100%, var(--bt-width));
  margin: 0 auto;
  padding: 48px 24px 74px;
}

.bt-cart-header {
  margin-bottom: 34px;
}

.bt-cart-header__row {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.bt-cart-header h1,
.bt-cart-empty h1 {
  margin: 0;
  font-family: var(--bt-font-heading);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.bt-cart-continue,
.bt-cart-item__remove {
  color: var(--bt-muted);
  font-size: 14px;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.bt-cart-continue:hover,
.bt-cart-continue:focus-visible,
.bt-cart-item__remove:hover,
.bt-cart-item__remove:focus-visible {
  color: var(--bt-ink);
}

.bt-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: clamp(30px, 4vw, 48px);
  align-items: start;
}

.bt-cart-main,
.bt-cart-summary .cart_totals {
  min-width: 0;
}

.bt-cart-table {
  display: block;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background: transparent;
}

.bt-cart-table thead,
.bt-cart-table tbody {
  display: block;
}

.bt-cart-table thead tr,
.bt-cart-table tr.cart_item {
  display: grid;
  grid-template-columns: 104px minmax(240px, 1fr) 86px 142px 88px;
  column-gap: 18px;
}

.bt-cart-table thead tr {
  align-items: end;
}

.bt-cart-table tr.cart_item {
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--bt-line);
}

.bt-cart-table th {
  padding: 0 0 17px;
  border-bottom: 1px solid var(--bt-line);
  color: rgba(18, 18, 18, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: left;
  text-transform: uppercase;
}

.bt-cart-table th.product-name {
  grid-column: 1 / 3;
}

.bt-cart-table th.product-price,
.bt-cart-table th.product-quantity,
.bt-cart-table th.product-subtotal,
.bt-cart-table td.product-price,
.bt-cart-table td.product-subtotal {
  text-align: right;
}

.bt-cart-table td {
  padding: 0;
  border-bottom: 0;
  vertical-align: middle;
}

.bt-cart-table .product-thumbnail {
  width: 104px;
  padding-right: 0;
}

.bt-cart-table .product-thumbnail a {
  display: flex;
  width: 104px;
  height: 104px;
  align-items: center;
  justify-content: center;
  background: #faf8f6;
}

.bt-cart-table .product-thumbnail img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: transparent;
}

.bt-cart-item__title {
  display: inline-block;
  max-width: 330px;
  color: var(--bt-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.bt-cart-item__title:hover,
.bt-cart-item__title:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bt-cart-item__meta,
.bt-cart-item__meta dl,
.bt-cart-item__meta p,
.bt-cart-table .product-price,
.bt-cart-table .product-subtotal {
  color: var(--bt-muted);
  font-size: 14px;
  line-height: 1.5;
}

.bt-cart-table .product-subtotal {
  color: var(--bt-ink);
  font-weight: 600;
}

.bt-cart-item__meta {
  margin-top: 8px;
}

.bt-cart-item__meta dl,
.bt-cart-item__meta p {
  margin: 0;
}

.bt-cart-item__meta dt,
.bt-cart-item__meta dd {
  display: inline;
  margin: 0;
}

.bt-cart-item__meta dd::after {
  content: "";
  display: block;
}

.bt-cart-item__remove {
  display: inline-block;
  margin-top: 12px;
}

.bt-cart-table .product-quantity {
  min-width: 142px;
  text-align: center;
}

.bt-cart-quantity {
  position: relative;
  display: inline-flex;
  width: 142px;
  min-height: 46px;
  margin: 0;
  border: 1px solid rgba(18, 18, 18, 0.55);
  background: #fff;
  color: var(--bt-ink);
}

.bt-cart-quantity .quantity__button {
  display: flex;
  width: 45px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(18, 18, 18, 0.7);
  cursor: pointer;
  padding: 0;
}

.bt-cart-quantity .quantity__button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.bt-cart-quantity .quantity__button .svg-wrapper {
  display: inline-flex;
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.bt-cart-quantity .quantity__button .icon {
  display: block;
  width: 100%;
  height: 100%;
}

.bt-cart-quantity .quantity__input {
  width: 100%;
  min-width: 36px;
  flex-grow: 1;
  border: 0;
  background: transparent;
  color: var(--bt-ink);
  font: inherit;
  font-size: 15px;
  padding: 0 4px;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.bt-cart-quantity .quantity__input::-webkit-outer-spin-button,
.bt-cart-quantity .quantity__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.bt-cart-quantity:focus-within,
.bt-cart-actions-row input:focus,
.bt-cart-actions-row input:hover {
  border-color: var(--bt-accent);
  box-shadow: 0 0 0 3px rgba(143, 63, 43, 0.12);
  outline: none;
}

.bt-cart-actions-row td {
  border-bottom: 0;
  padding-top: 24px;
}

.bt-cart-actions-row {
  display: block;
}

.bt-cart-actions-row .actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  justify-content: stretch;
}

.bt-cart-actions-row .coupon {
  display: grid;
  grid-template-columns: minmax(170px, 260px) auto;
  width: min(100%, 410px);
  gap: 10px;
}

.bt-cart-actions-row input {
  min-height: 44px;
  flex: 1;
  border: 1px solid var(--bt-line);
  background: #fff;
  color: var(--bt-ink);
  font: inherit;
  padding: 10px 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bt-cart-actions-row .button,
.bt-cart-summary .checkout-button,
.bt-cart-empty .button {
  min-height: 46px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
  transform: none;
}

.bt-cart-actions-row .button {
  padding: 12px 18px;
}

.bt-cart-actions-row .bt-cart-update {
  justify-self: end;
}

.bt-cart-actions-row .button:disabled,
.bt-cart-actions-row .button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.bt-cart-actions-row .button:hover,
.bt-cart-actions-row .button:focus-visible,
.bt-cart-summary .checkout-button:hover,
.bt-cart-summary .checkout-button:focus-visible,
.bt-cart-empty .button:hover,
.bt-cart-empty .button:focus-visible {
  background: #fff;
  color: #000;
  box-shadow: none;
  transform: none;
}

.bt-cart-summary {
  position: sticky;
  top: 112px;
}

.bt-cart-summary .cart_totals {
  padding: 28px;
  border: 1px solid var(--bt-line);
  background: #fff;
}

.bt-cart-summary .cart_totals h2 {
  margin: 0 0 20px;
  font-family: var(--bt-font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

.bt-cart-summary .shop_table {
  width: 100%;
  border-collapse: collapse;
}

.bt-cart-summary .shop_table th,
.bt-cart-summary .shop_table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--bt-line);
  color: var(--bt-muted);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}

.bt-cart-summary .shop_table td {
  color: var(--bt-ink);
  text-align: right;
}

.bt-cart-summary .order-total th,
.bt-cart-summary .order-total td {
  padding-top: 18px;
  border-bottom: 0;
  color: var(--bt-ink);
  font-size: 17px;
  font-weight: 700;
}

.bt-cart-tax-note {
  margin: 10px 0 20px;
  color: var(--bt-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bt-cart-summary .wc-proceed-to-checkout {
  margin-top: 18px;
}

.bt-cart-summary .checkout-button {
  width: 100%;
  min-height: 50px;
  text-decoration: none;
}

.bt-cart-empty {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 84px 24px 96px;
  text-align: center;
}

.bt-cart-empty p {
  color: var(--bt-muted);
}

.bt-cart-empty .return-to-shop {
  margin-top: 24px;
}

body.woocommerce-checkout .bt-page-shell {
  width: min(100%, 1240px);
  max-width: none;
  padding: 48px 24px 74px;
}

body.woocommerce-checkout .bt-native-content,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
  gap: clamp(34px, 4vw, 56px);
  align-items: start;
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
}

body.woocommerce-checkout .wc-block-checkout__main {
  min-width: 0;
}

@media (max-width: 720px) {
  body.woocommerce-checkout .bt-page-shell {
    padding: 38px 18px 56px;
  }

  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.woocommerce-checkout .wc-block-checkout__main,
  body.woocommerce-checkout .wc-block-checkout__sidebar {
    width: 100%;
  }
}

/* Side shopping bag */
button.bt-icon-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.bt-mini-cart-open {
  overflow: hidden;
}

.bt-mini-cart-overlay {
  position: fixed;
  z-index: 99;
  inset: 0;
  background: rgba(23, 20, 18, 0.3);
  opacity: 0;
  transition: opacity 220ms ease;
}

.bt-mini-cart-overlay.is-visible {
  opacity: 1;
}

.bt-mini-cart {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

body.admin-bar .bt-mini-cart {
  top: 32px;
}

.bt-mini-cart.is-open {
  transform: translateX(0);
}

.bt-mini-cart__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bt-paper);
  box-shadow: -16px 0 36px rgba(23, 20, 18, 0.12);
}

.bt-mini-cart__heading {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--bt-line);
  color: var(--bt-ink);
  font-family: var(--bt-font-heading);
  font-size: 30px;
  line-height: 1;
}

.bt-mini-cart__close {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bt-ink);
  cursor: pointer;
}

.bt-mini-cart__close:hover {
  color: var(--bt-muted);
}

.bt-mini-cart__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.bt-mini-cart .widget_shopping_cart_content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.bt-mini-cart .woocommerce-mini-cart {
  min-height: 0;
  flex: 1;
  margin: 0;
  padding: 0 28px;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
}

.bt-mini-cart .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) max-content 20px;
  min-height: 124px;
  align-items: start;
  column-gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid var(--bt-line);
}

.bt-mini-cart__image {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 64px;
  height: 80px;
  overflow: hidden;
  background: var(--bt-soft);
}

.bt-mini-cart__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bt-mini-cart__details {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.bt-mini-cart__name {
  display: block;
  color: var(--bt-ink);
  font-family: var(--bt-font-heading);
  font-size: 18px;
  line-height: 1.15;
  text-decoration: none;
}

.bt-mini-cart__name:hover {
  color: var(--bt-muted);
}

.bt-mini-cart__meta {
  margin-top: 5px;
  color: var(--bt-muted);
  font-size: 12px;
  line-height: 1.3;
}

.bt-mini-cart__meta .variation {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 5px;
  margin: 0;
}

.bt-mini-cart__meta .variation dt,
.bt-mini-cart__meta .variation dd {
  margin: 0;
}

.bt-mini-cart__quantity {
  display: grid;
  grid-template-columns: 30px 36px 30px;
  width: 96px;
  height: 32px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--bt-line);
}

.bt-mini-cart__quantity-button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bt-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.bt-mini-cart__quantity-button:hover,
.bt-mini-cart__quantity-button:focus-visible {
  background: var(--bt-soft);
}

.bt-mini-cart__quantity-button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.bt-mini-cart__quantity-value {
  display: grid;
  place-items: center;
  font-size: 13px;
}

.bt-mini-cart__price {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  padding-top: 2px;
  color: var(--bt-ink);
  font-family: var(--bt-font-mono);
  font-size: 13px;
  white-space: nowrap;
}

.bt-mini-cart__remove {
  position: relative;
  grid-column: 4;
  grid-row: 1;
  width: 22px;
  height: 22px;
  margin-top: 41px;
  border-radius: 50%;
  color: transparent !important;
  font-size: 0;
  line-height: 1;
}

.bt-mini-cart__remove::before {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 8px;
  height: 10px;
  border: 1px solid var(--bt-muted);
  border-top: 0;
  content: '';
}

.bt-mini-cart__remove::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 1px;
  background: var(--bt-muted);
  box-shadow: 3px -2px 0 -0.25px var(--bt-muted);
  content: '';
}

.bt-mini-cart__remove:hover,
.bt-mini-cart__remove:focus-visible {
  background: var(--bt-soft);
}

.bt-mini-cart__remove:hover::before,
.bt-mini-cart__remove:focus-visible::before {
  border-color: var(--bt-ink);
}

.bt-mini-cart__remove:hover::after,
.bt-mini-cart__remove:focus-visible::after {
  background: var(--bt-ink);
  box-shadow: 3px -2px 0 -0.25px var(--bt-ink);
}

.bt-mini-cart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 22px 28px;
  border-top: 1px solid var(--bt-line);
  border-bottom: 1px solid var(--bt-line);
  color: var(--bt-ink);
  font-size: 15px;
}

.bt-mini-cart .woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 20px 28px 28px;
}

.bt-mini-cart .woocommerce-mini-cart__buttons .button {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--bt-ink);
  border-radius: 0;
  background: transparent;
  color: var(--bt-ink);
  font-family: var(--bt-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bt-mini-cart .woocommerce-mini-cart__buttons .checkout {
  background: var(--bt-ink);
  color: #fff;
}

.bt-mini-cart .woocommerce-mini-cart__buttons .button:hover {
  background: var(--bt-soft);
}

.bt-mini-cart .woocommerce-mini-cart__buttons .checkout:hover {
  background: var(--bt-deep);
  color: #fff;
}

.bt-mini-cart .woocommerce-mini-cart__empty-message {
  margin: 0;
  padding: 52px 28px;
  color: var(--bt-muted);
  font-size: 14px;
  text-align: center;
}

/* Search */
.bt-search-page { width: min(100% - 64px, 1180px); margin: 0 auto; padding: 104px 0 128px; }
.bt-search-page__intro { max-width: 780px; }
.bt-search-page__intro .bt-eyebrow { margin: 0 0 18px; }
.bt-search-page__intro h1 { margin: 0; color: var(--bt-ink); font-size: clamp(46px, 5vw, 72px); font-weight: 400; line-height: 0.98; }
.bt-search-page__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; margin-top: 46px; padding-bottom: 14px; border-bottom: 1px solid var(--bt-ink); }
.bt-search-page__form input { width: 100%; min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--bt-ink); font: inherit; font-size: 18px; outline: 0; }
.bt-search-page__form input::placeholder { color: var(--bt-muted); opacity: 1; }
.bt-search-page__form button { min-height: 44px; padding: 0 24px; border: 1px solid var(--bt-ink); border-radius: 0; background: var(--bt-ink); color: #fff; font-family: var(--bt-font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.bt-search-page__form button:hover { background: var(--bt-deep); }
.bt-search-page__count { margin: 64px 0 26px; color: var(--bt-muted); font-family: var(--bt-font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.bt-search-page__results { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.bt-search-result { min-width: 0; border-top: 1px solid var(--bt-line); }
.bt-search-result__image { display: block; margin-top: 20px; overflow: hidden; background: var(--bt-soft); aspect-ratio: 3 / 4; }
.bt-search-result__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 360ms ease; }
.bt-search-result:hover .bt-search-result__image img { transform: scale(1.035); }
.bt-search-result__copy { padding: 18px 0 8px; }
.bt-search-result__type { margin: 0 0 9px; color: var(--bt-muted); font-family: var(--bt-font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.bt-search-result h2 { margin: 0; color: var(--bt-ink); font-size: 25px; font-weight: 400; line-height: 1.12; }
.bt-search-result h2 a { text-decoration: none; }
.bt-search-result__copy > p:last-child { margin: 12px 0 0; color: var(--bt-muted); font-size: 14px; line-height: 1.6; }
.bt-search-page__empty { max-width: 460px; margin-top: 64px; padding: 34px 0; border-top: 1px solid var(--bt-line); color: var(--bt-muted); font-size: 16px; line-height: 1.7; }
.bt-search-page__empty p { margin: 0 0 24px; }
.bt-search-page__empty a { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid var(--bt-ink); color: var(--bt-ink); font-family: var(--bt-font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; }

@media (max-width: 720px) {
  .bt-search-page { width: calc(100% - 40px); padding: 68px 0 82px; }
  .bt-search-page__form { grid-template-columns: 1fr; gap: 12px; }
  .bt-search-page__form button { width: 100%; }
  .bt-search-page__count { margin-top: 46px; }
  .bt-search-page__results { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 782px) {
  body.admin-bar .bt-mini-cart {
    top: 46px;
  }
}

@media (max-width: 767px) {
  body.admin-bar .bt-mini-cart {
    top: 0;
  }
}

.bt-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18)),
    var(--bt-hero-image) center / cover no-repeat;
}

.bt-hero__content,
.bt-section,
.bt-guide-band > div,
.bt-page-shell,
.bt-site-footer {
  width: min(100%, var(--bt-width));
}

.bt-hero__content {
  margin: 0 auto;
  padding: 72px 24px;
}

.bt-hero h1,
.bt-page-hero h1,
.bt-article__header h1,
.bt-product__summary h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--bt-font-heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 500;
}

.bt-hero h1 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.bt-hero p,
.bt-lede {
  max-width: 660px;
  color: inherit;
  font-size: 18px;
}

.bt-hero .bt-button {
  min-height: 48px;
  padding: 13px 24px;
  border-color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
}

.bt-hero .bt-button:hover,
.bt-hero .bt-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  box-shadow: none;
  transform: none;
}

.bt-eyebrow {
  margin: 0 0 12px;
  color: var(--bt-accent);
  font-family: var(--bt-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bt-hero .bt-eyebrow,
.bt-section--dark .bt-eyebrow {
  color: #d9bba2;
}

.bt-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bt-button,
.button,
button.single_add_to_cart_button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--bt-ink);
  background: var(--bt-ink);
  color: #fff;
  font: inherit;
  font-family: var(--bt-font-mono);
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.bt-button--secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.bt-button:hover,
.bt-button:focus-visible,
.button:hover,
.button:focus-visible,
button.single_add_to_cart_button:hover,
button.single_add_to_cart_button:focus-visible {
  background: var(--bt-accent);
  border-color: var(--bt-accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 20, 18, 0.16);
  transform: translateY(-2px);
}

.bt-button--secondary:hover,
.bt-button--secondary:focus-visible {
  background: #fff;
  color: var(--bt-ink);
  border-color: #fff;
}

.bt-section,
.bt-page-shell {
  margin: 0 auto;
  padding: 58px 24px;
}

.bt-section--muted {
  max-width: none;
  width: 100%;
  padding-left: max(24px, calc((100vw - var(--bt-width)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--bt-width)) / 2 + 24px));
  background: var(--bt-soft);
}

.bt-section__heading {
  margin-bottom: 28px;
}

.bt-section__heading--center {
  text-align: center;
}

.bt-section__heading h2,
.bt-guide-band h2,
.bt-info-panel h2,
.bt-info-panel h3 {
  margin: 0;
  font-family: var(--bt-font-heading);
  font-weight: 500;
  line-height: 1.08;
}

.bt-section__heading h2,
.bt-guide-band h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.bt-collection-grid,
.bt-product-grid,
.bt-post-grid,
.bt-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bt-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bt-collection-card,
.bt-product-card,
.bt-post-card,
.bt-info-panel {
  background: #fff;
  border: 1px solid var(--bt-line);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bt-collection-card,
.bt-product-card a,
.bt-post-card a {
  text-decoration: none;
}

.bt-collection-card,
.bt-product-card__media,
.bt-post-card__media,
.bt-product__gallery figure {
  overflow: hidden;
}

.bt-product-card__media,
.bt-post-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bt-soft);
}

.bt-collection-card:hover,
.bt-collection-card:focus-visible,
.bt-product-card:hover,
.bt-post-card:hover,
.bt-info-panel:hover {
  border-color: rgba(143, 63, 43, 0.38);
  box-shadow: 0 18px 38px rgba(23, 20, 18, 0.1);
  transform: translateY(-4px);
}

.bt-collection-card {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
}

.bt-collection-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 360ms ease;
}

.bt-collection-card span,
.bt-collection-card p,
.bt-product-card__body,
.bt-post-card__body,
.bt-info-panel {
  padding: 0 18px;
}

.bt-collection-card span {
  font-family: var(--bt-font-heading);
  font-size: 24px;
}

.bt-collection-card p,
.bt-product-card__type,
.bt-post-card p,
.bt-info-panel p,
.bt-native-content {
  color: var(--bt-muted);
}

.bt-home-collections {
  padding-top: 52px;
  padding-bottom: 0;
}

.bt-home-collections .bt-section__heading {
  margin-bottom: 32px;
}

.bt-home-collections .bt-collection-grid {
  gap: 8px;
}

.bt-home-collections .bt-collection-card {
  gap: 0;
  padding-bottom: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.bt-home-collections .bt-collection-card:hover,
.bt-home-collections .bt-collection-card:focus-visible {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.bt-home-collections .bt-collection-card img {
  aspect-ratio: 1 / 1;
}

.bt-home-collections .bt-collection-card span {
  display: block;
  padding: 16px 0 8px;
  text-align: center;
  font-size: 26px;
  line-height: 1.16;
  transition: opacity 220ms ease;
}

.bt-home-collections .bt-collection-card:hover span,
.bt-home-collections .bt-collection-card:focus-visible span {
  opacity: 0.65;
}

.bt-product-card__media img,
.bt-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bt-soft);
  transition: transform 360ms ease;
  transform-origin: center;
}

.bt-product-card__secondary-image,
.bt-product-card__hover {
  display: none;
}

.bt-collection-card:hover img,
.bt-collection-card:focus-visible img,
.bt-product-card:hover .bt-product-card__media img,
.bt-product-card:focus-within .bt-product-card__media img,
.bt-post-card:hover .bt-post-card__media img,
.bt-post-card:focus-within .bt-post-card__media img {
  transform: scale(1.035);
}

.bt-product-card__body,
.bt-post-card__body {
  padding-top: 18px;
  padding-bottom: 20px;
}

.bt-home-products {
  padding-top: 46px;
  padding-bottom: 42px;
}

.bt-home-products .bt-section__heading {
  margin-bottom: clamp(84px, 9vw, 128px);
}

.bt-home-products .bt-product-grid {
  gap: clamp(20px, 3vw, 34px);
}

.bt-home-products .bt-product-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.bt-home-products .bt-product-card:hover,
.bt-home-products .bt-product-card:focus-within {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.bt-home-products .bt-product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  height: auto;
  background: #fff;
}

.bt-home-products .bt-product-card__media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  background: #fff;
}

.bt-home-products .bt-product-card__image {
  transition: transform 500ms ease, opacity 500ms ease;
}

.bt-home-products .bt-product-card__secondary-image {
  display: block;
  opacity: 0;
}

.bt-home-products .bt-product-card--has-secondary:hover .bt-product-card__primary-image,
.bt-home-products .bt-product-card--has-secondary:focus-within .bt-product-card__primary-image {
  opacity: 0;
}

.bt-home-products .bt-product-card--has-secondary:hover .bt-product-card__secondary-image,
.bt-home-products .bt-product-card--has-secondary:focus-within .bt-product-card__secondary-image {
  opacity: 1;
  transform: scale(1.05);
}

.bt-home-products .bt-product-card:not(.bt-product-card--has-secondary):hover .bt-product-card__primary-image,
.bt-home-products .bt-product-card:not(.bt-product-card--has-secondary):focus-within .bt-product-card__primary-image {
  transform: scale(1.05);
}

.bt-home-products .bt-product-card__hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.bt-home-products .bt-product-card:hover .bt-product-card__hover,
.bt-home-products .bt-product-card:focus-within .bt-product-card__hover {
  opacity: 1;
}

.bt-home-products .bt-product-card__hover-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  pointer-events: auto;
  text-transform: uppercase;
  transform: translateY(16px);
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

.bt-home-products .bt-product-card:hover .bt-product-card__hover-button,
.bt-home-products .bt-product-card:focus-within .bt-product-card__hover-button {
  transform: translateY(0);
}

.bt-home-products .bt-product-card__hover-button:hover {
  background: #000;
  color: #fff;
}

.bt-home-products .bt-product-card__body {
  padding: 16px 4px 0;
  text-align: center;
}

.bt-home-products .bt-product-card__type {
  display: none;
}

.bt-home-products .bt-product-card h3 {
  max-width: 290px;
  margin: 0 auto 6px;
  font-family: var(--bt-font-heading);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.bt-home-products .bt-price {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bt-collection-page {
  background: #fff;
}

.bt-collection-hero {
  padding: 44px 24px 20px;
  text-align: center;
}

.bt-collection-hero__inner {
  width: min(100%, var(--bt-width));
  margin: 0 auto;
}

.bt-collection-hero h1 {
  margin: 0 0 20px;
  font-family: var(--bt-font-heading);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
}

.bt-collection-hero__description {
  max-width: 680px;
  margin: 0 auto;
  color: var(--bt-muted);
  font-size: 16px;
  line-height: 1.7;
}

.bt-collection-hero__description p {
  margin: 0 auto 14px;
}

.bt-collection-hero__description p:last-child {
  margin-bottom: 0;
}

.bt-collection-products.bt-home-products {
  padding-top: 36px;
  padding-bottom: 58px;
}

.bt-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.bt-pagination .page-numbers {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bt-line);
  color: var(--bt-ink);
  text-decoration: none;
}

.bt-pagination .page-numbers.current,
.bt-pagination .page-numbers:hover,
.bt-pagination .page-numbers:focus-visible {
  border-color: var(--bt-ink);
  background: var(--bt-ink);
  color: #fff;
}

/* Editorial archive, populated by WordPress posts. */
.bt-news-archive {
  width: min(100%, 1416px);
  margin: 0 auto;
  padding: 56px 24px 86px;
}

.bt-news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(54px, 8vw, 126px);
  align-items: center;
  min-height: 640px;
  padding: 0 22px;
}

.bt-news-featured__content {
  max-width: 600px;
}

.bt-news-kicker,
.bt-news-row__date,
.bt-news-listing > h2,
.bt-news-action {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bt-news-kicker {
  margin: 0 0 34px;
  color: var(--bt-muted);
}

.bt-news-featured h1,
.bt-news-row h3 {
  margin: 0;
  font-family: var(--bt-font-heading);
  font-weight: 400;
  line-height: 1.04;
}

.bt-news-featured h1 {
  font-size: 56px;
}

.bt-news-featured h1 a,
.bt-news-row h3 a {
  color: var(--bt-ink);
  text-decoration: none;
}

.bt-news-featured__excerpt {
  max-width: 560px;
  margin: 28px 0 34px;
  color: var(--bt-muted);
  font-size: 15px;
  line-height: 1.65;
}

.bt-news-action {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--bt-ink);
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.bt-news-action:hover,
.bt-news-action:focus-visible,
.bt-news-featured h1 a:hover,
.bt-news-featured h1 a:focus-visible,
.bt-news-row h3 a:hover,
.bt-news-row h3 a:focus-visible {
  color: var(--bt-accent);
}

.bt-news-action:hover,
.bt-news-action:focus-visible {
  gap: 14px;
}

.bt-news-featured__media,
.bt-news-row__media {
  display: block;
  overflow: hidden;
  background: var(--bt-soft);
}

.bt-news-featured__media {
  aspect-ratio: 1 / 1;
}

.bt-news-featured__media img,
.bt-news-row__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.bt-news-featured__media:hover img,
.bt-news-featured__media:focus-visible img,
.bt-news-row__media:hover img,
.bt-news-row__media:focus-visible img {
  transform: scale(1.025);
}

.bt-news-listing {
  width: min(100%, 990px);
  margin: 118px auto 0;
}

.bt-news-listing > h2 {
  margin: 0 0 46px;
  color: var(--bt-muted);
  text-align: center;
}

.bt-news-list {
  border-top: 1px solid var(--bt-line);
}

.bt-news-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 230px;
  gap: 36px;
  align-items: center;
  min-height: 254px;
  padding: 30px 0;
  border-bottom: 1px solid var(--bt-line);
}

.bt-news-row__date {
  align-self: start;
  padding-top: 8px;
  color: var(--bt-muted);
  line-height: 1.3;
}

.bt-news-row__content {
  min-width: 0;
}

.bt-news-row h3 {
  max-width: 560px;
  font-size: 31px;
}

.bt-news-row__content p {
  display: -webkit-box;
  max-width: 590px;
  margin: 18px 0 21px;
  overflow: hidden;
  color: var(--bt-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bt-news-row__media {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.bt-news-row__media--empty {
  visibility: hidden;
}

.bt-news-archive .bt-pagination {
  gap: 22px;
  margin-top: 68px;
}

.bt-news-archive .bt-pagination .page-numbers {
  min-width: auto;
  min-height: auto;
  padding: 0 2px 8px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--bt-muted);
  background: transparent;
  font-size: 14px;
}

.bt-news-archive .bt-pagination .page-numbers.current,
.bt-news-archive .bt-pagination .page-numbers:hover,
.bt-news-archive .bt-pagination .page-numbers:focus-visible {
  border-color: var(--bt-ink);
  background: transparent;
  color: var(--bt-ink);
}

@media (max-width: 900px) {
  .bt-news-archive {
    padding: 38px 20px 64px;
  }

  .bt-news-featured {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 42px;
    min-height: 0;
    padding: 0;
  }

  .bt-news-featured h1 {
    font-size: 44px;
  }

  .bt-news-listing {
    margin-top: 78px;
  }

  .bt-news-row {
    grid-template-columns: 112px minmax(0, 1fr) 170px;
    gap: 24px;
    min-height: 206px;
  }

  .bt-news-row h3 {
    font-size: 27px;
  }
}

@media (max-width: 620px) {
  .bt-news-archive {
    padding: 28px 18px 52px;
  }

  .bt-news-featured {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bt-news-featured__media {
    grid-row: 1;
  }

  .bt-news-featured__content {
    grid-row: 2;
  }

  .bt-news-kicker {
    margin-bottom: 20px;
  }

  .bt-news-featured h1 {
    font-size: 38px;
  }

  .bt-news-featured__excerpt {
    margin: 20px 0 26px;
  }

  .bt-news-listing {
    margin-top: 62px;
  }

  .bt-news-listing > h2 {
    margin-bottom: 26px;
  }

  .bt-news-row {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 26px 0;
  }

  .bt-news-row__date {
    padding-top: 0;
  }

  .bt-news-row h3 {
    font-size: 26px;
  }

  .bt-news-row__content p {
    margin: 13px 0 18px;
  }

  .bt-news-row__media {
    max-width: 210px;
  }

  .bt-news-row__media--empty {
    display: none;
  }

  .bt-news-archive .bt-pagination {
    gap: 17px;
    margin-top: 46px;
  }
}

.bt-collection-empty {
  padding: 70px 24px;
  text-align: center;
}

.bt-collection-empty h2 {
  margin: 0;
  font-family: var(--bt-font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
}

.bt-home-blog {
  padding-top: 44px;
  padding-bottom: 46px;
}

.bt-home-blog .bt-section__heading {
  margin-bottom: 22px;
}

.bt-home-blog .bt-post-card__media {
  aspect-ratio: 4 / 3;
}

.bt-home-blog .bt-post-card__body {
  padding-top: 14px;
  padding-bottom: 16px;
}

.bt-home-blog .bt-post-card h3 {
  margin-bottom: 8px;
}

.bt-home-blog .bt-post-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.bt-home-blog__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.bt-product-card h3,
.bt-post-card h3 {
  margin: 6px 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.bt-product-card h3 a,
.bt-post-card h3 a,
.bt-info-panel a {
  transition: color 180ms ease;
}

.bt-product-card h3 a:hover,
.bt-product-card h3 a:focus-visible,
.bt-post-card h3 a:hover,
.bt-post-card h3 a:focus-visible,
.bt-info-panel a:hover,
.bt-info-panel a:focus-visible {
  color: var(--bt-accent);
}

.bt-why-band {
  display: flex;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38)),
    var(--bt-why-image) center / cover no-repeat;
}

.bt-why-band__inner {
  width: min(100%, var(--bt-width));
  padding: clamp(58px, 7vw, 92px) 24px;
}

.bt-why-band .bt-section__heading {
  margin-bottom: 24px;
}

.bt-why-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--bt-font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.08;
}

.bt-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(15, 13, 12, 0.28);
  backdrop-filter: blur(2px);
}

.bt-why-card {
  min-height: 220px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 180ms ease, transform 180ms ease;
}

.bt-why-card:last-child {
  border-right: 0;
}

.bt-why-card:hover,
.bt-why-card:focus-within {
  background: rgba(255, 255, 255, 0.08);
}

.bt-why-card h3 {
  margin: 0 0 14px;
  font-family: var(--bt-font-heading);
  font-size: 18px;
  font-weight: 600;
}

.bt-why-card p {
  max-width: 300px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.bt-why-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.bt-why-card a span {
  transition: transform 180ms ease;
}

.bt-why-card a:hover span,
.bt-why-card a:focus-visible span {
  transform: translateX(4px);
}

.bt-testimonials {
  max-width: none;
  width: 100%;
  padding-left: max(16px, calc((100vw - var(--bt-width)) / 2 + 16px));
  padding-right: max(16px, calc((100vw - var(--bt-width)) / 2 + 16px));
  background: #f7f6f5;
}

.bt-testimonial-track {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.bt-testimonial-card {
  min-height: 216px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 236, 232, 0.88)),
    var(--bt-soft);
  border: 1px solid rgba(231, 223, 215, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bt-testimonial-card:hover,
.bt-testimonial-card:focus-within {
  border-color: rgba(143, 63, 43, 0.32);
  box-shadow: 0 18px 38px rgba(23, 20, 18, 0.08);
  transform: translateY(-3px);
}

.bt-testimonial-card h3 {
  margin: 0 0 14px;
  font-family: var(--bt-font-heading);
  font-size: 20px;
  font-weight: 500;
}

.bt-testimonial-card blockquote {
  margin: 0;
}

.bt-testimonial-card p {
  max-width: 760px;
  margin: 0 0 8px;
  color: var(--bt-muted);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.bt-testimonial-card cite {
  display: block;
  color: var(--bt-muted);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bt-faq {
  max-width: 1000px;
}

.bt-faq-list {
  border-top: 1px solid var(--bt-line);
}

.bt-faq-item {
  border-bottom: 1px solid var(--bt-line);
}

.bt-faq-item summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--bt-ink);
  cursor: pointer;
  font-family: var(--bt-font-heading);
  font-size: 17px;
  list-style: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.bt-faq-item summary::-webkit-details-marker {
  display: none;
}

.bt-faq-item summary:hover,
.bt-faq-item summary:focus-visible {
  color: var(--bt-accent);
  padding-left: 8px;
  outline: none;
}

.bt-faq-item summary b {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--bt-muted);
  font-family: var(--bt-font);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, color 180ms ease;
}

.bt-faq-item[open] summary b {
  color: var(--bt-accent);
  transform: rotate(45deg);
}

.bt-faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 56px 22px 0;
  color: var(--bt-muted);
}

.bt-price {
  color: var(--bt-ink);
  font-family: var(--bt-font-mono);
  font-weight: 700;
}

.bt-guide-band {
  min-height: clamp(420px, 34vw, 490px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.24) 48%, rgba(0, 0, 0, 0.5)),
    var(--bt-guide-image) center / cover no-repeat;
}

.bt-guide-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  margin: 0 auto;
  padding: 56px 24px;
}

.bt-guide-band__content {
  max-width: 650px;
}

.bt-guide-band .bt-eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.bt-guide-band h2 {
  font-size: clamp(32px, 3vw, 38px);
}

.bt-guide-band__copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  line-height: 1.6;
}

.bt-guide-band__button {
  margin-top: 26px;
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bt-guide-band__cards {
  display: grid;
  gap: 24px;
}

.bt-guide-card {
  min-height: 146px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(56, 44, 36, 0.72);
  backdrop-filter: blur(8px);
}

.bt-guide-card__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bt-guide-card h3 {
  margin: 0;
  font-family: var(--bt-font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.bt-guide-card p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.bt-page-hero,
.bt-article__header {
  padding: 46px 0 34px;
}

.bt-page-shell--about {
  width: 100%;
  max-width: none;
  padding: 0;
}

.bt-about-page__container {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 32px;
}

.bt-about-page__hero {
  padding: 80px 0 56px;
  background: #f2f0ed;
}

.bt-about-page__eyebrow,
.bt-about-page__subtitle,
.bt-about-page__text,
.bt-about-page__priority > p {
  font-family: var(--bt-font);
  font-weight: 300;
  letter-spacing: 0.6px;
}

.bt-about-page__eyebrow {
  margin: 0 0 32px;
  color: #666;
  font-family: var(--bt-font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-transform: uppercase;
}

.bt-about-page__hero h1,
.bt-about-page h2,
.bt-about-page h3 {
  margin: 0;
  color: #1a1a1a;
  font-family: var(--bt-font-heading);
  font-weight: 400;
  letter-spacing: 0.6px;
}

.bt-about-page__hero h1 {
  max-width: 836px;
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.1;
}

.bt-about-page__subtitle {
  max-width: 680px;
  margin: 20px 0 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.bt-about-page__section,
.bt-about-page__priorities {
  padding: 56px 0;
}

.bt-about-page__section--last {
  padding-bottom: 80px;
}

.bt-about-page h2 {
  max-width: 836px;
  font-size: 28px;
  line-height: 1.3;
}

.bt-about-page__text {
  max-width: 680px;
  margin-top: 20px;
  color: #666;
  font-size: 15px;
  line-height: 1.75;
}

.bt-about-page__text p,
.bt-about-page__priority p {
  margin: 0;
}

.bt-about-page__priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 836px;
  margin-top: 20px;
}

.bt-about-page__priority {
  padding: 24px;
  border: 1px solid #e7e3de;
  background: #f2f0ed;
}

.bt-about-page__priority:last-child {
  grid-column: 1 / -1;
}

.bt-about-page__priority > p:first-child {
  color: #999;
  font-family: var(--bt-font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-transform: uppercase;
}

.bt-about-page__priority h3 {
  margin-top: 6px;
  font-size: 28px;
  line-height: 1.8;
}

.bt-about-page__priority > p:last-child {
  margin-top: 6px;
  color: #666;
  font-size: 13.5px;
  line-height: 1.8;
}

.bt-contact-page__container {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 32px;
}

.bt-contact-page__hero {
  padding: 80px 0 56px;
  background: #f2f0ed;
}

.bt-contact-page__eyebrow,
.bt-contact-page__subtitle,
.bt-contact-page__text,
.bt-contact-page__email-card > p {
  font-family: var(--bt-font);
  font-weight: 300;
  letter-spacing: 0.6px;
}

.bt-contact-page__eyebrow {
  margin: 11px 0 12px;
  color: #999;
  font-family: var(--bt-font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-transform: uppercase;
}

.bt-contact-page h1,
.bt-contact-page h2,
.bt-contact-page h3 {
  margin: 0;
  color: #1a1a1a;
  font-family: var(--bt-font-heading);
  font-weight: 400;
}

.bt-contact-page__hero h1 {
  max-width: 836px;
  margin: 34.84px 0 20px;
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.1;
}

.bt-contact-page__subtitle {
  max-width: 680px;
  margin: 16px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.bt-contact-page__section {
  padding: 56px 0;
}

.bt-contact-page__section--last {
  padding-bottom: 80px;
}

.bt-contact-page h2 {
  max-width: 836px;
  margin: 23.24px 0 24px;
  font-size: 28px;
  line-height: 1.3;
}

.bt-contact-page__text {
  max-width: 680px;
  margin: 20px 0 28px;
  color: #666;
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}

.bt-contact-page__text p {
  margin: 0;
}

.bt-contact-page__text span {
  display: block;
}

.bt-contact-page__email-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 836px;
  margin-top: 20px;
}

.bt-contact-page__email-card {
  padding: 24px;
  border: 1px solid #e7e3de;
  background: #f2f0ed;
}

.bt-contact-page__email-card > p:first-child {
  margin: 0;
  color: #999;
  font-family: var(--bt-font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-transform: uppercase;
}

.bt-contact-page__email-card h3 {
  margin-top: 6px;
  font-size: 28px;
  line-height: 1.8;
}

.bt-contact-page__email-card h3 a {
  color: inherit;
  text-decoration: none;
}

.bt-contact-page__email-card h3 a:hover,
.bt-contact-page__email-card h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bt-contact-page__email-card > p:last-child {
  margin: 6px 0 0;
  color: #666;
  font-size: 13.5px;
  line-height: 1.8;
}

.bt-contact-page__form-section {
  padding: 40px 20px;
}

.bt-contact-page__form-container {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 0 20px;
}

.bt-contact-page__form-container h2 {
  margin: 20px 0 30px;
  font-size: 40px;
  line-height: 1.3;
}

.bt-contact-page__form-notice {
  margin: -14px 0 20px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.bt-contact-form {
  display: grid;
  gap: 22px;
}

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

.bt-contact-form label {
  display: block;
}

.bt-contact-form input,
.bt-contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #e7e3de;
  border-radius: 0;
  background: #fff;
  color: #1a1a1a;
  font: 16px/1.2 var(--bt-font);
}

.bt-contact-form input {
  min-height: 45px;
  padding: 0 15px;
}

.bt-contact-form textarea {
  min-height: 100px;
  padding: 15px;
  resize: vertical;
}

.bt-contact-form input:focus-visible,
.bt-contact-form textarea:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.bt-contact-form button {
  justify-self: start;
  min-height: 47px;
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  background: #121212;
  color: #fff;
  font: 15px/1 var(--bt-font);
  cursor: pointer;
}

.bt-contact-form button:hover,
.bt-contact-form button:focus-visible {
  background: #333;
}

.bt-care-page__container {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 32px;
}

.bt-care-page__hero {
  padding: 80px 0 56px;
  background: #f2f0ed;
}

.bt-care-page__eyebrow,
.bt-care-page__subtitle,
.bt-care-page__text,
.bt-care-page__card > p,
.bt-care-page__list,
.bt-care-page__next-card p,
.bt-care-page__next-card a {
  font-family: var(--bt-font);
  font-weight: 300;
  letter-spacing: 0.6px;
}

.bt-care-page__eyebrow {
  margin: 11px 0 12px;
  color: #999;
  font-family: var(--bt-font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-transform: uppercase;
}

.bt-care-page h1,
.bt-care-page h2,
.bt-care-page h3 {
  margin: 0;
  color: #1a1a1a;
  font-family: var(--bt-font-heading);
  font-weight: 400;
}

.bt-care-page__hero h1 {
  max-width: 836px;
  margin: 34.84px 0 20px;
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.1;
}

.bt-care-page__subtitle {
  max-width: 680px;
  margin: 16px 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.bt-care-page__section {
  padding: 56px 0;
}

.bt-care-page__section--last {
  padding-bottom: 80px;
}

.bt-care-page__section h2 {
  max-width: 836px;
  margin: 23.24px 0 24px;
  font-size: 28px;
  line-height: 1.3;
}

.bt-care-page__card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 836px;
}

.bt-care-page__card {
  padding: 24px;
  border: 1px solid #e7e3de;
  background: #f2f0ed;
}

.bt-care-page__card--wide {
  grid-column: 1 / -1;
  min-height: 123px;
}

.bt-materials-page__choice-card {
  min-height: 293px;
}

.bt-materials-page__card--compact {
  min-height: 0;
}

.bt-materials-page__choice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  color: #666;
  font-family: var(--bt-font);
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 1.8;
}

.bt-materials-page__choice-list p {
  margin: 0;
}

.bt-materials-page__choice-list strong {
  color: #1a1a1a;
  font-weight: 500;
}

.bt-size-guide-page__width-card {
  min-height: 204px;
}

.bt-size-guide-page .bt-care-page__section:not(.bt-care-page__section--last) {
  padding-bottom: 70px;
}

.bt-size-guide-page .bt-care-page__section--last {
  padding-bottom: 93px;
}

.bt-size-guide-page__width-value {
  margin: 6px 0 0;
  color: #1a1a1a;
  font-family: var(--bt-font-heading);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

.bt-size-guide-page__width-card > p:last-child {
  margin-top: 6px;
}

.bt-size-guide-page__table {
  max-width: 836px;
  margin-top: 24px;
  border-top: 1px solid #e7e3de;
  border-bottom: 1px solid #e7e3de;
}

.bt-size-guide-page__table-row {
  display: grid;
  grid-template-columns: repeat(var(--bt-size-columns), minmax(0, 1fr));
  border-bottom: 1px solid #e7e3de;
}

.bt-size-guide-page__table-row:last-child {
  border-bottom: 0;
}

.bt-size-guide-page__table-row > div {
  padding: 10px 16px;
  color: #999;
  font-family: var(--bt-font-mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1.2px;
  line-height: 1.5;
  text-transform: uppercase;
}

.bt-size-guide-page__table--spacious .bt-size-guide-page__table-row--head {
  min-height: 71px;
}

.bt-size-guide-page__table--spacious .bt-size-guide-page__table-row:not(.bt-size-guide-page__table-row--head) {
  min-height: 91px;
}

.bt-size-guide-page__table-row {
  align-items: center;
}

.bt-size-guide-page__table-row:not(.bt-size-guide-page__table-row--head) {
  min-height: 46px;
}

.bt-size-guide-page__note {
  max-width: 836px;
  margin: 16px 0 0;
  color: #666;
  font-family: var(--bt-font);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 1.8;
}

.bt-size-guide-page__measure-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 836px;
  margin-top: 24px;
  color: #666;
  font-family: var(--bt-font);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 1.7;
}

.bt-size-guide-page__measure-list p {
  margin: 0;
}

.bt-policy-page__container {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 40px 20px;
}

.bt-policy-page--cookie .bt-policy-page__container {
  width: min(100%, 800px);
}

.bt-policy-page h1,
.bt-policy-page h2 {
  color: #121212;
  font-family: var(--bt-font-heading);
  font-weight: 400;
  letter-spacing: 0.6px;
}

.bt-policy-page h1 {
  margin: 26.8px 0;
  font-size: 40px;
  line-height: 1.3;
}

.bt-policy-page h2 {
  margin: 19.92px 0;
  font-size: 24px;
  line-height: 1.3;
}

.bt-policy-page p,
.bt-policy-page li {
  color: #1a1a1a;
  font-family: var(--bt-font);
  font-size: 14.5px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 1.8;
}

.bt-policy-page p {
  margin: 14.5px 0;
}

.bt-policy-page__updated {
  color: #666;
}

.bt-policy-page ul {
  margin: 14.5px 0;
  padding-left: 20px;
}

.bt-policy-page li {
  padding-left: 0;
}

.bt-policy-page__content > :first-child {
  margin-top: 0;
}

.bt-policy-page__content strong {
  color: #121212;
  font-weight: 600;
}

.bt-policy-page__content table {
  width: 100%;
  margin: 14.5px 0;
  border-collapse: collapse;
  color: #1a1a1a;
  font: 300 14.5px/1.8 var(--bt-font);
  letter-spacing: 0.6px;
}

.bt-policy-page__content th,
.bt-policy-page__content td {
  padding: 12px 14px;
  border: 1px solid #e7e3de;
  text-align: left;
  vertical-align: top;
}

.bt-policy-page__content th {
  color: #121212;
  font-weight: 600;
}

.bt-faq-page__section {
  padding: 56px 0;
}

.bt-faq-page__section:not(:last-child) {
  padding-bottom: 93px;
}

.bt-faq-page__section:last-child {
  padding-bottom: 110px;
}

.bt-faq-page h2 {
  max-width: 836px;
  margin: 23.24px 0 24px;
  color: #1a1a1a;
  font-family: var(--bt-font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}

.bt-faq-page__questions {
  max-width: 836px;
}

.bt-faq-page__question {
  margin-top: 24px;
}

.bt-faq-page__question + .bt-faq-page__question {
  margin-top: 24px;
}

.bt-faq-page__question h3 {
  margin: 0;
  color: #1a1a1a;
  font-family: var(--bt-font-mono);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 1.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.bt-faq-page__question p {
  max-width: 680px;
  margin: 15px 0 0;
  color: #666;
  font-family: var(--bt-font);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.6px;
  line-height: 1.75;
}

.bt-faq-page__question--long-answer p {
  min-height: 78.75px;
}

@media (max-width: 720px) {
  .bt-policy-page__content table {
    table-layout: fixed;
    font-size: 12px;
    letter-spacing: 0.2px;
  }

  .bt-policy-page__content th,
  .bt-policy-page__content td {
    padding: 8px;
    overflow-wrap: anywhere;
  }
}

.bt-policy-page a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bt-policy-page a:hover,
.bt-policy-page a:focus-visible {
  color: var(--bt-accent);
}

.bt-care-page__card > p:first-child {
  margin: 0;
  color: #999;
  font-family: var(--bt-font-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-transform: uppercase;
}

.bt-care-page__card > p:last-child {
  margin: 6px 0 0;
  color: #666;
  font-size: 13.5px;
  line-height: 1.8;
}

.bt-care-page__text {
  max-width: 680px;
  margin: 20px 0 15px;
  color: #666;
  font-size: 15px;
  line-height: 1.75;
}

.bt-care-page__text p,
.bt-care-page__list p {
  margin: 0;
}

.bt-care-page__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 836px;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.bt-care-page__list strong {
  color: #1a1a1a;
  font-weight: 500;
}

.bt-care-page__list p {
  margin: 16px 0;
}

.bt-care-page__next {
  padding: 36px 0 69px;
}

.bt-care-page__next-container {
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0 20px;
}

.bt-care-page__next h2 {
  margin: 0 0 30px;
  font-size: 30px;
  line-height: 1.3;
}

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

.bt-care-page__next-card {
  padding: 29px 40px 0;
}

.bt-care-page__next-card h3 {
  font-size: 18px;
  line-height: 1.5;
}

.bt-care-page__next-card p {
  margin: 10px 0 0;
  color: rgba(18, 18, 18, 0.75);
  font-size: 14.5px;
  line-height: 1.65;
}

.bt-care-page__next-card a {
  display: inline-block;
  margin-top: 15px;
  color: #121212;
  font-size: 16px;
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease, text-decoration-thickness 160ms ease, text-underline-offset 160ms ease;
}

.bt-care-page__next-card a:hover,
.bt-care-page__next-card a:focus-visible {
  color: var(--bt-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.bt-page-hero h1,
.bt-article__header h1,
.bt-product__summary h1 {
  color: var(--bt-ink);
  font-size: clamp(38px, 5vw, 64px);
}

.bt-info-panel {
  padding-top: 24px;
  padding-bottom: 24px;
}

.bt-info-panel h2,
.bt-info-panel h3 {
  font-size: 24px;
}

.bt-info-panel a {
  font-weight: 700;
}

.bt-native-content {
  max-width: 820px;
  font-size: 18px;
}

.bt-native-page-title {
  margin: 0 0 32px;
  color: var(--bt-ink);
  font-family: var(--bt-font-heading);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
}

.bt-native-content--article {
  margin: 0 auto;
}

.bt-native-content h2,
.bt-native-content h3 {
  margin-top: 34px;
  color: var(--bt-ink);
  font-family: var(--bt-font-heading);
}

.bt-native-content figure {
  margin: 28px 0;
}

.bt-native-content img {
  width: 100%;
}

.bt-article__image {
  max-width: 980px;
  margin: 0 auto 28px;
}

.bt-article__image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.bt-product-page {
  width: min(100%, var(--bt-width));
  margin: 0 auto;
  padding: 36px 24px 0;
}

.bt-product {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(340px, 0.45fr);
  gap: 0;
  align-items: start;
}

.bt-product__gallery {
  min-width: 0;
  padding-right: 48px;
}

.bt-product__media-viewer {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bt-product__media-viewer::-webkit-scrollbar {
  display: none;
}

.bt-product__gallery figure {
  width: 100%;
  margin: 0;
  background: #fff;
  scroll-snap-align: start;
}

.bt-product__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.bt-product__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.bt-product__thumb {
  display: block;
  border: 1px solid transparent;
  background: #fff;
  outline-offset: 2px;
}

.bt-product__thumb:hover,
.bt-product__thumb:focus-visible {
  border-color: var(--bt-ink);
}

.bt-product__thumb img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.bt-product__summary {
  position: sticky;
  top: 112px;
  padding-left: 48px;
}

.bt-product__summary h1 {
  max-width: none;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.bt-price--large {
  margin: 18px 0 8px;
  font-size: 22px;
  font-weight: 600;
}

.bt-product__shipping-note {
  margin: 0 0 20px;
  color: var(--bt-muted);
  font-size: 13px;
}

.bt-product-size-guide {
  margin: 2px 0 16px;
  color: var(--bt-muted);
  font-size: 14px;
  line-height: 1.6;
}

.bt-product-size-guide a {
  color: var(--bt-ink);
  text-underline-offset: 3px;
}

.bt-add-to-cart {
  margin-top: 0;
}

.bt-add-to-cart form.cart {
  display: grid;
  gap: 16px;
}

.bt-add-to-cart .variations {
  width: 100%;
  margin: 0;
}

.bt-add-to-cart .woocommerce-variation-availability,
.bt-add-to-cart .stock {
  display: none;
}

.bt-add-to-cart .bt-variation-source,
.bt-add-to-cart .variations tr.bt-variation-source {
  display: none;
}

.bt-variant-picker {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.bt-variant-picker .form__label {
  display: block;
  margin: 0 0 8px;
  color: var(--bt-ink);
  font-size: 13px;
  font-weight: 500;
}

.bt-variant-picker input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.bt-variant-picker input[type="radio"] + label {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 8px 8px 0;
  padding: 10px 18px;
  border: 1px solid var(--bt-line);
  background: #fff;
  color: var(--bt-ink);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.bt-variant-picker input[type="radio"] + label:hover {
  border-color: var(--bt-ink);
}

.bt-variant-picker input[type="radio"]:checked + label {
  border-color: #000;
  background: #000;
  color: #fff;
}

.bt-variant-picker input[type="radio"]:focus-visible + label {
  outline: 2px solid rgba(18, 18, 18, 0.35);
  outline-offset: 2px;
}

.bt-variant-picker input[type="radio"]:disabled + label,
.bt-variant-picker input[type="radio"].disabled + label,
.bt-variant-picker label.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}

.bt-add-to-cart .variations tr {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.bt-add-to-cart .variations th,
.bt-add-to-cart .variations td {
  display: block;
  padding: 0;
  text-align: left;
}

.bt-add-to-cart .variations label,
.bt-add-to-cart .quantity__label {
  display: block;
  margin-bottom: 8px;
  color: var(--bt-ink);
  font-size: 13px;
  font-weight: 500;
}

.bt-add-to-cart select,
.search-field {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--bt-line);
  background: #fff;
  color: var(--bt-ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bt-add-to-cart .quantity {
  position: relative;
  display: flex;
  float: none;
  width: 142px;
  min-height: 46px;
  margin: 0;
  border: 1px solid rgba(18, 18, 18, 0.55);
  background: #fff;
  color: var(--bt-ink);
}

.bt-add-to-cart .quantity__button {
  display: flex;
  width: 45px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(18, 18, 18, 0.7);
  cursor: pointer;
  padding: 0;
}

.bt-add-to-cart .quantity__button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.bt-add-to-cart .quantity__button .svg-wrapper {
  display: inline-flex;
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.bt-add-to-cart .quantity__button .icon {
  display: block;
  width: 100%;
  height: 100%;
}

.bt-add-to-cart .quantity__input {
  width: 100%;
  min-width: 36px;
  flex-grow: 1;
  border: 0;
  background: transparent;
  color: var(--bt-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  padding: 0 4px;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.bt-add-to-cart .quantity__input::-webkit-outer-spin-button,
.bt-add-to-cart .quantity__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.bt-add-to-cart select:hover,
.search-field:hover,
.bt-add-to-cart select:focus,
.search-field:focus {
  border-color: var(--bt-accent);
  box-shadow: 0 0 0 3px rgba(143, 63, 43, 0.12);
  outline: none;
}

.bt-add-to-cart .quantity:focus-within {
  border-color: var(--bt-accent);
  box-shadow: 0 0 0 3px rgba(143, 63, 43, 0.12);
}

.bt-add-to-cart .quantity__button:focus-visible,
.bt-add-to-cart .quantity__input:focus-visible {
  outline: 2px solid rgba(18, 18, 18, 0.35);
  outline-offset: -2px;
}

.bt-add-to-cart .woocommerce-variation-add-to-cart {
  display: grid;
  gap: 16px;
}

.bt-add-to-cart button.single_add_to_cart_button {
  width: 100%;
  min-height: 50px;
  margin-top: 0;
  border-color: #000;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bt-add-to-cart button.single_add_to_cart_button:hover,
.bt-add-to-cart button.single_add_to_cart_button:focus-visible {
  background: #fff;
  color: #000;
  box-shadow: none;
  transform: none;
}

.bt-product-accordion {
  margin-top: 28px;
}

.bt-product-accordion details {
  border-top: 1px solid var(--bt-line);
}

.bt-product-accordion details:last-child {
  border-bottom: 1px solid var(--bt-line);
}

.bt-product-accordion summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  color: var(--bt-ink);
  font-size: 15px;
  line-height: 1.3;
}

.bt-product-accordion summary::-webkit-details-marker {
  display: none;
}

.bt-product-accordion summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.bt-product-accordion details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.bt-product-accordion__content {
  padding: 0 6px 22px 0;
  color: var(--bt-muted);
  font-size: 15px;
  line-height: 1.7;
}

.bt-product-accordion__content p {
  margin: 0 0 14px;
}

.bt-product-accordion__content p:last-child {
  margin-bottom: 0;
}

.bt-related-products {
  padding-top: 54px;
  padding-bottom: 54px;
}

.bt-related-products .bt-section__heading {
  margin-bottom: 32px;
}

.bt-attribute-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bt-attribute-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
}

.bt-attribute-list dt {
  color: var(--bt-ink);
  font-weight: 700;
}

.bt-attribute-list dd {
  margin: 0;
}

.beltoria-footer {
  background: #f2f0ed;
  color: var(--bt-ink);
  border-top: 1px solid rgba(18, 18, 18, 0.1);
}

.beltoria-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 40px;
}

.beltoria-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.beltoria-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beltoria-footer-col-title {
  margin: 0 0 8px;
  color: rgba(18, 18, 18, 0.5);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.beltoria-footer-col a {
  color: rgba(18, 18, 18, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease;
}

.beltoria-footer-col a:hover,
.beltoria-footer-col a:focus-visible {
  color: var(--bt-ink);
}

.beltoria-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.beltoria-footer-social-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: rgba(18, 18, 18, 0.5);
}

.beltoria-footer-social-icon:hover,
.beltoria-footer-social-icon:focus-visible {
  color: var(--bt-ink);
}

.beltoria-footer-divider {
  height: 1px;
  margin-bottom: 24px;
  background: rgba(18, 18, 18, 0.1);
}

.beltoria-footer-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px;
  padding: 0;
  align-items: center;
  list-style: none;
}

.beltoria-footer-payment li {
  display: flex;
  align-items: center;
}

.beltoria-footer-payment .icon--full-color {
  display: block;
  width: 38px;
  height: 24px;
}

.beltoria-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.beltoria-footer-meta span {
  color: rgba(18, 18, 18, 0.45);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .bt-site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    padding: 18px 20px;
  }

  .bt-logo {
    grid-column: 2;
    width: 170px;
  }

  .bt-primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 18px;
  }

  .bt-header-actions {
    grid-column: 3;
    justify-content: flex-end;
  }

  .beltoria-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .bt-cart-layout {
    grid-template-columns: 1fr;
  }

  .bt-cart-summary {
    position: static;
  }

  .bt-cart-summary .cart_totals {
    max-width: none;
  }

  .bt-collection-grid,
  .bt-product-grid,
  .bt-post-grid,
  .bt-info-grid,
  .bt-product,
  .bt-why-grid {
    grid-template-columns: 1fr;
  }

  .bt-product__summary {
    position: static;
  }

  .bt-product-page {
    padding: 28px 20px 0;
  }

  .bt-product {
    gap: 30px;
  }

  .bt-product__gallery,
  .bt-product__summary {
    padding: 0;
  }

  .bt-product__summary h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .bt-why-grid {
    border-radius: 4px;
  }

  .bt-why-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .bt-why-card:last-child {
    border-bottom: 0;
  }

  .bt-testimonial-track {
    grid-auto-columns: minmax(82vw, 1fr);
  }

  .bt-guide-band {
    min-height: auto;
  }

  .bt-guide-band__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 56px 24px;
  }

  .bt-guide-band__cards {
    max-width: 520px;
  }

  .bt-guide-card {
    min-height: auto;
  }

  .bt-collection-products .bt-product-grid,
  .bt-related-products .bt-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .bt-announcement {
    font-size: 11px;
  }

  .bt-site-header__inner {
    gap: 14px;
    padding: 16px 18px;
  }

  .bt-logo {
    width: 158px;
  }

  .bt-primary-nav,
  .bt-header-actions {
    gap: 12px;
  }

  .bt-primary-nav a,
  .bt-header-actions a {
    font-size: 11px;
  }

  .beltoria-footer-inner {
    padding: 48px 16px 32px;
  }

  .beltoria-footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bt-hero {
    min-height: 620px;
  }

  .bt-guide-band__inner {
    padding: 48px 18px;
  }

  .bt-guide-band__copy {
    font-size: 15px;
  }

  .bt-guide-card {
    padding: 22px;
  }

  .bt-section,
  .bt-page-shell {
    padding: 42px 18px;
  }

  body.woocommerce-cart .bt-page-shell {
    padding: 0;
  }

  .bt-cart-shell {
    padding: 38px 18px 56px;
  }

  .bt-cart-header__row {
    display: grid;
    gap: 12px;
  }

  .bt-cart-table,
  .bt-cart-table thead,
  .bt-cart-table tbody,
  .bt-cart-table tr,
  .bt-cart-table td {
    display: block;
    width: 100%;
  }

  .bt-cart-table thead {
    display: none;
  }

  .bt-cart-table tr.cart_item {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--bt-line);
  }

  .bt-cart-table tr.cart_item td {
    border-bottom: 0;
    padding: 0;
  }

  .bt-cart-table .product-thumbnail {
    grid-row: 1 / span 4;
    width: 88px;
    padding-right: 0;
  }

  .bt-cart-table .product-thumbnail img {
    width: 88px;
    height: 88px;
  }

  .bt-cart-table td.product-price,
  .bt-cart-table td.product-subtotal {
    display: none;
  }

  .bt-cart-table .product-quantity {
    margin-top: 14px;
    min-width: 0;
    text-align: left;
  }

  .bt-cart-actions-row {
    padding-top: 20px;
  }

  .bt-cart-actions-row .actions,
  .bt-cart-actions-row .coupon {
    display: grid;
    width: 100%;
  }

  .bt-cart-actions-row .button,
  .bt-cart-actions-row input {
    width: 100%;
  }

  .bt-collection-hero {
    padding: 34px 18px 12px;
  }

  .bt-collection-products.bt-home-products {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .bt-collection-products .bt-product-grid {
    gap: 14px;
  }

  .bt-product__thumbnails {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bt-collection-products .bt-product-card h3,
  .bt-related-products .bt-product-card h3 {
    font-size: 13px;
  }

  .bt-testimonial-card {
    padding: 28px;
  }

  .bt-faq-item p {
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .bt-about-page__container {
    padding: 0 20px;
  }

  .bt-contact-page__container {
    padding: 0 20px;
  }

  .bt-care-page__container {
    padding: 0 20px;
  }

  .bt-about-page__hero {
    padding: 56px 0 44px;
  }

  .bt-about-page__hero h1 {
    font-size: 38px;
  }

  .bt-contact-page__hero {
    padding: 56px 0 44px;
  }

  .bt-contact-page__hero h1 {
    font-size: 38px;
  }

  .bt-care-page__hero {
    padding: 56px 0 44px;
  }

  .bt-care-page__hero h1 {
    font-size: 38px;
  }

  .bt-about-page__section,
  .bt-about-page__priorities {
    padding: 40px 0;
  }

  .bt-about-page__priority-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bt-about-page__priority {
    padding: 22px;
  }

  .bt-about-page__priority:last-child {
    grid-column: auto;
  }

  .bt-about-page__section--last {
    padding-bottom: 56px;
  }

  .bt-contact-page__section {
    padding: 40px 0;
  }

  .bt-contact-page__section--last {
    padding-bottom: 56px;
  }

  .bt-care-page__section {
    padding: 40px 0;
  }

  .bt-care-page__section--last {
    padding-bottom: 56px;
  }

  .bt-contact-page__email-grid,
  .bt-contact-form__row,
  .bt-care-page__card-grid,
  .bt-care-page__next-grid {
    grid-template-columns: 1fr;
  }

  .bt-contact-page__email-grid {
    gap: 16px;
  }

  .bt-contact-page__email-card {
    padding: 22px;
  }

  .bt-care-page__card {
    padding: 22px;
  }

  .bt-care-page__card--wide {
    grid-column: auto;
  }

  .bt-care-page__next {
    padding: 28px 0 48px;
  }

  .bt-care-page__next-container {
    padding: 0 20px;
  }

  .bt-care-page__next-card {
    padding: 24px 0 0;
  }

  .bt-contact-page__form-section {
    padding: 40px 20px;
  }

  .bt-contact-page__form-container h2 {
    font-size: 34px;
  }
}

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

/* WooCommerce account */
body.woocommerce-account .bt-page-shell,
body.woocommerce-account .bt-native-content {
  max-width: none;
  padding: 0;
}

.bt-account-auth,
.bt-account-dashboard {
  width: min(100% - 64px, 1080px);
  margin: 0 auto;
}

.bt-account-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 12%;
  padding: 122px 0 142px;
}

.bt-account-auth__intro {
  align-self: center;
  padding-bottom: 30px;
}

.bt-account-auth__intro .bt-eyebrow {
  margin: 0 0 22px;
}

.bt-account-auth__intro h1,
.bt-account-dashboard__sidebar h1 {
  max-width: 510px;
  margin: 0;
  color: var(--bt-ink);
  font-size: clamp(52px, 5.4vw, 76px);
  font-weight: 400;
  line-height: 0.96;
}

.bt-account-auth__intro > p:last-child {
  max-width: 410px;
  margin: 26px 0 0;
  color: var(--bt-muted);
  font-size: 16px;
  line-height: 1.7;
}

.bt-account-auth__forms {
  padding-top: 12px;
}

.bt-account-auth__panel + .bt-account-auth__panel {
  margin-top: 54px;
  padding-top: 44px;
  border-top: 1px solid var(--bt-line);
}

.bt-account-auth__panel h2 {
  margin: 0 0 32px;
  color: var(--bt-ink);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
}

body.woocommerce-account .woocommerce-form {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.woocommerce-account .form-row {
  margin: 0 0 24px;
}

body.woocommerce-account .form-row-first,
body.woocommerce-account .form-row-last {
  float: none;
  width: auto;
}

body.woocommerce-account label {
  display: block;
  margin-bottom: 9px;
  color: var(--bt-muted);
  font-family: var(--bt-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.woocommerce-account .input-text {
  width: 100%;
  min-height: 46px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--bt-line);
  border-radius: 0;
  background: transparent;
  color: var(--bt-ink);
  box-shadow: none;
  font: inherit;
  font-size: 17px;
}

body.woocommerce-account .input-text:focus {
  border-color: var(--bt-ink);
  outline: 0;
}

body.woocommerce-account .required {
  color: var(--bt-ink);
  text-decoration: none;
}

body.woocommerce-account .button,
body.woocommerce-account button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--bt-ink);
  border-radius: 0;
  background: var(--bt-ink);
  color: #fff;
  font-family: var(--bt-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.woocommerce-account .button:hover,
body.woocommerce-account button.button:hover {
  border-color: var(--bt-deep);
  background: var(--bt-deep);
  color: #fff;
}

.bt-account-auth .woocommerce-form-login .form-row:last-of-type {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.bt-account-auth .woocommerce-form-login__submit {
  order: 1;
}

.bt-account-auth .woocommerce-form-login__rememberme {
  order: 2;
  margin: 0;
}

.bt-account-auth .woocommerce-form-login__rememberme input {
  margin-right: 7px;
}

.bt-account-auth .woocommerce-form-login__rememberme span {
  color: var(--bt-muted);
  font-size: 13px;
}

.bt-account-auth .show-password-input {
  display: none !important;
}

.bt-account-auth .lost_password {
  margin-top: 26px;
}

.bt-account-auth .lost_password a {
  color: var(--bt-ink);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bt-account-dashboard {
  display: grid;
  grid-template-columns: minmax(190px, 3fr) minmax(0, 9fr);
  gap: 8%;
  padding: 96px 0 128px;
}

.bt-account-dashboard__sidebar {
  align-self: start;
  position: sticky;
  top: 110px;
}

.bt-account-dashboard__sidebar .bt-eyebrow {
  margin: 0 0 18px;
}

.bt-account-dashboard__sidebar h1 {
  margin-bottom: 34px;
  font-size: 34px;
  line-height: 1.1;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation li {
  margin: 0 0 23px;
}

.woocommerce-MyAccount-navigation a {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: var(--bt-muted);
  font-family: var(--bt-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.woocommerce-MyAccount-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
  color: var(--bt-ink);
}

.woocommerce-MyAccount-navigation .is-active a::after,
.woocommerce-MyAccount-navigation a:hover::after {
  transform: scaleX(1);
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout {
  width: 72px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--bt-line);
}

.bt-account-dashboard__content {
  min-width: 0;
}

.bt-account-dashboard__intro {
  margin-bottom: 62px;
}

.bt-account-dashboard__intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--bt-ink);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.bt-account-dashboard__intro p,
.woocommerce-MyAccount-content > p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--bt-muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .bt-account-auth,
  .bt-account-dashboard {
    width: calc(100% - 40px);
  }

  .bt-account-auth {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 76px 0 86px;
  }

  .bt-account-auth__intro {
    padding-bottom: 0;
  }

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

  .bt-account-dashboard {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 62px 0 82px;
  }

  .bt-account-dashboard__sidebar {
    position: static;
  }

  .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .woocommerce-MyAccount-navigation li,
  .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }
}
