.qb {
  border: 0;
  padding: 0;
  margin: 22px 0 0;
  min-width: 0;
}
.qb-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.qb-head::before,
.qb-head::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--accent);
}
.qb-rows {
  display: grid;
  gap: 9px;
}
.qb-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 3%, var(--surface));
  cursor: pointer;
  min-height: 87px;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease;
}
.qb-row:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 11%, var(--surface));
}
.qb-row:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, var(--surface));
  box-shadow: 0 10px 28px -18px color-mix(in srgb, var(--accent) 60%, transparent);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .qb-row:hover { background: color-mix(in srgb, var(--accent) 22%, var(--surface)); }
  :root:not([data-theme="light"]) .qb-row:has(input:checked) { background: color-mix(in srgb, var(--accent) 30%, var(--surface)); }
}
:root[data-theme="dark"] .qb-row:hover { background: color-mix(in srgb, var(--accent) 22%, var(--surface)); }
:root[data-theme="dark"] .qb-row:has(input:checked) { background: color-mix(in srgb, var(--accent) 30%, var(--surface)); }
.qb-row > input[type="radio"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}
.qb-ic {
  position: relative;
  width: 66px;
  height: 50px;
  flex: 0 0 auto;
  isolation: isolate;
}
.qb-phone {
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 46px;
  padding: 2px;
  border-radius: 6px;
  background: #1b191c;
  box-shadow: 0 4px 10px -6px rgba(20, 18, 20, 0.6);
}
[data-theme="dark"] .qb-phone,
[data-theme="dark"] .qb-stick-pic {
  background: #d7d6d9;
  box-shadow: 0 4px 10px -6px rgba(0, 0, 0, 0.7);
}
.qb-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
}
.qb-phone:nth-child(1) { z-index: 4; }
.qb-phone:nth-child(2) { left: 14px; top: 5px; z-index: 3; }
.qb-phone:nth-child(3) { left: 28px; top: 2px; z-index: 2; }
.qb-phone:nth-child(4) { left: 42px; top: -1px; z-index: 1; }
@media (max-width: 420px) {
  .qb-ic { width: 60px; }
  .qb-phone:nth-child(2) { left: 12px; }
  .qb-phone:nth-child(3) { left: 24px; }
  .qb-phone:nth-child(4) { left: 36px; }
}
.qb-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.qb-n {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink);
}
.qb-save {
  font-size: 0.87rem;
  color: var(--accent-text);
}
.qb-row .qb-qty {
  display: none;
  align-self: flex-start;
  margin-top: 8px;
}
.qb-row:has(> input:checked) .qb-qty {
  display: inline-flex;
  flex: none;
}
.qb-qty .cart-qty-i {
  flex: 0 0 38px;
}
.qb-qty .cart-qty-b {
  flex: 0 0 auto;
}
.qb-cost {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  text-align: right;
}
.qb-amt {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.qb-was {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--quiet, var(--muted));
  white-space: nowrap;
}
.qb-badge {
  position: absolute;
  top: -12px;
  right: -8px;
}
@media (max-width: 1200px) {
  body.bp-page .qb-badge {
    right: 8px;
  }
}
.qb-row:not(:hover) > .qb-badge {
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.qb-cta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 420px) {
  .qb-row {
    gap: 11px;
    padding: 13px 14px;
  }
  .qb-amt {
    font-size: 1.02rem;
  }
}

.qb-stick {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px clamp(14px, 4vw, 34px);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -10px 30px -18px rgb(0 0 0 / 28%);
}
.qb-stick.in {
  transform: none;
}
.qb-stick-thumb {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  color: var(--accent-text);
}
.qb-stick-thumb svg {
  width: 27px;
  height: 27px;
  display: block;
}
.qb-stick-thumb.has-mark {
  overflow: hidden;
  background: var(--surface);
}
.qb-stick-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qb-stick-thumb.qb-stick-stack {
  position: relative;
  width: 66px;
  height: 50px;
  border: 0;
  background: none;
  overflow: visible;
  isolation: isolate;
}
.qb-stick-pic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 36px;
  padding: 2px;
  border-radius: 5px;
  background: #1b191c;
  box-shadow: 0 4px 10px -6px rgba(20, 18, 20, 0.6);
}
.qb-stick-pic:only-child {
  width: 60px;
  height: 45px;
  padding: 3px;
  border-radius: 6px;
  bottom: 2px;
}
.qb-stick-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
}
.qb-stick-pic:nth-child(1) { z-index: 4; }
.qb-stick-pic:nth-child(2) { transform: translate(5px, -4px) rotate(3deg); z-index: 3; opacity: 0.94; }
.qb-stick-pic:nth-child(3) { transform: translate(10px, -8px) rotate(6deg); z-index: 2; opacity: 0.88; }
.qb-stick-pic:nth-child(4) { transform: translate(15px, -12px) rotate(9deg); z-index: 1; opacity: 0.82; }
.qb-stick-txt {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.qb-stick-name {
  font-weight: 600;
  font-size: 1.19rem;
  line-height: 1.15;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.qb-stick-cost {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1.25rem;
  line-height: 1.15;
}
.qb-stick-amt {
  font-weight: 700;
  color: var(--accent-text);
}
.qb-stick-was {
  color: var(--quiet, var(--muted));
}
.qb-stick-was {
  font-size: 1rem;
}
.qb-stick .btn {
  flex: 0 0 auto;
  min-width: 166px;
  min-height: 52px;
  font-size: 1.19rem;
  border-radius: 8px;
}

@media (max-width: 560px) {
  .qb-stick {
    gap: 11px;
    padding: 9px 13px;
  }
  .qb-stick-thumb {
    width: 40px;
    height: 40px;
  }
  .qb-stick-thumb svg {
    width: 21px;
    height: 21px;
  }
  .qb-stick-name {
    font-size: 0.98rem;
  }
  .qb-stick-cost {
    font-size: 1.02rem;
  }
  .qb-stick-was {
    font-size: 0.86rem;
  }
  .qb-stick .btn {
    min-width: 0;
    min-height: 46px;
    font-size: 1rem;
  }
}
.bp-said { width: var(--container); margin-inline: auto; padding-bottom: 0; }
.bp-build { padding-top: 0; }
.bp-feat { display: grid; gap: 28px; grid-template-columns: minmax(0, 1fr); align-items: center; }
@media (min-width: 861px) { .bp-feat { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; } .bp-feat.flip .bp-feat-shot { order: -1; } }
.bp-feat + .bp-feat { margin-top: 48px; }
.bp-feat-copy { margin: 0; min-width: 0; }
.bp-feat-q { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.25; letter-spacing: -.01em; color: var(--ink); }
.bp-feat-q em { font-style: normal; padding: 2px 8px 4px; background: var(--accent); color: #fff; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.bp-feat-shot { margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); box-shadow: 0 30px 70px -34px rgba(20, 18, 20, .42), 0 8px 22px -16px rgba(20, 18, 20, .28); }
.bp-feat-shot img { display: block; width: 100%; height: auto; }
.bp-quote-who { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 20px; }
.bp-quote-face { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none;
  border: 1px solid var(--line); }
.bp-quote-name { display: flex; flex-direction: column; min-width: 0; font-weight: 700;
  color: var(--ink); font-size: 0.96rem; line-height: 1.3; }
.bp-quote-name span { font-weight: 400; color: var(--muted); font-size: 0.86rem; }
