/* Cart, checkout, success */
.hp-header__cart {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--color-header-top-text, rgba(255,255,255,.9));
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
  padding: 0;
}
.hp-header__cart.is-visible { display: inline-flex; }
.hp-header__cart:hover { color: #EBB000; }
.hp-header__cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 0 0 2px rgba(0,90,156,.25);
}
.hp-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 20, 46, .52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100029;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.hp-cart-overlay.is-open { opacity: 1; visibility: visible; }
.hp-cart-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  background: #f6f8fb;
  z-index: 100030;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 48px rgba(2, 43, 84, .18);
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.22, .61, .36, 1);
}
.hp-cart-modal.is-open { transform: translateX(0); }
.hp-cart-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #022B54 0%, #0B3D91 72%, #005A9C 100%);
  color: #fff;
  position: relative;
}
.hp-cart-modal__head::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #F5C518, #EBB000 55%, transparent);
}
.hp-cart-modal__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.hp-cart-modal__icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: #F5C518;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.hp-cart-modal__head h3 {
  margin: 0; font-family: Outfit, sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -.02em;
}
.hp-cart-modal__meta {
  margin: 3px 0 0; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.72);
}
.hp-cart-modal__close {
  width: 36px; height: 36px; border: 0; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.1); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.hp-cart-modal__close:hover { background: rgba(255,255,255,.22); }
.hp-cart-modal__body {
  flex: 1; overflow: auto; padding: 14px 16px 8px;
  -webkit-overflow-scrolling: touch;
}
.hp-cart-empty {
  text-align: center; color: #64748b; padding: 64px 20px 40px;
  display: flex; flex-direction: column; align-items: center;
}
.hp-cart-empty__icon {
  width: 76px; height: 76px; border-radius: 24px; margin-bottom: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #0B3D91;
  box-shadow: 0 10px 28px rgba(11,61,145,.08); border: 1px solid #e8eef7;
}
.hp-cart-empty strong {
  display: block; font-family: Outfit, sans-serif; font-size: 18px; font-weight: 800;
  color: #0f172a; margin-bottom: 6px;
}
.hp-cart-empty span { font-size: 13px; color: #64748b; }
.hp-cart-empty__btn {
  margin-top: 18px; border: 0; cursor: pointer; font-family: inherit;
  background: #F5C518; color: #0f172a; font-weight: 800; font-size: 14px;
  padding: 11px 18px; border-radius: 10px;
  box-shadow: 0 8px 18px rgba(245,197,24,.28);
}
.hp-cart-item {
  display: grid;
  grid-template-columns: 76px minmax(0,1fr);
  gap: 12px;
  padding: 12px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15,23,42,.04);
  align-items: start;
}
.hp-cart-item__img {
  width: 76px; height: 76px; border-radius: 10px; overflow: hidden;
  background: #f8fafc; border: 1px solid #eef2f7; display: block;
}
.hp-cart-item__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hp-cart-item__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
}
.hp-cart-item__name {
  font-size: 13.5px; font-weight: 700; color: #0f172a; line-height: 1.4;
  text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.hp-cart-item__name:hover { color: #0B3D91; }
.hp-cart-item__var {
  display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 600;
  color: #0B3D91; background: #eef4ff; border-radius: 999px; padding: 3px 8px;
}
.hp-cart-item__del {
  width: 30px; height: 30px; border: 0; border-radius: 8px; flex-shrink: 0;
  background: #f8fafc; color: #94a3b8; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.hp-cart-item__del:hover { background: #fef2f2; color: #dc2626; }
.hp-cart-item__row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px;
}
.hp-cart-item__qty {
  display: inline-flex; align-items: center; background: #f8fafc;
  border: 1px solid #e2e8f0; border-radius: 999px; overflow: hidden;
}
.hp-cart-item__qty button {
  width: 30px; height: 30px; border: 0; background: transparent; cursor: pointer;
  color: #334155; display: inline-flex; align-items: center; justify-content: center;
}
.hp-cart-item__qty button:hover { background: #eef4ff; color: #0B3D91; }
.hp-cart-item__qty span {
  min-width: 28px; text-align: center; font-size: 13px; font-weight: 800; color: #0f172a;
}
.hp-cart-item__money { text-align: right; }
.hp-cart-item__unit { font-size: 11px; color: #94a3b8; }
.hp-cart-item__price {
  color: #ea580c; font-weight: 800; font-size: 14px; font-family: Outfit, sans-serif; letter-spacing: -.02em;
}
.hp-cart-modal__foot {
  padding: 14px 18px 18px;
  background: #fff;
  border-top: 1px solid #e8eef7;
  box-shadow: 0 -10px 28px rgba(15,23,42,.05);
}
.hp-cart-modal.is-empty .hp-cart-modal__foot { display: none; }
.hp-cart-modal__trust {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px;
}
.hp-cart-modal__trust span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: #0B3D91;
  background: #f1f5f9; border-radius: 999px; padding: 5px 9px;
}
.hp-cart-modal__sum {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px;
}
.hp-cart-modal__sum span { font-size: 14px; font-weight: 600; color: #475569; }
.hp-cart-modal__sum strong {
  font-family: Outfit, sans-serif; font-size: 22px; font-weight: 800; color: #0B3D91; letter-spacing: -.03em;
}
.hp-cart-modal__vat { margin: 0 0 12px; font-size: 12px; color: #94a3b8; }
.hp-cart-checkout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; text-align: center; background: #F5C518; color: #0f172a;
  font-weight: 800; font-size: 15px; padding: 13px 12px; border-radius: 12px;
  text-decoration: none; box-shadow: 0 10px 22px rgba(245,197,24,.32);
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.hp-cart-checkout:hover {
  filter: brightness(1.03); transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(245,197,24,.4); text-decoration: none; color: #0f172a;
}
.hp-cart-continue {
  display: block; width: 100%; margin-top: 8px; border: 0; background: transparent;
  color: #0B3D91; font-weight: 700; font-size: 13px; cursor: pointer; padding: 8px;
  font-family: inherit;
}
.hp-cart-continue:hover { text-decoration: underline; }
.hp-cart-toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(16px);
  background: #022B54; color: #fff; padding: 11px 18px; border-radius: 999px; font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none; z-index: 100010; transition: .2s;
  box-shadow: 0 10px 24px rgba(2,43,84,.28);
}
.hp-cart-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 480px) {
  .hp-cart-modal { width: 100%; }
}

.pd-cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 14px; }
.pd-cart-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; padding: 13px 12px; font-weight: 800; font-size: 14px; cursor: pointer;
  font-family: inherit; border: 0;
}
.pd-cart-btn--add { background: #fff; color: #005A9C; border: 1.5px solid #C3D9F5; }
.pd-cart-btn--buy { background: #F5C518; color: #0f2744; box-shadow: 0 6px 16px rgba(245,197,24,.35); }
.pd-cart-btn:disabled { opacity: .65; cursor: wait; }
.pd-qty-row--cart { margin: 0 0 12px; }

.ck-page, .os-page { background: #f5f7fb; padding: 18px 0 48px; }
.ck-wrap, .os-wrap { max-width: 1120px; }
.ck-breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: #64748b; margin-bottom: 18px;
}
.ck-breadcrumb a { color: #005A9C; text-decoration: none; display: inline-flex; }
.ck-secure { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: #0B3D91; font-weight: 600; }
.ck-title { font-family: Outfit, sans-serif; font-size: 32px; color: #0B3D91; margin: 0 0 8px; }
.ck-subtitle { color: #64748b; margin: 0 0 22px; }
.ck-alert { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; }
.ck-empty { background: #fff; border-radius: 14px; padding: 48px 20px; text-align: center; }
.ck-empty-btn { display: inline-block; margin-top: 12px; background: #F5C518; color: #0f172a; padding: 10px 18px; border-radius: 10px; font-weight: 700; text-decoration: none; }
.ck-grid { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(280px,.9fr); gap: 22px; align-items: start; }
.ck-card {
  background: #fff; border-radius: 16px; padding: 20px; margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(15,23,42,.04); border: 1px solid #eef2f7;
}
.ck-card h2 { display: flex; align-items: center; gap: 10px; font-size: 18px; color: #0B3D91; margin: 0 0 16px; }
.ck-card__icon {
  width: 34px; height: 34px; border-radius: 50%; background: #e8f0ff; color: #0B3D91;
  display: inline-flex; align-items: center; justify-content: center;
}
.ck-row { display: grid; gap: 12px; margin-bottom: 12px; }
.ck-row--2 { grid-template-columns: 1fr 1fr; }
.ck-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.ck-card label { display: block; font-size: 13px; font-weight: 600; color: #334155; }
.ck-card label span { color: #ef4444; }
.ck-card input, .ck-card select, .ck-card textarea {
  width: 100%; margin-top: 6px; border: 1.5px solid #e2e8f0; border-radius: 10px;
  padding: 11px 12px; font: inherit; background: #fff; color: #0f172a;
}
.ck-card input:focus, .ck-card select:focus, .ck-card textarea:focus {
  outline: none; border-color: #93c5fd; box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.ck-phone-wrap { position: relative; display: block; }
.ck-phone-wrap svg { position: absolute; left: 12px; top: 18px; color: #94a3b8; }
.ck-phone-wrap input { padding-left: 36px; }
.ck-counter { display: block; text-align: right; font-size: 12px; color: #94a3b8; margin-top: 4px; }
.ck-card--pay {
  display: flex; align-items: center; justify-content: space-between; gap: 12px 18px; flex-wrap: wrap;
  padding: 16px 20px;
}
.ck-card--pay h2 { margin: 0; font-size: 16px; }
.ck-card--pay .ck-card__icon { width: 30px; height: 30px; }
.ck-pay {
  display: inline-flex; align-items: center; gap: 3px; padding: 3px;
  background: #f1f5f9; border: 1px solid #e8eef7; border-radius: 12px;
}
.ck-pay__opt {
  display: inline-flex !important; align-items: center; justify-content: center; gap: 6px;
  min-width: 118px; height: 34px; padding: 0 12px; margin: 0;
  border: 0; border-radius: 9px; background: transparent;
  color: #64748b; font-size: 13px; font-weight: 700; line-height: 1; white-space: nowrap;
  cursor: pointer; font-family: inherit;
  transition: background .18s, color .18s, box-shadow .18s;
}
.ck-pay__opt span { color: inherit !important; font-weight: 700; }
.ck-pay__opt svg { flex-shrink: 0; }
.ck-pay__opt input {
  position: absolute !important; opacity: 0 !important; pointer-events: none;
  width: 0 !important; height: 0 !important; margin: 0 !important; padding: 0 !important;
  border: 0 !important; box-shadow: none !important;
}
.ck-pay__opt:hover { color: #0B3D91; }
.ck-pay__opt.is-active {
  background: #fff; color: #0B3D91;
  box-shadow: 0 1px 2px rgba(15,23,42,.06), 0 4px 10px rgba(11,61,145,.08);
}
.ck-pay__opt.is-active svg { color: #EBB000; }
.ck-side { position: sticky; top: 110px; }
.ck-order { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8eef7; box-shadow: 0 8px 24px rgba(15,23,42,.05); }
.ck-order__head {
  background: #0B3D91; color: #fff; display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; font-weight: 700;
}
.ck-order__head span { display: inline-flex; align-items: center; gap: 8px; }
.ck-order__body {
  padding: 12px 16px;
  max-height: 430px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ck-order__body::-webkit-scrollbar { width: 6px; }
.ck-order__body::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 999px; }
.ck-order__body::-webkit-scrollbar-track { background: transparent; }
.ck-order__head .ck-checkall {
  display: flex; gap: 8px; align-items: center; margin: 0;
  font-size: 13px; font-weight: 600; color: #fde68a; cursor: pointer; user-select: none;
}
.ck-order__head .ck-checkall input { accent-color: #fde68a; cursor: pointer; }
.ck-item { display: grid; grid-template-columns: 18px 52px 1fr auto 28px; gap: 8px; align-items: center; padding: 10px 0; border-bottom: 1px dashed #e2e8f0; }
.ck-item img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; }
.ck-item__name { font-size: 13px; font-weight: 700; color: #0f172a; }
.ck-item__name small { display: block; font-weight: 500; color: #64748b; }
.ck-item__meta {
  display: flex; align-items: center; flex-wrap: nowrap; gap: 5px;
  font-size: 12px; color: #64748b; margin-top: 5px; min-width: 0;
}
.ck-item__unit {
  font-family: Outfit, sans-serif; font-weight: 700; font-size: 12px;
  color: #64748b; letter-spacing: -.01em; white-space: nowrap; line-height: 1;
}
.ck-item__times {
  color: #94a3b8; font-weight: 700; font-size: 11px; line-height: 1; flex-shrink: 0;
}
.ck-item__qty {
  display: inline-flex; align-items: center; gap: 0;
  height: 22px; padding: 1px;
  flex-shrink: 0;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}
.ck-item__qty-btn {
  width: 20px; height: 20px; border: 0; border-radius: 5px;
  background: transparent; cursor: pointer; color: #475569;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .12s, color .12s;
}
.ck-item__qty-btn svg { width: 10px; height: 10px; }
.ck-item__qty-btn:hover { background: #0B3D91; color: #fff; }
.ck-item__qty-btn:active { transform: scale(.95); }
.ck-item__qty-btn--plus:hover { background: #F5C518; color: #0f172a; }
.ck-item__qty-btn:disabled { opacity: .5; cursor: wait; transform: none; }
.ck-item__qty-input {
  width: 26px; height: 20px; border: 0; background: #fff;
  border-radius: 4px;
  text-align: center; outline: none; -moz-appearance: textfield;
  font-family: Outfit, sans-serif; font-size: 12px; font-weight: 800;
  color: #0B3D91; letter-spacing: -.02em; line-height: 20px;
  padding: 0;
}
.ck-item__qty-input::-webkit-outer-spin-button,
.ck-item__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ck-item__qty-input:focus { box-shadow: inset 0 0 0 1px #0B3D91; }
.ck-item__sum {
  color: #ea580c; font-weight: 800; font-size: 13px; white-space: nowrap;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.ck-item__old { color: #94a3b8; font-weight: 600; font-size: 12px; }
.ck-item__old[hidden], .ck-totals__discount[hidden], #ck-subtotal-old[hidden] { display: none; }
.ck-coupon { padding: 0 16px 12px; border-top: 1px dashed #e2e8f0; padding-top: 12px; }
.ck-coupon__label { font-size: 13px; font-weight: 700; color: #0B3D91; margin-bottom: 8px; }
.ck-coupon__row { display: flex; gap: 8px; align-items: center; }
.ck-coupon__row input {
  flex: 1; min-width: 0; height: 40px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  padding: 0 12px; font-size: 13px; text-transform: uppercase; font-weight: 700; outline: none;
}
.ck-coupon__row input:focus { border-color: #0B3D91; }
.ck-coupon__btn {
  height: 40px; border: 0; border-radius: 8px; background: #0B3D91; color: #fff;
  font-weight: 700; font-size: 13px; padding: 0 12px; cursor: pointer; white-space: nowrap;
}
.ck-coupon__btn--ghost { background: #fff; color: #64748b; border: 1px solid #cbd5e1; }
.ck-coupon__btn:disabled { opacity: .65; cursor: wait; }
.ck-coupon__msg { margin-top: 8px; font-size: 12px; }
.ck-coupon__msg.is-ok { color: #065F46; }
.ck-coupon__msg.is-error { color: #991B1B; }
.ck-totals__sub { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.ck-totals__sub s { color: #94a3b8; font-weight: 600; font-size: 13px; }
.ck-totals__discount { color: #16a34a; }
.ck-totals__discount em { font-style: normal; font-weight: 700; color: #15803d; }
.ck-item__del { border: 0; background: none; color: #ef4444; cursor: pointer; }
.ck-totals { padding: 12px 16px 16px; }
.ck-totals > div { display: flex; justify-content: space-between; margin-bottom: 8px; color: #475569; }
.ck-totals__pay { font-size: 18px; color: #0B3D91; }
.ck-totals__pay strong { font-size: 22px; }
.ck-totals small { color: #94a3b8; }
.ck-support {
  margin-top: 12px; background: #f1f5f9; border-radius: 12px; padding: 14px;
  display: flex; justify-content: space-between; gap: 10px; align-items: center;
}
.ck-support strong { display: block; font-size: 13px; }
.ck-support a { color: #0B3D91; font-weight: 700; text-decoration: none; }
.ck-zalo { background: #fff; border: 1px solid #cbd5e1; border-radius: 8px; padding: 8px 10px; white-space: nowrap; }
.ck-submit {
  width: 100%; margin-top: 12px; background: #F5C518; color: #0f172a; border: 0;
  border-radius: 12px; padding: 14px; font-weight: 800; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.ck-terms { font-size: 12px; color: #64748b; text-align: center; margin-top: 10px; }
.ck-terms a { color: #0B3D91; }
.ck-features {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 28px;
  background: #fff; border-radius: 14px; padding: 18px; color: #0B3D91;
}
.ck-features > div { display: flex; gap: 10px; align-items: flex-start; }
.ck-features strong { display: block; color: #0f172a; font-size: 14px; }
.ck-features span { font-size: 12px; color: #64748b; }

.os-hero { text-align: center; padding: 12px 0 8px; }
.os-check {
  width: 84px; height: 84px; margin: 0 auto 14px; border-radius: 50%;
  background: #22c55e; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(34,197,94,.12), 0 0 0 18px rgba(11,61,145,.08);
  position: relative;
}
.os-hero h1 { font-family: Outfit, sans-serif; font-size: 32px; color: #0B3D91; margin: 0 0 8px; }
.os-hero p { color: #64748b; margin: 0 auto 18px; max-width: 520px; }
.os-card {
  background: #fff; border: 1px solid #dbeafe; border-radius: 16px; padding: 8px 18px 6px;
  max-width: 640px; margin: 0 auto 18px;
}
.os-code {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 14px 0; border-bottom: 1px dashed #e2e8f0;
}
.os-code span { color: #64748b; font-size: 13px; }
.os-code strong { color: #0B3D91; font-size: 14px; word-break: break-all; flex: 1; }
.os-copy { border: 1px solid #93c5fd; background: #eff6ff; color: #1d4ed8; border-radius: 8px; padding: 6px 10px; cursor: pointer; font-weight: 700; }
.os-row {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed #eef2f7; color: #64748b; font-size: 14px;
}
.os-row strong { color: #0f172a; }
.os-row--total strong { color: #0B3D91; font-size: 20px; }
.os-ico { color: #0B3D91; }
.os-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  max-width: 640px; margin: 0 auto 10px; padding: 13px; border-radius: 12px;
  text-decoration: none; font-weight: 800;
}
.os-btn--primary { background: #f59e0b; color: #0f172a; }
.os-btn--ghost { background: #fff; color: #0B3D91; border: 1.5px solid #93c5fd; }
.os-support {
  max-width: 640px; margin: 18px auto 0; background: #f1f5f9; border-radius: 12px;
  padding: 14px; display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap;
}
.os-support__left { display: flex; gap: 10px; align-items: center; }
.os-support__icon { width: 40px; height: 40px; border-radius: 50%; background: #0B3D91; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.os-support__left strong { display: block; font-size: 13px; }
.os-support__left span { font-size: 12px; color: #64748b; }
.os-support__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.os-support__actions a {
  background: #fff; border: 1px solid #cbd5e1; border-radius: 8px; padding: 8px 10px;
  text-decoration: none; color: #0B3D91; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}

.bp-page { padding: 24px 0 48px; }
.bp-wrap { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.8fr); gap: 18px; align-items: start; }
.bp-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px; }
.bp-hero { background: linear-gradient(180deg,#0f7a4a,#0b5c38); color: #fff; border-radius: 14px; padding: 22px 18px 18px; text-align: center; }
.bp-hero__check { width: 42px; height: 42px; margin: 0 auto 8px; border-radius: 50%; background: #22c55e; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; }
.bp-hero h1 { margin: 0; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; }
.bp-hero strong { display: block; margin-top: 4px; font-size: 20px; letter-spacing: .08em; }
.bp-hero p { margin: 8px 0 0; font-size: 13px; opacity: .92; }
.bp-timer { text-align: center; margin: 14px 0 0; font-size: 13px; color: #64748b; }
.bp-timer strong { color: #b45309; font-size: 16px; }
.bp-expired { margin: 16px 0 8px; padding: 18px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 12px; text-align: center; color: #991b1b; }
.bp-expired p { margin: 8px 0 12px; font-size: 14px; }
.bp-expired a { display: inline-block; background: #0f7a4a; color: #fff; text-decoration: none; font-weight: 700; border-radius: 10px; padding: 10px 16px; }
.bp-qr { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px 0 8px; }
.bp-qr__label { font-weight: 800; color: #0f7a4a; margin-bottom: 10px; }
.bp-qr img { display: block; margin: 0 auto; width: min(280px, 100%); height: auto; border: 8px solid #dcfce7; border-radius: 16px; }
.bp-items { list-style: none; margin: 0 0 12px; padding: 0; max-height: 280px; overflow: auto; }
.bp-items li { display: grid; grid-template-columns: 48px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
.bp-items li.no-img { grid-template-columns: 1fr auto; }
.bp-items img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; background: #f8fafc; }
.bp-items strong { display: block; font-size: 13px; color: #0f172a; }
.bp-items span, .bp-items em { display: block; font-size: 12px; color: #64748b; font-style: normal; }
.bp-items b { font-size: 13px; color: #0f172a; white-space: nowrap; }
.bp-lines { font-size: 13px; color: #475569; margin-bottom: 10px; }
.bp-lines > div { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.bp-lines--sale { color: #dc2626; font-weight: 700; }
.bp-qr__note { margin-top: 8px; font-size: 12px; color: #64748b; }
.bp-qr__empty { padding: 24px; color: #b45309; background: #fffbeb; border-radius: 10px; }
.bp-info { margin: 8px 0 0; }
.bp-info > div { display: grid; grid-template-columns: 140px 1fr; gap: 8px; padding: 8px 0; border-top: 1px dashed #e2e8f0; align-items: center; }
.bp-info dt { color: #64748b; font-size: 13px; }
.bp-info dd { margin: 0; font-weight: 800; color: #0f172a; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bp-copy { border: 0; background: #ecfdf5; color: #047857; font-weight: 700; font-size: 12px; border-radius: 6px; padding: 4px 8px; cursor: pointer; }
.bp-warn { margin: 12px 0 0; background: #fff7ed; color: #9a3412; border-radius: 8px; padding: 10px 12px; font-size: 13px; }
.bp-side h2 { margin: 0 0 12px; font-size: 15px; }
.bp-sum { display: flex; justify-content: space-between; align-items: center; background: #ecfdf5; border-radius: 10px; padding: 12px; }
.bp-sum strong { color: #047857; font-size: 20px; }
.bp-tips ul { margin: 0; padding-left: 18px; color: #475569; font-size: 13px; }
.bp-tips li { margin-bottom: 8px; }
.bp-help { display: block; margin-top: 12px; text-align: center; background: #0f7a4a; color: #fff; text-decoration: none; font-weight: 700; border-radius: 12px; padding: 12px; }
@media (max-width: 900px) {
  .bp-wrap { grid-template-columns: 1fr; }
  .bp-info > div { grid-template-columns: 1fr; }
  .ck-grid, .ck-row--2, .ck-row--3, .ck-features { grid-template-columns: 1fr; }
  .ck-side { position: static; }
  .ck-title, .os-hero h1 { font-size: 26px; }
  .ck-secure { width: 100%; margin-left: 0; }
  .pd-cart-actions { grid-template-columns: 1fr; }
}

button.catalog-card__btn-cart {
  background: #fff; cursor: pointer; font: inherit; padding: 0; appearance: none;
}
.hp-quick-overlay {
  position: fixed; inset: 0; z-index: 100020;
  background: rgba(2, 20, 46, .5); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s;
}
.hp-quick-overlay.is-open { opacity: 1; visibility: visible; }
.hp-quick {
  position: fixed; z-index: 100021; left: 50%; top: 50%;
  width: min(420px, calc(100% - 28px));
  transform: translate(-50%, -46%) scale(.96);
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 43, 84, .22);
  opacity: 0; visibility: hidden;
  transition: opacity .22s, visibility .22s, transform .22s cubic-bezier(.22,.61,.36,1);
}
.hp-quick.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.hp-quick__close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 32px; height: 32px; border: 0; border-radius: 8px;
  background: rgba(255,255,255,.92); color: #334155; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(15,23,42,.12);
}
.hp-quick__top { display: flex; gap: 12px; padding: 16px 16px 0; }
.hp-quick__img {
  width: 88px; height: 88px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: #f8fafc; border: 1px solid #eef2f7;
  position: relative;
}
.hp-quick__img img { width: 100%; height: 100%; object-fit: contain; display: block; background: #fff; }
.hp-quick__img-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; background: #f8fafc; color: #94a3b8; font-size: 10px; font-weight: 700;
  text-align: center; padding: 6px; line-height: 1.2;
}
.hp-quick__img-empty[hidden] { display: none; }
.hp-quick__info { min-width: 0; padding-right: 28px; }
.hp-quick__name {
  margin: 0; font-family: Outfit, sans-serif; font-size: 16px; font-weight: 800;
  color: #0f172a; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hp-quick__price { margin-top: 8px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.hp-quick__price strong {
  font-family: Outfit, sans-serif; font-size: 20px; font-weight: 800; color: #ea580c; letter-spacing: -.02em;
}
.hp-quick__price s { color: #94a3b8; font-size: 13px; font-weight: 600; }
.hp-quick__body { padding: 12px 16px 16px; }
.hp-quick-tier { margin-bottom: 10px; }
.hp-quick-tier__name { font-size: 12px; font-weight: 700; color: #64748b; margin-bottom: 6px; }
.hp-quick-tier__opts { display: flex; flex-wrap: wrap; gap: 6px; }
.hp-quick-opt {
  border: 1.5px solid #e2e8f0; background: #fff; color: #334155;
  border-radius: 8px; padding: 6px 10px; font-size: 12px; font-weight: 700;
  cursor: pointer; font-family: inherit; line-height: 1;
}
.hp-quick-opt.is-on { border-color: #0B3D91; background: #eef4ff; color: #0B3D91; }
.hp-quick__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 4px 0 12px; }
.hp-quick__qty {
  display: inline-flex; align-items: center; background: #f8fafc;
  border: 1px solid #e2e8f0; border-radius: 999px; overflow: hidden;
}
.hp-quick__qty button {
  width: 32px; height: 32px; border: 0; background: transparent; cursor: pointer;
  color: #334155; font-size: 16px; font-weight: 700;
}
.hp-quick__qty input {
  width: 36px; height: 32px; border: 0; background: transparent; text-align: center;
  font-weight: 800; font-size: 14px; color: #0f172a; outline: none;
}
.hp-quick__add {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  border: 0; border-radius: 12px; padding: 12px; cursor: pointer; font-family: inherit;
  background: #F5C518; color: #0f172a; font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 18px rgba(245,197,24,.3);
}
.hp-quick__add:disabled { opacity: .65; cursor: wait; }
.hp-quick__detail {
  display: block; text-align: center; margin-top: 8px; color: #0B3D91;
  font-size: 13px; font-weight: 700; text-decoration: none;
}
