:root {
  --accent: #5b5cf0;
  --accent-dark: #4647d8;
  --accent-soft: color-mix(in srgb, var(--accent) 11%, white);
  --ink: #121829;
  --muted: #687086;
  --line: #e7e9f1;
  --surface: #ffffff;
  --soft: #f6f7fb;
  --success: #14a66f;
  --danger: #e24b58;
  --warning: #d88a16;
  --shadow-sm: 0 8px 26px rgba(31, 35, 62, .07);
  --shadow-lg: 0 28px 80px rgba(31, 35, 62, .14);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fbfbfd; font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.store-body { min-height: 100vh; overflow-x: hidden; background: linear-gradient(180deg, #fbfbff 0, #fff 36%, #f8f9fc 100%); }
.ambient { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; z-index: 0; }
.ambient-one { width: 520px; height: 520px; right: -200px; top: 80px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 15%, transparent), transparent 70%); }
.ambient-two { width: 420px; height: 420px; left: -200px; top: 510px; background: radial-gradient(circle, rgba(34, 211, 182, .1), transparent 68%); }

.site-header { height: 78px; position: relative; z-index: 30; border-bottom: 1px solid rgba(226, 228, 238, .8); background: rgba(255, 255, 255, .78); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: inline-grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg, var(--accent), #21c6b6); box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 25%, transparent); font-size: 18px; }
.brand-logo { width: 38px; height: 38px; object-fit: contain; border-radius: 10px; }
.site-nav { display: flex; align-items: center; gap: 34px; color: #5b6276; font-size: 14px; }
.site-nav a { position: relative; padding: 28px 0; }
.site-nav a::after { content: ''; position: absolute; height: 2px; width: 0; left: 50%; bottom: 17px; background: var(--accent); transition: .2s ease; }
.site-nav a.active, .site-nav a:hover { color: var(--ink); }
.site-nav a.active::after, .site-nav a:hover::after { width: 18px; left: calc(50% - 9px); }
.header-query { height: 40px; padding: 0 17px; border: 1px solid var(--line); border-radius: 12px; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; background: #fff; box-shadow: var(--shadow-sm); }
.header-query span { color: var(--accent); }

.hero-section { position: relative; z-index: 1; padding: 90px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.eyebrow, .section-kicker { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 999px; background: var(--accent-soft); letter-spacing: .12em; }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 12%, transparent); }
.hero-copy h1 { margin: 23px 0 21px; font-size: clamp(44px, 5.3vw, 70px); line-height: 1.08; letter-spacing: -.055em; }
.hero-copy h1 em, .query-intro h1 em { font-style: normal; color: transparent; background: linear-gradient(100deg, var(--accent), #0fb8a8); background-clip: text; -webkit-background-clip: text; }
.hero-copy > p { max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; gap: 13px; margin: 34px 0; }
.button { border: 0; min-height: 46px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; padding: 0 20px; border-radius: 13px; font-weight: 750; font-size: 14px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 13px 28px color-mix(in srgb, var(--accent) 27%, transparent); }
.button-primary:hover { box-shadow: 0 16px 34px color-mix(in srgb, var(--accent) 34%, transparent); }
.button-ghost { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.button-wide { width: 100%; min-height: 52px; }
.trust-row { display: flex; gap: 22px; color: #70778a; font-size: 12px; }
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row b { color: var(--accent); font-size: 10px; letter-spacing: .08em; }

.hero-visual { min-height: 450px; position: relative; display: grid; place-items: center; }
.hero-visual::before { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, white), rgba(33, 198, 182, .12)); border: 1px solid color-mix(in srgb, var(--accent) 10%, white); }
.visual-orbit { position: absolute; border-radius: 50%; border: 1px dashed color-mix(in srgb, var(--accent) 24%, transparent); }
.orbit-one { width: 430px; height: 430px; animation: spin 32s linear infinite; }
.orbit-two { width: 320px; height: 320px; animation: spin 22s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.digital-card { width: 330px; height: 200px; position: absolute; border-radius: 25px; padding: 27px; color: #fff; overflow: hidden; box-shadow: 0 35px 80px rgba(39, 34, 96, .25); }
.digital-card::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -50px; bottom: -85px; border: 28px solid rgba(255, 255, 255, .08); }
.card-front { z-index: 3; transform: rotate(-5deg); background: linear-gradient(140deg, #30315c 0%, #5456d9 58%, #1dbdad 130%); }
.card-back { transform: translate(40px, -48px) rotate(7deg); background: linear-gradient(135deg, #dfe1ff, #a9afe6); color: #3e426d; opacity: .72; }
.card-back span { font-size: 10px; letter-spacing: .18em; }
.card-back b { display: block; margin-top: 66px; letter-spacing: .2em; }
.card-top, .card-meta { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.card-top small { opacity: .72; letter-spacing: .14em; font-size: 9px; }
.pulse-dot { width: 12px; height: 12px; border-radius: 50%; background: #59f1ce; box-shadow: 0 0 0 7px rgba(89, 241, 206, .12); }
.card-code { position: relative; z-index: 2; margin: 51px 0 33px; font-size: 21px; letter-spacing: .12em; font-weight: 500; }
.card-code b { color: #78f6dc; }
.card-meta { font-size: 10px; letter-spacing: .17em; opacity: .72; }
.floating-pill { position: absolute; z-index: 6; padding: 11px 15px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 12px; background: rgba(255, 255, 255, .88); backdrop-filter: blur(12px); box-shadow: var(--shadow-lg); color: #4a5269; font-size: 12px; font-weight: 700; }
.pill-stock { left: 7px; bottom: 87px; }
.pill-stock span { color: #24bd86; }
.pill-fast { right: 4px; top: 93px; }

.notice-section { position: relative; z-index: 2; }
.notice-card { display: flex; align-items: center; gap: 13px; padding: 15px 20px; border: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line)); border-radius: 14px; background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 7%, white), #fff); box-shadow: var(--shadow-sm); }
.notice-icon { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: var(--accent); font-family: Georgia, serif; font-style: italic; font-weight: bold; }
.notice-card strong { font-size: 13px; }
.notice-card p { margin: 0; color: var(--muted); font-size: 13px; }

.catalog-section { padding: 96px 0 40px; position: relative; z-index: 2; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 29px; }
.section-heading h2 { margin: 7px 0 0; font-size: 34px; letter-spacing: -.04em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 13px; }
.section-heading.compact { margin-bottom: 22px; }
.section-heading.compact h2 { font-size: 26px; }
.category-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 13px; margin-bottom: 24px; scrollbar-width: none; }
.category-tabs a { white-space: nowrap; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: #fff; font-size: 13px; font-weight: 650; }
.category-tabs a:hover, .category-tabs a.active { color: #fff; border-color: var(--accent); background: var(--accent); box-shadow: 0 9px 20px color-mix(in srgb, var(--accent) 22%, transparent); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 5px 18px rgba(31, 35, 62, .035); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 20%, var(--line)); box-shadow: 0 22px 50px rgba(38, 41, 71, .11); }
.product-media { height: 210px; position: relative; display: block; overflow: hidden; background: #f1f2f8; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-placeholder { width: 100%; height: 100%; display: grid; place-items: center; position: relative; overflow: hidden; background: linear-gradient(145deg, #e8e9ff, #c9d5ff 55%, #bfeee7); }
.product-placeholder::before, .product-placeholder::after { content: ''; position: absolute; border-radius: 50%; border: 28px solid rgba(255,255,255,.22); }
.product-placeholder::before { width: 160px; height: 160px; right: -55px; top: -70px; }
.product-placeholder::after { width: 130px; height: 130px; left: -50px; bottom: -65px; }
.product-placeholder span { width: 82px; height: 82px; display: grid; place-items: center; border-radius: 24px; color: #fff; background: rgba(65, 68, 150, .78); box-shadow: 0 20px 38px rgba(70, 72, 145, .24); font-size: 34px; font-weight: 850; z-index: 2; transform: rotate(-7deg); }
.product-placeholder i { width: 80px; height: 80px; position: absolute; border: 1px solid rgba(255, 255, 255, .72); border-radius: 24px; transform: translate(24px, 16px) rotate(8deg); }
.product-category, .stock-badge { position: absolute; top: 13px; z-index: 4; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.product-category { left: 13px; padding: 7px 11px; color: #454d65; background: rgba(255, 255, 255, .86); backdrop-filter: blur(8px); }
.stock-badge { right: 13px; padding: 7px 10px; color: #0f885e; background: rgba(228, 255, 245, .9); }
.stock-badge.empty { color: #b0525b; background: rgba(255, 236, 238, .9); }
.product-body { padding: 21px 22px 22px; }
.product-body h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
.product-body h3 a:hover { color: var(--accent); }
.product-body > p { height: 42px; margin: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 19px; padding-top: 17px; border-top: 1px solid #f0f1f5; }
.price { display: flex; align-items: baseline; color: var(--accent); }
.price small { font-size: 13px; font-weight: 800; }
.price strong { font-size: 26px; letter-spacing: -.04em; }
.price span { margin-left: 5px; color: #969caf; font-size: 10px; }
.round-arrow { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--accent); background: var(--accent-soft); font-weight: 900; transition: .2s ease; }
.round-arrow:hover { color: #fff; background: var(--accent); transform: rotate(-18deg); }
.round-arrow.small { width: 30px; height: 30px; font-size: 12px; }
.empty-state { padding: 70px 20px; text-align: center; border: 1px dashed #dfe2ed; border-radius: var(--radius); background: rgba(255,255,255,.7); }
.empty-state > span { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 18px; color: var(--accent); background: var(--accent-soft); font-size: 26px; }
.empty-state h3 { margin: 0 0 7px; }
.empty-state p { margin: 0; color: var(--muted); }

.process-section { padding: 54px 0 100px; }
.process-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; align-items: center; padding: 45px; border-radius: 25px; color: #fff; background: linear-gradient(130deg, #25284b, #44469a 64%, #278e91); box-shadow: 0 28px 65px rgba(33, 37, 81, .22); }
.process-copy h2 { margin: 9px 0 12px; font-size: 30px; }
.process-copy p { margin: 0; color: rgba(255,255,255,.65); line-height: 1.7; font-size: 13px; }
.process-card .section-kicker { color: #7ef3df; }
.process-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding: 0; }
.process-steps li { min-height: 120px; display: flex; flex-direction: column; justify-content: space-between; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.07); }
.process-steps li > b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: #18253c; background: #75edd8; font-size: 11px; }
.process-steps strong, .process-steps span { display: block; }
.process-steps strong { font-size: 14px; }
.process-steps span { margin-top: 4px; color: rgba(255,255,255,.56); font-size: 10px; }
.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; }
.footer-inner strong { font-size: 15px; }
.footer-inner p { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.footer-badges { display: flex; gap: 8px; }
.footer-badges span { padding: 7px 10px; border-radius: 8px; color: #72798d; background: var(--soft); font-size: 10px; }

.page-section { padding-top: 74px; padding-bottom: 90px; }
.product-detail-grid { display: grid; grid-template-columns: .87fr 1.13fr; gap: 60px; align-items: start; }
.detail-media { position: sticky; top: 105px; }
.detail-media > img, .detail-placeholder { width: 100%; aspect-ratio: 1 / .85; border-radius: 25px; object-fit: cover; box-shadow: var(--shadow-lg); }
.detail-placeholder span { width: 110px; height: 110px; font-size: 45px; border-radius: 30px; }
.media-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 15px; }
.media-trust span { padding: 11px; text-align: center; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); background: #fff; font-size: 11px; }
.detail-panel { padding-top: 8px; }
.breadcrumb, .breadcrumb-separator, .breadcrumb + span { color: #9298a9; font-size: 12px; }
.breadcrumb:hover { color: var(--accent); }
.breadcrumb-separator { margin: 0 8px; }
.detail-panel h1 { margin: 20px 0 10px; font-size: 39px; letter-spacing: -.045em; }
.detail-subtitle { margin: 0; color: var(--muted); font-size: 15px; }
.detail-description { margin-top: 21px; padding-bottom: 25px; border-bottom: 1px solid var(--line); color: #646c80; font-size: 13px; line-height: 1.8; }
.purchase-form { padding-top: 25px; }
.form-section { margin-bottom: 23px; }
.form-section > label, .purchase-form label, .stack-form > label, .install-form > label, .form-grid label, .login-card label { display: block; color: #3e4557; font-size: 12px; font-weight: 720; }
.label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
.label-row > label { font-size: 12px; font-weight: 720; }
.label-row > span { color: #9aa0b1; font-size: 10px; }
.variant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.variant-option { position: relative; display: flex !important; align-items: center; justify-content: space-between; min-height: 69px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 13px; background: #fff; cursor: pointer; transition: .15s ease; }
.variant-option input { position: absolute; opacity: 0; }
.variant-option:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 9%, transparent); }
.variant-option:has(input:checked)::after { content: '✓'; position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--accent); font-size: 10px; }
.variant-option span strong, .variant-option span small { display: block; }
.variant-option span strong { font-size: 13px; }
.variant-option span small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.variant-option > b { color: var(--accent); font-size: 14px; }
.variant-option.disabled { opacity: .45; cursor: not-allowed; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quantity-control { height: 46px; display: grid; grid-template-columns: 42px 1fr 42px; margin-top: 10px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.quantity-control button { border: 0; color: var(--muted); background: var(--soft); font-size: 18px; }
.quantity-control button:hover { color: var(--accent); }
.quantity-control input { min-width: 0; text-align: center; border: 0; outline: 0; font-weight: 800; appearance: textfield; }
.total-preview { min-height: 69px; display: flex; justify-content: space-between; align-items: end; padding: 12px 16px; border-radius: 13px; background: linear-gradient(120deg, #25284b, #4e50ac); color: #fff; }
.total-preview span { font-size: 10px; opacity: .65; }
.total-preview strong { font-size: 15px; }
.total-preview strong b { font-size: 24px; }
.input { width: 100%; height: 45px; margin-top: 8px; padding: 0 13px; border: 1px solid #dde0e9; border-radius: 11px; outline: 0; color: var(--ink); background: #fff; font-size: 13px; transition: border-color .15s ease, box-shadow .15s ease; }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 10%, transparent); }
.input::placeholder { color: #b1b6c3; }
textarea.input { height: auto; min-height: 90px; padding-block: 11px; resize: vertical; line-height: 1.65; }
select.input { appearance: auto; }
.field-hint, label > small { display: block; margin-top: 6px; color: #979dae; font-size: 10px; font-weight: 500; }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.payment-options label { display: flex !important; align-items: center; gap: 9px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.payment-options label:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.payment-options input { accent-color: var(--accent); }
.payment-logo { width: 27px; height: 27px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 8px; color: #fff; font-weight: 900; font-size: 11px; }
.payment-logo.alipay { background: #1677ff; }.payment-logo.wxpay { background: #21b66f; }.payment-logo.qqpay { background: #24a9e8; }
.payment-options b { font-size: 11px; }
.form-error { min-height: 18px; margin: 10px 0 0; color: var(--danger); text-align: center; font-size: 12px; }
.inline-warning { padding: 13px 15px; border: 1px solid #f4d699; border-radius: 11px; color: #91611a; background: #fff9e9; font-size: 12px; line-height: 1.6; }
.delivery-note { margin-bottom: 80px; padding: 22px 25px; border-left: 3px solid var(--accent); border-radius: 0 14px 14px 0; background: var(--accent-soft); }
.delivery-note span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.delivery-note p { margin: 8px 0 0; color: #555d72; font-size: 13px; line-height: 1.8; }

.checkout-shell { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 24px; align-items: start; max-width: 1040px; }
.checkout-card, .checkout-aside, .query-card { border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.checkout-card { padding: 32px; }
.checkout-heading { display: flex; gap: 16px; align-items: center; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.status-orb { width: 55px; height: 55px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 17px; background: #fff4d9; font-size: 23px; }
.status-orb.success { color: #fff; background: var(--success); }.status-orb.error { color: #fff; background: var(--danger); }
.checkout-heading h1 { margin: 4px 0; font-size: 25px; }
.checkout-heading p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.order-summary { display: grid; grid-template-columns: 1.6fr .6fr; gap: 18px 25px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.order-summary > div { min-width: 0; }
.order-summary span, .checkout-total > span { display: block; margin-bottom: 7px; color: #989eae; font-size: 10px; }
.order-summary strong { font-size: 12px; word-break: break-all; }
.order-summary .text-copy { margin-left: 6px; padding: 2px 6px; border: 0; border-radius: 5px; color: var(--accent); background: var(--accent-soft); font-size: 9px; }
.mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.checkout-total { display: flex; align-items: end; gap: 12px; padding: 25px 0; }
.checkout-total > strong { color: var(--accent); font-size: 34px; letter-spacing: -.04em; }
.checkout-total > strong small { font-size: 16px; }
.countdown { margin-left: auto; padding: 8px 12px; border-radius: 9px; background: #fff6e2; text-align: center; }
.countdown span { display: block; color: #9d752f; font-size: 8px; }
.countdown b { color: #bd7410; font-size: 13px; }
.payment-stage { text-align: center; }
.payment-stage canvas { width: 220px; height: 220px; margin: 0 auto 18px; padding: 9px; border: 1px solid var(--line); border-radius: 14px; }
.payment-stage > p { margin: 11px 0 0; color: var(--muted); font-size: 10px; }
.checkout-aside { padding: 25px; position: sticky; top: 100px; }
.checkout-aside h3 { margin: 0 0 15px; }
.checkout-aside ul { margin: 0; padding: 0; list-style: none; }
.checkout-aside li { position: relative; padding: 10px 0 10px 18px; border-bottom: 1px solid #f0f1f4; color: var(--muted); font-size: 11px; line-height: 1.7; }
.checkout-aside li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.checkout-aside > a { display: inline-block; margin-top: 18px; color: var(--accent); font-size: 11px; font-weight: 700; }
.success-banner { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; padding: 14px; border-radius: 13px; background: #eafaf3; }
.success-banner > b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--success); }
.success-banner strong, .success-banner span { display: block; }.success-banner strong { color: #107653; font-size: 12px; }.success-banner span { margin-top: 3px; color: #5e8978; font-size: 9px; }
.delivered-cards { display: grid; gap: 10px; margin-bottom: 15px; }
.delivered-card { padding: 14px; border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line)); border-radius: 12px; background: #fbfbff; }
.delivered-card pre { margin: 0 0 10px; white-space: pre-wrap; word-break: break-all; font: 700 13px/1.6 "SFMono-Regular", Consolas, monospace; }
.delivered-card p { margin: 10px 0 0; color: var(--muted); font-size: 10px; }
.exception-stage { display: flex; gap: 12px; padding: 15px; border-radius: 13px; color: #8c5512; background: #fff5df; }
.exception-stage > b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--warning); }
.exception-stage strong { font-size: 12px; }.exception-stage p { margin: 5px 0 0; font-size: 10px; line-height: 1.6; }

.query-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; min-height: calc(100vh - 188px); max-width: 1020px; }
.query-intro h1 { margin: 19px 0; font-size: 48px; line-height: 1.13; letter-spacing: -.05em; }
.query-intro > p { color: var(--muted); font-size: 14px; line-height: 1.9; }
.query-security { display: inline-flex; flex-direction: column; margin-top: 21px; padding: 14px 18px; border-left: 2px solid var(--accent); background: var(--accent-soft); }
.query-security b { font-size: 11px; }.query-security span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.query-card { padding: 35px; }
.query-card form > label { display: block; margin-top: 17px; color: #444b5d; font-size: 11px; font-weight: 700; }
.query-card form .button { margin-top: 23px; }
.query-result { margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); }
.query-result-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.query-result-summary > div { padding: 11px; border-radius: 10px; background: var(--soft); }
.query-result-summary span, .query-result-summary strong { display: block; }.query-result-summary span { color: var(--muted); font-size: 9px; }.query-result-summary strong { margin-top: 4px; font-size: 11px; }

.install-body { min-height: 100vh; display: grid; place-items: center; padding: 40px; background: linear-gradient(135deg, #222543 0, #4748a0 55%, #2d8b88 120%); }
.install-shell { width: min(1080px, 100%); display: grid; grid-template-columns: .7fr 1.3fr; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 25px; box-shadow: 0 35px 90px rgba(12, 15, 40, .32); }
.install-aside { display: flex; flex-direction: column; padding: 50px 42px; color: #fff; background: rgba(18, 20, 52, .4); }
.install-aside .brand-mark { margin-bottom: 60px; }
.install-aside .section-kicker { color: #76ecd7; }
.install-aside h1 { margin: 13px 0 18px; font-size: 35px; line-height: 1.25; letter-spacing: -.04em; }
.install-aside > p { color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.8; }
.install-aside ol { list-style: none; display: grid; gap: 15px; margin: auto 0 0; padding: 0; color: rgba(255,255,255,.48); font-size: 11px; }
.install-aside li { display: flex; align-items: center; gap: 10px; }.install-aside li b { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; }.install-aside li.active { color: #fff; }.install-aside li.active b { color: #14213a; border-color: #76ecd7; background: #76ecd7; }
.install-card { padding: 42px 48px; background: #fff; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 26px; }
.check-item { display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 9px; background: var(--soft); color: var(--muted); font-size: 10px; }
.check-item span { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #fff; }.check-item.ok span { background: var(--success); }.check-item.fail span { background: var(--danger); }.check-item.fail { color: var(--danger); }
.install-form h3 { margin: 21px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.form-grid { display: grid; gap: 13px; }.form-grid.two { grid-template-columns: 1fr 1fr; }.form-grid.three { grid-template-columns: repeat(3, 1fr); }
.install-form .form-grid { margin-top: 13px; }.install-form > label { margin-top: 13px; }.install-form > .button { margin-top: 24px; }

.alert { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 12px 15px; border-radius: 11px; font-size: 12px; }
.alert.success { color: #127455; border: 1px solid #bcebd9; background: #ecfbf5; }.alert.error { color: #a33947; border: 1px solid #f0c6cc; background: #fff0f2; }
.toast { position: fixed; z-index: 9999; left: 50%; bottom: 30px; transform: translate(-50%, 20px); padding: 11px 16px; border-radius: 10px; color: #fff; background: #22263f; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: .2s ease; font-size: 12px; }.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Admin */
.admin-body { min-height: 100vh; background: #f5f6fa; }
.admin-sidebar { width: 244px; height: 100vh; position: fixed; inset: 0 auto 0 0; z-index: 60; display: flex; flex-direction: column; padding: 23px 17px; color: #dfe2f5; background: linear-gradient(180deg, #20233e, #26294a); box-shadow: 12px 0 45px rgba(24, 27, 56, .12); }
.admin-brand { padding: 0 8px 27px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }.admin-brand > span:last-child { display: flex; flex-direction: column; }.admin-brand small { margin-top: 3px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 500; }
.admin-nav { display: grid; gap: 4px; padding-top: 18px; }
.admin-nav > span { margin: 14px 11px 5px; color: rgba(255,255,255,.31); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.admin-nav a { display: flex; align-items: center; gap: 12px; min-height: 42px; padding: 0 12px; border-radius: 10px; color: rgba(255,255,255,.64); font-size: 12px; font-weight: 600; transition: .16s ease; }
.admin-nav a i { width: 23px; height: 23px; display: grid; place-items: center; color: rgba(255,255,255,.46); font-style: normal; font-size: 14px; }
.admin-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }.admin-nav a.active { color: #fff; background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 80%, #fff), var(--accent)); box-shadow: 0 10px 22px rgba(20,20,50,.28); }.admin-nav a.active i { color: #fff; }
.sidebar-footer { display: grid; gap: 6px; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }.sidebar-footer a, .sidebar-footer button { width: 100%; display: flex; align-items: center; justify-content: space-between; min-height: 37px; padding: 0 11px; border: 0; border-radius: 8px; color: rgba(255,255,255,.55); background: transparent; font-size: 10px; }.sidebar-footer a:hover, .sidebar-footer button:hover { color: #fff; background: rgba(255,255,255,.05); }
.admin-main { min-height: 100vh; margin-left: 244px; }
.admin-topbar { height: 73px; position: sticky; top: 0; z-index: 40; display: flex; align-items: center; padding: 0 30px; border-bottom: 1px solid #e5e7ef; background: rgba(255,255,255,.88); backdrop-filter: blur(15px); }
.admin-topbar > div:first-of-type span, .admin-topbar > div:first-of-type b { display: block; }.admin-topbar > div:first-of-type span { color: #969cad; font-size: 9px; }.admin-topbar > div:first-of-type b { margin-top: 3px; font-size: 13px; }
.admin-user { display: flex; align-items: center; gap: 9px; margin-left: auto; }.admin-user > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--accent), #22bfae); font-weight: 800; }.admin-user b, .admin-user small { display: block; }.admin-user b { font-size: 10px; }.admin-user small { margin-top: 2px; color: #9da3b4; font-size: 8px; }
.sidebar-toggle { display: none; margin-right: 12px; border: 0; background: transparent; font-size: 20px; }
.admin-content { padding: 30px; }
.admin-page-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px; margin-bottom: 24px; }.admin-page-heading h1 { margin: 5px 0 4px; font-size: 27px; letter-spacing: -.035em; }.admin-page-heading p { margin: 0; color: var(--muted); font-size: 11px; }.back-link { display: inline-block; margin-bottom: 7px; color: var(--accent); font-size: 10px; font-weight: 700; }
.heading-actions { display: flex; gap: 9px; }
.admin-card { overflow: hidden; border: 1px solid #e3e5ee; border-radius: 16px; background: #fff; box-shadow: 0 4px 14px rgba(27, 31, 58, .035); }.form-card { padding: 21px; overflow: visible; }
.card-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 21px; border-bottom: 1px solid #eceef4; }.form-card > .card-heading { margin: -21px -21px 20px; }.card-heading h2 { margin: 0; font-size: 14px; }.card-heading p { margin: 4px 0 0; color: #959bac; font-size: 9px; }.card-heading > a { color: var(--accent); font-size: 10px; font-weight: 700; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }.metric-grid article { display: flex; align-items: center; gap: 14px; padding: 20px; border: 1px solid #e6e8ef; border-radius: 15px; background: #fff; box-shadow: 0 4px 14px rgba(27,31,58,.025); }.metric-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; font-weight: 800; }.metric-icon.purple { color: #615de4; background: #efeeff; }.metric-icon.blue { color: #3287e7; background: #eaf4ff; }.metric-icon.green { color: #159b6c; background: #e9faf3; }.metric-icon.orange { color: #c47a13; background: #fff5df; }.metric-grid small, .metric-grid strong, .metric-grid em { display: block; }.metric-grid small { color: #858c9f; font-size: 9px; }.metric-grid strong { margin: 3px 0; font-size: 21px; letter-spacing: -.035em; }.metric-grid em { color: #a3a8b6; font-size: 8px; font-style: normal; }
.admin-callout { display: flex; align-items: center; gap: 12px; margin-bottom: 17px; padding: 13px 16px; border-radius: 12px; }.admin-callout.danger { color: #9d3848; border: 1px solid #f0c6cc; background: #fff0f2; }.admin-callout > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--danger); font-weight: 900; }.admin-callout strong, .admin-callout p { display: block; margin: 0; }.admin-callout strong { font-size: 11px; }.admin-callout p { margin-top: 3px; color: #ae6c77; font-size: 9px; }.admin-callout > b { margin-left: auto; font-size: 10px; }
.dashboard-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 17px; margin-bottom: 17px; }
.table-wrap { overflow-x: auto; }.table-wrap table { width: 100%; border-collapse: collapse; min-width: 680px; }.table-wrap th { padding: 11px 15px; color: #9298a8; background: #fafbfc; font-size: 9px; text-align: left; font-weight: 750; white-space: nowrap; }.table-wrap td { padding: 13px 15px; border-top: 1px solid #eff0f4; color: #4b5265; font-size: 10px; vertical-align: middle; }.table-wrap td strong, .table-wrap td small { display: block; }.table-wrap td small { margin-top: 4px; color: #9ea4b2; font-size: 8px; }.table-link { color: var(--accent); font-weight: 700; }.table-empty { padding: 38px !important; text-align: center; color: #9ba1b1 !important; }
.status { display: inline-flex; align-items: center; justify-content: center; padding: 5px 8px; border-radius: 999px; font-size: 8px; font-weight: 800; text-transform: uppercase; }.status-pending, .status-reserved { color: #a56c14; background: #fff4dd; }.status-paid, .status-delivered, .status-available { color: #137b58; background: #e8f9f2; }.status-expired, .status-failed, .status-archived { color: #7d8497; background: #eff1f5; }.status-exception { color: #a43f4d; background: #ffebee; }.status-sold { color: #365fc1; background: #ebf1ff; }
.row-danger { background: #fff9fa; }
.stock-list { display: grid; }.stock-list a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 20px; border-top: 1px solid #eff0f4; }.stock-list a:first-child { border-top: 0; }.stock-list strong, .stock-list span { display: block; }.stock-list strong { font-size: 10px; }.stock-list span { margin-top: 3px; color: #979dae; font-size: 8px; }.stock-list b { min-width: 32px; padding: 6px; border-radius: 8px; color: #966817; background: #fff4df; text-align: center; }.stock-list b.empty, .stock-number.empty { color: var(--danger); }.mini-empty { padding: 29px; text-align: center; color: #969cac; font-size: 10px; }
.audit-list { display: grid; grid-template-columns: repeat(4, 1fr); }.audit-list > div { padding: 15px 20px; border-right: 1px solid #eff0f4; }.audit-list > div:last-child { border-right: 0; }.audit-list span, .audit-list b, .audit-list small { display: block; }.audit-list span { color: var(--accent); font-size: 9px; font-weight: 800; }.audit-list b { margin: 5px 0; font-size: 9px; }.audit-list small { color: #a1a6b5; font-size: 8px; }
.admin-split { display: grid; grid-template-columns: 300px 1fr; gap: 17px; align-items: start; }.sticky-card { position: sticky; top: 95px; }
.stack-form { display: grid; gap: 14px; }.stack-form .input { margin-top: 6px; }.switch-line { min-height: 45px; display: flex !important; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 0; }.switch-line > span { display: flex; flex-direction: column; }.switch-line > span small { margin-top: 3px; }.switch-line input, .mini-switch input { position: absolute; opacity: 0; }.switch-line i, .mini-switch i { width: 38px; height: 21px; position: relative; display: inline-block; flex: 0 0 auto; border-radius: 999px; background: #d8dbe4; transition: .17s ease; }.switch-line i::after, .mini-switch i::after { content: ''; width: 15px; height: 15px; position: absolute; top: 3px; left: 3px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.14); transition: .17s ease; }.switch-line input:checked + i, .mini-switch input:checked + i { background: var(--accent); }.switch-line input:checked + i::after, .mini-switch input:checked + i::after { transform: translateX(17px); }
.category-admin-list { display: grid; }.category-admin-row { display: grid; grid-template-columns: 25px minmax(170px, 1fr) auto 58px 45px auto 32px; gap: 9px; align-items: center; padding: 12px 16px; border-top: 1px solid #eff0f4; }.category-admin-row:first-child { border-top: 0; }.drag-handle { color: #bdc1cc; cursor: grab; }.inline-input { display: block; width: 100%; padding: 3px 5px; border: 1px solid transparent; border-radius: 5px; outline: 0; background: transparent; font-size: 9px; }.inline-input.strong { font-size: 11px; font-weight: 750; }.inline-input:focus { border-color: var(--accent); background: #fff; }.sort-input { width: 55px; height: 31px; border: 1px solid var(--line); border-radius: 7px; text-align: center; font-size: 9px; }.count-chip { display: inline-flex; padding: 5px 8px; border-radius: 999px; color: #70778a; background: var(--soft); font-size: 8px; white-space: nowrap; }
.small-button, .icon-button { min-height: 31px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #dfe2ea; border-radius: 8px; color: #555d70; background: #fff; font-size: 9px; font-weight: 700; }.small-button { padding: 0 11px; }.small-button:hover, .icon-button:hover { color: var(--accent); border-color: var(--accent); }.small-button.secondary { color: #777e90; background: var(--soft); }.icon-button { width: 31px; padding: 0; font-size: 15px; }.icon-button.danger, .small-button.danger-outline { color: var(--danger); }.icon-button.danger:hover, .small-button.danger-outline:hover { border-color: var(--danger); background: #fff2f4; }
.product-cell { display: flex; align-items: center; gap: 10px; min-width: 180px; }.product-cell img, .product-cell > span { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px; object-fit: cover; }.product-cell > span { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--accent), #21bdae); font-weight: 800; }.stock-number { color: #16835e; font-size: 13px; }.table-actions { display: flex; gap: 5px; align-items: center; }
.product-editor { display: grid; grid-template-columns: minmax(0, 1fr) 285px; gap: 17px; align-items: start; }.editor-main { display: grid; gap: 17px; }.editor-side { min-width: 0; }.variant-editor { display: grid; gap: 9px; }.variant-editor-row { display: grid; grid-template-columns: 20px minmax(110px, 1.5fr) minmax(90px, 1fr) 82px 82px 62px 67px 31px; gap: 8px; align-items: end; padding: 12px; border: 1px solid #e8e9ef; border-radius: 11px; background: #fafbfc; }.variant-editor-row > label { min-width: 0; font-size: 9px; font-weight: 700; }.variant-editor-row .input { height: 37px; margin-top: 4px; padding: 0 9px; font-size: 10px; }.mini-switch.labeled { height: 37px; display: flex; align-items: center; gap: 5px; }.mini-switch.labeled span { font-size: 8px; }.upload-box { min-height: 150px; display: flex !important; flex-direction: column; align-items: center; justify-content: center; padding: 13px; border: 1px dashed #cfd3df; border-radius: 12px; color: #7b8295 !important; background: #fafbfc; text-align: center; cursor: pointer; overflow: hidden; }.upload-box img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }.upload-box > span { width: 37px; height: 37px; display: grid; place-items: center; margin-bottom: 8px; border-radius: 11px; color: var(--accent); background: var(--accent-soft); font-size: 18px; }.upload-box b { font-size: 10px; }.upload-box small { margin-top: 4px; color: #a2a7b5; font-size: 8px; }.upload-box input { display: none; }
.cards-tools-grid, .settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-bottom: 17px; align-items: start; }.file-line { min-height: 56px; display: flex !important; align-items: center; justify-content: space-between; gap: 15px; padding: 10px 12px; border: 1px dashed #d6d9e3; border-radius: 10px; background: #fafbfc; }.file-line span b, .file-line span small { display: block; }.file-line span small { margin-top: 3px; }.file-line input { max-width: 180px; font-size: 9px; }.toolbar-heading { flex-wrap: wrap; }.filter-form { display: flex; gap: 7px; align-items: center; }.filter-form .input { width: auto; min-width: 140px; height: 33px; margin: 0; font-size: 9px; }.batch-bar { display: flex; align-items: center; justify-content: space-between; padding: 9px 15px; background: #fafbfc; color: #777e90; font-size: 9px; }.batch-bar input { accent-color: var(--accent); }.secret-mask { color: #363d52; }.truncate-cell { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.pagination { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; border-top: 1px solid #eceef3; color: #9298a9; font-size: 9px; }.pagination div { display: flex; gap: 6px; }.pagination a { padding: 6px 9px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }.pagination a:hover { color: var(--accent); border-color: var(--accent); }
.modal { width: min(540px, calc(100% - 30px)); padding: 27px; border: 0; border-radius: 18px; box-shadow: 0 30px 90px rgba(22,25,50,.3); }.modal::backdrop { background: rgba(19,22,40,.55); backdrop-filter: blur(4px); }.modal-close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border: 0; border-radius: 8px; color: #7f8698; background: var(--soft); }.modal h2 { margin: 7px 0 20px; }.secret-detail { padding: 14px; border-radius: 12px; background: #f6f6ff; }.secret-detail label, .note-grid label { color: #8b92a3; font-size: 9px; }.secret-detail pre { min-height: 45px; margin: 8px 0; white-space: pre-wrap; word-break: break-all; color: #2f3550; font: 700 13px/1.6 "SFMono-Regular", Consolas, monospace; }.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 13px; }.note-grid > div { padding: 12px; border: 1px solid var(--line); border-radius: 10px; }.note-grid p { margin: 7px 0 0; color: #5f6679; font-size: 10px; white-space: pre-wrap; }
.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-bottom: 17px; }.detail-list { margin: 0; padding: 5px 21px 18px; }.detail-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 15px; padding: 12px 0; border-bottom: 1px solid #eff0f4; }.detail-list > div:last-child { border-bottom: 0; }.detail-list dt { color: #9197a8; font-size: 9px; }.detail-list dd { margin: 0; color: #40475a; font-size: 10px; text-align: right; word-break: break-all; }.detail-list dd small { display: block; margin-top: 4px; color: #9ea4b3; font-size: 8px; }.detail-list .large-price { color: var(--accent); font-size: 17px; font-weight: 800; }.order-status-panel { display: grid; grid-template-columns: 1fr 38px 1fr; align-items: center; padding: 38px 25px; text-align: center; }.order-status-panel > div > span, .order-status-panel > div > small { display: block; }.order-status-panel > div > span { margin-bottom: 11px; color: #9399aa; font-size: 9px; }.order-status-panel > div > small { margin-top: 9px; color: #a1a6b4; font-size: 8px; }.order-status-panel > i { height: 1px; background: #dfe2ea; }.order-detail-grid .inline-warning { margin: 0 20px 20px; }.admin-delivered-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px; }.admin-delivered-list article { position: relative; padding: 15px; border: 1px solid var(--line); border-radius: 11px; background: #fafbff; }.admin-delivered-list article > span { color: var(--accent); font-size: 8px; font-weight: 800; }.admin-delivered-list pre { min-height: 35px; margin: 8px 0; white-space: pre-wrap; word-break: break-all; font: 700 11px/1.6 "SFMono-Regular", Consolas, monospace; }.admin-delivered-list p { margin: 10px 0 0; color: var(--muted); font-size: 9px; }
.secure-chip { padding: 6px 9px; border-radius: 999px; color: #157d5b; background: #e8f9f2; font-size: 8px; font-weight: 800; }.payment-toggle-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }.payment-toggle-list label { display: flex !important; align-items: center; gap: 7px; padding: 9px; border: 1px solid var(--line); border-radius: 10px; }.payment-toggle-list label b { font-size: 9px; }.payment-toggle-list input { margin-left: auto; accent-color: var(--accent); }.guide-card { padding: 27px; background: linear-gradient(145deg, #26294a, #484ba0); color: #fff; }.guide-card .section-kicker { color: #78edda; }.guide-card h2 { margin: 8px 0 11px; }.guide-card > p { color: rgba(255,255,255,.58); font-size: 10px; line-height: 1.7; }.guide-card > label { display: block; margin: 18px 0 6px; color: rgba(255,255,255,.45); font-size: 8px; }.guide-card code { display: block; overflow-wrap: anywhere; padding: 10px; border-radius: 9px; color: #a9fff0; background: rgba(255,255,255,.07); font-size: 9px; }.guide-points { display: grid; gap: 10px; margin-top: 25px; }.guide-points span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.68); font-size: 9px; }.guide-points b { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; color: #17223a; background: #73ead6; }.color-input { padding: 5px; }.security-note { margin-top: 25px; padding: 16px; border-radius: 11px; background: var(--soft); }.security-note b { font-size: 10px; }.security-note ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 11px 0 0; padding: 0; list-style: none; }.security-note li { color: #737a8d; font-size: 8px; }.security-note li::before { content: '✓'; margin-right: 5px; color: var(--success); font-weight: 800; }

.login-body { min-height: 100vh; display: grid; place-items: center; padding: 35px; background: #f4f5fa; }.login-shell { width: min(960px, 100%); min-height: 560px; display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border-radius: 25px; background: #fff; box-shadow: 0 35px 90px rgba(30, 33, 70, .16); }.login-visual { display: flex; flex-direction: column; padding: 43px; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(80,225,204,.22), transparent 25%), linear-gradient(145deg, #242744, #484aa0); }.login-visual .brand { color: #fff; }.login-visual > div:nth-child(2) { margin: auto 0; }.login-visual h1 { margin: 17px 0; font-size: 37px; line-height: 1.25; letter-spacing: -.04em; }.login-visual p { max-width: 420px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.8; }.login-visual .eyebrow { color: #75ebd8; background: rgba(255,255,255,.07); }.login-visual .eyebrow i { background: #75ebd8; }.login-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }.login-stats span { display: flex; flex-direction: column; padding: 11px; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; color: rgba(255,255,255,.45); font-size: 8px; }.login-stats b { margin-bottom: 3px; color: #fff; font-size: 10px; }.login-card { display: flex; flex-direction: column; justify-content: center; padding: 48px; }.login-card h2 { margin: 8px 0 5px; font-size: 27px; }.login-card > div:first-child > p { margin: 0 0 22px; color: var(--muted); font-size: 10px; }.login-card form { display: grid; gap: 16px; }.login-back { margin-top: 20px; color: var(--muted); text-align: center; font-size: 9px; }.login-back:hover { color: var(--accent); }

@media (max-width: 1060px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 25px; }
  .hero-visual { transform: scale(.88); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .variant-editor-row { grid-template-columns: 20px 1.5fr 1fr 80px 80px; }.variant-editor-row > label:nth-of-type(5), .variant-editor-row .mini-switch, .variant-editor-row > .icon-button { grid-row: 2; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 720px); }
  .site-nav { display: none; }
  .hero-section { padding-top: 54px; }.hero-grid, .product-detail-grid, .query-layout { grid-template-columns: 1fr; }.hero-copy h1 { font-size: 48px; }.hero-visual { min-height: 390px; margin-top: 10px; }.detail-media { position: static; }.product-detail-grid { gap: 35px; }.query-layout { gap: 34px; min-height: 0; }.process-card { grid-template-columns: 1fr; }.checkout-shell { grid-template-columns: 1fr; }.checkout-aside { position: static; }
  .admin-sidebar { transform: translateX(-100%); transition: .2s ease; }.admin-sidebar.open { transform: translateX(0); }.admin-main { margin-left: 0; }.sidebar-toggle { display: block; }.admin-content { padding: 20px; }.dashboard-grid, .admin-split, .product-editor, .cards-tools-grid, .settings-grid, .order-detail-grid { grid-template-columns: 1fr; }.sticky-card { position: static; }.audit-list { grid-template-columns: repeat(2, 1fr); }.category-admin-row { grid-template-columns: 20px 1fr auto 48px 35px; }.category-admin-row .count-chip, .category-admin-row .sort-input { display: none; }.editor-side { grid-row: 1; }.variant-editor-row { grid-template-columns: 18px 1fr 1fr 30px; }.variant-editor-row > label:nth-of-type(3), .variant-editor-row > label:nth-of-type(4), .variant-editor-row > label:nth-of-type(5), .variant-editor-row .mini-switch { grid-row: auto; }.variant-editor-row > label:nth-of-type(n+3), .variant-editor-row .mini-switch { display: none; }.install-shell { grid-template-columns: 1fr; }.install-aside { display: none; }.login-shell { grid-template-columns: 1fr; }.login-visual { display: none; }
}

@media (max-width: 580px) {
  .site-header { height: 67px; }.header-query { padding: 0 12px; }.hero-copy h1 { font-size: 40px; }.hero-copy > p { font-size: 14px; }.hero-actions { flex-direction: column; }.trust-row { flex-wrap: wrap; }.hero-visual { min-height: 320px; transform: scale(.76); margin: -15px 0; }.digital-card { width: 315px; }.catalog-section { padding-top: 65px; }.section-heading { display: block; }.section-heading > p { margin-top: 8px; }.section-heading h2 { font-size: 29px; }.product-grid { grid-template-columns: 1fr; }.product-media { height: 225px; }.process-section { padding-bottom: 60px; }.process-card { padding: 27px 20px; }.process-steps { grid-template-columns: 1fr; }.process-steps li { min-height: 90px; }.footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; gap: 13px; }.footer-badges { flex-wrap: wrap; }
  .page-section { padding-top: 42px; padding-bottom: 60px; }.detail-panel h1 { font-size: 32px; }.variant-grid, .form-row-two, .payment-options, .query-result-summary { grid-template-columns: 1fr; }.label-row { align-items: flex-start; flex-direction: column; gap: 4px; }.checkout-card, .query-card { padding: 22px 18px; }.order-summary { grid-template-columns: 1fr; }.checkout-total { flex-wrap: wrap; }.query-intro h1 { font-size: 39px; }
  .install-body, .login-body { padding: 0; }.install-shell, .login-shell { min-height: 100vh; border-radius: 0; }.install-card, .login-card { padding: 30px 20px; }.check-grid, .form-grid.two, .form-grid.three { grid-template-columns: 1fr; }.metric-grid { grid-template-columns: 1fr; }.admin-content { padding: 15px; }.admin-page-heading { align-items: flex-start; flex-direction: column; }.admin-page-heading .button { width: 100%; }.toolbar-heading { align-items: flex-start; flex-direction: column; }.filter-form { width: 100%; flex-wrap: wrap; }.filter-form .input { flex: 1; min-width: 120px; }.audit-list { grid-template-columns: 1fr; }.category-admin-row { grid-template-columns: 16px 1fr 35px 31px; }.category-admin-row .small-button { display: none; }.variant-editor-row { grid-template-columns: 15px 1fr 1fr 30px; padding: 8px; }.payment-toggle-list { grid-template-columns: 1fr; }.admin-delivered-list { grid-template-columns: 1fr; }.note-grid { grid-template-columns: 1fr; }.login-card { justify-content: flex-start; padding-top: 70px; }
}

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