/* BEUNIQ Korean Checkout — independent pages */
:root {
    --bk-primary: #FF7A3D;
    --bk-primary-h: #FF5100;
    --bk-heading: #1E1810;
    --bk-text: #575250;
    --bk-border: #E5E1DE;
    --bk-light: #F8F5F4;
    --bk-light2: #F6F7F8;
    --bk-dark: #1E1810;
    --bk-navy: #242A56;
}

/* Spacing convention - 100px top/bottom */
body.bkc-active #primary,
body.bkc-active .ast-container,
body.bkc-active .entry-content,
body.bkc-active article.page,
body.bkc-active .ast-article-single,
body.bkc-active .ast-no-sidebar .entry-content,
body.bkc-active main[id="main"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
body.bkc-active .site-content {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
body.bkc-active .entry-header,
body.bkc-active .entry-title,
body.bkc-active .page-title { display: none !important; }

.bkc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Work Sans', sans-serif;
    color: var(--bk-text);
    font-size: 14px;
    line-height: 1.6;
}
.bkc * { box-sizing: border-box; }

.bkc-page-title {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--bk-heading);
    font-size: 32px;
    margin: 0 0 30px;
}

/* Stepper */
.bkc-stepper { margin: 0 auto 50px; max-width: 700px; }
.bkc-stepper ol {
    list-style: none; padding: 0; margin: 0;
    display: flex; justify-content: center; align-items: center; gap: 6px;
    font-family: 'Open Sans', sans-serif;
}
.bkc-stepper li { display: flex; align-items: center; gap: 8px; color: #bbb; font-weight: 500; font-size: 14px; }
.bkc-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: #eee; color: #bbb; font-size: 12px; font-weight: 700;
}
.bkc-stepper li.is-current { color: var(--bk-heading); font-weight: 700; }
.bkc-stepper li.is-current .bkc-step-num { background: var(--bk-primary); color: #fff; }
.bkc-stepper li.is-done { color: var(--bk-heading); }
.bkc-stepper li.is-done .bkc-step-num { background: var(--bk-dark); color: #fff; }
.bkc-step-sep { color: #ccc; font-size: 18px; margin: 0 8px; }

/* Buttons */
.bkc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; background: #fff;
    border: 1px solid var(--bk-heading); color: var(--bk-heading);
    font-family: inherit; font-size: 14px; border-radius: 0;
    cursor: pointer; text-decoration: none; transition: all .15s;
}
.bkc-btn:hover { background: var(--bk-heading); color: #fff; }
.bkc-btn-primary { background: var(--bk-primary); border-color: var(--bk-primary); color: #fff; }
.bkc-btn-primary:hover { background: var(--bk-primary-h); border-color: var(--bk-primary-h); color: #fff; }
.bkc-btn-dark { background: var(--bk-dark); color: #fff; }
.bkc-btn-dark:hover { background: var(--bk-primary); border-color: var(--bk-primary); }
.bkc-btn-sm {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 16px; font-size: 13px;
    background: #fff; border: 1px solid var(--bk-border); color: var(--bk-text);
    border-radius: 0; cursor: pointer; text-decoration: none;
}
.bkc-btn-sm.bkc-btn-dark { background: var(--bk-dark); color: #fff; border-color: var(--bk-dark); }
.bkc-btn-sm:hover { background: var(--bk-heading); color: #fff; border-color: var(--bk-heading); }

/* Empty */
.bkc-empty { text-align: center; padding: 80px 20px; background: var(--bk-light); border: 1px solid var(--bk-border); }
.bkc-empty p { font-size: 15px; margin: 0 0 20px; color: #888; }

/* ===== CART (minimal Korean layout) ===== */
.bkc-cart-wrap { max-width: 1100px; margin: 0 auto; }
.bkc-cart-head, .bkc-cart-row {
    display: grid;
    grid-template-columns: 40px 1fr 140px 160px 120px;
    align-items: center;
    gap: 10px;
}
.bkc-cart-head {
    padding: 14px 10px;
    border-top: 1px solid var(--bk-border);
    border-bottom: 1px solid var(--bk-border);
    font-size: 13px; font-weight: 500; color: var(--bk-heading);
    text-align: center;
}
.bkc-cart-head .bkc-col-product { text-align: left; padding-left: 10px; }

.bkc-cart-row {
    padding: 22px 10px;
    border-bottom: 1px solid var(--bk-border);
    text-align: center;
    align-items: center;
}

.bkc-col-check { justify-self: center; }
.bkc-col-check input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px; height: 18px;
    border: 1px solid var(--bk-border);
    background: #fff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    border-radius: 0;
    margin: 0;
}
.bkc-col-check input[type="checkbox"]:checked {
    background: var(--bk-primary);
    border-color: var(--bk-primary);
}
.bkc-col-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px; top: 1px;
    width: 6px; height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Product cell */
.bkc-product-cell { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
.bkc-product-thumb img {
    width: 110px; height: 110px;
    object-fit: cover; display: block;
    background: var(--bk-light2);
}
.bkc-product-info { flex: 1; min-width: 0; }
.bkc-product-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.bkc-product-name {
    color: var(--bk-heading); text-decoration: none;
    font-weight: 600; font-size: 14px;
    line-height: 1.4;
}
.bkc-product-name:hover { color: var(--bk-primary); }
.bkc-remove-icon {
    background: none; border: 0; color: #aaa;
    cursor: pointer; padding: 0; flex: 0 0 auto;
    transition: color .15s;
}
.bkc-remove-icon:hover { color: var(--bk-primary); }
.bkc-product-attrs { font-size: 12px; color: #888; margin-bottom: 8px; display: flex; gap: 10px; }

.bkc-product-qty-line {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bk-light2);
    padding: 10px 14px;
    margin-top: 6px;
}
.bkc-product-linetotal {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--bk-heading);
    font-size: 15px;
}

/* Qty input */
.bkc-qty-wrap {
    display: inline-flex; align-items: stretch;
    background: #fff;
    border: 1px solid var(--bk-border);
    height: 36px;
}
.bkc-qty-wrap button {
    width: 32px;
    background: #fff; border: 0; cursor: pointer;
    font-size: 18px; color: var(--bk-heading);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.bkc-qty-wrap .bkc-qty {
    width: 44px; text-align: center;
    border: 0; background: #fff; font-size: 14px;
    -moz-appearance: textfield;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bkc-qty-wrap .bkc-qty::-webkit-outer-spin-button,
.bkc-qty-wrap .bkc-qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* 수량 column */
.bkc-col-qty {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bkc-col-qty .bkc-qty-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; font-weight: 500; color: var(--bk-heading);
    text-align: center;
}

/* 주문금액 column */
.bkc-col-total {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bkc-line-price {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; color: var(--bk-heading);
    font-size: 16px;
    text-align: center;
}

/* 배송 정보 column */
.bkc-col-shipping {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.bkc-shipping-fee { font-weight: 600; color: var(--bk-heading); font-size: 14px; }

/* Bulk actions */
.bkc-bulk-actions { display: flex; gap: 8px; padding: 16px 0; }

.bkc-cart-divider { height: 1px; background: var(--bk-border); margin: 0; }

.bkc-cart-count {
    padding: 20px 0 10px;
    font-size: 13px; color: var(--bk-text);
}

/* Math display */
.bkc-cart-math {
    display: flex; align-items: center; justify-content: center;
    gap: 40px;
    padding: 30px 0 40px;
}
.bkc-math-cell { text-align: center; }
.bkc-math-value {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--bk-heading);
    font-size: 24px;
    margin-bottom: 6px;
}
.bkc-math-label {
    font-size: 12px; color: #999;
}
.bkc-math-total { color: var(--bk-heading); }
.bkc-math-op {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px; font-weight: 300; color: #555;
    padding-bottom: 22px;
}

/* Footer */
.bkc-cart-footer { text-align: center; padding: 30px 0 0; }
.bkc-cart-footer .bkc-order-btn {
    display: inline-block;
    width: 33.3333%;
    max-width: 420px;
    min-width: 240px;
    padding: 16px 40px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
}
.bkc-continue-link {
    display: block;
    margin-top: 18px;
    color: var(--bk-heading);
    font-size: 14px;
    text-decoration: underline;
}
.bkc-continue-link:hover { color: var(--bk-primary); }

/* Summary */
.bkc-cart-summary, .bkc-checkout-summary {
    background: var(--bk-light);
    border: 1px solid var(--bk-border);
    padding: 24px;
}
.bkc-summary-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px; color: var(--bk-heading); font-weight: 700;
    margin: 0 0 18px; padding-bottom: 12px;
    border-bottom: 1px solid var(--bk-border);
}
.bkc-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.bkc-summary-row.bkc-summary-discount span:last-child { color: var(--bk-primary); }
.bkc-summary-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; margin-top: 6px;
    border-top: 2px solid var(--bk-heading);
    border-bottom: 2px solid var(--bk-heading);
    font-weight: 700; color: var(--bk-heading);
}
.bkc-summary-total strong {
    color: var(--bk-primary); font-family: 'Open Sans', sans-serif;
    font-size: 22px; font-weight: 700;
}
.bkc-summary-points {
    background: #fff; border: 1px dashed var(--bk-primary);
    color: var(--bk-heading); font-size: 12px;
    text-align: center; padding: 10px; margin: 14px 0;
}
.bkc-summary-points strong { color: var(--bk-primary); }
.bkc-summary-points-tier { display: block; margin-top: 4px; font-size: 11px; color: #888; letter-spacing: .5px; }
.bkc-order-btn, .bkc-pay-btn {
    width: 100%; margin-top: 16px;
    padding: 16px; font-weight: 700; font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}

/* ===== CHECKOUT ===== */
.bkc-checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.bkc-checkout-main { min-width: 0; }
.bkc-checkout-summary { position: sticky; top: 20px; }

.bkc-section {
    background: #fff;
    border: 1px solid var(--bk-border);
    padding: 24px;
    margin-bottom: 20px;
}
.bkc-section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: var(--bk-heading);
    font-weight: 700;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bk-heading);
}
/* 구매상품 list (no table) */
.bkc-item-list { list-style: none; padding: 0; margin: 0; }
.bkc-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bk-border);
}
.bkc-item-row:last-child { border-bottom: 0; }
.bkc-item-thumb { flex: 0 0 80px; }
.bkc-item-thumb img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    display: block;
    background: var(--bk-light2);
}
.bkc-item-body { flex: 1; min-width: 0; }
.bkc-item-name {
    color: var(--bk-heading);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    word-break: keep-all;
}
.bkc-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--bk-text);
}
.bkc-item-price {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--bk-heading);
    font-size: 14px;
}

.bkc-field { margin-bottom: 14px; }
.bkc-field label { display: block; color: var(--bk-heading); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.bkc-req { color: var(--bk-primary); margin-left: 2px; }
.bkc-field input[type="text"], .bkc-field input[type="email"], .bkc-field input[type="tel"], .bkc-field input[type="password"], .bkc-field textarea {
    width: 100%; padding: 10px 12px;
    border: 1px solid var(--bk-border); background: #fff;
    font-family: inherit; font-size: 14px; border-radius: 0;
}
.bkc-field input:focus, .bkc-field textarea:focus { outline: none; border-color: var(--bk-navy); }
.bkc-field-inline { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-end; }
.bkc-field-inline label { width: 100%; }
.bkc-field-inline input { flex: 1; }
.bkc-field-inline .bkc-btn-sm { flex: 0 0 auto; height: 42px; }

/* Agreement */
.bkc-agree { background: var(--bk-light); padding: 16px; border-left: 3px solid var(--bk-primary); }
.bkc-agree label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--bk-heading); cursor: pointer; margin-bottom: 8px; }
.bkc-agree input { margin-top: 3px; }
.bkc-agree-all { padding-bottom: 10px; border-bottom: 1px solid var(--bk-border); margin-bottom: 10px; }
.bkc-agree em { color: var(--bk-primary); font-style: normal; font-weight: 700; margin-right: 4px; }

/* Discount / Points */
.bkc-discount-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 1px solid var(--bk-border);
    margin-bottom: 16px;
}
.bkc-discount-label { font-weight: 600; color: var(--bk-heading); font-size: 14px; }
.bkc-discount-value { font-family: 'Open Sans', sans-serif; font-weight: 700; color: var(--bk-heading); font-size: 15px; }

.bkc-inline-input { display: flex; gap: 6px; }
.bkc-inline-input input { flex: 1; }
.bkc-inline-input .bkc-btn-sm { flex: 0 0 auto; height: 42px; padding: 0 18px; }

.bkc-hint { font-size: 12px; color: #888; text-align: right; margin-top: 4px; }
.bkc-notice { font-size: 12px; color: #777; background: var(--bk-light); padding: 8px 12px; margin-top: 8px; border-left: 3px solid var(--bk-primary); }

/* Coupon select */
.bkc-coupon-display {
    flex: 1;
    padding: 10px 12px;
    background: var(--bk-light2);
    color: var(--bk-text);
    border: 1px solid var(--bk-border);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.bkc-coupon-display strong { color: var(--bk-heading); }
.bkc-coupon-chosen-amount { color: var(--bk-primary); font-weight: 700; }

.bkc-coupon-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.bkc-coupon-modal-box {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
}
.bkc-coupon-modal-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 24px; border-bottom: 1px solid var(--bk-border);
}
.bkc-coupon-modal-head h3 { margin: 0; font-family: 'Open Sans', sans-serif; color: var(--bk-heading); font-size: 18px; }
.bkc-coupon-modal-head .bkc-coupon-modal-close { background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--bk-text); line-height: 1; padding: 0; }
.bkc-coupon-modal-actions .bkc-coupon-modal-close {
    font-size: 13px !important;
    padding: 8px 16px !important;
    background: #fff;
    border: 1px solid var(--bk-border);
    color: var(--bk-text);
    line-height: 1;
    cursor: pointer;
    border-radius: 0;
}
.bkc-coupon-modal-actions .bkc-coupon-modal-close:hover { background: var(--bk-heading); color: #fff; border-color: var(--bk-heading); }
.bkc-coupon-list { list-style: none; padding: 0; margin: 0; }
.bkc-coupon-option {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--bk-border);
    cursor: pointer;
    transition: background .15s;
}
.bkc-coupon-option:hover { background: var(--bk-light); }
.bkc-coupon-option strong { color: var(--bk-heading); font-size: 15px; }
.bkc-coupon-desc { font-size: 12px; color: var(--bk-text); margin-top: 3px; }
.bkc-coupon-exp { font-size: 11px; color: #888; margin-top: 3px; }
.bkc-coupon-right { color: var(--bk-primary); font-weight: 700; font-family: 'Open Sans', sans-serif; font-size: 15px; }
.bkc-coupon-empty { padding: 30px; text-align: center; color: #999; }
.bkc-coupon-modal-actions { display: flex; justify-content: flex-end; gap: 8px; padding: 16px 24px; border-top: 1px solid var(--bk-border); }

.bkc-applied-coupons { margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.bkc-applied-coupon {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bk-primary); color: #fff;
    padding: 4px 10px; font-size: 12px; font-weight: 600;
}
.bkc-remove-coupon { color: #fff !important; text-decoration: none !important; font-weight: 700; }

/* Agreement blocks (new style) */
.bkc-agree-block { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--bk-border); }
.bkc-agree-block:last-of-type { border-bottom: 0; }
.bkc-agree-heading { font-weight: 600; color: var(--bk-heading); font-size: 14px; margin-bottom: 8px; }
.bkc-agree-check { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; font-size: 13px; color: var(--bk-text); line-height: 1.6; }
.bkc-agree-check input { margin-top: 4px; flex: 0 0 auto; }
.bkc-agree-note { font-size: 11px; color: #999; margin-top: 4px; margin-left: 24px; }

/* Payment methods */
.bkc-pm { display: flex; align-items: flex-start; gap: 10px; padding: 14px; border: 1px solid var(--bk-border); margin-bottom: 10px; cursor: pointer; }
.bkc-pm input { margin-top: 4px; }
.bkc-pm strong { color: var(--bk-heading); display: block; margin-bottom: 2px; }
.bkc-pm span { flex: 1; font-size: 13px; }
.bkc-pm:has(input:checked) { border-color: var(--bk-primary); background: var(--bk-light); }

/* 체크박스 & 라디오 — 브랜드 오렌지 색상 */
.bkc input[type="checkbox"],
.bkc-checkout-page input[type="checkbox"],
.bkc-agree input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px; height: 18px;
    border: 1px solid var(--bk-border);
    background: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 2px;
    flex-shrink: 0;
    margin: 0;
}
.bkc input[type="checkbox"]:checked,
.bkc-checkout-page input[type="checkbox"]:checked,
.bkc-agree input[type="checkbox"]:checked {
    background: var(--bk-primary);
    border-color: var(--bk-primary);
}
.bkc input[type="checkbox"]:checked::after,
.bkc-checkout-page input[type="checkbox"]:checked::after,
.bkc-agree input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px; top: 1px;
    width: 6px; height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.bkc input[type="radio"],
.bkc-checkout-page input[type="radio"],
.bkc-pm input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px; height: 18px;
    border: 2px solid var(--bk-border);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}
.bkc input[type="radio"]:checked,
.bkc-checkout-page input[type="radio"]:checked,
.bkc-pm input[type="radio"]:checked {
    border-color: var(--bk-primary);
}
.bkc input[type="radio"]:checked::after,
.bkc-checkout-page input[type="radio"]:checked::after,
.bkc-pm input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 3px; left: 3px;
    width: 8px; height: 8px;
    background: var(--bk-primary);
    border-radius: 50%;
}

/* ===== COMPLETE ===== */
.bkc-complete-box {
    max-width: 700px; margin: 0 auto;
    text-align: center;
    background: #fff; border: 1px solid var(--bk-border); padding: 50px 30px;
}
.bkc-complete-icon {
    width: 60px; height: 60px; line-height: 56px;
    border-radius: 50%; background: var(--bk-primary); color: #fff;
    font-size: 30px; margin: 0 auto 20px; font-weight: 700;
}
.bkc-complete-box h2 { font-family: 'Open Sans', sans-serif; font-weight: 700; color: var(--bk-heading); font-size: 22px; margin: 0 0 10px; }
.bkc-bacs-info {
    background: var(--bk-light); border: 1px solid var(--bk-border);
    padding: 20px; margin: 20px 0; text-align: left;
}
.bkc-bacs-row { padding: 6px 0; font-size: 14px; color: var(--bk-heading); }
.bkc-complete-meta { text-align: left; margin: 24px 0; }
.bkc-complete-meta > div { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--bk-border); font-size: 14px; }
.bkc-complete-meta span { color: #888; }
.bkc-complete-meta strong { color: var(--bk-heading); }
.bkc-total-amount { color: var(--bk-primary) !important; font-family: 'Open Sans', sans-serif; font-size: 18px; }
.bkc-complete-actions { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }

/* Responsive */
@media (max-width: 991px) {
    .bkc-checkout-grid { grid-template-columns: 1fr; }
    .bkc-checkout-summary { position: static; }

    /* 모바일: 장바구니/결제하기 좌우 패딩 10px */
    .bkc { padding: 0 10px; }

    /* === 장바구니 모바일 레이아웃 === */
    .bkc-cart-head { display: none; }
    .bkc-cart-row {
        display: grid !important;
        grid-template-columns: 28px 1fr;
        gap: 12px;
        padding: 16px 0;
        border-bottom: 1px solid var(--bk-border);
    }
    .bkc-cart-row .bkc-col-qty,
    .bkc-cart-row .bkc-col-total,
    .bkc-cart-row .bkc-col-shipping { display: none !important; }

    .bkc-cart-row .bkc-col-check { justify-self: start; align-self: center; }
    .bkc-col-check input[type="checkbox"] { width: 22px; height: 22px; }
    .bkc-col-check input[type="checkbox"]:checked::after {
        left: 7px; top: 2px; width: 6px; height: 12px;
    }

    .bkc-cart-row .bkc-col-product { padding: 0; }
    .bkc-product-cell { gap: 12px; }
    .bkc-product-thumb { flex: 0 0 90px; }
    .bkc-product-thumb img { width: 90px !important; height: 90px !important; }

    .bkc-product-head { margin-bottom: 6px; }
    .bkc-product-name { font-size: 13px; }

    .bkc-product-qty-line {
        padding: 8px 10px;
        margin-top: 8px;
        gap: 8px;
    }
    .bkc-qty-wrap { height: 32px; }
    .bkc-qty-wrap button { width: 28px; font-size: 16px; }
    .bkc-qty-wrap .bkc-qty { width: 36px; font-size: 13px; }
    .bkc-product-linetotal { font-size: 13px; white-space: nowrap; }

    .bkc-cart-math { gap: 10px; flex-wrap: nowrap; padding: 24px 0; }
    .bkc-math-value { font-size: 14px; white-space: nowrap; }
    .bkc-math-label { font-size: 11px; }
    .bkc-math-op { font-size: 14px; padding-bottom: 18px; }

    .bkc-cart-footer { padding: 20px 0 0; }
    .bkc-cart-footer .bkc-order-btn {
        width: 70%;
        max-width: 320px;
        min-width: 0;
        padding: 12px 20px;
        font-size: 14px;
    }
    .bkc-continue-link { margin-top: 14px; font-size: 13px; }

    /* Stepper 모바일 — 라벨 12px, 원 22×22 */
    .bkc-stepper { margin-bottom: 30px; }
    .bkc-stepper ol { flex-wrap: nowrap; gap: 2px; justify-content: center; }
    .bkc-stepper li { font-size: 12px; white-space: nowrap; gap: 4px; }
    .bkc-stepper .bkc-step-label { white-space: nowrap; }
    .bkc-step-num { width: 22px !important; height: 22px !important; flex: 0 0 22px !important; font-size: 12px; }
    .bkc-step-sep { margin: 0 4px; font-size: 14px; }
}

@media (max-width: 480px) {
    .bkc-cart-row { grid-template-columns: 24px 1fr; gap: 8px; }
    .bkc-product-thumb { flex: 0 0 72px; }
    .bkc-product-thumb img { width: 72px !important; height: 72px !important; }
    .bkc-product-name { font-size: 12px; }
}
