:root {
  --bp-bg: #f5f8fc;
  --bp-surface: #ffffff;
  --bp-text: #08112c;
  --bp-muted: #516078;
  --bp-faint: #eef2f7;
  --bp-line: #dce3ee;
  --bp-primary: #17128f;
  --bp-shop-accent: #b42318;
  --bp-shop-accent-dark: #8a1c16;
  --bp-shop-accent-soft: #fff1f0;
  --bp-shop-accent-rgb: 180, 35, 24;
  --bp-flash: #991b1b;
  --bp-flash-dark: #7f1d1d;
  --bp-red: var(--bp-shop-accent);
  --bp-red-dark: var(--bp-shop-accent-dark);
  --bp-green: #10a575;
  --bp-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  --bp-radius: 18px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-shop-theme="red"] {
  --bp-shop-accent: #b42318;
  --bp-shop-accent-dark: #8a1c16;
  --bp-shop-accent-soft: #fff1f0;
  --bp-shop-accent-rgb: 180, 35, 24;
  --bp-flash: #991b1b;
  --bp-flash-dark: #7f1d1d;
}

:root[data-shop-theme="orange"] {
  --bp-shop-accent: #c2410c;
  --bp-shop-accent-dark: #9a3412;
  --bp-shop-accent-soft: #fff7ed;
  --bp-shop-accent-rgb: 194, 65, 12;
  --bp-flash: #9a3412;
  --bp-flash-dark: #7c2d12;
}

:root[data-shop-theme="green"] {
  --bp-shop-accent: #047857;
  --bp-shop-accent-dark: #065f46;
  --bp-shop-accent-soft: #ecfdf5;
  --bp-shop-accent-rgb: 4, 120, 87;
  --bp-flash: #047857;
  --bp-flash-dark: #064e3b;
}

:root[data-shop-theme="blue"] {
  --bp-shop-accent: #1d4ed8;
  --bp-shop-accent-dark: #1e40af;
  --bp-shop-accent-soft: #eff6ff;
  --bp-shop-accent-rgb: 29, 78, 216;
  --bp-flash: #1e40af;
  --bp-flash-dark: #1e3a8a;
}

:root[data-shop-theme="navy"] {
  --bp-shop-accent: #273043;
  --bp-shop-accent-dark: #111827;
  --bp-shop-accent-soft: #f1f5f9;
  --bp-shop-accent-rgb: 39, 48, 67;
  --bp-flash: #1f2937;
  --bp-flash-dark: #0f172a;
}

:root[data-shop-theme="purple"] {
  --bp-shop-accent: #6d28d9;
  --bp-shop-accent-dark: #5b21b6;
  --bp-shop-accent-soft: #f5f3ff;
  --bp-shop-accent-rgb: 109, 40, 217;
  --bp-flash: #6d28d9;
  --bp-flash-dark: #4c1d95;
}

:root[data-shop-theme="pink"] {
  --bp-shop-accent: #be185d;
  --bp-shop-accent-dark: #9d174d;
  --bp-shop-accent-soft: #fdf2f8;
  --bp-shop-accent-rgb: 190, 24, 93;
  --bp-flash: #be185d;
  --bp-flash-dark: #831843;
}

:root[data-shop-theme="brown"] {
  --bp-shop-accent: #7c2d12;
  --bp-shop-accent-dark: #431407;
  --bp-shop-accent-soft: #fff7ed;
  --bp-shop-accent-rgb: 124, 45, 18;
  --bp-flash: #7c2d12;
  --bp-flash-dark: #431407;
}

:root[data-shop-theme="black"] {
  --bp-shop-accent: #111827;
  --bp-shop-accent-dark: #030712;
  --bp-shop-accent-soft: #f3f4f6;
  --bp-shop-accent-rgb: 17, 24, 39;
  --bp-flash: #111827;
  --bp-flash-dark: #030712;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bp-bg);
  color: var(--bp-text);
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button {
  cursor: pointer;
}

.app-root {
  min-height: 100vh;
}

.bp-shop,
.bp-shop * {
  min-width: 0;
}

.bp-shop {
  min-height: 100vh;
  background: var(--bp-bg);
  color: var(--bp-text);
}

.bp-shop-footer {
  display: grid;
  gap: 14px;
  margin: 28px auto 0;
  padding: 22px 34px 28px;
  border-top: 1px solid var(--bp-line);
  background: color-mix(in srgb, var(--bp-shop-accent) 3%, #fff);
  color: var(--bp-muted);
}

.bp-shop-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-shop-footer-brand > span {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bp-shop-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.bp-shop-footer-brand > span.has-image {
  border: 1px solid rgba(var(--bp-shop-accent-rgb), 0.24);
  background: #fff;
}

.bp-shop-footer-brand > span.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-shop-footer strong,
.bp-shop-footer small,
.bp-shop-footer p,
.bp-shop-footer dt,
.bp-shop-footer dd {
  margin: 0;
}

.bp-shop-footer strong {
  display: block;
  color: var(--bp-text);
  font-size: 16px;
  font-weight: 780;
}

.bp-shop-footer small {
  display: block;
  margin-top: 2px;
  color: #44516a;
  font-size: 12px;
}

.bp-shop-footer p {
  max-width: 760px;
  font-size: 13px;
  line-height: 1.55;
}

.bp-shop-footer dl {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 14px;
  margin: 0;
}

.bp-shop-footer dt {
  color: var(--bp-text);
  font-size: 12px;
  font-weight: 760;
}

.bp-shop-footer dd {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.bp-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bp-primary,
.bp-secondary,
.bp-red-link,
.bp-messenger-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: var(--bp-red);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.15;
  text-align: center;
}

.bp-primary:hover,
.bp-messenger-cta:hover {
  background: var(--bp-red-dark);
}

.bp-secondary {
  border: 1px solid #2425a7;
  background: #fff;
  color: #17128f;
}

.bp-breadcrumb {
  margin: 0 0 14px;
  color: var(--bp-muted);
  font-size: 13px;
}

.bp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bp-text);
  font-weight: 950;
}

.bp-logo span {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 32px;
  height: 32px;
  border: 2px solid var(--bp-primary);
  border-radius: 10px;
  color: var(--bp-primary);
  font-weight: 950;
}

.bp-logo span.has-image {
  border-color: rgba(var(--bp-shop-accent-rgb), 0.28);
  background: #fff;
  color: transparent;
}

.bp-logo span.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-logo strong {
  white-space: nowrap;
}

.bp-desktop-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 22px 0;
}

.bp-trust-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 42px;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  border-radius: 14px 14px 0 0;
  background: #fff;
}

.bp-trust-top span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid var(--bp-line);
  color: #25314d;
  font-size: 14px;
  font-weight: 700;
}

.bp-trust-top span:last-child {
  border-right: 0;
}

.bp-trust-top .bp-icon {
  width: 18px;
  height: 18px;
  color: var(--bp-primary);
}

.bp-desktop-mainbar {
  display: grid;
  grid-template-columns: 210px minmax(280px, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 88px;
  padding: 0 26px;
  border-inline: 1px solid var(--bp-line);
  background: #fff;
}

.bp-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  height: 48px;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
  background: #fff;
}

.bp-search input {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0 16px;
  color: var(--bp-text);
  font-size: 15px;
  outline: 0;
}

.bp-search .bp-icon {
  color: var(--bp-text);
}

.bp-desktop-actions {
  display: flex;
  gap: 18px;
}

.bp-action {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--bp-text);
  font-size: 13px;
  font-weight: 800;
}

.bp-action .bp-icon {
  width: 24px;
  height: 24px;
}

.bp-action i,
.bp-cart-badge i,
.bp-bottom-icon i {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--bp-red);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.bp-action i {
  top: -8px;
  right: 13px;
}

.bp-page {
  width: min(1280px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 18px 0 30px;
}

.bp-desktop-home-grid,
.bp-category-layout {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 34px;
  border: 1px solid var(--bp-line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  background: #fff;
}

.bp-sidebar {
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 18px;
  border: 1px solid var(--bp-line);
  border-radius: 14px;
  background: #fff;
}

.bp-sidebar h2,
.bp-mobile-categories h2,
.bp-section h2,
.bp-section-head h1 {
  margin: 0;
  color: var(--bp-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
}

.bp-sidebar .bp-category-card {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.bp-sidebar .bp-category-card span {
  display: none;
}

.bp-sidebar .bp-category-card b {
  font-size: 15px;
}

.bp-sidebar .bp-category-card small {
  display: block;
  color: var(--bp-muted);
}

.bp-category-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border: 1px solid var(--bp-line);
  border-radius: 14px;
  background: #fff;
}

.bp-category-card span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #f3f6fb;
  color: var(--bp-primary);
}

.bp-category-custom-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-style: normal;
  font-size: 19px;
  line-height: 1;
}

img.bp-category-custom-icon {
  object-fit: cover;
}

.bp-category-card b {
  overflow: hidden;
  color: var(--bp-text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
  text-overflow: ellipsis;
}

.bp-home-products {
  min-width: 0;
}

.bp-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.bp-section-head h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  font-size: 18px;
}

.bp-section-head h2 span {
  color: var(--bp-red);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}

.bp-section-head a {
  color: var(--bp-primary);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.bp-product-row,
.bp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.bp-product-card {
  display: grid;
  gap: 8px;
}

.bp-product-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 10px;
  background: #f6f1ed;
}

.bp-product-card img,
.bp-banner img,
.bp-product-photo-large img,
.bp-detail-image img,
.bp-cart-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-product-card figure span {
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 24px;
  border-radius: 6px;
  background: var(--bp-red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.bp-product-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--bp-text);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 850;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bp-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.bp-price b,
.bp-detail-price b {
  color: var(--bp-red);
  font-weight: 950;
}

.bp-price b {
  font-size: 17px;
}

.bp-price del,
.bp-detail-price del {
  color: #8b97aa;
  font-size: 13px;
}

.bp-product-card small {
  color: #6a5a48;
  font-size: 13px;
  line-height: 1.25;
}

.bp-desktop-only {
  display: block;
}

.bp-banner {
  position: relative;
  overflow: hidden;
  height: 300px;
  margin-top: 18px;
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #f4f7fa;
}

.bp-banner img {
  position: absolute;
  inset: 0;
}

.bp-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 249, 252, 0.96) 0%, rgba(246, 249, 252, 0.84) 38%, rgba(246, 249, 252, 0.12) 72%);
}

.bp-banner > div {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  display: grid;
  align-content: center;
  width: 42%;
  padding-left: 78px;
}

.bp-banner span {
  color: var(--bp-text);
  font-size: 15px;
}

.bp-banner h1 {
  margin: 4px 0 8px;
  font-size: 42px;
  line-height: 1.02;
}

.bp-banner p {
  margin: 0 0 18px;
  color: var(--bp-muted);
  font-size: 17px;
}

.bp-banner .bp-primary {
  justify-self: start;
  min-height: 46px;
}

.bp-section {
  margin-top: 26px;
  padding: 0 34px;
}

.bp-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  border-radius: 14px;
  background: #fff;
}

.bp-trust-strip > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 0 24px;
  border-right: 1px solid var(--bp-line);
}

.bp-trust-strip > div:last-child {
  border-right: 0;
}

.bp-trust-strip .bp-icon {
  color: var(--bp-primary);
}

.bp-trust-strip b {
  display: block;
  font-size: 15px;
}

.bp-trust-strip small {
  color: var(--bp-muted);
  font-size: 13px;
}

.bp-mobile-header,
.bp-mobile-categories,
.bp-flash-mobile,
.bp-bottom-nav {
  display: none;
}

.bp-sort-tabs {
  display: flex;
  gap: 10px;
  margin: 14px 0 18px;
  flex-wrap: wrap;
}

.bp-sort-tabs button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--bp-line);
  border-radius: 9px;
  background: #fff;
  color: var(--bp-muted);
  font-weight: 800;
}

.bp-sort-tabs .is-active {
  border-color: var(--bp-primary);
  background: var(--bp-primary);
  color: #fff;
}

.bp-category-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bp-product-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1fr);
  gap: 26px;
  padding: 22px;
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #fff;
}

.bp-product-gallery {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
}

.bp-product-photo-large {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 14px;
  background: #f6f1ed;
  touch-action: pan-y;
  user-select: none;
}

.bp-product-photo-large [data-gallery-count] {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 34px;
  border-radius: 999px;
  background: rgba(8, 17, 44, 0.68);
  color: #fff;
  font-weight: 900;
}

.bp-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--bp-text);
  box-shadow: 0 10px 24px rgba(8, 17, 44, 0.16);
  transform: translateY(-50%);
}

.bp-gallery-arrow .bp-icon {
  width: 20px;
  height: 20px;
}

.bp-gallery-arrow.is-prev {
  left: 14px;
}

.bp-gallery-arrow.is-next {
  right: 14px;
}

.bp-gallery-arrow.is-next .bp-icon {
  transform: rotate(180deg);
}

.bp-gallery-thumbs {
  order: -1;
  display: grid;
  align-content: start;
  gap: 10px;
}

.bp-gallery-thumbs button {
  overflow: hidden;
  width: 70px;
  height: 86px;
  padding: 0;
  border: 1px solid var(--bp-line);
  border-radius: 10px;
  background: #fff;
}

.bp-gallery-thumbs button.is-active {
  border-color: var(--bp-red);
  box-shadow: 0 0 0 3px rgba(var(--bp-shop-accent-rgb), 0.12);
}

.bp-buy-box {
  display: grid;
  align-content: start;
  gap: 16px;
}

.bp-buy-box h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.18;
}

.bp-rating {
  color: #f59e0b;
  font-size: 15px;
  font-weight: 900;
}

.bp-rating span {
  color: var(--bp-muted);
  font-weight: 700;
}

.bp-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.bp-detail-price b {
  font-size: 34px;
}

.bp-detail-price span {
  padding: 6px 10px;
  border-radius: 7px;
  background: var(--bp-shop-accent-soft);
  color: var(--bp-red);
  font-weight: 900;
}

.bp-detail-price small {
  flex-basis: 100%;
  color: var(--bp-muted);
  font-size: 13px;
  font-weight: 600;
}

.bp-variant {
  display: grid;
  gap: 9px;
}

.bp-variant label {
  font-weight: 900;
}

.bp-variant > div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bp-variant button {
  min-width: 52px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--bp-line);
  border-radius: 9px;
  background: #fff;
  color: var(--bp-text);
  font-weight: 800;
}

.bp-variant button.is-active {
  border-color: var(--bp-red);
  box-shadow: 0 0 0 3px rgba(var(--bp-shop-accent-rgb), 0.1);
}

.bp-voucher {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(var(--bp-shop-accent-rgb), 0.24);
  border-radius: 12px;
  background: var(--bp-shop-accent-soft);
}

.bp-voucher b {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bp-red);
}

.bp-voucher .bp-icon {
  width: 18px;
  height: 18px;
}

.bp-voucher span {
  color: var(--bp-text);
  font-weight: 800;
}

.bp-voucher a {
  color: var(--bp-red);
  font-weight: 900;
}

.bp-qty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 42px 42px;
  gap: 8px;
  align-items: center;
}

.bp-qty button {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--bp-line);
  border-radius: 9px;
  background: #fff;
}

.bp-qty b {
  display: grid;
  place-items: center;
  height: 42px;
  border: 1px solid var(--bp-line);
  border-radius: 9px;
}

.bp-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bp-product-actions .bp-primary,
.bp-product-actions .bp-secondary {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 56px;
  text-align: center;
}

.bp-product-actions small {
  font-size: 12px;
  font-weight: 700;
}

.bp-product-actions .bp-primary small {
  color: rgba(255, 255, 255, 0.88);
}

.bp-product-actions .bp-secondary small {
  color: var(--bp-shop-accent);
}

.bp-service-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.bp-service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bp-muted);
  font-weight: 800;
}

.bp-service-list .bp-icon {
  width: 18px;
  height: 18px;
  color: var(--bp-text);
}

.bp-mobile-sale {
  display: none;
}

.bp-description {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #fff;
}

.bp-description h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.bp-description p {
  margin: 0;
  color: var(--bp-muted);
  font-size: 16px;
  line-height: 1.65;
}

.bp-detail-image {
  overflow: hidden;
  height: 320px;
  margin-top: 18px;
  border-radius: 14px;
  background: #f6f1ed;
}

.bp-review {
  padding: 14px;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
}

.bp-review b {
  display: block;
}

.bp-review span {
  color: #f59e0b;
}

.bp-sticky-buy {
  display: none;
}

.bp-variant-sheet {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  align-items: end;
  background: rgba(8, 17, 44, 0.48);
}

.bp-variant-sheet section {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(540px, 100%);
  max-height: min(86vh, 720px);
  margin: 0 auto;
  overflow-y: auto;
  padding: 20px 22px 24px;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 -20px 48px rgba(8, 17, 44, 0.18);
}

.bp-sheet-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--bp-muted);
  font-size: 25px;
  line-height: 1;
}

.bp-sheet-product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding-right: 36px;
}

.bp-sheet-product figure,
.bp-sheet-color-card figure {
  overflow: hidden;
  margin: 0;
  background: #f6f1ed;
}

.bp-sheet-product figure {
  width: 112px;
  height: 112px;
  border-radius: 12px;
}

.bp-sheet-product img,
.bp-sheet-color-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-sheet-product p {
  margin: 6px 0 0;
  color: var(--bp-muted);
  font-size: 15px;
  line-height: 1.35;
}

.bp-sheet-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bp-sheet-price span {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--bp-red);
  color: #fff;
  font-weight: 850;
}

.bp-sheet-price b {
  color: var(--bp-red);
  font-size: 34px;
  line-height: 1;
}

.bp-sheet-product del {
  color: #8b97aa;
  font-size: 15px;
}

.bp-sheet-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.bp-sheet-badges span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 7px;
  background: var(--bp-shop-accent-soft);
  color: var(--bp-red);
  font-size: 12px;
  font-weight: 750;
}

.bp-sheet-badges .bp-icon {
  width: 15px;
  height: 15px;
}

.bp-sheet-sale {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bp-flash), var(--bp-flash-dark));
  color: #fff;
}

.bp-sheet-sale b,
.bp-sheet-sale span {
  font-weight: 760;
}

.bp-sheet-options h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.bp-sheet-color-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bp-sheet-color-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
  background: #fff;
  color: var(--bp-text);
}

.bp-sheet-color-card.is-active {
  border-color: var(--bp-red);
  box-shadow: 0 0 0 2px rgba(var(--bp-shop-accent-rgb), 0.14);
}

.bp-sheet-color-card figure {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.bp-sheet-color-card span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 6px;
  color: var(--bp-text);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.bp-sheet-color-card.is-active span {
  color: var(--bp-red);
}

.bp-sheet-buy {
  display: grid;
  place-items: center;
  min-height: 62px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--bp-red);
  color: #fff;
  text-align: center;
  font-weight: 850;
}

.bp-sheet-buy span {
  font-size: 20px;
  line-height: 1.1;
}

.bp-sheet-buy small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.bp-sheet-unit {
  display: block;
  margin: 3px 0 6px;
  color: var(--bp-muted);
  font-size: 12.5px;
  font-weight: 600;
}

.bp-sheet-qty {
  margin-top: 2px;
}

.bp-cart-layout,
.bp-checkout-layout,
.bp-orders-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
}

.bp-cart-list,
.bp-checkout-form,
.bp-order-card,
.bp-lookup,
.bp-contact-card,
.bp-success-card {
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #fff;
}

.bp-screen-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--bp-line);
}

.bp-screen-title h1 {
  margin: 0;
  font-size: 22px;
}

.bp-screen-title a {
  color: var(--bp-primary);
  font-weight: 900;
}

.bp-screen-title button {
  border: 0;
  background: transparent;
  color: var(--bp-shop-accent);
  font-size: 14px;
  font-weight: 600;
}

.bp-screen-title button:disabled {
  color: var(--bp-muted);
  opacity: 0.55;
}

.bp-cart-line {
  display: grid;
  grid-template-columns: 28px 84px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--bp-line);
}

.bp-cart-line figure {
  overflow: hidden;
  width: 84px;
  height: 100px;
  margin: 0;
  border-radius: 10px;
  background: #f6f1ed;
}

.bp-cart-line strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bp-cart-line small {
  display: block;
  margin-top: 4px;
  color: var(--bp-muted);
  font-size: 14px;
}

.bp-cart-line b {
  display: block;
  margin-top: 6px;
  color: var(--bp-red);
  font-size: 17px;
}

.bp-cart-qty {
  display: grid;
  grid-template-columns: 36px 38px 36px;
  overflow: hidden;
  border: 1px solid var(--bp-line);
  border-radius: 9px;
}

.bp-cart-qty.is-readonly {
  grid-template-columns: 42px;
}

.bp-cart-qty button,
.bp-cart-qty span {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 0;
  background: #fff;
  color: var(--bp-text);
}

.bp-cart-qty .bp-icon {
  width: 16px;
  height: 16px;
}

.bp-remove {
  min-height: 36px;
  border: 0;
  background: transparent;
  color: var(--bp-red);
  font-weight: 900;
}

.bp-cart-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 38px 20px;
  color: var(--bp-muted);
  text-align: center;
}

.bp-cart-empty .bp-icon {
  width: 42px;
  height: 42px;
  color: var(--bp-shop-accent);
}

.bp-cart-empty h2,
.bp-cart-empty p {
  margin: 0;
}

.bp-cart-empty h2 {
  color: var(--bp-text);
  font-size: 20px;
  font-weight: 650;
}

.bp-primary.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.bp-summary {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #fff;
}

.bp-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--bp-muted);
  font-size: 15px;
}

.bp-summary b {
  color: var(--bp-text);
  white-space: nowrap;
}

.bp-summary .is-green {
  color: var(--bp-green);
}

.bp-summary .is-total {
  padding-top: 12px;
  border-top: 1px solid var(--bp-line);
  color: var(--bp-text);
  font-size: 18px;
  font-weight: 950;
}

.bp-summary .is-total b {
  color: var(--bp-red);
}

.bp-voucher-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.bp-voucher-input input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--bp-line);
  border-radius: 9px;
  padding: 0 12px;
  outline: 0;
}

.bp-voucher-input button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  background: var(--bp-primary);
  color: #fff;
  font-weight: 900;
}

.bp-checkout-form {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
}

.bp-order-link-source {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 20px;
  padding: 12px;
  border: 1px solid rgba(var(--bp-shop-accent-rgb), 0.18);
  border-radius: 12px;
  background: rgba(var(--bp-shop-accent-rgb), 0.055);
  color: var(--bp-shop-accent-dark);
}

.bp-order-link-source svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.bp-order-link-source b,
.bp-order-link-source small {
  display: block;
}

.bp-order-link-source b {
  color: #101828;
  font-size: 13px;
  font-weight: 650;
}

.bp-order-link-source small {
  margin-top: 2px;
  color: var(--bp-muted);
  font-size: 12px;
  line-height: 1.4;
}

.bp-order-link-success {
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(var(--bp-shop-accent-rgb), 0.07);
  color: var(--bp-shop-accent-dark) !important;
  font-size: 13px !important;
}

.bp-field {
  display: grid;
  gap: 6px;
  padding: 0 20px;
}

.bp-field span {
  color: var(--bp-text);
  font-size: 15px;
  font-weight: 850;
}

.bp-field input,
.bp-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--bp-line);
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
  color: var(--bp-text);
  font-size: 16px;
  outline: 0;
}

.bp-field select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, #536079 50%) right 18px center / 7px 7px no-repeat,
    linear-gradient(135deg, #536079 50%, transparent 50%) right 13px center / 7px 7px no-repeat,
    #fff;
}

.bp-payment-box {
  display: grid;
  gap: 12px;
  margin: 4px 20px 0;
}

.bp-payment-box h2 {
  margin: 0;
  font-size: 20px;
}

.bp-payment-box > button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  text-align: left;
}

.bp-payment-box > button span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 2px solid var(--bp-line);
  border-radius: 999px;
}

.bp-payment-box > button.is-active {
  border-color: var(--bp-primary);
  box-shadow: 0 0 0 3px rgba(23, 18, 143, 0.08);
}

.bp-payment-box > button.is-active span {
  border-color: var(--bp-primary);
}

.bp-payment-box > button.is-active span::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--bp-primary);
}

.bp-payment-box b {
  grid-column: 2;
  display: block;
  color: var(--bp-text);
  font-size: 16px;
}

.bp-payment-box small {
  grid-column: 2;
  display: block;
  margin-top: 3px;
  color: var(--bp-muted);
  font-size: 13px;
}

.bp-bank-info {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px 14px;
  padding: 14px;
  border: 1px dashed var(--bp-primary);
  border-radius: 12px;
  background: #f7f7ff;
}

.bp-qr {
  grid-row: span 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.bp-qr i {
  border-radius: 4px;
  background: var(--bp-primary);
}

.bp-bank-info div:not(.bp-qr) {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.bp-bank-info span {
  color: var(--bp-muted);
  font-size: 13px;
}

.bp-bank-info b {
  color: var(--bp-text);
  font-size: 13px;
  text-align: right;
}

.bp-success-page {
  display: grid;
  place-items: start center;
}

.bp-success-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(430px, 100%);
  padding: 34px 22px;
  text-align: center;
}

.bp-check {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: var(--bp-green);
  color: #fff;
}

.bp-check .bp-icon {
  width: 38px;
  height: 38px;
}

.bp-success-card h1 {
  margin: 0;
  font-size: 24px;
}

.bp-success-card p {
  margin: 0;
  color: var(--bp-muted);
  font-size: 16px;
  line-height: 1.55;
}

.bp-success-card > strong {
  color: var(--bp-primary);
  font-size: 28px;
}

.bp-messenger-cta {
  width: 100%;
  background: #2f27b8;
}

.bp-messenger-cta .bp-icon {
  width: 26px;
  height: 26px;
}

.bp-messenger-cta span {
  display: grid;
  gap: 2px;
}

.bp-messenger-cta small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.bp-secondary-link {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--bp-line);
  border-radius: 10px;
  color: var(--bp-primary);
  font-weight: 900;
}

.bp-order-card,
.bp-lookup,
.bp-contact-card {
  padding: 18px;
}

.bp-order-card {
  display: grid;
  gap: 14px;
}

.bp-order-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bp-order-card b {
  color: var(--bp-primary);
}

.bp-order-card mark {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: var(--bp-green);
  font-weight: 900;
}

.bp-order-actions {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
}

.bp-lookup {
  display: grid;
  align-content: start;
  gap: 12px;
}

.bp-lookup h2,
.bp-contact-card h1 {
  margin: 0;
  font-size: 24px;
}

.bp-lookup p,
.bp-contact-card p {
  margin: 0;
  color: var(--bp-muted);
  font-size: 16px;
  line-height: 1.5;
}

.bp-lookup .bp-field {
  padding: 0;
}

.bp-lookup small {
  color: var(--bp-muted);
  line-height: 1.45;
}

.bp-contact-page {
  display: grid;
  place-items: start center;
}

.bp-contact-card {
  display: grid;
  gap: 14px;
  width: min(470px, 100%);
}

.bp-contact-card .bp-secondary {
  width: 100%;
  min-height: 58px;
}

.bp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 17, 44, 0.46);
}

.bp-modal section {
  position: relative;
  width: min(420px, 100%);
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--bp-shadow);
}

.bp-modal button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--bp-faint);
  font-size: 24px;
}

.bp-seller-seed {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
  background: #f5f8fc;
}

.bp-seller-seed aside {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 22px;
  background: #111827;
  color: #fff;
}

.bp-seller-seed aside .bp-logo {
  color: #fff;
}

.bp-seller-seed nav {
  display: grid;
  gap: 8px;
}

.bp-seller-seed nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
}

.bp-seller-seed nav a.is-active,
.bp-seller-seed nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bp-seller-seed main {
  padding: 28px;
}

.bp-seller-card {
  display: grid;
  gap: 18px;
  max-width: 820px;
  padding: 22px;
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--bp-shadow);
}

.bp-seller-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bp-seller-head p,
.bp-seller-head h1,
.bp-theme-live p {
  margin: 0;
}

.bp-seller-head p,
.bp-theme-live p {
  color: var(--bp-muted);
}

.bp-seller-head h1 {
  font-size: 26px;
}

.bp-seller-head > span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--bp-shop-accent-soft);
  color: var(--bp-red);
  font-size: 13px;
  font-weight: 780;
}

.bp-theme-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bp-theme-swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
  background: #fff;
  color: var(--bp-text);
  font-weight: 720;
  text-align: left;
}

.bp-theme-swatch span {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--swatch-color);
  box-shadow: inset 0 0 0 1px rgba(8, 17, 44, 0.12);
}

.bp-theme-swatch.is-active {
  border-color: var(--bp-red);
  box-shadow: 0 0 0 3px rgba(var(--bp-shop-accent-rgb), 0.12);
}

.bp-theme-swatch.is-red { --swatch-color: #b42318; }
.bp-theme-swatch.is-orange { --swatch-color: #c2410c; }
.bp-theme-swatch.is-green { --swatch-color: #047857; }
.bp-theme-swatch.is-blue { --swatch-color: #1d4ed8; }
.bp-theme-swatch.is-navy { --swatch-color: #273043; }
.bp-theme-swatch.is-purple { --swatch-color: #6d28d9; }
.bp-theme-swatch.is-pink { --swatch-color: #be185d; }
.bp-theme-swatch.is-brown { --swatch-color: #7c2d12; }
.bp-theme-swatch.is-black { --swatch-color: #111827; }

.bp-theme-live {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: #f8fafc;
}

.bp-theme-live .bp-primary {
  width: min(260px, 100%);
}

.bp-theme-live .bp-mobile-sale {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0;
  border-radius: 10px;
}

.bp-seller-note {
  margin: 0;
  color: var(--bp-muted);
  line-height: 1.55;
}

.bp-category-settings {
  margin-top: 18px;
  max-width: 1080px;
}

.bp-category-editor {
  display: grid;
  gap: 10px;
}

.bp-policy-settings {
  margin-top: 18px;
  max-width: 1080px;
}

.bp-policy-editor {
  display: grid;
  gap: 10px;
}

.bp-policy-editor-row {
  display: grid;
  grid-template-columns: 84px 150px minmax(210px, 1fr) minmax(240px, 1.2fr);
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--bp-line);
  border-radius: 14px;
  background: #fbfdff;
}

.bp-policy-editor-row label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.bp-policy-editor-row label span {
  color: var(--bp-muted);
  font-size: 12.5px;
  font-weight: 650;
}

.bp-policy-editor-row input:not([type="checkbox"]),
.bp-policy-editor-row select {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid var(--bp-line);
  border-radius: 11px;
  background: #fff;
  color: var(--bp-text);
  font: inherit;
}

.bp-policy-toggle {
  min-height: 42px;
  align-content: end;
}

.bp-policy-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--bp-shop-accent);
}

.bp-policy-toggle {
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
}

.bp-category-editor-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 1.1fr) minmax(150px, 0.75fr) minmax(190px, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--bp-line);
  border-radius: 14px;
  background: #fbfdff;
}

.bp-category-editor-live {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 6px 10px;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  background: #fff;
}

.bp-category-editor-live span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f3f6fb;
  color: var(--bp-primary);
}

.bp-category-editor-live b {
  overflow: hidden;
  color: var(--bp-text);
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bp-category-editor-row label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.bp-category-editor-row label span {
  color: var(--bp-muted);
  font-size: 12.5px;
  font-weight: 650;
}

.bp-category-editor-row input,
.bp-category-editor-row select {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid var(--bp-line);
  border-radius: 11px;
  background: #fff;
  color: var(--bp-text);
  font: inherit;
}

.bp-category-editor-row input:focus,
.bp-category-editor-row select:focus {
  outline: 0;
  border-color: rgba(var(--bp-shop-accent-rgb), 0.7);
  box-shadow: 0 0 0 3px rgba(var(--bp-shop-accent-rgb), 0.1);
}

.bp-category-editor-row > button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #ffd5d0;
  border-radius: 11px;
  background: #fff7f6;
  color: var(--bp-shop-accent);
  font-weight: 650;
}

.bp-category-editor-row > button:disabled,
.bp-category-actions button:disabled {
  opacity: 0.5;
}

.bp-category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bp-category-actions .bp-primary,
.bp-category-actions .bp-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
}

.bp-live {
  min-height: 100vh;
  background: #eef3f8;
}

.bp-live-toolbar {
  position: sticky;
  top: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--bp-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.bp-live-toolbar strong {
  font-size: 16px;
}

.bp-live-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bp-muted);
  font-size: 12px;
  font-weight: 900;
}

.bp-live-toolbar span {
  display: flex;
  gap: 5px;
}

.bp-live-toolbar button,
.bp-live-toolbar select,
.bp-live-toolbar a {
  min-height: 38px;
  border: 1px solid var(--bp-line);
  border-radius: 9px;
  background: #fff;
  color: var(--bp-text);
  padding: 0 12px;
  font-weight: 900;
}

.bp-live-toolbar button.is-active {
  border-color: var(--bp-primary);
  background: var(--bp-primary);
  color: #fff;
}

.bp-live-stage {
  display: grid;
  justify-items: center;
  padding: 22px;
}

.bp-live-canvas {
  overflow: hidden;
  background: #fff;
}

.bp-live-canvas.bp-force-mobile {
  width: 390px;
  min-height: 844px;
  border: 1px solid #d8e0ea;
  border-radius: 28px;
  box-shadow: var(--bp-shadow);
}

.bp-live-canvas.bp-force-desktop {
  width: min(1440px, calc(100vw - 44px));
  min-height: 900px;
  border-radius: 18px;
  box-shadow: var(--bp-shadow);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 500;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sheet {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: grid;
  align-items: end;
  background: rgba(8, 17, 44, 0.46);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 160ms ease;
}

.sheet.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.sheet-panel {
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px 18px 0 0;
  background: #fff;
}

.sheet-handle {
  width: 44px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--bp-line);
}

.sheet-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.sheet-head h2,
.sheet-head p {
  margin: 0;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bp-line);
  border-radius: 10px;
  background: #fff;
  color: var(--bp-text);
}

.sheet-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-card {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
}

@media (max-width: 760px) {
  .bp-seller-seed {
    display: block;
  }

  .bp-seller-seed aside {
    padding: 14px;
  }

  .bp-seller-seed main {
    padding: 14px;
  }

  .bp-theme-swatches {
    grid-template-columns: 1fr;
  }

  .bp-category-editor-row {
    grid-template-columns: 1fr;
  }

  .bp-policy-editor-row {
    grid-template-columns: 1fr;
  }

  .bp-category-actions {
    display: grid;
  }

  .bp-category-actions .bp-primary,
  .bp-category-actions .bp-secondary {
    width: 100%;
    justify-content: center;
  }

  .bp-desktop-header,
  .bp-desktop-home-grid,
  .bp-desktop-only {
    display: none;
  }

  .bp-mobile-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px 48px;
    gap: 4px;
    align-items: center;
    min-height: 62px;
    padding: 0 12px;
    border-bottom: 1px solid var(--bp-line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }

  .bp-mobile-header .bp-logo {
    justify-self: center;
    gap: 7px;
  }

  .bp-mobile-header .bp-logo span {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 13px;
  }

  .bp-mobile-header .bp-logo strong {
    font-size: 16px;
  }

  .bp-icon-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--bp-text);
  }

  .bp-icon-button .bp-icon {
    width: 24px;
    height: 24px;
  }

  .bp-cart-badge i {
    top: 2px;
    right: 2px;
  }

  .bp-page {
    width: 100%;
    margin: 0;
    padding: 14px 12px 84px;
  }

  .bp-mobile-categories {
    display: block;
    margin-bottom: 16px;
  }

  .bp-mobile-categories h2 {
    margin: 0 0 10px;
    font-size: 16px;
  }

  .bp-mobile-categories > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .bp-mobile-categories .bp-category-card {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    min-height: 88px;
    padding: 8px 4px;
    border: 0;
    background: transparent;
    text-align: center;
  }

  .bp-mobile-categories .bp-category-card span {
    width: 54px;
    height: 54px;
  }

  .bp-mobile-categories .bp-category-card b {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .bp-mobile-categories .bp-category-card small {
    display: none;
  }

  .bp-flash-mobile {
    display: block;
    margin-top: 4px;
  }

  .bp-section-head {
    margin-bottom: 12px;
  }

  .bp-section-head h2 {
    font-size: 16px;
  }

  .bp-section-head h2 span {
    display: inline-flex;
    font-size: 14px;
  }

  .bp-section-head a {
    font-size: 13px;
  }

  .bp-mobile-product-grid,
  .bp-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .bp-product-card figure {
    border-radius: 12px;
  }

  .bp-product-card strong {
    font-size: 15px;
  }

  .bp-price b {
    font-size: 18px;
  }

  .bp-price del {
    font-size: 12px;
  }

  .bp-product-card small {
    font-size: 13px;
  }

  .bp-section {
    margin-top: 20px;
    padding: 0;
  }

  .bp-trust-strip {
    grid-template-columns: 1fr;
    margin-bottom: 12px;
  }

  .bp-trust-strip > div {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--bp-line);
  }

  .bp-category-layout {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .bp-category-layout .bp-sidebar {
    display: none;
  }

  .bp-sort-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .bp-sort-tabs button {
    white-space: nowrap;
  }

  .bp-product-layout {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .bp-product-gallery {
    display: block;
    margin: -14px -12px 0;
  }

  .bp-product-photo-large {
    min-height: auto;
    height: 390px;
    border-radius: 0 0 18px 18px;
  }

  .bp-gallery-arrow {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.86);
  }

  .bp-gallery-arrow.is-prev {
    left: 10px;
  }

  .bp-gallery-arrow.is-next {
    right: 10px;
  }

  .bp-gallery-thumbs {
    display: none;
  }

  .bp-buy-box {
    gap: 13px;
    margin: 0 -12px;
    padding: 0 12px 14px;
    background: #fff;
  }

  .bp-mobile-sale {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin: 0 -12px 8px;
    padding: 10px 12px;
    background: linear-gradient(90deg, var(--bp-flash), var(--bp-flash-dark));
    color: #fff;
  }

  .bp-mobile-sale b,
  .bp-mobile-sale span {
    font-weight: 950;
  }

  .bp-buy-box h1 {
    font-size: 21px;
  }

  .bp-detail-price b {
    font-size: 28px;
  }

  .bp-variant > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .bp-variant button {
    min-width: 58px;
    min-height: 46px;
    font-size: 15px;
    white-space: nowrap;
  }

  .bp-buy-box .bp-variant,
  .bp-buy-box .bp-voucher,
  .bp-product-actions,
  .bp-qty,
  .bp-service-list {
    display: none;
  }

  .bp-product-page > .bp-section {
    display: none;
  }

  .bp-description {
    margin: 14px -12px 0;
    padding: 16px 12px;
    border-inline: 0;
    border-radius: 0;
  }

  .bp-detail-image {
    height: 240px;
  }

  .bp-sticky-buy {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 130;
    display: grid;
    grid-template-columns: minmax(132px, 37%) minmax(0, 1fr);
    max-width: 390px;
    margin: 0 auto;
    padding: 8px 10px;
    border-top: 1px solid var(--bp-line);
    background: #fff;
  }

  .bp-sticky-buy button,
  .bp-sticky-buy a {
    display: grid;
    place-items: center;
    gap: 2px;
    min-height: 58px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: var(--bp-text);
    font-size: 11px;
    font-weight: 900;
  }

  .bp-sticky-buy .bp-messenger-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid #8ec5ff;
    background: #f4f9ff;
    color: #1473df;
    font-size: 12.5px;
    font-weight: 760;
    line-height: 1.15;
    text-align: center;
  }

  .bp-sticky-buy .bp-messenger-buy span {
    display: block;
    max-width: 72px;
    line-height: 1.08;
  }

  .bp-sticky-buy .bp-messenger-buy .bp-icon {
    width: 26px;
    height: 26px;
    fill: #1473df;
    stroke: #1473df;
    stroke-width: 1.5;
  }

  .bp-sticky-buy .bp-primary {
    background: var(--bp-red);
    color: #fff;
    font-size: 16px;
    grid-template-columns: auto auto auto;
    gap: 7px;
  }

  .bp-sticky-buy .bp-primary .bp-icon {
    width: 19px;
    height: 19px;
  }

  .bp-sticky-buy small {
    font-size: 12px;
  }

  .bp-cart-layout,
  .bp-checkout-layout,
  .bp-orders-layout {
    display: block;
  }

  .bp-cart-list,
  .bp-checkout-form,
  .bp-order-card,
  .bp-lookup,
  .bp-contact-card,
  .bp-success-card,
  .bp-summary {
    border-radius: 14px;
  }

  .bp-screen-title {
    padding: 16px;
  }

  .bp-screen-title h1 {
    font-size: 20px;
  }

  .bp-cart-line {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .bp-cart-line label,
  .bp-cart-line .bp-remove {
    display: none;
  }

  .bp-cart-line .bp-remove {
    display: inline-flex;
    grid-column: 3;
    grid-row: 2;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0;
    font-size: 12.5px;
    font-weight: 600;
  }

  .bp-cart-line figure {
    grid-column: 1;
    width: 78px;
    height: 94px;
  }

  .bp-cart-line > div:not(.bp-cart-qty) {
    grid-column: 2;
  }

  .bp-cart-qty {
    grid-column: 3;
    grid-row: 1;
    grid-template-columns: 34px 34px 34px;
  }

  .bp-summary {
    margin-top: 14px;
  }

  .bp-checkout-form {
    padding-bottom: 16px;
  }

  .bp-field {
    padding: 0 16px;
  }

  .bp-field input,
  .bp-field select {
    min-height: 56px;
    font-size: 17px;
  }

  .bp-payment-box {
    margin-inline: 16px;
  }

  .bp-payment-box > button {
    min-height: 76px;
  }

  .bp-bank-info {
    grid-template-columns: 1fr;
  }

  .bp-qr {
    grid-row: auto;
    justify-self: center;
  }

  .bp-order-card,
  .bp-lookup {
    margin-bottom: 14px;
  }

  .bp-order-card .bp-cart-line {
    padding-inline: 0;
  }

  .bp-order-actions {
    grid-template-columns: 1fr;
  }

  .bp-contact-page,
  .bp-success-page {
    padding-top: 20px;
  }

  .bp-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 390px;
    margin: 0 auto;
    border-top: 1px solid var(--bp-line);
    background: #fff;
  }

  .bp-bottom-nav a {
    position: relative;
    display: grid;
    place-items: center;
    gap: 3px;
    min-height: 64px;
    color: #4f5b72;
    font-size: 12px;
    font-weight: 850;
  }

  .bp-bottom-nav a.is-active {
    color: var(--bp-primary);
  }

  .bp-bottom-icon {
    position: relative;
  }

  .bp-bottom-icon .bp-icon {
    width: 24px;
    height: 24px;
  }

  .bp-bottom-icon i {
    top: -9px;
    right: -13px;
  }
}

.bp-force-mobile .bp-icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--bp-text);
}

.bp-force-mobile .bp-desktop-header,
.bp-force-mobile .bp-desktop-home-grid,
.bp-force-mobile .bp-desktop-only {
  display: none;
}

.bp-force-mobile .bp-mobile-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px 48px;
  gap: 4px;
  align-items: center;
  min-height: 62px;
  padding: 0 12px;
  border-bottom: 1px solid var(--bp-line);
  background: rgba(255, 255, 255, 0.96);
}

.bp-force-mobile .bp-mobile-header .bp-logo {
  justify-self: center;
}

.bp-force-mobile .bp-page {
  width: 100%;
  margin: 0;
  padding: 14px 12px 84px;
}

.bp-force-mobile .bp-mobile-categories,
.bp-force-mobile .bp-flash-mobile {
  display: block;
}

.bp-force-mobile .bp-mobile-categories > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  border: 0;
  background: transparent;
}

.bp-force-mobile .bp-mobile-product-grid,
.bp-force-mobile .bp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bp-force-mobile .bp-category-layout {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bp-force-mobile .bp-category-layout .bp-sidebar {
  display: none;
}

.bp-force-mobile .bp-category-layout > div {
  min-width: 0;
}

.bp-force-mobile .bp-category-layout .bp-breadcrumb {
  margin: 0 0 6px;
  color: var(--bp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.bp-force-mobile .bp-category-layout .bp-section-head {
  margin-bottom: 10px;
}

.bp-force-mobile .bp-category-layout .bp-section-head h1 {
  font-size: 20px;
  line-height: 1.2;
}

.bp-force-mobile .bp-sort-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 12px;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 3px;
}

.bp-force-mobile .bp-sort-tabs button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 650;
  white-space: nowrap;
}

.bp-force-mobile .bp-category-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bp-force-mobile .bp-bottom-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 390px;
  margin: 0 auto;
  border-top: 1px solid var(--bp-line);
  background: #fff;
}

.bp-force-mobile .bp-bottom-nav a {
  display: grid;
  place-items: center;
  min-height: 64px;
  font-size: 12px;
}

.bp-force-mobile .bp-product-layout,
.bp-force-mobile .bp-cart-layout,
.bp-force-mobile .bp-checkout-layout,
.bp-force-mobile .bp-orders-layout {
  display: block;
}

.bp-force-mobile .bp-product-layout {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bp-force-mobile .bp-product-gallery {
  display: block;
  margin: -14px -12px 0;
}

.bp-force-mobile .bp-product-photo-large {
  height: 390px;
  min-height: auto;
  border-radius: 0 0 18px 18px;
}

.bp-force-mobile .bp-gallery-thumbs,
.bp-force-mobile .bp-buy-box .bp-variant,
.bp-force-mobile .bp-buy-box .bp-voucher,
.bp-force-mobile .bp-product-actions,
.bp-force-mobile .bp-qty,
.bp-force-mobile .bp-service-list {
  display: none;
}

.bp-force-mobile .bp-buy-box {
  gap: 13px;
  margin: 0 -12px;
  padding: 0 12px 14px;
  background: #fff;
}

.bp-force-mobile .bp-mobile-sale {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  margin: 0 -12px 8px;
  padding: 10px 12px;
  background: linear-gradient(90deg, var(--bp-flash), var(--bp-flash-dark));
  color: #fff;
}

.bp-force-mobile .bp-sticky-buy {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 130;
  display: grid;
  grid-template-columns: minmax(132px, 37%) minmax(0, 1fr);
  max-width: 390px;
  margin: 0 auto;
  padding: 8px 10px;
  border-top: 1px solid var(--bp-line);
  background: #fff;
}

.bp-force-mobile .bp-cart-line {
  grid-template-columns: 78px minmax(0, 1fr) auto;
}

.bp-force-mobile .bp-cart-line label,
.bp-force-mobile .bp-cart-line .bp-remove {
  display: none;
}

.bp-force-mobile .bp-cart-line .bp-remove {
  display: inline-flex;
  grid-column: 3;
  grid-row: 2;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0;
  font-size: 12.5px;
  font-weight: 600;
}

.bp-force-mobile .bp-cart-line figure {
  grid-column: 1;
  width: 78px;
  height: 94px;
}

.bp-force-mobile .bp-cart-line > div:not(.bp-cart-qty) {
  grid-column: 2;
}

.bp-force-mobile .bp-cart-qty {
  grid-column: 3;
  grid-row: 1;
}

@media (max-width: 760px) {
  .bp-primary,
  .bp-secondary,
  .bp-red-link,
  .bp-messenger-cta,
  .bp-voucher-input button,
  .bp-secondary-link {
    min-height: 50px;
    border-radius: 12px;
    font-weight: 750;
  }

  .bp-page {
    padding: 10px 8px 92px;
  }

  .bp-mobile-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
    min-height: 58px;
    padding: 0 8px;
  }

  .bp-icon-button {
    width: 42px;
    height: 42px;
  }

  .bp-mobile-header .bp-logo {
    gap: 6px;
  }

  .bp-mobile-header .bp-logo strong,
  .bp-logo,
  .bp-screen-title h1,
  .bp-section-head h2,
  .bp-mobile-categories h2,
  .bp-product-card strong,
  .bp-cart-line strong,
  .bp-field span,
  .bp-payment-box b,
  .bp-summary b,
  .bp-order-card b,
  .bp-lookup h2,
  .bp-contact-card h1,
  .bp-success-card h1,
  .bp-voucher span {
    font-weight: 700;
  }

  .bp-mobile-categories {
    margin-bottom: 12px;
  }

  .bp-mobile-categories h2,
  .bp-section-head h2 {
    font-size: 15px;
    line-height: 1.25;
  }

  .bp-mobile-categories > div {
    gap: 6px;
  }

  .bp-mobile-categories .bp-category-card {
    min-height: 76px;
    gap: 5px;
    padding: 5px 2px;
  }

  .bp-mobile-categories .bp-category-card span {
    width: 48px;
    height: 48px;
  }

  .bp-mobile-categories .bp-category-card b {
    font-size: 11.5px;
    font-weight: 650;
  }

  .bp-mobile-product-grid,
  .bp-product-grid {
    gap: 10px;
  }

  .bp-product-card strong {
    font-size: 14.5px;
    font-weight: 650;
    line-height: 1.28;
  }

  .bp-product-card small {
    font-size: 12.5px;
  }

  .bp-price b,
  .bp-detail-price b {
    font-weight: 800;
  }

  .bp-section {
    margin-top: 16px;
  }

  .bp-product-gallery {
    margin: -10px -8px 0;
  }

  .bp-buy-box {
    gap: 8px;
    margin: 0 -8px;
    padding: 0 10px 12px;
  }

  .bp-mobile-sale {
    margin: 0 -10px 6px;
    padding: 9px 10px;
  }

  .bp-mobile-sale b,
  .bp-mobile-sale span {
    font-weight: 750;
  }

  .bp-buy-box h1 {
    font-size: 19px;
    font-weight: 720;
    line-height: 1.28;
  }

  .bp-variant > label,
  .bp-variant button,
  .bp-voucher b,
  .bp-voucher a {
    font-weight: 700;
  }

  .bp-variant button {
    min-width: 48px;
    min-height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .bp-variant {
    grid-template-columns: 60px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
  }

  .bp-variant > div {
    gap: 8px;
  }

  .bp-variant label {
    font-size: 13.5px;
    line-height: 1.2;
  }

  .bp-voucher {
    gap: 8px;
    padding: 10px;
  }

  .bp-description {
    margin: 12px -8px 0;
    padding: 14px 10px;
  }

  .bp-description h2 {
    font-size: 20px;
    font-weight: 700;
  }

  .bp-description p {
    line-height: 1.6;
  }

  .bp-sticky-buy {
    padding: 7px 8px;
  }

  .bp-sticky-buy button,
  .bp-sticky-buy a {
    min-height: 56px;
    border-radius: 11px;
    font-weight: 720;
  }

  .bp-sticky-buy .bp-primary {
    font-weight: 780;
  }

  .bp-cart-list,
  .bp-checkout-form,
  .bp-order-card,
  .bp-lookup,
  .bp-contact-card,
  .bp-success-card,
  .bp-summary {
    border-radius: 12px;
  }

  .bp-screen-title {
    padding: 14px 12px 10px;
  }

  .bp-screen-title h1 {
    font-size: 20px;
    font-weight: 650;
    line-height: 1.25;
  }

  .bp-checkout-form {
    gap: 8px;
    padding-bottom: 10px;
  }

  .bp-field {
    gap: 4px;
    padding: 0 10px;
  }

  .bp-field span {
    color: #17213a;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.25;
  }

  .bp-field input,
  .bp-field select,
  .bp-voucher-input input {
    min-height: 48px;
    border-radius: 12px;
    padding: 0 12px;
    color: #0f1930;
    font-size: 16px;
    font-weight: 500;
  }

  .bp-field input:focus,
  .bp-field select:focus,
  .bp-voucher-input input:focus {
    border-color: var(--bp-primary);
    box-shadow: 0 0 0 3px rgba(23, 18, 143, 0.08);
  }

  .bp-payment-box {
    gap: 8px;
    margin: 0 10px;
  }

  .bp-payment-box h2 {
    font-size: 19px;
    font-weight: 650;
    line-height: 1.25;
  }

  .bp-payment-box > button {
    width: 100%;
    min-height: 58px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 9px;
    align-content: center;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .bp-payment-box > button span {
    width: 20px;
    height: 20px;
  }

  .bp-payment-box b {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.28;
  }

  .bp-payment-box small {
    margin-top: 1px;
    font-size: 13px;
    line-height: 1.3;
  }

  .bp-bank-info {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
  }

  .bp-qr {
    width: 104px;
    height: 104px;
    padding: 8px;
  }

  .bp-summary {
    gap: 10px;
    margin-top: 10px;
    padding: 12px;
  }

  .bp-summary > div {
    font-size: 15px;
  }

  .bp-summary .is-total {
    font-size: 18px;
    font-weight: 680;
  }

  .bp-voucher-input {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 8px;
  }

  .bp-voucher-input button {
    min-height: 48px;
    padding: 0 10px;
    font-size: 15px;
  }

  .bp-cart-line {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }

  .bp-cart-line figure {
    width: 72px;
    height: 88px;
  }

  .bp-cart-line strong {
    font-size: 14.5px;
    font-weight: 650;
    line-height: 1.25;
  }

  .bp-cart-line small {
    font-size: 13px;
  }

  .bp-cart-line b {
    font-size: 16px;
    font-weight: 700;
  }

  .bp-cart-qty {
    grid-template-columns: 30px 30px 30px;
  }

  .bp-cart-qty button,
  .bp-cart-qty span {
    min-height: 34px;
  }

  .bp-order-card,
  .bp-lookup,
  .bp-contact-card {
    padding: 14px;
  }

  .bp-order-card {
    gap: 12px;
  }

  .bp-order-card b {
    font-weight: 650;
  }

  .bp-order-card mark {
    padding: 5px 9px;
    font-weight: 700;
  }

  .bp-order-card .bp-cart-line {
    padding-inline: 0;
  }

  .bp-order-actions {
    gap: 8px;
  }

  .bp-lookup,
  .bp-contact-card {
    gap: 10px;
  }

  .bp-lookup h2,
  .bp-contact-card h1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
  }

  .bp-success-card {
    gap: 12px;
    padding: 26px 16px;
  }

  .bp-success-card h1 {
    font-size: 22px;
    line-height: 1.25;
  }

  .bp-secondary-link {
    font-size: 15px;
  }

  .bp-bottom-nav a {
    min-height: 62px;
    font-weight: 650;
  }
}

.bp-force-mobile .bp-primary,
.bp-force-mobile .bp-secondary,
.bp-force-mobile .bp-red-link,
.bp-force-mobile .bp-messenger-cta,
.bp-force-mobile .bp-voucher-input button,
.bp-force-mobile .bp-secondary-link {
  min-height: 50px;
  border-radius: 12px;
  font-weight: 750;
}

.bp-force-mobile .bp-page {
  padding: 10px 8px 92px;
}

.bp-force-mobile .bp-mobile-header {
  grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
  min-height: 58px;
  padding: 0 8px;
}

.bp-force-mobile .bp-icon-button {
  width: 42px;
  height: 42px;
}

.bp-force-mobile .bp-mobile-header .bp-logo {
  gap: 6px;
}

.bp-force-mobile .bp-mobile-header .bp-logo strong,
.bp-force-mobile .bp-logo,
.bp-force-mobile .bp-screen-title h1,
.bp-force-mobile .bp-section-head h2,
.bp-force-mobile .bp-mobile-categories h2,
.bp-force-mobile .bp-product-card strong,
.bp-force-mobile .bp-cart-line strong,
.bp-force-mobile .bp-field span,
.bp-force-mobile .bp-payment-box b,
.bp-force-mobile .bp-summary b,
.bp-force-mobile .bp-order-card b,
.bp-force-mobile .bp-lookup h2,
.bp-force-mobile .bp-contact-card h1,
.bp-force-mobile .bp-success-card h1,
.bp-force-mobile .bp-voucher span {
  font-weight: 700;
}

.bp-force-mobile .bp-mobile-categories {
  margin-bottom: 12px;
}

.bp-force-mobile .bp-mobile-categories h2,
.bp-force-mobile .bp-section-head h2 {
  font-size: 15px;
  line-height: 1.25;
}

.bp-force-mobile .bp-mobile-categories > div {
  gap: 6px;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card {
  min-height: 76px;
  gap: 5px;
  padding: 5px 2px;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card small {
  display: none;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card span {
  width: 48px;
  height: 48px;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card b {
  font-size: 11.5px;
  font-weight: 650;
}

.bp-force-mobile .bp-mobile-product-grid,
.bp-force-mobile .bp-product-grid {
  gap: 10px;
}

.bp-force-mobile .bp-category-layout {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.bp-force-mobile .bp-category-layout .bp-sidebar {
  display: none;
}

.bp-force-mobile .bp-category-layout .bp-section-head h1 {
  font-size: 19px;
  font-weight: 720;
}

.bp-force-mobile .bp-sort-tabs {
  gap: 7px;
  margin-bottom: 12px;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.bp-force-mobile .bp-sort-tabs button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 650;
  white-space: nowrap;
}

.bp-force-mobile .bp-category-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bp-force-mobile .bp-product-card strong {
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.28;
}

.bp-force-mobile .bp-product-card small {
  font-size: 12.5px;
}

.bp-force-mobile .bp-price b,
.bp-force-mobile .bp-detail-price b {
  font-weight: 800;
}

.bp-force-mobile .bp-section {
  margin-top: 16px;
  padding: 0;
}

.bp-force-mobile .bp-trust-strip {
  grid-template-columns: 1fr;
  margin: 16px 0 0;
}

.bp-force-mobile .bp-trust-strip > div {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border-right: 0;
  border-bottom: 1px solid var(--bp-line);
}

.bp-force-mobile .bp-trust-strip > div:last-child {
  border-bottom: 0;
}

.bp-force-mobile .bp-trust-strip b {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.bp-force-mobile .bp-trust-strip small {
  font-size: 12.5px;
  line-height: 1.35;
}

.bp-force-mobile .bp-product-gallery {
  margin: -10px -8px 0;
}

.bp-force-mobile .bp-buy-box {
  gap: 8px;
  margin: 0 -8px;
  padding: 0 10px 12px;
}

.bp-force-mobile .bp-mobile-sale {
  margin: 0 -10px 6px;
  padding: 9px 10px;
}

.bp-force-mobile .bp-mobile-sale b,
.bp-force-mobile .bp-mobile-sale span {
  font-weight: 750;
}

.bp-force-mobile .bp-buy-box h1 {
  font-size: 19px;
  font-weight: 720;
  line-height: 1.28;
}

.bp-force-mobile .bp-variant > label,
.bp-force-mobile .bp-variant button,
.bp-force-mobile .bp-voucher b,
.bp-force-mobile .bp-voucher a {
  font-weight: 700;
}

.bp-force-mobile .bp-variant button {
  min-width: 48px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 14px;
}

.bp-force-mobile .bp-variant {
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
}

.bp-force-mobile .bp-variant > div {
  gap: 8px;
}

.bp-force-mobile .bp-variant label {
  font-size: 13.5px;
  line-height: 1.2;
}

.bp-force-mobile .bp-voucher {
  gap: 8px;
  padding: 10px;
}

.bp-force-mobile .bp-description {
  margin: 12px -8px 0;
  padding: 14px 10px;
}

.bp-force-mobile .bp-description h2 {
  font-size: 20px;
  font-weight: 700;
}

.bp-force-mobile .bp-description p {
  line-height: 1.6;
}

.bp-force-mobile .bp-product-page > .bp-section {
  display: none;
}

.bp-force-mobile .bp-variant-sheet {
  position: fixed;
  max-width: 390px;
  margin: 0 auto;
}

.bp-force-mobile .bp-variant-sheet section {
  max-height: 82vh;
  padding: 16px 16px 18px;
  border-radius: 22px 22px 0 0;
}

.bp-force-mobile .bp-sheet-product {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding-right: 26px;
}

.bp-force-mobile .bp-sheet-product figure {
  width: 92px;
  height: 92px;
}

.bp-force-mobile .bp-sheet-price b {
  font-size: 28px;
}

.bp-force-mobile .bp-sheet-badges span {
  min-height: 24px;
  font-size: 11.5px;
}

.bp-force-mobile .bp-sheet-sale {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

.bp-force-mobile .bp-sheet-color-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.bp-force-mobile .bp-sheet-color-card span {
  min-height: 40px;
  font-size: 12.5px;
  font-weight: 650;
}

.bp-force-mobile .bp-variant-sheet .bp-variant {
  display: grid;
}

.bp-force-mobile .bp-sticky-buy {
  padding: 7px 8px;
}

.bp-force-mobile .bp-sticky-buy button,
.bp-force-mobile .bp-sticky-buy a {
  min-height: 56px;
  border-radius: 11px;
  font-weight: 720;
}

.bp-force-mobile .bp-sticky-buy .bp-messenger-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #8ec5ff;
  background: #f4f9ff;
  color: #1473df;
  font-size: 12.5px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
}

.bp-force-mobile .bp-sticky-buy .bp-messenger-buy span {
  display: block;
  max-width: 72px;
  line-height: 1.08;
}

.bp-force-mobile .bp-sticky-buy .bp-messenger-buy .bp-icon {
  width: 26px;
  height: 26px;
  fill: #1473df;
  stroke: #1473df;
  stroke-width: 1.5;
}

.bp-force-mobile .bp-sticky-buy .bp-primary {
  font-weight: 780;
  grid-template-columns: auto auto auto;
  gap: 7px;
}

.bp-force-mobile .bp-sticky-buy .bp-primary .bp-icon {
  width: 19px;
  height: 19px;
}

.bp-force-mobile .bp-cart-list,
.bp-force-mobile .bp-checkout-form,
.bp-force-mobile .bp-order-card,
.bp-force-mobile .bp-lookup,
.bp-force-mobile .bp-contact-card,
.bp-force-mobile .bp-success-card,
.bp-force-mobile .bp-summary {
  border-radius: 12px;
}

.bp-force-mobile .bp-screen-title {
  padding: 14px 12px 10px;
}

.bp-force-mobile .bp-screen-title h1 {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

.bp-force-mobile .bp-checkout-form {
  gap: 8px;
  padding-bottom: 10px;
}

.bp-force-mobile .bp-order-link-source {
  margin: 0 10px;
  padding: 10px;
  border-radius: 12px;
}

.bp-force-mobile .bp-field {
  gap: 4px;
  padding: 0 10px;
}

.bp-force-mobile .bp-field span {
  color: #17213a;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.25;
}

.bp-force-mobile .bp-field input,
.bp-force-mobile .bp-field select,
.bp-force-mobile .bp-voucher-input input {
  min-height: 48px;
  border-radius: 12px;
  padding: 0 12px;
  color: #0f1930;
  font-size: 16px;
  font-weight: 500;
}

.bp-force-mobile .bp-field input:focus,
.bp-force-mobile .bp-field select:focus,
.bp-force-mobile .bp-voucher-input input:focus {
  border-color: var(--bp-primary);
  box-shadow: 0 0 0 3px rgba(23, 18, 143, 0.08);
}

.bp-force-mobile .bp-payment-box {
  gap: 8px;
  margin: 0 10px;
}

.bp-force-mobile .bp-payment-box h2 {
  font-size: 19px;
  font-weight: 650;
  line-height: 1.25;
}

.bp-force-mobile .bp-payment-box > button {
  width: 100%;
  min-height: 58px;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-content: center;
  padding: 10px 12px;
  border-radius: 12px;
}

.bp-force-mobile .bp-payment-box > button span {
  width: 20px;
  height: 20px;
}

.bp-force-mobile .bp-payment-box b {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.28;
}

.bp-force-mobile .bp-payment-box small {
  margin-top: 1px;
  font-size: 13px;
  line-height: 1.3;
}

.bp-force-mobile .bp-bank-info {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
}

.bp-force-mobile .bp-qr {
  width: 104px;
  height: 104px;
  padding: 8px;
}

.bp-force-mobile .bp-summary {
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
}

.bp-force-mobile .bp-summary > div {
  font-size: 15px;
}

.bp-force-mobile .bp-summary .is-total {
  font-size: 18px;
  font-weight: 680;
}

.bp-force-mobile .bp-voucher-input {
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 8px;
}

.bp-force-mobile .bp-voucher-input button {
  min-height: 48px;
  padding: 0 10px;
  font-size: 15px;
}

.bp-force-mobile .bp-cart-line {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
}

.bp-force-mobile .bp-cart-line figure {
  width: 72px;
  height: 88px;
}

.bp-force-mobile .bp-cart-line strong {
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.25;
}

.bp-force-mobile .bp-cart-line small {
  font-size: 13px;
}

.bp-force-mobile .bp-cart-line b {
  font-size: 16px;
  font-weight: 700;
}

.bp-force-mobile .bp-cart-qty {
  grid-template-columns: 30px 30px 30px;
}

.bp-force-mobile .bp-cart-qty button,
.bp-force-mobile .bp-cart-qty span {
  min-height: 34px;
}

.bp-variant-sheet .bp-sheet-qty,
.bp-force-mobile .bp-variant-sheet .bp-sheet-qty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px 42px 42px;
}

.bp-lookup-form {
  display: grid;
  gap: 10px;
}

.bp-lookup-form .bp-field {
  padding: 0;
}

.bp-lookup-form .bp-primary {
  min-height: 48px;
}

.bp-lookup-results {
  display: grid;
  gap: 10px;
}

.bp-lookup-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
  background: #fff;
  color: var(--bp-text);
  text-decoration: none;
}

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

.bp-lookup-result b {
  color: var(--bp-primary);
  font-size: 14px;
}

.bp-lookup-result small,
.bp-lookup-result em {
  color: var(--bp-muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.bp-lookup-result em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bp-lookup-result strong {
  color: var(--bp-shop-accent);
  font-size: 14px;
  white-space: nowrap;
}

.bp-lookup-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px dashed var(--bp-line);
  border-radius: 12px;
  color: var(--bp-muted);
  font-size: 13px;
  line-height: 1.4;
}

.bp-force-mobile .bp-lookup-form {
  gap: 9px;
}

.bp-force-mobile .bp-lookup-form .bp-field input {
  min-height: 48px;
  font-size: 15px;
}

.bp-force-mobile .bp-lookup-form .bp-primary {
  min-height: 46px;
}

.bp-force-mobile .bp-lookup-result {
  padding: 11px;
}

.bp-reviews-section {
  display: grid;
  gap: 14px;
}

.bp-review-list {
  display: grid;
  gap: 10px;
}

.bp-review-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--bp-line);
  border-radius: 13px;
  background: #f8fafc;
}

.bp-review-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 12px;
  align-items: end;
}

.bp-review-form .bp-field {
  padding: 0;
}

.bp-review-stars {
  display: grid;
  gap: 7px;
}

.bp-review-stars > span {
  color: #344054;
  font-size: 13px;
  font-weight: 580;
}

.bp-review-stars > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.bp-review-stars button {
  min-height: 42px;
  border: 1px solid var(--bp-line);
  border-radius: 10px;
  background: #fff;
  color: #667085;
  font: inherit;
  font-size: 13px;
  font-weight: 580;
  cursor: pointer;
}

.bp-review-stars button.is-active {
  border-color: rgba(var(--bp-shop-accent-rgb), 0.65);
  background: var(--bp-shop-accent-soft);
  color: var(--bp-shop-accent);
}

.bp-review-text {
  grid-column: 1 / -1;
}

.bp-review-form textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 12px;
  border: 1px solid var(--bp-line);
  border-radius: 11px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
}

.bp-review-form textarea:focus {
  outline: 0;
  border-color: rgba(var(--bp-shop-accent-rgb), 0.72);
  box-shadow: 0 0 0 3px rgba(var(--bp-shop-accent-rgb), 0.09);
}

.bp-review-form .bp-primary {
  justify-self: start;
  min-height: 46px;
  padding-inline: 18px;
}

.bp-force-mobile .bp-reviews-section {
  gap: 12px;
}

.bp-force-mobile .bp-review-form {
  padding: 12px;
}

.bp-force-mobile .bp-review-form-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.bp-force-mobile .bp-review-stars > div {
  grid-template-columns: repeat(5, minmax(42px, 1fr));
}

.bp-force-mobile .bp-review-stars button {
  min-height: 40px;
  font-size: 12.5px;
}

.bp-force-mobile .bp-review-form textarea {
  min-height: 88px;
  font-size: 14.5px;
}

.bp-force-mobile .bp-review-form .bp-primary {
  width: 100%;
  justify-self: stretch;
}

.bp-store-locked-page {
  display: grid;
  min-height: 52vh;
  place-items: center;
  padding: 28px 16px;
}

.bp-store-locked {
  width: min(520px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  background: #fff;
  color: var(--bp-text);
  text-align: center;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.bp-store-locked > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--bp-shop-accent-soft);
  color: var(--bp-primary);
}

.bp-store-locked svg {
  width: 26px;
  height: 26px;
}

.bp-store-locked h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
}

.bp-store-locked p,
.bp-store-locked small {
  margin: 0;
  color: var(--bp-muted);
  line-height: 1.5;
}

.bp-store-locked .bp-secondary {
  width: auto;
  min-width: 170px;
}

.bp-maintenance-screen {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 24px;
  background: #fff;
  color: #111827;
  text-align: center;
}

.bp-maintenance-screen h1 {
  margin: 0;
  max-width: 280px;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}

.bp-live-canvas > .bp-maintenance-screen {
  min-height: inherit;
}

.bp-force-mobile.bp-maintenance-screen,
.bp-force-mobile > .bp-maintenance-screen,
.bp-live-canvas.bp-force-mobile > .bp-maintenance-screen {
  min-height: 844px;
}

.bp-bank-qr {
  grid-row: span 6;
  width: 124px;
  max-width: 100%;
  aspect-ratio: 1;
  align-self: start;
  justify-self: center;
  padding: 7px;
  border: 1px solid var(--bp-line);
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.bp-bank-qr-fallback {
  grid-row: span 6;
  display: grid !important;
  place-items: center;
  width: 124px;
  max-width: 100%;
  aspect-ratio: 1;
  justify-self: center;
  padding: 10px;
  border: 1px dashed var(--bp-primary);
  border-radius: 12px;
  background: #fff;
  color: var(--bp-muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.bp-bank-qr-fallback[hidden] {
  display: none !important;
}

.bp-bank-info {
  align-items: start;
}

@media (max-width: 760px) {
  .bp-bank-qr {
    grid-row: auto;
    width: 148px;
  }

  .bp-bank-qr-fallback {
    grid-row: auto;
    width: 148px;
  }
}

.bp-force-mobile .bp-bank-qr {
  grid-row: auto;
  width: 138px;
}

.bp-force-mobile .bp-bank-qr-fallback {
  grid-row: auto;
  width: 138px;
}

@media (max-width: 767px) {
  .bp-shop-footer {
    margin-top: 18px;
    padding: 18px 18px 92px;
  }

  .bp-shop-footer dl {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.bp-force-mobile .bp-shop-footer {
  margin-top: 18px;
  padding: 18px 18px 92px;
}

.bp-force-mobile .bp-shop-footer dl {
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (max-width: 760px) {
  .bp-variant-sheet {
    align-items: end;
  }

  .bp-variant-sheet section {
    gap: 9px;
    max-height: min(92vh, 720px);
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .bp-sheet-close {
    top: -50px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(17, 24, 39, 0.72);
    color: #fff;
  }

  .bp-sheet-product {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding-right: 0;
  }

  .bp-sheet-product figure {
    width: 72px;
    height: 72px;
    border-radius: 11px;
  }

  .bp-sheet-price b {
    font-size: 24px;
  }

  .bp-sheet-product del,
  .bp-sheet-product p {
    font-size: 12.5px;
  }

  .bp-sheet-badges {
    gap: 5px;
    margin-top: 6px;
  }

  .bp-sheet-badges span {
    min-height: 22px;
    padding: 0 7px;
    font-size: 11px;
  }

  .bp-sheet-sale {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 12.5px;
  }

  .bp-sheet-options h3 {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .bp-sheet-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .bp-sheet-color-card {
    border-radius: 11px;
  }

  .bp-sheet-color-card figure {
    aspect-ratio: 1.32 / 1;
  }

  .bp-sheet-color-card span {
    min-height: 30px;
    padding: 4px;
    font-size: 12px;
    font-weight: 560;
  }

  .bp-variant-sheet .bp-variant {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 7px;
    align-items: center;
  }

  .bp-variant-sheet .bp-variant label {
    font-size: 13px;
    font-weight: 600;
  }

  .bp-variant-sheet .bp-variant > div {
    gap: 7px;
    flex-wrap: nowrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .bp-variant-sheet .bp-variant button {
    min-width: 49px;
    min-height: 38px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
  }

  .bp-sheet-buy {
    position: sticky;
    bottom: 0;
    min-height: 52px;
    margin-top: 4px;
    border-radius: 13px;
    box-shadow: 0 -8px 18px rgba(255, 255, 255, 0.88), 0 10px 20px rgba(var(--bp-shop-accent-rgb), 0.18);
  }

  .bp-sheet-buy span {
    font-size: 18px;
    font-weight: 650;
  }

  .bp-sheet-buy small {
    font-size: 12px;
  }
}

.bp-force-mobile .bp-variant-sheet section {
  gap: 9px;
  max-height: min(92vh, 720px);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
}

.bp-force-mobile .bp-sheet-close {
  top: -50px;
  right: 14px;
  width: 38px;
  height: 38px;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
}

.bp-force-mobile .bp-sheet-product {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding-right: 0;
}

.bp-force-mobile .bp-sheet-product figure {
  width: 72px;
  height: 72px;
  border-radius: 11px;
}

.bp-force-mobile .bp-sheet-price b {
  font-size: 24px;
}

.bp-force-mobile .bp-sheet-badges {
  gap: 5px;
  margin-top: 6px;
}

.bp-force-mobile .bp-sheet-badges span {
  min-height: 22px;
  padding: 0 7px;
  font-size: 11px;
}

.bp-force-mobile .bp-sheet-sale {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 12.5px;
}

.bp-force-mobile .bp-sheet-options h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.bp-force-mobile .bp-sheet-color-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.bp-force-mobile .bp-sheet-color-card figure {
  aspect-ratio: 1.32 / 1;
}

.bp-force-mobile .bp-sheet-color-card span {
  min-height: 30px;
  padding: 4px;
  font-size: 12px;
  font-weight: 560;
}

.bp-force-mobile .bp-variant-sheet .bp-variant {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 7px;
}

.bp-force-mobile .bp-variant-sheet .bp-variant button {
  min-width: 49px;
  min-height: 38px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.bp-force-mobile .bp-sheet-buy {
  position: sticky;
  bottom: 0;
  min-height: 52px;
  margin-top: 4px;
  border-radius: 13px;
  box-shadow: 0 -8px 18px rgba(255, 255, 255, 0.88), 0 10px 20px rgba(var(--bp-shop-accent-rgb), 0.18);
}

.bp-force-mobile .bp-sheet-buy span {
  font-size: 18px;
  font-weight: 650;
}

.bp-force-mobile .bp-order-card,
.bp-force-mobile .bp-lookup,
.bp-force-mobile .bp-contact-card {
  padding: 14px;
}

.bp-force-mobile .bp-order-card {
  gap: 12px;
}

.bp-force-mobile .bp-order-card b {
  font-weight: 650;
}

.bp-force-mobile .bp-order-card mark {
  padding: 5px 9px;
  font-weight: 700;
}

.bp-force-mobile .bp-order-card .bp-cart-line {
  padding-inline: 0;
}

.bp-force-mobile .bp-order-actions {
  gap: 8px;
}

.bp-force-mobile .bp-lookup,
.bp-force-mobile .bp-contact-card {
  gap: 10px;
}

.bp-force-mobile .bp-lookup h2,
.bp-force-mobile .bp-contact-card h1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.bp-force-mobile .bp-success-card {
  gap: 12px;
  padding: 26px 16px;
}

.bp-force-mobile .bp-success-card h1 {
  font-size: 22px;
  line-height: 1.25;
}

.bp-force-mobile .bp-secondary-link {
  font-size: 15px;
}

.bp-force-mobile .bp-bottom-nav a {
  min-height: 62px;
  font-weight: 650;
}

.bp-force-desktop .bp-mobile-header,
.bp-force-desktop .bp-mobile-categories,
.bp-force-desktop .bp-flash-mobile,
.bp-force-desktop .bp-bottom-nav {
  display: none;
}

/* Buyer UI polish: softer color, lighter typography, cleaner mobile controls. */
:root,
:root[data-shop-theme="red"] {
  --bp-bg: #f6f8fb;
  --bp-surface: #ffffff;
  --bp-text: #111827;
  --bp-muted: #667085;
  --bp-faint: #f2f4f7;
  --bp-line: #e4e7ec;
  --bp-primary: #24328f;
  --bp-shop-accent: #a8322a;
  --bp-shop-accent-dark: #84241f;
  --bp-shop-accent-soft: #fff3f1;
  --bp-shop-accent-rgb: 168, 50, 42;
  --bp-flash: #91302b;
  --bp-flash-dark: #74231f;
  --bp-red: var(--bp-shop-accent);
  --bp-red-dark: var(--bp-shop-accent-dark);
  --bp-green: #14866d;
  --bp-shadow: 0 14px 36px rgba(17, 24, 39, 0.075);
  --bp-radius: 16px;
}

:root[data-shop-theme="orange"] {
  --bp-shop-accent: #b85c21;
  --bp-shop-accent-dark: #914719;
  --bp-shop-accent-soft: #fff5ed;
  --bp-shop-accent-rgb: 184, 92, 33;
  --bp-flash: #a94f1d;
  --bp-flash-dark: #7f3b16;
}

:root[data-shop-theme="green"] {
  --bp-shop-accent: #168160;
  --bp-shop-accent-dark: #106247;
  --bp-shop-accent-soft: #edfdf6;
  --bp-shop-accent-rgb: 22, 129, 96;
  --bp-flash: #167456;
  --bp-flash-dark: #10543f;
}

:root[data-shop-theme="blue"] {
  --bp-shop-accent: #3157b7;
  --bp-shop-accent-dark: #274795;
  --bp-shop-accent-soft: #eff5ff;
  --bp-shop-accent-rgb: 49, 87, 183;
  --bp-flash: #2e4f9d;
  --bp-flash-dark: #253e7a;
}

:root[data-shop-theme="navy"] {
  --bp-shop-accent: #2f3b4f;
  --bp-shop-accent-dark: #1b2432;
  --bp-shop-accent-soft: #f3f6fa;
  --bp-shop-accent-rgb: 47, 59, 79;
  --bp-flash: #2b3546;
  --bp-flash-dark: #192231;
}

:root[data-shop-theme="purple"] {
  --bp-shop-accent: #7056b8;
  --bp-shop-accent-dark: #584497;
  --bp-shop-accent-soft: #f6f3ff;
  --bp-shop-accent-rgb: 112, 86, 184;
  --bp-flash: #6550a5;
  --bp-flash-dark: #4c3b81;
}

:root[data-shop-theme="pink"] {
  --bp-shop-accent: #b24672;
  --bp-shop-accent-dark: #8f345b;
  --bp-shop-accent-soft: #fff2f7;
  --bp-shop-accent-rgb: 178, 70, 114;
  --bp-flash: #a13d68;
  --bp-flash-dark: #79304f;
}

:root[data-shop-theme="brown"] {
  --bp-shop-accent: #8a5432;
  --bp-shop-accent-dark: #673d24;
  --bp-shop-accent-soft: #fff7f1;
  --bp-shop-accent-rgb: 138, 84, 50;
  --bp-flash: #7d4a2c;
  --bp-flash-dark: #5f3821;
}

:root[data-shop-theme="black"] {
  --bp-shop-accent: #2b3038;
  --bp-shop-accent-dark: #171b21;
  --bp-shop-accent-soft: #f3f4f6;
  --bp-shop-accent-rgb: 43, 48, 56;
  --bp-flash: #292e36;
  --bp-flash-dark: #15191f;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-weight: 400;
}

.bp-shop {
  background: var(--bp-bg);
}

.bp-icon {
  stroke-width: 1.85;
}

.bp-primary,
.bp-secondary,
.bp-red-link,
.bp-messenger-cta,
.bp-sheet-buy,
.bp-voucher-input button,
.bp-secondary-link {
  border-radius: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.bp-primary,
.bp-messenger-cta,
.bp-sheet-buy {
  background: linear-gradient(180deg, var(--bp-shop-accent), var(--bp-shop-accent-dark));
  box-shadow: 0 8px 18px rgba(var(--bp-shop-accent-rgb), 0.18);
}

.bp-primary:hover,
.bp-messenger-cta:hover,
.bp-sheet-buy:hover {
  background: var(--bp-shop-accent-dark);
}

.bp-secondary,
.bp-red-link,
.bp-secondary-link {
  border-color: rgba(var(--bp-shop-accent-rgb), 0.24);
  background: #fff;
  color: var(--bp-shop-accent);
  box-shadow: none;
}

.bp-logo {
  color: #101828;
  font-weight: 700;
}

.bp-logo span {
  border-width: 1.5px;
  background: #f8fafc;
  font-weight: 700;
}

.bp-trust-top,
.bp-desktop-mainbar,
.bp-desktop-home-grid,
.bp-category-layout,
.bp-sidebar,
.bp-section,
.bp-product-layout,
.bp-description,
.bp-cart-list,
.bp-checkout-form,
.bp-order-card,
.bp-lookup,
.bp-contact-card,
.bp-success-card,
.bp-summary,
.bp-variant-sheet section {
  border-color: var(--bp-line);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.055);
}

.bp-sidebar h2,
.bp-mobile-categories h2,
.bp-section h2,
.bp-section-head h1,
.bp-section-head h2,
.bp-screen-title h1,
.bp-buy-box h1,
.bp-description h2,
.bp-sheet-options h3,
.bp-success-card h1 {
  color: #101828;
  font-weight: 650;
}

.bp-section-head a,
.bp-screen-title a,
.bp-voucher a,
.bp-action,
.bp-bottom-nav a {
  font-weight: 600;
}

.bp-category-card b,
.bp-product-card strong,
.bp-cart-line strong,
.bp-sheet-color-card span,
.bp-field span,
.bp-payment-box b {
  color: #182033;
  font-weight: 580;
}

.bp-price b,
.bp-detail-price b,
.bp-cart-line b,
.bp-summary .is-total b,
.bp-sheet-price b,
.bp-success-card > strong {
  color: var(--bp-shop-accent);
  font-weight: 720;
}

.bp-product-card small,
.bp-description p,
.bp-rating span,
.bp-cart-line small,
.bp-payment-box small,
.bp-summary > div,
.bp-success-card p {
  color: var(--bp-muted);
  font-weight: 400;
}

.bp-product-card figure,
.bp-product-photo-large,
.bp-detail-image,
.bp-cart-line figure,
.bp-sheet-product figure,
.bp-sheet-color-card figure {
  background: #f4f2ef;
}

.bp-product-card figure span,
.bp-action i,
.bp-cart-badge i,
.bp-bottom-icon i {
  background: var(--bp-shop-accent);
  font-weight: 650;
}

.bp-detail-price span,
.bp-sheet-badges span {
  background: var(--bp-shop-accent-soft);
  color: var(--bp-shop-accent);
  font-weight: 620;
}

.bp-rating {
  color: #d98a06;
  font-weight: 620;
}

.bp-variant label {
  font-weight: 620;
}

.bp-variant button,
.bp-cart-qty button,
.bp-cart-qty span {
  border-color: var(--bp-line);
  background: #fff;
  color: #182033;
  font-weight: 560;
}

.bp-variant button.is-active,
.bp-gallery-thumbs button.is-active,
.bp-sheet-color-card.is-active {
  border-color: var(--bp-shop-accent);
  box-shadow: 0 0 0 3px rgba(var(--bp-shop-accent-rgb), 0.1);
}

.bp-voucher {
  border-color: rgba(var(--bp-shop-accent-rgb), 0.18);
  background: var(--bp-shop-accent-soft);
}

.bp-voucher b,
.bp-voucher a {
  color: var(--bp-shop-accent);
  font-weight: 650;
}

.bp-voucher span {
  font-weight: 560;
}

.bp-mobile-sale,
.bp-sheet-sale {
  background: linear-gradient(90deg, var(--bp-flash), var(--bp-flash-dark));
  letter-spacing: 0;
}

.bp-mobile-sale b,
.bp-mobile-sale span,
.bp-sheet-sale b,
.bp-sheet-sale span {
  font-weight: 650;
}

.bp-field input,
.bp-field select,
.bp-voucher-input input {
  border-color: var(--bp-line);
  background-color: #fff;
  color: #111827;
  font-weight: 400;
}

.bp-field input:focus,
.bp-field select:focus,
.bp-voucher-input input:focus {
  border-color: rgba(var(--bp-shop-accent-rgb), 0.72);
  box-shadow: 0 0 0 3px rgba(var(--bp-shop-accent-rgb), 0.09);
}

.bp-payment-box > button {
  border-color: var(--bp-line);
  background: #fff;
}

.bp-payment-box > button.is-active {
  border-color: rgba(var(--bp-shop-accent-rgb), 0.42);
  background: var(--bp-shop-accent-soft);
}

.bp-payment-box > button.is-active span {
  border-color: var(--bp-shop-accent);
}

.bp-payment-box > button.is-active span::after {
  background: var(--bp-shop-accent);
}

@media (max-width: 760px) {
  .bp-page {
    padding: 12px 10px 86px;
  }

  .bp-mobile-header {
    min-height: 60px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.94);
  }

  .bp-mobile-header .bp-logo {
    font-weight: 650;
  }

  .bp-mobile-header .bp-logo strong {
    font-size: 15px;
    font-weight: 650;
  }

  .bp-icon-button {
    background: transparent;
    color: #101828;
  }

  .bp-mobile-categories {
    margin-bottom: 12px;
  }

  .bp-mobile-categories > div {
    gap: 8px;
  }

  .bp-mobile-categories .bp-category-card {
    min-height: 78px;
  }

  .bp-mobile-categories .bp-category-card span {
    width: 48px;
    height: 48px;
    background: #f4f6fb;
  }

  .bp-mobile-categories .bp-category-card b {
    font-size: 12px;
    font-weight: 560;
  }

  .bp-section-head h2 {
    font-size: 16px;
    font-weight: 650;
  }

  .bp-section-head h2 span {
    color: var(--bp-shop-accent);
    font-weight: 620;
    letter-spacing: 0.5px;
  }

  .bp-section-head a {
    color: var(--bp-primary);
    font-weight: 600;
  }

  .bp-mobile-product-grid,
  .bp-product-grid,
  .bp-category-products {
    gap: 10px;
  }

  .bp-product-card {
    gap: 7px;
  }

  .bp-product-card figure {
    border-radius: 13px;
  }

  .bp-product-card figure span {
    top: 7px;
    left: 7px;
    min-width: 38px;
    height: 23px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 650;
  }

  .bp-product-card strong {
    font-size: 14.5px;
    font-weight: 580;
    line-height: 1.32;
  }

  .bp-price b {
    font-size: 17px;
    font-weight: 700;
  }

  .bp-price del,
  .bp-product-card small {
    font-size: 12.5px;
  }

  .bp-product-photo-large {
    border-radius: 0 0 18px 18px;
  }

  .bp-buy-box {
    gap: 10px;
    padding: 0 14px 14px;
  }

  .bp-mobile-sale {
    min-height: 38px;
    margin: 0 -14px 6px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .bp-buy-box h1 {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.34;
  }

  .bp-rating {
    font-size: 13.5px;
    font-weight: 600;
  }

  .bp-rating span {
    font-weight: 500;
  }

  .bp-detail-price {
    gap: 8px 10px;
  }

  .bp-detail-price b {
    font-size: 30px;
    line-height: 1;
  }

  .bp-detail-price del {
    font-size: 12.5px;
  }

  .bp-detail-price span {
    padding: 6px 10px;
    border-radius: 9px;
    font-size: 13px;
  }

  .bp-description {
    margin: 10px -10px 0;
    padding: 16px 14px;
    border-inline: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .bp-description h2 {
    font-size: 17px;
    font-weight: 650;
  }

  .bp-description p,
  .bp-review p {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .bp-review b {
    font-weight: 620;
  }

  .bp-variant-sheet section {
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 44px rgba(17, 24, 39, 0.18);
  }

  .bp-sheet-product {
    gap: 12px;
  }

  .bp-sheet-product p {
    font-weight: 450;
  }

  .bp-sheet-price b {
    font-size: 28px;
    font-weight: 720;
  }

  .bp-sheet-sale {
    min-height: 38px;
    font-size: 13px;
  }

  .bp-sheet-color-card span {
    font-size: 13px;
    font-weight: 560;
  }

  .bp-sheet-buy {
    min-height: 58px;
    font-weight: 650;
  }

  .bp-sticky-buy {
    grid-template-columns: minmax(126px, 35%) minmax(0, 1fr);
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
  }

  .bp-sticky-buy button,
  .bp-sticky-buy a {
    min-height: 56px;
    border-radius: 13px;
    font-weight: 650;
  }

  .bp-sticky-buy .bp-messenger-buy {
    border-color: #cfe0ff;
    background: #f8fbff;
    color: #1768e8;
  }

  .bp-sticky-buy .bp-messenger-buy span {
    font-size: 12.5px;
    font-weight: 620;
    line-height: 1.15;
  }

  .bp-sticky-buy .bp-primary {
    box-shadow: 0 8px 16px rgba(var(--bp-shop-accent-rgb), 0.16);
  }

  .bp-sticky-buy .bp-primary span {
    font-weight: 650;
  }

  .bp-sticky-buy small {
    font-size: 12px;
    font-weight: 600;
  }

  .bp-cart-list,
  .bp-checkout-form,
  .bp-order-card,
  .bp-lookup,
  .bp-contact-card,
  .bp-success-card,
  .bp-summary {
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.055);
  }

  .bp-screen-title h1 {
    font-size: 19px;
    font-weight: 650;
  }

  .bp-field span {
    font-size: 13px;
    font-weight: 550;
  }

  .bp-field input,
  .bp-field select,
  .bp-voucher-input input {
    min-height: 47px;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 400;
  }

  .bp-payment-box h2 {
    font-size: 18px;
    font-weight: 650;
  }

  .bp-payment-box b {
    font-size: 15px;
    font-weight: 580;
  }

  .bp-payment-box small {
    font-size: 12.5px;
  }

  .bp-summary .is-total {
    font-weight: 650;
  }

  .bp-cart-line strong {
    font-weight: 580;
  }

  .bp-cart-line b {
    font-weight: 700;
  }

  .bp-bottom-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
  }

  .bp-bottom-nav a {
    color: #4b5565;
    font-weight: 560;
  }

  .bp-bottom-nav a.is-active {
    color: var(--bp-primary);
  }
}

.bp-force-mobile .bp-page {
  padding: 12px 10px 86px;
}

.bp-force-mobile .bp-mobile-header {
  min-height: 60px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.94);
}

.bp-force-mobile .bp-mobile-header .bp-logo strong {
  font-size: 15px;
  font-weight: 650;
}

.bp-force-mobile .bp-icon-button {
  background: transparent;
  color: #101828;
}

.bp-force-mobile .bp-mobile-categories {
  margin-bottom: 12px;
}

.bp-force-mobile .bp-mobile-categories > div,
.bp-force-mobile .bp-mobile-product-grid,
.bp-force-mobile .bp-product-grid,
.bp-force-mobile .bp-category-products {
  gap: 10px;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card {
  min-height: 78px;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card span {
  width: 48px;
  height: 48px;
  background: #f4f6fb;
}

.bp-force-mobile .bp-mobile-categories .bp-category-card b {
  font-size: 12px;
  font-weight: 560;
}

.bp-force-mobile .bp-section-head h2 {
  font-size: 16px;
  font-weight: 650;
}

.bp-force-mobile .bp-section-head h2 span {
  color: var(--bp-shop-accent);
  font-weight: 620;
  letter-spacing: 0.5px;
}

.bp-force-mobile .bp-product-card strong {
  font-size: 14.5px;
  font-weight: 580;
  line-height: 1.32;
}

.bp-force-mobile .bp-price b {
  font-size: 17px;
  font-weight: 700;
}

.bp-force-mobile .bp-product-photo-large {
  border-radius: 0 0 18px 18px;
}

.bp-force-mobile .bp-buy-box {
  gap: 10px;
  padding: 0 14px 14px;
}

.bp-force-mobile .bp-mobile-sale {
  min-height: 38px;
  margin: 0 -14px 6px;
  padding: 9px 14px;
  font-size: 13px;
}

.bp-force-mobile .bp-buy-box h1 {
  font-size: 18px;
  font-weight: 650;
  line-height: 1.34;
}

.bp-force-mobile .bp-rating {
  font-size: 13.5px;
  font-weight: 600;
}

.bp-force-mobile .bp-rating span {
  font-weight: 500;
}

.bp-force-mobile .bp-detail-price b {
  font-size: 30px;
  font-weight: 720;
  line-height: 1;
}

.bp-force-mobile .bp-detail-price span {
  padding: 6px 10px;
  border-radius: 9px;
  font-size: 13px;
}

.bp-force-mobile .bp-description {
  margin: 10px -10px 0;
  padding: 16px 14px;
  border-inline: 0;
  border-radius: 0;
  box-shadow: none;
}

.bp-force-mobile .bp-description h2 {
  font-size: 17px;
  font-weight: 650;
}

.bp-force-mobile .bp-description p,
.bp-force-mobile .bp-review p {
  font-size: 14.5px;
  line-height: 1.62;
}

.bp-force-mobile .bp-variant-sheet section {
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -18px 44px rgba(17, 24, 39, 0.18);
}

.bp-force-mobile .bp-sheet-price b {
  font-size: 28px;
  font-weight: 720;
}

.bp-force-mobile .bp-sheet-color-card span {
  font-size: 13px;
  font-weight: 560;
}

.bp-force-mobile .bp-sheet-buy {
  min-height: 58px;
  font-weight: 650;
}

.bp-force-mobile .bp-sticky-buy {
  grid-template-columns: minmax(126px, 35%) minmax(0, 1fr);
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.bp-force-mobile .bp-sticky-buy button,
.bp-force-mobile .bp-sticky-buy a {
  min-height: 56px;
  border-radius: 13px;
  font-weight: 650;
}

.bp-force-mobile .bp-sticky-buy .bp-messenger-buy {
  border-color: #cfe0ff;
  background: #f8fbff;
  color: #1768e8;
}

.bp-force-mobile .bp-sticky-buy .bp-messenger-buy span {
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.15;
}

.bp-force-mobile .bp-sticky-buy .bp-primary {
  box-shadow: 0 8px 16px rgba(var(--bp-shop-accent-rgb), 0.16);
}

.bp-force-mobile .bp-sticky-buy .bp-primary span {
  font-weight: 650;
}

.bp-force-mobile .bp-sticky-buy small {
  font-weight: 600;
}

.bp-force-mobile .bp-field span {
  font-size: 13px;
  font-weight: 550;
}

.bp-force-mobile .bp-field input,
.bp-force-mobile .bp-field select,
.bp-force-mobile .bp-voucher-input input {
  min-height: 47px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 400;
}

.bp-force-mobile .bp-payment-box h2 {
  font-size: 18px;
  font-weight: 650;
}

.bp-force-mobile .bp-payment-box b {
  font-size: 15px;
  font-weight: 580;
}

.bp-force-mobile .bp-bottom-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.bp-force-mobile .bp-bottom-nav a {
  color: #4b5565;
  font-weight: 560;
}

.bp-force-mobile .bp-bottom-nav a.is-active {
  color: var(--bp-primary);
}

@media (max-width: 760px) {
  .bp-cart-line {
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
  }

  .bp-cart-line .bp-remove {
    display: inline-flex;
    grid-column: 3;
    grid-row: 2;
    justify-content: center;
    min-height: 28px;
    color: var(--bp-shop-accent);
    font-size: 12.5px;
    font-weight: 600;
  }

  .bp-cart-qty {
    grid-template-columns: 32px 32px 32px;
    border-radius: 11px;
  }

  .bp-cart-qty button,
  .bp-cart-qty span {
    min-height: 34px;
  }
}

.bp-force-mobile .bp-cart-line {
  grid-template-columns: 74px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.bp-force-mobile .bp-cart-line .bp-remove {
  display: inline-flex;
  grid-column: 3;
  grid-row: 2;
  justify-content: center;
  min-height: 28px;
  color: var(--bp-shop-accent);
  font-size: 12.5px;
  font-weight: 600;
}

.bp-force-mobile .bp-cart-qty {
  grid-template-columns: 32px 32px 32px;
  border-radius: 11px;
}

.bp-force-mobile .bp-cart-qty button,
.bp-force-mobile .bp-cart-qty span {
  min-height: 34px;
}
