:root {
  --void: #020510; --deep: #060d1f; --cosmos: #0a1628; --nebula: #0f1f40;
  --star-blue: #1e40af; --pulse: #3b82f6; --glow: #60a5fa; --aurora: #818cf8;
  --nova: #a78bfa; --cyan: #22d3ee; --mint: #34d399; --gold: #fbbf24;
  --white: #f8fafc; --dim: #94a3b8; --mute: #475569;
  --border: rgba(96,165,250,0.15); --border-bright: rgba(96,165,250,0.4);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Exo 2', sans-serif; background: var(--void); color: var(--white); min-height: 100vh; overflow-x: hidden; }

/* STARFIELD */
#starfield { position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 20% 30%, rgba(30,64,175,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(129,140,248,0.09) 0%, transparent 55%),
              radial-gradient(ellipse at 50% 10%, rgba(34,211,238,0.06) 0%, transparent 45%), var(--void); }
.star { position: absolute; background: white; border-radius: 50%; animation: twinkle var(--dur,3s) ease-in-out infinite; z-index: 0; }
@keyframes twinkle { 0%,100% { opacity: var(--lo,.2); transform: scale(1); } 50% { opacity: 1; transform: scale(1.6); } }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(2,5,16,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 66px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.08em; color: var(--white); text-decoration: none; }
.nav-logo { width: 36px; height: 36px; background: linear-gradient(135deg, var(--pulse), var(--aurora)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 0 16px rgba(96,165,250,0.4); }
.nav-brand span { background: linear-gradient(90deg, var(--glow), var(--aurora)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.btn-wa { background: linear-gradient(135deg, #16a34a, #15803d); color: white; border: none; border-radius: 10px; padding: 9px 20px; font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; text-decoration: none; display: flex; align-items: center; gap: 7px; transition: all 0.2s; box-shadow: 0 0 12px rgba(22,163,74,0.3); }
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 0 20px rgba(22,163,74,0.5); }

/* HERO */
.hero { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 72px 48px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(96,165,250,0.1); border: 1px solid var(--border-bright); border-radius: 50px; padding: 5px 14px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: var(--glow); text-transform: uppercase; margin-bottom: 20px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,211,238,0.5); } 50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,211,238,0); } }
.hero h1 { font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 900; line-height: 1.1; margin-bottom: 16px; background: linear-gradient(135deg, #f8fafc 0%, var(--glow) 50%, var(--aurora) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--dim); font-size: 1rem; line-height: 1.65; margin-bottom: 28px; font-weight: 400; }
.btn-primary { background: linear-gradient(135deg, var(--pulse), var(--aurora)); color: white; border: none; border-radius: 12px; padding: 13px 26px; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s; box-shadow: 0 0 24px rgba(59,130,246,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(59,130,246,0.55); }

/* UPLOAD CARD */
.upload-card { background: rgba(10,22,40,0.8); border: 1px solid var(--border); border-radius: 20px; padding: 24px; backdrop-filter: blur(12px); box-shadow: 0 0 40px rgba(59,130,246,0.08), inset 0 1px 0 rgba(255,255,255,0.05); }
.drop-zone { border: 2px dashed rgba(96,165,250,0.3); border-radius: 14px; background: rgba(30,64,175,0.06); padding: 28px 16px; text-align: center; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden; }
.drop-zone::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(96,165,250,0.05) 0%, transparent 70%); opacity: 0; transition: opacity 0.3s; }
.drop-zone:hover::before,.drop-zone.dragover::before { opacity: 1; }
.drop-zone.dragover { border-color: var(--glow); background: rgba(96,165,250,0.1); }
.drop-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.drop-zone p { color: var(--dim); font-size: 0.9rem; margin-bottom: 14px; }
.drop-zone p span { color: var(--white); font-weight: 600; }
.drop-zone small { color: var(--mute); font-size: 0.74rem; display: block; margin-top: 10px; }
.btn-upload-file { background: linear-gradient(135deg, var(--pulse), var(--star-blue)); color: white; border: none; border-radius: 9px; padding: 9px 18px; font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 0 12px rgba(59,130,246,0.3); }
.btn-upload-file:hover { box-shadow: 0 0 20px rgba(59,130,246,0.5); }
#fileInput { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.uploaded-files { display: flex; flex-direction: column; gap: 7px; max-height: 150px; overflow-y: auto; margin-top: 10px; }
.file-chip { display: flex; align-items: center; gap: 8px; background: rgba(30,64,175,0.15); border: 1px solid rgba(96,165,250,0.2); border-radius: 8px; padding: 7px 11px; font-size: 0.8rem; animation: fadeIn 0.2s ease; }
.file-chip .fname { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--white); }
.file-chip .fsize { color: var(--mute); font-size: 0.7rem; flex-shrink: 0; }
.file-chip .rm { background: none; border: none; cursor: pointer; color: var(--mute); font-size: 0.9rem; line-height: 1; padding: 0 2px; transition: color 0.2s; }
.file-chip .rm:hover { color: #f87171; }

/* STEPS */
.steps-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto 48px; padding: 0 48px; }
.step-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aurora); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.step-label::before { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--aurora), transparent); max-width: 60px; }
.step-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(129,140,248,0.3)); }

/* STORE SECTION */
.store-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto 32px; padding: 0 48px; }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-num { width: 28px; height: 28px; background: linear-gradient(135deg, var(--pulse), var(--aurora)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.section-title { font-family: 'Orbitron', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; color: var(--white); }
.section-sub { font-size: 0.75rem; color: var(--mute); margin-top: 2px; }
.stores-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.store-card { background: rgba(10,22,40,0.7); border: 1px solid var(--border); border-radius: 14px; padding: 16px 10px 14px; text-align: center; cursor: pointer; transition: all 0.25s; position: relative; overflow: hidden; }
.store-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(96,165,250,0.07) 0%, transparent 70%); opacity: 0; transition: opacity 0.25s; }
.store-card:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(59,130,246,0.15); }
.store-card:hover::after { opacity: 1; }
.store-card.selected { border-color: var(--glow); background: rgba(30,64,175,0.2); box-shadow: 0 0 20px rgba(96,165,250,0.25); }
.store-card.selected::after { opacity: 1; }
.store-icon-wrap { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, rgba(30,64,175,0.5), rgba(129,140,248,0.3)); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 1.3rem; border: 1px solid rgba(96,165,250,0.2); transition: all 0.2s; }
.store-card.selected .store-icon-wrap { background: linear-gradient(135deg, var(--pulse), var(--aurora)); border-color: var(--glow); box-shadow: 0 0 12px rgba(96,165,250,0.4); }
.store-name { font-family: 'Orbitron', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.store-meta { font-size: 0.66rem; color: var(--mute); margin-top: 3px; line-height: 1.4; }
.store-status { display: inline-flex; align-items: center; gap: 4px; font-size: 0.62rem; font-weight: 600; margin-top: 4px; color: var(--mint); }
.store-status::before { content: ''; width: 5px; height: 5px; background: var(--mint); border-radius: 50%; }
.store-check { position: absolute; top: 7px; right: 7px; width: 18px; height: 18px; background: var(--glow); border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--void); font-weight: 900; }
.store-card.selected .store-check { display: flex; }

/* SERVICES */
.services-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto 48px; padding: 0 48px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { background: rgba(10,22,40,0.7); border: 1px solid var(--border); border-radius: 16px; padding: 22px 18px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: all 0.25s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--pulse), var(--aurora)); opacity: 0; transition: opacity 0.2s; }
.service-card:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(59,130,246,0.15); }
.service-card:hover::before { opacity: 1; }
.service-card.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; filter: grayscale(0.5); }
.service-icon { width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0; background: rgba(30,64,175,0.3); border: 1px solid rgba(96,165,250,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.service-card h3 { font-family: 'Orbitron', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.03em; }
.service-card p { font-size: 0.75rem; color: var(--mute); margin-top: 3px; }
.badge-ready { display: none; position: absolute; top: 9px; right: 9px; background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.4); color: var(--mint); font-size: 0.62rem; font-weight: 700; border-radius: 20px; padding: 2px 8px; letter-spacing: 0.05em; }
.badge-ready.show { display: block; }

/* FOOTER */
footer { position: relative; z-index: 1; background: rgba(6,13,31,0.9); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 18px 48px; display: flex; flex-wrap: wrap; gap: 12px 36px; align-items: center; }
.footer-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--mute); }
.footer-item strong { color: var(--dim); }
.footer-item svg { color: var(--glow); flex-shrink: 0; }

/* MODALS */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(2,5,16,0.7); backdrop-filter: blur(6px); z-index: 200; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.active { display: flex; animation: fadeIn 0.18s ease; }
.modal { background: var(--cosmos); border: 1px solid var(--border-bright); border-radius: 22px; width: 100%; max-width: 520px; box-shadow: 0 0 60px rgba(59,130,246,0.2), 0 24px 64px rgba(0,0,0,0.5); overflow: hidden; animation: slideUp 0.22s ease; max-height: 90vh; display: flex; flex-direction: column; }
.modal-header { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); background: rgba(30,64,175,0.2); flex-shrink: 0; }
.modal-header h2 { font-family: 'Orbitron', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.modal-close { background: rgba(255,255,255,0.08); border: 1px solid var(--border); color: var(--dim); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close:hover { background: rgba(248,113,113,0.15); border-color: rgba(248,113,113,0.3); color: #f87171; }
.modal-body { padding: 22px; overflow-y: auto; flex: 1; scrollbar-width: thin; scrollbar-color: var(--border-bright) transparent; }
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 99px; }
.modal-footer { padding: 16px 22px; border-top: 1px solid var(--border); flex-shrink: 0; background: rgba(6,13,31,0.5); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--dim); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select { width: 100%; background: rgba(6,13,31,0.8); border: 1px solid var(--border); border-radius: 10px; padding: 9px 13px; font-family: 'Exo 2', sans-serif; font-size: 0.9rem; color: var(--white); outline: none; transition: border-color 0.2s; }
.form-group select option { background: var(--cosmos); color: var(--white); }
.form-group input:focus, .form-group select:focus { border-color: var(--glow); }
.counter-row { display: flex; align-items: center; gap: 10px; }
.counter-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); background: rgba(30,64,175,0.2); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: var(--glow); font-weight: 700; }
.counter-btn:hover { border-color: var(--glow); background: rgba(96,165,250,0.1); }
.counter-val { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; width: 36px; text-align: center; color: var(--white); }
.btn-order { width: 100%; background: linear-gradient(135deg, var(--pulse), var(--aurora)); color: white; border: none; border-radius: 12px; padding: 13px; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; margin-top: 6px; transition: all 0.2s; box-shadow: 0 0 20px rgba(59,130,246,0.3); }
.btn-order:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(59,130,246,0.5); }

/* Price tag */
.price-tag { background: rgba(30,64,175,0.2); border: 1px solid var(--border-bright); border-radius: 10px; padding: 10px 14px; margin-top: 14px; margin-bottom: 4px; display: flex; align-items: center; justify-content: space-between; }
.price-tag .pt-label { font-size: 0.78rem; color: var(--dim); }
.price-tag .pt-val { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; color: var(--glow); }

/* Section divider in modal */
.modal-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.modal-section-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aurora); margin-bottom: 10px; }

/* Color picker */
.color-picker-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 6px; }
.color-swatch { width: 100%; aspect-ratio: 1; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: all 0.2s; position: relative; }
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.selected { border-color: var(--glow); box-shadow: 0 0 8px rgba(96,165,250,0.5); }
.color-swatch.selected::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900; color: white; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.color-label { font-size: 0.65rem; color: var(--mute); text-align: center; margin-top: 3px; }
.color-group { margin-bottom: 12px; }
.color-group-label { font-size: 0.72rem; color: var(--dim); font-weight: 600; margin-bottom: 6px; }
.selected-color-display { display: flex; align-items: center; gap: 8px; margin-top: 6px; padding: 6px 10px; background: rgba(6,13,31,0.6); border: 1px solid var(--border); border-radius: 8px; }
.selected-color-swatch { width: 20px; height: 20px; border-radius: 4px; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.2); }
.selected-color-text { font-size: 0.78rem; color: var(--dim); }

/* QRIS MODAL */
.qris-body { padding: 22px; text-align: center; overflow-y: auto; }
.qris-body h3 { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; letter-spacing: 0.04em; }
.qris-body .sub { color: var(--dim); font-size: 0.82rem; margin-bottom: 18px; }
.qris-img-wrap { border: 2px solid rgba(96,165,250,0.3); border-radius: 16px; padding: 14px; display: inline-block; margin-bottom: 14px; background: white; position: relative; box-shadow: 0 0 24px rgba(96,165,250,0.15); }
.qris-img-wrap img { width: 190px; height: 190px; display: block; border-radius: 6px; }
.qris-actions { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; }
.btn-download-qr { background: rgba(96,165,250,0.1); border: 1px solid var(--border-bright); color: var(--glow); border-radius: 8px; padding: 7px 14px; font-family: 'Exo 2', sans-serif; font-size: 0.78rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all 0.2s; }
.btn-download-qr:hover { background: rgba(96,165,250,0.18); box-shadow: 0 0 10px rgba(96,165,250,0.2); }
.upload-proof-area { border: 2px dashed rgba(96,165,250,0.25); border-radius: 12px; padding: 14px 10px; margin-bottom: 14px; cursor: pointer; transition: all 0.2s; background: rgba(30,64,175,0.05); }
.upload-proof-area:hover { border-color: rgba(96,165,250,0.5); background: rgba(30,64,175,0.1); }
.upload-proof-area.has-file { border-color: var(--mint); background: rgba(52,211,153,0.07); }
.upload-proof-area p { font-size: 0.8rem; color: var(--dim); margin-top: 6px; }
.upload-proof-area .proof-icon { font-size: 1.5rem; }
.proof-name { font-size: 0.75rem; color: var(--mint); font-weight: 600; margin-top: 4px; }
#proofInput { display: none; }
.qris-total { background: rgba(30,64,175,0.15); border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px; font-size: 0.85rem; color: var(--dim); margin-bottom: 6px; }
.qris-total strong { color: var(--glow); font-size: 1.15rem; display: block; margin-top: 2px; font-family: 'Orbitron', sans-serif; }
.qris-note { font-size: 0.72rem; color: var(--mute); margin-bottom: 14px; }
.btn-pay { width: 100%; background: linear-gradient(135deg, #16a34a, #15803d); color: white; border: none; border-radius: 12px; padding: 13px; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 0 16px rgba(22,163,74,0.3); }
.btn-pay:hover { transform: translateY(-1px); box-shadow: 0 0 24px rgba(22,163,74,0.5); }
.btn-pay:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* SUCCESS MODAL */
.success-body { padding: 28px 22px; text-align: center; }
.success-icon { font-size: 3.5rem; margin-bottom: 14px; }
.success-body h3 { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.success-body p { color: var(--dim); font-size: 0.87rem; line-height: 1.6; }
.wa-note { margin-top: 14px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); border-radius: 10px; padding: 10px 14px; color: var(--mint); font-size: 0.8rem; font-weight: 600; }
.btn-new-order { width: 100%; background: linear-gradient(135deg, var(--pulse), var(--aurora)); color: white; border: none; border-radius: 12px; padding: 13px; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; margin-top: 18px; transition: all 0.2s; box-shadow: 0 0 16px rgba(59,130,246,0.3); }
.btn-new-order:hover { transform: translateY(-1px); box-shadow: 0 0 24px rgba(59,130,246,0.5); }

/* STORE MODAL */
.store-modal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px; }
.store-modal-item { background: rgba(6,13,31,0.8); border: 1px solid var(--border); border-radius: 13px; padding: 14px 12px; cursor: pointer; transition: all 0.2s; text-align: center; }
.store-modal-item:hover { border-color: var(--border-bright); background: rgba(30,64,175,0.15); }
.store-modal-item.selected { border-color: var(--glow); background: rgba(30,64,175,0.25); box-shadow: 0 0 16px rgba(96,165,250,0.2); }
.store-modal-item .si { font-size: 1.5rem; margin-bottom: 7px; }
.store-modal-item .sn { font-family: 'Orbitron', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--white); }
.store-modal-item .sm { font-size: 0.68rem; color: var(--mute); margin-top: 3px; line-height: 1.4; }
.store-modal-item .ss { font-size: 0.65rem; color: var(--mint); margin-top: 5px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 4px; }
.store-modal-item .ss::before { content: ''; width: 5px; height: 5px; background: var(--mint); border-radius: 50%; }
.btn-select-store { width: 100%; background: linear-gradient(135deg, var(--pulse), var(--aurora)); color: white; border: none; border-radius: 12px; padding: 12px; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; box-shadow: 0 0 16px rgba(59,130,246,0.3); flex-shrink: 0; }
.btn-select-store:hover { box-shadow: 0 0 26px rgba(59,130,246,0.5); }
.btn-select-store:disabled { opacity: 0.4; cursor: not-allowed; }

/* SELECTED STORE BANNER */
.selected-store-banner { display: none; background: rgba(30,64,175,0.15); border: 1px solid rgba(96,165,250,0.25); border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; flex-direction: row; align-items: center; gap: 10px; }
.selected-store-banner.show { display: flex; }
.ssb-icon { font-size: 1.4rem; }
.ssb-info { flex: 1; }
.ssb-name { font-family: 'Orbitron', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--white); }
.ssb-detail { font-size: 0.7rem; color: var(--mute); margin-top: 2px; }
.btn-change-store { background: rgba(96,165,250,0.1); border: 1px solid var(--border-bright); color: var(--glow); border-radius: 8px; padding: 5px 12px; font-size: 0.72rem; font-weight: 600; cursor: pointer; font-family: 'Exo 2', sans-serif; transition: all 0.2s; }
.btn-change-store:hover { background: rgba(96,165,250,0.18); }

/* TOAST */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--nebula); color: var(--white); border: 1px solid var(--border-bright); padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; z-index: 500; transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0; pointer-events: none; white-space: nowrap; max-width: 90vw; box-shadow: 0 0 20px rgba(59,130,246,0.2); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* STEP INDICATORS */
.step-flow { display: flex; align-items: center; gap: 0; margin-bottom: 32px; }
.step-item { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; transition: all 0.3s; white-space: nowrap; }
.step-item .snum { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; transition: all 0.3s; }
.step-item.pending { color: var(--mute); }
.step-item.pending .snum { background: rgba(71,85,105,0.3); border: 1px solid rgba(71,85,105,0.4); color: var(--mute); }
.step-item.active { color: var(--glow); }
.step-item.active .snum { background: linear-gradient(135deg, var(--pulse), var(--aurora)); color: white; box-shadow: 0 0 10px rgba(59,130,246,0.4); }
.step-item.done { color: var(--mint); }
.step-item.done .snum { background: rgba(52,211,153,0.2); border: 1px solid rgba(52,211,153,0.4); color: var(--mint); }
.step-arrow { color: var(--mute); margin: 0 4px; font-size: 0.7rem; }

/* STORE CONTACT MODAL */
.store-contact-grid { display: flex; flex-direction: column; gap: 10px; padding: 20px; }
.store-contact-item { background: rgba(6,13,31,0.8); border: 1px solid var(--border); border-radius: 13px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; transition: all 0.2s; }
.store-contact-item:hover { border-color: var(--border-bright); background: rgba(30,64,175,0.1); }
.sci-icon { font-size: 1.8rem; flex-shrink: 0; }
.sci-info { flex: 1; }
.sci-name { font-family: 'Orbitron', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--white); }
.sci-detail { font-size: 0.7rem; color: var(--mute); margin-top: 2px; }
.sci-wa { background: linear-gradient(135deg, #16a34a, #15803d); color: white; border: none; border-radius: 9px; padding: 7px 14px; font-family: 'Exo 2', sans-serif; font-weight: 600; font-size: 0.78rem; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: all 0.2s; flex-shrink: 0; }
.sci-wa:hover { box-shadow: 0 0 12px rgba(22,163,74,0.4); }

/* Sub-option box */
.sub-option-box { background: rgba(30,64,175,0.1); border: 1px solid var(--border); border-radius: 10px; padding: 14px; margin-top: 8px; }
.sub-option-box .form-group:last-child { margin-bottom: 0; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 900px) {
  nav { padding: 0 18px; }
  .hero { grid-template-columns: 1fr; padding: 28px 18px; gap: 24px; }
  .hero h1 { font-size: 2rem; }
  .store-section, .services-section, .steps-section { padding: 0 18px; }
  .stores-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { padding: 14px 18px; flex-direction: column; align-items: flex-start; }
  .store-modal-grid { grid-template-columns: 1fr 1fr; }
  .step-flow { flex-wrap: wrap; gap: 4px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}