:root {
    color-scheme: dark;
    --bg: #080a0f;
    --bg-soft: #0d1017;
    --surface: #11151e;
    --surface-2: #171c27;
    --surface-3: #1d2330;
    --line: #282e3b;
    --line-soft: #1c222e;
    --text: #f6f7fb;
    --muted: #9ca5b5;
    --violet: #8b5cf6;
    --violet-strong: #7044e8;
    --cyan: #31c6d4;
    --green: #40d890;
    --amber: #f7c65d;
    --coral: #ff6b6b;
    --shadow: 0 24px 70px rgba(0, 0, 0, .35);
    --radius: 8px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    line-height: 1.12;
    letter-spacing: 0;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: 1rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.hidden { display: none !important; }
.desktop-only { display: inline-flex; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #a98cff;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
}
.eyebrow svg { width: 15px; height: 15px; }
.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 0 18px;
    color: #fff;
    font-weight: 750;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button svg { width: 18px; height: 18px; flex: 0 0 auto; }
.button:hover { transform: translateY(-2px); }
.button-primary {
    background: var(--violet-strong);
    border-color: #8a67ed;
    box-shadow: 0 12px 30px rgba(112, 68, 232, .24);
}
.button-primary:hover { background: #7a50eb; box-shadow: 0 15px 36px rgba(112, 68, 232, .36); }
.button-quiet { background: var(--surface-2); border-color: var(--line); }
.button-quiet:hover { background: var(--surface-3); border-color: #3c4556; }
.button-ghost { background: rgba(9, 11, 16, .4); border-color: rgba(255, 255, 255, .22); backdrop-filter: blur(12px); }
.button-whatsapp { background: #137a50; border-color: #219465; }
.button-block { width: 100%; }
.button-sm { min-height: 38px; padding-inline: 13px; font-size: .82rem; }
.icon-button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--text);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    flex: 0 0 auto;
}
.icon-button svg { width: 18px; height: 18px; }
.icon-button:hover { background: var(--surface-3); border-color: #414959; }
.icon-button-accent { color: #c5b5ff; background: #251c42; border-color: #443476; }
.icon-button.danger { color: #ff9797; background: #2a171c; border-color: #572933; }
.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font: 700 1.2rem "Space Grotesk", sans-serif;
}
.brand > span:last-child > span { color: #a68afa; }
.brand-mark {
    width: 35px;
    height: 35px;
    display: inline-grid;
    place-items: center;
    border-radius: 7px;
    color: #fff;
    background: #7044e8;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.15), 0 8px 20px rgba(112,68,232,.28);
}
.ticker {
    height: 34px;
    background: #0d1220;
    border-bottom: 1px solid #202737;
    overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; height: 100%; gap: 16px; }
.ticker-label {
    display: flex; align-items: center; gap: 5px; z-index: 2;
    height: 100%; padding-right: 14px; background: #0d1220; color: var(--amber); font-size: .72rem; font-weight: 800;
}
.ticker-label svg { width: 14px; }
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content { width: max-content; display: flex; gap: 42px; animation: ticker 30s linear infinite; color: #c5cbd5; font-size: .72rem; }
.ticker-content span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); display: inline-block; margin-right: 9px; vertical-align: middle; }
@keyframes ticker { to { transform: translateX(-50%); } }
.site-header {
    height: 72px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 10, 15, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(45, 51, 65, .72);
}
.navbar { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.nav-links { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.nav-links a { color: #aeb6c4; font-size: .82rem; font-weight: 650; padding-block: 24px; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 15px; height: 2px; background: #8d67f5; transform: scaleX(0); transition: transform .2s ease; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.menu-toggle { display: none; }
.toast {
    position: fixed; right: 24px; top: 92px; z-index: 200; max-width: 380px;
    display: flex; align-items: center; gap: 10px; padding: 13px 16px;
    background: #151a23; border: 1px solid var(--line); border-radius: 7px; box-shadow: var(--shadow);
    animation: toast-in .25s ease both;
}
.toast svg { width: 19px; }
.toast-success svg { color: var(--green); }
.toast-error svg { color: var(--coral); }
@keyframes toast-in { from { opacity: 0; transform: translateY(-10px); } }
.hero { position: relative; overflow: hidden; }
.hero-slider { position: relative; height: min(620px, calc(100vh - 106px)); min-height: 500px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,8,12,.98) 0%, rgba(6,8,12,.88) 34%, rgba(6,8,12,.35) 70%, rgba(6,8,12,.15) 100%);
}
.hero-shade::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(transparent, var(--bg)); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; height: 100%; padding-bottom: 34px; }
.hero-content h1 { max-width: 720px; margin: 16px 0 18px; font-size: clamp(3rem, 6vw, 5.2rem); }
.hero-content p { max-width: 600px; color: #c5cad4; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 11px; margin-top: 13px; }
.hero-trust { display: flex; gap: 22px; margin-top: 28px; color: #adb5c2; font-size: .76rem; font-weight: 650; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; color: var(--green); }
.slider-controls { position: absolute; z-index: 4; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; justify-content: flex-end; align-items: center; gap: 11px; }
.slider-controls .icon-button { width: 36px; height: 36px; background: rgba(10,12,18,.7); }
.slider-dots { display: flex; gap: 6px; }
.slider-dots button { width: 22px; height: 4px; border: 0; padding: 0; background: rgba(255,255,255,.3); border-radius: 2px; transition: width .2s, background .2s; }
.slider-dots button.active { width: 38px; background: #a68afa; }
.stats-band { background: #0c0f16; border-block: 1px solid var(--line-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 104px; }
.stats-grid > div { display: flex; flex-direction: column; justify-content: center; padding: 20px 28px; border-right: 1px solid var(--line-soft); }
.stats-grid > div:first-child { padding-left: 0; }
.stats-grid > div:last-child { border-right: 0; }
.stats-grid strong { font: 700 1.45rem "Space Grotesk", sans-serif; }
.stats-grid span { color: var(--muted); font-size: .76rem; }
.section { padding: 30px 0; }
.section-contrast { background: #0b0e14; border-block: 1px solid var(--line-soft); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading h2 { margin: 7px 0 0; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: #bba9f8; font-size: .82rem; font-weight: 750; }
.text-link svg { width: 17px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.category-item {
    min-height: 108px; display: grid; grid-template-columns: 50px 1fr 20px; align-items: center; gap: 15px; padding: 18px;
    background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); transition: transform .2s, border-color .2s, background .2s;
}
.category-item:hover { transform: translateY(-3px); border-color: #4b3a78; background: #141923; }
.category-icon { width: 48px; height: 48px; display: grid; place-items: center; background: #221a3b; color: #ad92ff; border: 1px solid #3a2c61; border-radius: 7px; }
.category-icon svg { width: 22px; }
.category-item > span:nth-child(2) { min-width: 0; }
.category-item strong, .category-item small { display: block; }
.category-item strong { margin-bottom: 3px; }
.category-item small { color: var(--muted); font-size: .72rem; line-height: 1.4; }
.category-item > svg { width: 18px; color: #5f6878; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { min-width: 0; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); border-color: #45366e; box-shadow: 0 20px 44px rgba(0,0,0,.22); }
.product-cover { height: 190px; position: relative; display: block; overflow: hidden; background: #191428; }
.product-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(8,10,15,.92)); }
.product-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) brightness(.65); transition: transform .4s, filter .4s; }
.product-card:hover img { transform: scale(1.05); filter: saturate(.9) brightness(.78); }
.product-monogram { position: absolute; z-index: 2; left: 16px; bottom: 14px; font: 700 2rem "Space Grotesk", sans-serif; color: #fff; }
.badge-stack { position: absolute; z-index: 3; top: 12px; left: 12px; right: 12px; display: flex; flex-wrap: wrap; gap: 5px; }
.badge { padding: 4px 7px; border-radius: 4px; font-size: .58rem; font-weight: 850; }
.badge-violet { background: #7550de; color: #fff; }
.badge-coral { background: #c94955; color: #fff; }
.product-card-body { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px; }
.product-card-body > div { min-width: 0; }
.product-category { color: var(--muted); font-size: .64rem; text-transform: uppercase; font-weight: 750; }
.product-card h3 { margin: 2px 0 0; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.accent-2 .product-cover { background: #14262b; }
.accent-3 .product-cover { background: #2b2114; }
.accent-4 .product-cover { background: #14202c; }
.accent-5 .product-cover { background: #2c171c; }
.accent-6 .product-cover { background: #19271d; }
.process-section { background: #10141c; }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.process-copy h2 { margin: 10px 0 15px; }
.process-copy p { color: var(--muted); max-width: 470px; }
.steps { border-left: 1px solid #343b49; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 9px 0 34px 31px; position: relative; }
.step:last-child { padding-bottom: 9px; }
.step::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--violet); left: -5px; top: 20px; box-shadow: 0 0 0 6px #211c31; }
.step > span { color: #8c6ce7; font: 700 1.2rem "Space Grotesk", sans-serif; }
.step h3 { font-size: 1.1rem; margin-bottom: 5px; }
.step p { color: var(--muted); margin: 0; }
.carousel-buttons { display: flex; gap: 7px; }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 14px; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card { scroll-snap-align: start; min-height: 245px; padding: 24px; background: rgba(19,24,33,.8); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; }
.stars { color: var(--amber); font-size: .9rem; }
.testimonial-card > p { color: #d2d6de; margin: 18px 0 25px; flex: 1; }
.testimonial-person { display: flex; gap: 11px; align-items: center; }
.testimonial-person > span, .testimonial-person img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; display: grid; place-items: center; background: #3a2b63; color: #fff; font-weight: 800; }
.testimonial-person strong, .testimonial-person small { display: block; }
.testimonial-person small { color: var(--muted); font-size: .68rem; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro h2 { margin: 10px 0 14px; }
.faq-intro p { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 0 4px; }
.accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; font-weight: 750; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary svg { width: 18px; transition: transform .2s; }
.accordion details[open] summary svg { transform: rotate(45deg); color: #ae90ff; }
.accordion details p { color: var(--muted); margin: -4px 35px 20px 0; }
.site-footer { background: #080a0f; border-top: 1px solid var(--line); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; padding-bottom: 45px; }
.footer-grid h3 { color: #fff; margin-bottom: 17px; }
.footer-grid > div:not(.footer-about) a, .footer-grid > div:not(.footer-about) p { display: block; margin: 0 0 9px; color: var(--muted); font-size: .78rem; }
.footer-about p { color: var(--muted); max-width: 360px; margin: 17px 0; }
.social-links { display: flex; gap: 7px; }
.secure-note { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: .72rem; }
.secure-note svg { width: 15px; }
.footer-bottom { min-height: 66px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; color: #70798a; font-size: .72rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: #168457; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.4); }
.whatsapp-float svg { width: 22px; }
.modal-backdrop { position: fixed; inset: 0; z-index: 150; background: rgba(2,3,6,.76); backdrop-filter: blur(8px); display: grid; place-items: center; padding: 20px; }
.promo-modal { width: min(720px, 100%); display: grid; grid-template-columns: .9fr 1.1fr; background: #11151e; border: 1px solid #393f4d; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.modal-close { position: absolute; z-index: 2; right: 12px; top: 12px; background: rgba(8,10,15,.75); }
.promo-modal-image { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.promo-modal-body { padding: 46px 34px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.promo-modal-body h2 { font-size: 2rem; margin: 10px 0 12px; }
.promo-modal-body p { color: var(--muted); }
.page-hero { padding: 78px 0 70px; background: #0c1018; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); margin: 12px 0; }
.page-hero p { color: var(--muted); max-width: 680px; font-size: 1rem; }
.page-hero-compact { padding-block: 55px; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.catalog-toolbar > span { color: var(--muted); font-size: .78rem; }
.search-field, .admin-search { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 13px; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); }
.search-field { width: min(420px, 100%); }
.search-field svg, .admin-search svg { width: 17px; color: var(--muted); flex: 0 0 auto; }
.search-field input, .admin-search input { width: 100%; background: transparent; border: 0; outline: 0; color: #fff; }
.empty-state { min-height: 330px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--muted); }
.empty-state svg { width: 42px; height: 42px; color: #8061dc; margin-bottom: 15px; }
.empty-state h1, .empty-state h2, .empty-state h3 { color: #fff; margin-bottom: 7px; }
.empty-state.compact { min-height: 260px; }
.product-detail-hero {
    min-height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.product-detail-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.7); }
.product-detail-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,14,.96), rgba(7,9,14,.45)), linear-gradient(transparent 45%, var(--bg)); }
.product-detail-heading { position: relative; z-index: 2; padding-bottom: 54px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 7px; color: #c0c6d1; font-size: .78rem; margin-bottom: 35px; }
.breadcrumb svg { width: 16px; }
.detail-title-row { display: flex; align-items: center; gap: 20px; }
.detail-logo { width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); background: rgba(17,21,30,.8); backdrop-filter: blur(12px); border-radius: 8px; font: 700 1.6rem "Space Grotesk", sans-serif; }
.detail-title-row h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 6px 0; }
.detail-title-row p { color: #bac1cc; margin: 0; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 24px; align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 16px; }
.form-section { display: grid; grid-template-columns: 43px 1fr; gap: 16px; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.form-section-number { width: 38px; height: 38px; display: grid; place-items: center; background: #2b2050; color: #b8a2ff; border: 1px solid #4b397d; border-radius: 7px; font-weight: 800; }
.form-section-content { min-width: 0; }
.form-heading { margin-bottom: 22px; }
.form-heading h2 { font-size: 1.25rem; margin-bottom: 4px; }
.form-heading p { color: var(--muted); font-size: .78rem; margin: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field > span { color: #d6dae2; font-size: .74rem; font-weight: 700; }
.field > span small { color: var(--muted); font-weight: 500; }
.field input, .field textarea, .field select, .admin-filters select {
    width: 100%; min-height: 44px; padding: 10px 12px; color: #fff; background: #0d1118; border: 1px solid var(--line); border-radius: 6px; outline: 0; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: #7856d9; box-shadow: 0 0 0 3px rgba(120,86,217,.12); }
.field select, .admin-filters select { appearance: auto; }
.nominal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.nominal-option input, .payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.nominal-option > span { min-height: 92px; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 14px; background: #0d1118; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; }
.nominal-option strong, .nominal-option small { display: block; }
.nominal-option small { color: #aa92ef; margin-top: 3px; }
.nominal-option svg { position: absolute; right: 10px; top: 10px; width: 17px; color: transparent; }
.nominal-option input:checked + span { border-color: #7855dc; background: #19142a; box-shadow: inset 0 0 0 1px #7855dc; }
.nominal-option input:checked + span svg { color: #9c7ff0; }
.summary-panel, .invoice-panel { padding: 23px; background: #11151e; border: 1px solid var(--line); border-radius: var(--radius); }
.sticky-panel { position: sticky; top: 96px; }
.summary-kicker { color: var(--muted); font-size: .7rem; text-transform: uppercase; font-weight: 800; }
.summary-product { display: flex; align-items: center; gap: 11px; padding: 18px 0; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.summary-icon { width: 42px; height: 42px; display: grid; place-items: center; background: #2a2048; color: #bca8ff; border-radius: 7px; font-weight: 800; }
.summary-product strong, .summary-product small { display: block; }
.summary-product small { color: var(--muted); font-size: .7rem; }
.summary-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 10px 0; color: var(--muted); font-size: .78rem; }
.summary-row strong { color: #e6e8ed; text-align: right; }
.summary-row.total { margin: 5px 0 17px; padding-top: 17px; border-top: 1px solid var(--line); font-size: .9rem; }
.summary-row.total strong { color: #bcabf7; font: 700 1.2rem "Space Grotesk", sans-serif; }
.summary-safe { display: flex; gap: 7px; color: #747e8e; font-size: .65rem; line-height: 1.45; margin: 13px 0 0; }
.summary-safe svg { width: 14px; flex: 0 0 auto; }
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.payment-option { position: relative; }
.payment-option > span:not(.payment-logo), .payment-option { min-width: 0; }
.payment-option { min-height: 74px; display: grid; grid-template-columns: 40px 1fr 18px; align-items: center; gap: 10px; padding: 12px; background: #0d1118; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; }
.payment-option:has(input:checked) { border-color: #7855dc; background: #19142a; box-shadow: inset 0 0 0 1px #7855dc; }
.payment-logo { width: 38px; height: 38px; display: grid; place-items: center; background: #1d2430; border-radius: 6px; }
.payment-logo svg { width: 19px; color: #b6c0cf; }
.payment-option strong, .payment-option small { display: block; }
.payment-option small { color: var(--muted); font-size: .65rem; }
.payment-option > svg { width: 17px; color: transparent; }
.payment-option:has(input:checked) > svg { color: #9b7eef; }
.promo-field { display: flex; gap: 8px; }
.promo-field input { min-width: 0; flex: 1; background: #0d1118; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; color: #fff; text-transform: uppercase; outline: 0; }
.form-feedback { min-height: 20px; margin: 8px 0 0; color: var(--muted); font-size: .72rem; }
.form-feedback.success { color: var(--green); }
.form-feedback.error { color: var(--coral); }
.payment-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }
.payment-primary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qris-panel, .upload-panel { min-height: 520px; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.qris-panel { text-align: center; }
.qris-panel h2 { font-size: 2rem; margin: 8px 0 20px; }
.payment-status { display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; border-radius: 5px; font-size: .68rem; font-weight: 800; }
.payment-status > span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(255,255,255,.05); }
.status-success { color: #65e2a8 !important; background: #12281f !important; border-color: #24553f !important; }
.status-info { color: #6adce6 !important; background: #10262a !important; border-color: #234c52 !important; }
.status-danger { color: #ff9299 !important; background: #2a161b !important; border-color: #582b34 !important; }
.status-warning { color: #f5cc72 !important; background: #2a2416 !important; border-color: #554825 !important; }
.status-pending { color: #c1aaff !important; background: #221a39 !important; border-color: #44336d !important; }
.qris-image { width: min(260px, 100%); aspect-ratio: 1; object-fit: contain; background: #fff; padding: 10px; border-radius: 7px; margin: 0 auto 14px; }
.qris-placeholder { width: min(260px, 100%); aspect-ratio: 1; margin: 0 auto 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #0c1017; border: 1px dashed #3c4351; border-radius: 7px; color: var(--muted); padding: 25px; }
.qris-placeholder svg { width: 60px; height: 60px; color: #8d70e2; margin-bottom: 15px; }
.qris-placeholder strong { color: #fff; }
.qris-placeholder span { font-size: .7rem; }
.payment-instructions { padding: 17px 0 0 20px; text-align: left; color: var(--muted); font-size: .72rem; }
.payment-instructions li { padding: 3px 0; }
.upload-panel h2 { font-size: 1.45rem; margin: 9px 0 7px; }
.upload-panel > div:first-child p { color: var(--muted); font-size: .75rem; }
.file-drop { min-height: 260px; margin: 26px 0 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #0d1118; border: 1px dashed #3d4555; border-radius: 7px; cursor: pointer; text-align: center; padding: 20px; }
.file-drop input { position: absolute; opacity: 0; }
.file-drop svg { width: 36px; height: 36px; color: #9d82ef; margin-bottom: 14px; }
.file-drop span { color: var(--muted); font-size: .7rem; }
.proof-received { min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 13px; }
.proof-received > svg { width: 55px; height: 55px; color: var(--green); }
.proof-received strong, .proof-received span { display: block; }
.proof-received span { color: var(--muted); font-size: .74rem; }
.invoice-panel { position: sticky; top: 96px; }
.invoice-heading { display: flex; align-items: center; justify-content: space-between; font-weight: 800; margin-bottom: 14px; }
.invoice-heading a svg { width: 17px; color: #ab92f2; }
.invoice-panel dl { margin: 0; border-top: 1px solid var(--line); }
.invoice-panel dl > div { display: flex; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: .72rem; }
.invoice-panel dt { color: var(--muted); }
.invoice-panel dd { margin: 0; text-align: right; font-weight: 650; max-width: 58%; overflow-wrap: anywhere; }
.invoice-total { padding: 18px 0; display: flex; justify-content: space-between; align-items: flex-end; }
.invoice-total span { color: var(--muted); font-size: .7rem; }
.invoice-total strong { color: #bca8fa; font: 700 1.25rem "Space Grotesk", sans-serif; }
.invoice-page { min-height: 80vh; }
.invoice-document { max-width: 850px; padding: 38px; background: #fff; color: #1a1d24; border-radius: var(--radius); }
.invoice-document .brand { color: #12151c; }
.invoice-document .brand-mark { color: #fff; }
.invoice-document-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid #dde0e6; }
.invoice-document-head > div:last-child { text-align: right; }
.invoice-document-head > div:last-child span, .invoice-document-head > div:last-child strong { display: block; }
.invoice-document-head > div:last-child span { color: #747b88; font-size: .68rem; }
.invoice-document-head > div:last-child strong { font-size: 1.1rem; }
.invoice-status-line { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; color: #6c7482; font-size: .72rem; }
.invoice-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; padding: 24px; background: #f4f5f8; border-radius: 6px; }
.invoice-columns small, .invoice-columns strong, .invoice-columns span { display: block; }
.invoice-columns small { color: #747b87; }
.invoice-columns span { color: #555d69; font-size: .76rem; }
.invoice-table { margin: 28px 0; }
.invoice-table > div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 13px 5px; border-bottom: 1px solid #e3e5e9; }
.invoice-table-head { color: #7d8490; font-size: .68rem; text-transform: uppercase; font-weight: 800; }
.invoice-grand-total { font-size: 1.1rem; border-bottom: 0 !important; }
.invoice-grand-total strong { color: #6940d7; }
.invoice-meta { padding: 20px 0; border-top: 1px solid #e0e3e8; }
.invoice-meta h2 { font-size: 1rem; margin: 16px 0 9px; }
.invoice-meta p { display: flex; justify-content: space-between; color: #646c78; margin: 5px 0; }
.invoice-meta p strong { color: #252a32; }
.invoice-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 22px; }
.transaction-check { padding: 100px 0; background: #0c1018; min-height: 530px; display: flex; align-items: center; }
.check-layout { display: grid; grid-template-columns: 1fr 430px; gap: 80px; align-items: center; }
.check-copy h1 { margin: 12px 0 16px; }
.check-copy p { color: var(--muted); max-width: 580px; }
.check-points { display: flex; gap: 20px; margin-top: 23px; color: #bac2cd; font-size: .75rem; }
.check-points span { display: flex; align-items: center; gap: 7px; }
.check-points svg { width: 16px; color: var(--green); }
.check-form-panel { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.check-form-panel form { display: flex; flex-direction: column; gap: 13px; }
.inline-alert { margin-top: 13px; padding: 11px; display: flex; gap: 8px; border: 1px solid var(--line); border-radius: 6px; font-size: .72rem; }
.inline-alert svg { width: 17px; flex: 0 0 auto; }
.inline-alert-error { color: #ff9da2; background: #26171b; border-color: #522a32; }
.transaction-result { max-width: 900px; }
.result-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.result-head h2 { margin: 5px 0 0; }
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.result-grid > div { padding: 18px; background: var(--surface); }
.result-grid small, .result-grid strong { display: block; }
.result-grid small { color: var(--muted); margin-bottom: 5px; }
.admin-note { display: flex; gap: 13px; margin: 18px 0; padding: 17px; background: #151b25; border-left: 3px solid var(--cyan); }
.admin-note svg { width: 20px; color: var(--cyan); flex: 0 0 auto; }
.admin-note strong { display: block; }
.admin-note p { color: var(--muted); margin: 3px 0 0; }
.promo-list { display: flex; flex-direction: column; gap: 13px; }
.promo-ticket { min-height: 150px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 25px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding-right: 24px; }
.promo-ticket-value { align-self: stretch; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #271d48; border-right: 1px dashed #7058b5; }
.promo-ticket-value span { color: #c7b7fb; font: 700 2.2rem "Space Grotesk", sans-serif; }
.promo-ticket-value small { color: #8d7cbd; font-weight: 800; }
.promo-ticket-info h2 { margin: 5px 0; font-size: 1.65rem; }
.promo-ticket-info p { color: var(--muted); margin: 0; }
.maintenance-body { min-height: 100vh; display: grid; place-items: center; background: #080a0f; padding: 24px; }
.maintenance-page { width: min(620px,100%); text-align: center; }
.maintenance-visual { width: 150px; height: 150px; display: grid; place-items: center; margin: 0 auto 26px; background: #171226; border: 1px solid #46346f; border-radius: 8px; box-shadow: 0 0 80px rgba(112,68,232,.22); overflow: hidden; }
.maintenance-visual img { width: 100%; height: 100%; object-fit: cover; }
.maintenance-visual svg { width: 58px; height: 58px; color: #a68afa; }
.maintenance-page h1 { margin: 10px 0 14px; }
.maintenance-page > p { color: var(--muted); }
.maintenance-eta { width: min(360px,100%); display: grid; grid-template-columns: 30px 1fr; text-align: left; margin: 25px auto; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 7px; }
.maintenance-eta svg { grid-row: span 2; width: 20px; color: var(--cyan); align-self: center; }
.maintenance-eta span { color: var(--muted); font-size: .67rem; }
.maintenance-eta strong { font-size: .82rem; }

/* Admin */
.admin-body { background: #090c11; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 240px minmax(0, 1fr); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; background: #0d1017; border-right: 1px solid var(--line-soft); z-index: 100; }
.admin-sidebar-head { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--line-soft); }
.admin-sidebar-close { display: none; }
.admin-nav { flex: 1; overflow-y: auto; padding: 17px 11px; }
.admin-nav-label { display: block; color: #606a7a; font-size: .6rem; font-weight: 800; text-transform: uppercase; padding: 15px 10px 7px; }
.admin-nav a { min-height: 42px; display: grid; grid-template-columns: 21px 1fr auto; align-items: center; gap: 10px; padding: 0 10px; color: #9da6b5; border-radius: 6px; font-size: .76rem; font-weight: 650; }
.admin-nav a:hover, .admin-nav a.active { background: #171c26; color: #fff; }
.admin-nav a.active { box-shadow: inset 2px 0 #8965ed; }
.admin-nav svg { width: 17px; }
.admin-nav b { min-width: 20px; height: 20px; display: grid; place-items: center; border-radius: 10px; background: #6540ce; color: #fff; font-size: .58rem; }
.admin-profile { min-height: 70px; display: grid; grid-template-columns: 36px 1fr 34px; gap: 9px; align-items: center; padding: 10px 12px; border-top: 1px solid var(--line-soft); }
.admin-profile > span { width: 35px; height: 35px; display: grid; place-items: center; background: #34265d; color: #c2afff; border-radius: 7px; font-weight: 800; }
.admin-profile strong, .admin-profile small { display: block; }
.admin-profile strong { font-size: .72rem; }
.admin-profile small { color: var(--muted); font-size: .6rem; }
.admin-profile .icon-button { width: 34px; height: 34px; }
.admin-main { min-width: 0; }
.admin-topbar { min-height: 72px; position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: 13px; padding: 0 26px; background: rgba(9,12,17,.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); }
.admin-topbar > div:nth-child(2) { flex: 1; }
.admin-topbar span { color: var(--muted); font-size: .58rem; text-transform: uppercase; font-weight: 800; }
.admin-topbar h1 { font-size: 1.05rem; margin: 0; }
.admin-menu-button { display: none; }
.admin-top-actions { display: flex; gap: 7px; }
.notification-button { position: relative; }
.notification-button > span { position: absolute; right: 8px; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.admin-content { padding: 24px; }
.admin-alert { min-height: 44px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid; border-radius: 7px; margin-bottom: 16px; }
.admin-alert svg { width: 18px; }
.admin-alert.success { color: #7ee8b7; background: #10251d; border-color: #28513e; }
.admin-alert.error { color: #ff9fa5; background: #28171b; border-color: #552b33; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.admin-stat-grid article { min-height: 126px; display: flex; align-items: center; gap: 13px; padding: 18px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.admin-stat-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 7px; flex: 0 0 auto; }
.admin-stat-icon svg { width: 20px; }
.admin-stat-icon.violet { color: #b59cff; background: #2a2049; }
.admin-stat-icon.cyan { color: #73dfe8; background: #142b30; }
.admin-stat-icon.green { color: #70e4af; background: #152b23; }
.admin-stat-icon.amber { color: #f2cf7e; background: #2a2518; }
.admin-stat-grid small, .admin-stat-grid strong, .admin-stat-grid article div > span { display: block; }
.admin-stat-grid small { color: var(--muted); font-size: .62rem; }
.admin-stat-grid strong { font: 700 1.45rem "Space Grotesk", sans-serif; margin: 2px 0; }
.admin-stat-grid article div > span { color: #717b8b; font-size: .58rem; }
.admin-panel { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.admin-dashboard-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; margin-bottom: 16px; }
.admin-panel-head { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 14px 17px; border-bottom: 1px solid var(--line-soft); }
.admin-panel-head h2 { font-size: .98rem; margin: 2px 0 0; }
.admin-panel-head small { display: block; color: var(--muted); font-size: .6rem; text-transform: uppercase; font-weight: 750; }
.admin-panel-head > svg { width: 18px; color: #7d8798; }
.admin-panel-head-wrap { flex-wrap: wrap; }
.status-pill { display: inline-flex; align-items: center; padding: 4px 7px; border: 1px solid transparent; border-radius: 5px; font-size: .6rem; font-weight: 800; white-space: nowrap; }
.bar-chart { height: 260px; display: flex; align-items: flex-end; justify-content: space-around; gap: 14px; padding: 35px 24px 20px; }
.bar-column { height: 100%; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 6px; color: var(--muted); font-size: .6rem; }
.bar { width: min(38px,80%); min-height: 8px; background: #7651dc; border-radius: 4px 4px 2px 2px; }
.bar-value { color: #aeb6c4; font-size: .58rem; }
.rank-list { padding: 13px 17px; }
.rank-list > div { min-height: 47px; display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid var(--line-soft); }
.rank-list > div:last-child { border-bottom: 0; }
.rank-list > div > span { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 5px; background: #242b37; color: #aab3c1; font-size: .62rem; }
.rank-list strong { font-size: .7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-list small { color: var(--muted); font-size: .6rem; }
.table-wrap { width: 100%; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.admin-table th { color: #778191; background: #0f131b; font-size: .58rem; text-transform: uppercase; }
.admin-table td { color: #cbd0d9; font-size: .68rem; }
.admin-table tbody tr:hover { background: #141923; }
.admin-table a { color: #b7a3f6; font-weight: 700; }
.admin-table td strong { color: #e8eaf0; }
.table-empty { text-align: center !important; color: var(--muted) !important; padding: 35px !important; }
.table-subtext { display: flex; align-items: center; gap: 4px; color: var(--muted); font-size: .58rem; margin-top: 2px; }
.table-subtext svg { width: 12px; }
.proof-tag { color: var(--green); }
.table-actions { display: flex; gap: 5px; }
.table-actions form { margin: 0; }
.table-actions .icon-button { width: 32px; height: 32px; }
.table-actions svg { width: 15px; }
.table-product { display: flex; align-items: center; gap: 9px; min-width: 150px; }
.table-product > span { width: 32px; height: 32px; display: grid; place-items: center; background: #29203f; border-radius: 5px; color: #bda8ff; font-weight: 800; font-size: .65rem; }
.table-product strong, .table-product small { display: block; }
.table-product small { color: var(--muted); }
.table-thumb { width: 48px; height: 34px; object-fit: cover; border-radius: 4px; }
.admin-split-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 16px; align-items: start; }
.admin-split-layout > .admin-panel:first-child { position: sticky; top: 96px; }
.admin-form { padding: 17px; display: flex; flex-direction: column; gap: 13px; }
.toggle-row { display: flex; flex-wrap: wrap; gap: 8px; }
.toggle-row label { display: inline-flex; align-items: center; gap: 7px; padding: 7px 9px; background: #0e1219; border: 1px solid var(--line); border-radius: 6px; font-size: .67rem; cursor: pointer; }
.toggle-row input { accent-color: var(--violet); }
.admin-list-panel { min-width: 0; }
.admin-search { min-height: 36px; width: 190px; }
.admin-search input { font-size: .7rem; }
.admin-filters { display: flex; gap: 7px; align-items: center; }
.admin-filters select { min-height: 38px; width: 180px; padding-block: 5px; font-size: .7rem; }
.admin-drawer-backdrop { position: fixed; inset: 0; z-index: 150; background: rgba(2,3,5,.66); display: flex; justify-content: flex-end; }
.admin-drawer { width: min(480px,100%); height: 100%; overflow-y: auto; background: #0e1219; border-left: 1px solid var(--line); box-shadow: var(--shadow); }
.admin-drawer-head { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #0e1219; z-index: 2; }
.admin-drawer-head h2 { font-size: 1rem; margin: 3px 0 0; }
.admin-drawer-head small { color: var(--muted); }
.drawer-section { padding: 18px; border-bottom: 1px solid var(--line); }
.drawer-section h3 { font-size: .8rem; }
.drawer-section dl { margin: 15px 0 0; }
.drawer-section dl > div { display: flex; justify-content: space-between; gap: 15px; padding: 7px 0; font-size: .68rem; border-bottom: 1px solid var(--line-soft); }
.drawer-section dt { color: var(--muted); }
.drawer-section dd { margin: 0; text-align: right; max-width: 60%; overflow-wrap: anywhere; }
.proof-preview { width: 100%; max-height: 300px; object-fit: contain; background: #080b10; border-radius: 6px; }
.payment-admin-list { padding: 10px; }
.payment-admin-list > a { min-height: 67px; display: grid; grid-template-columns: 40px 1fr 8px 18px; align-items: center; gap: 10px; padding: 10px; border-radius: 6px; border-bottom: 1px solid var(--line-soft); }
.payment-admin-list > a:hover, .payment-admin-list > a.active { background: #181d27; }
.payment-admin-list strong, .payment-admin-list small { display: block; }
.payment-admin-list strong { font-size: .72rem; }
.payment-admin-list small { color: var(--muted); font-size: .6rem; }
.payment-admin-list > a > svg { width: 16px; color: var(--muted); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; }
.status-dot.online { background: var(--green); }
.status-dot.offline { background: var(--coral); }
.settings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.settings-maintenance { grid-column: 1/-1; }
.maintenance-toggle { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 13px; background: #0e1219; border: 1px solid var(--line); border-radius: 7px; }
.maintenance-toggle strong, .maintenance-toggle span { display: block; }
.maintenance-toggle strong { font-size: .74rem; }
.maintenance-toggle div > span { color: var(--muted); font-size: .62rem; }
.switch input { position: absolute; opacity: 0; }
.switch > span { width: 44px; height: 24px; position: relative; display: block; border-radius: 12px; background: #333a47; transition: background .2s; }
.switch > span::after { content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%; left: 3px; top: 3px; background: #fff; transition: transform .2s; }
.switch input:checked + span { background: var(--violet-strong); }
.switch input:checked + span::after { transform: translateX(20px); }
.settings-save { display: flex; justify-content: flex-end; padding: 17px 0; }
.team-list { padding: 9px; }
.team-list article { min-height: 66px; display: grid; grid-template-columns: 38px 1fr auto auto; align-items: center; gap: 10px; padding: 9px; border-bottom: 1px solid var(--line-soft); }
.team-avatar { width: 36px; height: 36px; display: grid; place-items: center; background: #2b2149; color: #baa5fb; border-radius: 7px; font-weight: 800; }
.team-list strong, .team-list small { display: block; }
.team-list strong { font-size: .72rem; }
.team-list small { color: var(--muted); font-size: .6rem; }
.backup-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 16px; }
.backup-actions article { padding: 20px; }
.backup-actions h2 { font-size: 1rem; margin: 16px 0 7px; }
.backup-actions p { color: var(--muted); min-height: 55px; font-size: .7rem; }
.backup-actions form { display: flex; flex-direction: column; gap: 10px; }
.admin-login-body { min-height: 100vh; background: #080a0f; }
.admin-login { min-height: 100vh; display: grid; grid-template-columns: 1.1fr .9fr; }
.admin-login-visual { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 60px; }
.admin-login-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.admin-login-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,12,.22), rgba(6,8,12,.96)); }
.admin-login-visual > div:last-child { position: relative; z-index: 2; max-width: 620px; }
.admin-login-visual .brand { position: absolute; bottom: calc(100% + 120px); }
.admin-login-visual h1 { font-size: clamp(2.5rem,4.5vw,4.4rem); margin: 12px 0; }
.admin-login-visual p { color: #b7bfcb; max-width: 520px; }
.admin-login-form { display: grid; place-items: center; padding: 50px; background: #0c1017; }
.login-form-inner { width: min(390px,100%); }
.login-form-inner h2 { margin: 10px 0 7px; font-size: 1.8rem; }
.login-form-inner > p { color: var(--muted); margin-bottom: 28px; }
.login-form-inner form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.password-field { display: grid; grid-template-columns: 1fr 42px; }
.password-field input { border-radius: 6px 0 0 6px; }
.password-field .icon-button { border-radius: 0 6px 6px 0; height: 44px; }

@media (max-width: 1050px) {
    .nav-links { position: fixed; inset: 72px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px; background: #0c1017; border-bottom: 1px solid var(--line); }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line-soft); }
    .nav-links a::after { display: none; }
    .menu-toggle { display: inline-flex; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .payment-primary { grid-template-columns: 1fr; }
    .qris-panel, .upload-panel { min-height: auto; }
    .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-split-layout { grid-template-columns: 1fr; }
    .admin-split-layout > .admin-panel:first-child { position: static; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .desktop-only { display: none; }
    .hero-slider { min-height: 470px; height: calc(100svh - 106px); max-height: 560px; }
    .hero-background { object-position: 68% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(6,8,12,.97), rgba(6,8,12,.66)), linear-gradient(transparent 50%, var(--bg)); }
    .hero-content h1 { font-size: clamp(2.5rem, 10vw, 4rem); max-width: 560px; }
    .hero-content p { max-width: 500px; font-size: .9rem; }
    .hero-trust span:last-child { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid > div { border-bottom: 1px solid var(--line-soft); }
    .stats-grid > div:first-child { padding-left: 20px; }
    .stats-grid > div:nth-child(2) { border-right: 0; }
    .section { padding: 64px 0; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .process-layout, .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-intro { position: static; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 1/-1; }
    .checkout-layout, .payment-layout, .check-layout { grid-template-columns: 1fr; }
    .sticky-panel, .invoice-panel { position: static; }
    .payment-primary { grid-template-columns: repeat(2,1fr); }
    .result-grid { grid-template-columns: repeat(2,1fr); }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: fixed; left: 0; top: 0; width: 250px; transform: translateX(-100%); transition: transform .25s ease; box-shadow: var(--shadow); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-sidebar-close, .admin-menu-button { display: inline-flex; }
    .admin-dashboard-grid { grid-template-columns: 1fr; }
    .settings-grid { grid-template-columns: 1fr; }
    .settings-maintenance { grid-column: auto; }
    .backup-actions { grid-template-columns: 1fr; }
    .admin-login { grid-template-columns: 1fr; }
    .admin-login-visual { min-height: 360px; padding: 30px; }
    .admin-login-visual .brand { position: static; margin-bottom: 60px; }
    .admin-login-visual h1 { font-size: 2.2rem; }
    .admin-login-form { padding: 45px 24px; }
}

@media (max-width: 600px) {
    body { font-size: 14px; }
    .ticker-inner { width: 100%; padding-inline: 14px; }
    .site-header { height: 64px; }
    .nav-links { top: 64px; }
    .brand { font-size: 1.05rem; }
    .brand-mark { width: 32px; height: 32px; }
    .hero-slider { height: 490px; min-height: 490px; max-height: none; }
    .hero-content { justify-content: flex-end; padding-bottom: 76px; }
    .hero-content h1 { font-size: 2.5rem; margin-block: 11px; }
    .hero-content p { line-height: 1.55; }
    .hero-actions { width: 100%; }
    .hero-actions .button { flex: 1; padding-inline: 10px; }
    .hero-trust { gap: 13px; margin-top: 19px; }
    .hero-trust span { font-size: .65rem; }
    .slider-controls { bottom: 17px; justify-content: center; }
    .slider-controls .icon-button { display: none; }
    .stats-grid strong { font-size: 1.2rem; }
    .stats-grid span { font-size: .66rem; }
    .stats-grid > div { padding: 16px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
    .section-heading h2 { font-size: 1.9rem; }
    .category-grid { grid-template-columns: 1fr; }
    .category-item { min-height: 88px; }
    .product-grid { gap: 10px; }
    .product-cover { height: 150px; }
    .product-card-body { padding: 11px; min-height: 72px; }
    .product-card-body .icon-button { width: 34px; height: 34px; }
    .product-card h3 { font-size: .82rem; }
    .product-monogram { font-size: 1.55rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
    .footer-about, .footer-grid > div:last-child { grid-column: 1/-1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
    .promo-modal { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
    .promo-modal-image { min-height: 190px; max-height: 230px; }
    .promo-modal-body { padding: 28px 22px; }
    .page-hero { padding: 55px 0; }
    .page-hero h1 { font-size: 2.5rem; }
    .catalog-toolbar { align-items: stretch; flex-direction: column; }
    .product-detail-hero { min-height: 220px; }
    .product-detail-heading { padding-bottom: 35px; }
    .detail-logo { width: 58px; height: 58px; }
    .detail-title-row { align-items: flex-start; gap: 13px; }
    .detail-title-row h1 { font-size: 2.2rem; }
    .form-section { grid-template-columns: 1fr; padding: 18px; }
    .form-section-number { width: 32px; height: 32px; }
    .form-grid, .payment-grid { grid-template-columns: 1fr; }
    .nominal-grid { grid-template-columns: repeat(2,1fr); }
    .payment-primary { grid-template-columns: 1fr; }
    .qris-panel, .upload-panel { padding: 20px; }
    .invoice-document { padding: 22px 17px; border-radius: 0; }
    .invoice-document-head, .invoice-status-line { gap: 15px; }
    .invoice-columns { grid-template-columns: 1fr; }
    .invoice-actions { flex-direction: column; }
    .invoice-actions .button { width: 100%; }
    .transaction-check { padding: 65px 0; min-height: auto; }
    .check-layout { gap: 35px; }
    .check-points { flex-direction: column; gap: 8px; }
    .result-head { align-items: flex-start; flex-direction: column; }
    .result-grid { grid-template-columns: 1fr 1fr; }
    .promo-ticket { grid-template-columns: 100px 1fr; gap: 14px; padding-right: 14px; }
    .promo-ticket .button { grid-column: 1/-1; margin: 0 14px 14px; }
    .promo-ticket-value span { font-size: 1.5rem; }
    .admin-content { padding: 14px; }
    .admin-topbar { padding-inline: 14px; }
    .admin-stat-grid { grid-template-columns: 1fr; }
    .admin-stat-grid article { min-height: 105px; }
    .admin-panel-head { align-items: flex-start; }
    .admin-panel-head-wrap { flex-direction: column; }
    .admin-filters { width: 100%; flex-wrap: wrap; }
    .admin-search, .admin-filters select { width: 100%; }
    .bar-chart { height: 220px; padding-inline: 12px; }
    .team-list article { grid-template-columns: 38px 1fr auto; }
    .team-list article > .status-pill { grid-column: 2; justify-self: start; }
    .team-list article > .table-actions { grid-column: 3; grid-row: 1/3; }
    .admin-login-visual { display: none; }
    .admin-login-form { min-height: 100vh; }
    .toast { left: 14px; right: 14px; top: 76px; }
}

@media print {
    body { background: #fff; }
    .ticker, .site-header, .site-footer, .whatsapp-float, .invoice-actions, .toast { display: none !important; }
    .section.invoice-page { padding: 0; }
    .invoice-document { max-width: none; width: 100%; }
}

.brand{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.brand-icon{
    width:52px;
    height:52px;
    object-fit:contain;
}

@media (max-width:768px){
    .brand-icon{
        width:44px;
        height:44px;
    }
}

@media (max-width: 768px){
    .navbar{
        gap: 0;
    }

    .brand{
        margin-right: auto;
    }

    .menu-toggle{
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.nominal-card-content{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.nominal-icon{
    width:42px;
    height:42px;
    object-fit:contain;
}

@media (max-width: 768px){
    .product-detail-hero{
        min-height: 220px !important;
        padding: 80px 0 40px !important;
    }

    .product-detail-bg{
        height: 360px !important;
        object-fit: cover;
    }

    .product-detail-heading{
        padding-top: 40px !important;
    }

    .section{
        padding-top: 28px !important;
    }
}

@media (max-width: 768px){
    .product-detail-hero{
        min-height: 300px !important;
        padding-bottom: 24px !important;
    }

    .product-detail-bg{
        height: 300px !important;
    }
}

@media (max-width: 600px){
    .product-detail-hero{
        min-height: 180px !important;
        height: 180px !important;
    }

    .product-detail-heading{
        padding-bottom: 12px !important;
    }

    .breadcrumb{
        margin-bottom: 8px !important;
    }

    .product-detail-hero + .section{
        padding-top: 16px !important;
    }
}

.nominal-group-title{
    grid-column:1/-1;
    margin:24px 0 8px;
    padding-top:12px;
    border-top:1px solid #2a3040;
    color:#a98cff;
    font-size:.82rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.nominal-group-title:first-child{
    margin-top:0;
    padding-top:0;
    border-top:none;
}

//css

.nominal-card-content{
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;
    padding-bottom:34px; /* ruang untuk badge */
}

.instant-badge{
    position:absolute;
    right:8px;
    bottom:2px;
}

.instant-badge img{
    width:56px;
    height:auto;
}

.payment-logo-img{
    width:36px;
    height:36px;
    object-fit:contain;
    display:block;
}