@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f9f9f9;
  --border: #eaeaea;
  --text: #111111;
  --text-m: #666666;
  --text-l: #999999;
  --primary: #000000;
  --primary-text: #ffffff;
  --error: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --radius: 12px;
  --radius-s: 8px;
  --nav-h: 64px;
  --font-main: 'Inter', sans-serif;
}

[data-theme="dark"] {
  --bg: #111111;
  --bg-alt: #1c1c1c;
  --border: #2d2d2d;
  --text: #f1f1f1;
  --text-m: #a1a1a1;
  --text-l: #555555;
  --primary: #f1f1f1;
  --primary-text: #111111;
}

[data-theme="dark"] .btn-primary { background: var(--primary); color: var(--primary-text); }
[data-theme="dark"] .navbar { background: rgba(17, 17, 17, 0.98); }
[data-theme="dark"] .overlay-full, [data-theme="dark"] .modal-content { background: var(--bg); color: var(--text); }
[data-theme="dark"] .option-card { background: var(--bg-alt); }
[data-theme="dark"] .option-card.active { background: #2a2a2a; border-color: var(--primary); }
[data-theme="dark"] .payment-method { background: rgba(241, 241, 241, 0.04); }
[data-theme="dark"] .number-badge { background: var(--text); color: var(--bg); }
[data-theme="dark"] .toast { background: #f1f1f1; color: #111111; }
[data-theme="dark"] .pwa-banner { background: var(--bg-alt); border-color: var(--border); }
[data-theme="dark"] .product-header { background: var(--bg); }
[data-theme="dark"] .checkout-section { background: var(--bg); }
[data-theme="dark"] body { background: var(--bg); }
[data-theme="dark"] #fixedBottomBar { background: var(--bg); border-top-color: var(--border); }
[data-theme="dark"] .admin-sidebar { background: #111111; border-color: #2d2d2d; }
[data-theme="dark"] .admin-sidebar-header { color: #f1f1f1; border-color: #2d2d2d; }
[data-theme="dark"] .admin-nav button:hover { background: rgba(255,255,255,0.05); color: #fff; }
[data-theme="dark"] .admin-nav button.active { background: #f1f1f1; color: #111111; }
[data-theme="dark"] .admin-card, [data-theme="dark"] .admin-stat-box { background: #111111; color: #f1f1f1; border-color: #2d2d2d; }
[data-theme="dark"] .bulk-grid.header { background: #1c1c1c; }
[data-theme="dark"] .rules-box { background: #2a2000; border-color: #4a3800; color: #fde68a; }
[data-theme="dark"] .rules-box a { color: #fde68a; }
[data-theme="dark"] .announcement-banner { background: #3d2e00; color: #fde68a; }
[data-theme="dark"] .dropzone:hover { background: rgba(255,255,255,0.05); }

[data-theme="light"] .admin-sidebar { background: #f9f9f9; border-color: #eaeaea; }
[data-theme="light"] .admin-sidebar-header { color: #111111; border-color: #eaeaea; }
[data-theme="light"] .admin-nav button:hover { background: rgba(0,0,0,0.05); color: #111111; }
[data-theme="light"] .admin-nav button.active { background: #000000; color: #ffffff; }
[data-theme="light"] .admin-card, [data-theme="light"] .admin-stat-box { background: #ffffff; color: #111111; border-color: #eaeaea; }
[data-theme="light"] .bulk-grid.header { background: #f9f9f9; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--bg); color: var(--text); display: flex; flex-direction: column; min-height: 100vh; -webkit-font-smoothing: antialiased; padding-top: var(--nav-h); transition: background 0.2s, color 0.2s; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-main); border: none; background: none; color: inherit; }
input, select, textarea { font-family: var(--font-main); }
.hidden { display: none !important; }

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.w-full { width: 100%; }
.max-w-screen { max-width: 600px; margin: 0 auto; }
.max-w-admin { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-m); }
.text-error { color: var(--error); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.bg-alt { background: var(--bg-alt); }
.bg-base { background: var(--bg); }
.bg-error { background: var(--error); }
.bg-success { background: var(--success); }
.bg-warning { background: var(--warning); }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.rounded-md { border-radius: var(--radius-s); }
.rounded-lg { border-radius: var(--radius); }
.border { border: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.block { display: block; }
.inline-block { display: inline-block; }

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border) 50%, var(--bg-alt) 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
  border-radius: var(--radius-s);
}
.skeleton-text { height: 1em; margin-bottom: 0.5em; width: 100%; }
.skeleton-text.short { width: 50%; }
.skeleton-img { width: 100%; aspect-ratio: 1; border-radius: var(--radius); }
.skeleton-avatar { width: 64px; height: 64px; border-radius: 12px; }
.skeleton-btn { height: 48px; width: 100%; border-radius: var(--radius-s); }
.skeleton-card { height: 150px; width: 100%; border-radius: var(--radius); }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; }
.section-title { font-size: 1.25rem; margin: 24px 0 16px; padding: 0 16px; }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: rgba(255,255,255,0.98); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid var(--border); transition: background 0.2s, border-color 0.2s; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; cursor: pointer; }
.nav-logo img { height: 32px; width: 32px; border-radius: 6px; object-fit: cover; }
.nav-icons { display: flex; gap: 16px; align-items: center; }
.nav-icons button { display: flex; align-items: center; justify-content: center; color: var(--text); }

.announcement-banner { background: #fef08a; color: #854d0e; text-align: center; padding: 10px 16px; font-size: 0.85rem; font-weight: 600; display: none; }
.warning-banner { background: #fee2e2; color: #991b1b; padding: 12px; border-radius: var(--radius-s); font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; border: 1px solid #fecaca; }
.pwa-banner { margin: 16px; padding: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); display: none; align-items: center; gap: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 16px 40px; }
@media (min-width: 600px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .shop-grid { grid-template-columns: repeat(4, 1fr); } }

.item-card { text-align: center; cursor: pointer; position: relative; transition: transform 0.2s, opacity 0.2s; display: block; }
.item-card:active { transform: scale(0.97); }
.item-card.sold-out { opacity: 0.6; filter: grayscale(100%); pointer-events: none; }
.item-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); margin-bottom: 8px; border: 1px solid var(--border); background: var(--bg-alt); }
.item-name { font-size: 0.85rem; font-weight: 500; line-height: 1.3; color: var(--text); }
.sold-badge { position: absolute; top: 8px; right: 8px; background: var(--error); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 4px 8px; border-radius: 4px; z-index: 10; }

.btn-primary { background: var(--primary); color: var(--primary-text); font-weight: 600; padding: 14px 20px; border-radius: var(--radius-s); width: 100%; transition: 0.2s; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-outline { border: 1px solid var(--border); background: transparent; color: var(--text); padding: 12px 20px; border-radius: var(--radius-s); width: 100%; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; }
.btn-outline:hover { background: var(--bg-alt); }

.form-group { margin-bottom: 16px; text-align: left; width: 100%; }
.form-label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-m); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input { width: 100%; padding: 14px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-s); font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s, background 0.2s; }
.form-input:focus { border-color: var(--text); background: var(--bg); }
.form-input::placeholder { color: var(--text-l); }

.dropzone { position: relative; border: 2px dashed var(--border); border-radius: var(--radius-s); padding: 32px 16px; text-align: center; background: var(--bg-alt); transition: all 0.2s ease; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.dropzone:hover { border-color: var(--primary); background: rgba(0,0,0,0.02); }
.dropzone input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 10; }
.dropzone-icon { color: var(--text-m); transition: color 0.2s; }
.dropzone:hover .dropzone-icon { color: var(--primary); }
.dropzone-text { font-size: 0.9rem; color: var(--text-m); font-weight: 500; }
.dropzone.has-file { border-color: var(--success); background: rgba(16, 185, 129, 0.05); }
.dropzone.has-file .dropzone-icon { color: var(--success); }
.dropzone.has-file .dropzone-text { color: var(--success); font-weight: 600; }

.product-header { padding: 24px 16px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--border); }
.product-header img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; border: 1px solid var(--border); }
.product-header h1 { font-size: 1.2rem; margin-bottom: 4px; }
.product-header p { font-size: 0.85rem; color: var(--text-m); display: flex; align-items: center; gap: 12px; }

.product-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px; }
.option-card { border: 1px solid var(--border); border-radius: var(--radius-s); padding: 16px 8px; text-align: center; cursor: pointer; transition: 0.2s; background: var(--bg); }
.option-card.active { border-color: var(--primary); background: rgba(0,0,0,0.03); }
.option-card.out-of-stock-option { opacity: 0.45; pointer-events: none; }
.option-card h3 { font-size: 0.9rem; margin-bottom: 4px; color: var(--text); }
.option-card p { font-size: 0.8rem; color: var(--primary); font-weight: 600; }
.option-card .stock-out-label { font-size: 0.7rem; color: var(--error); font-weight: 700; display: block; margin-top: 4px; }

.checkout-section { padding: 24px 16px; border-top: 8px solid var(--bg-alt); transition: background 0.2s; }
.checkout-section h2 { font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.number-badge { background: var(--primary); color: var(--primary-text); width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.8rem; flex-shrink: 0; }

.payment-method { border: 2px solid var(--primary); border-radius: var(--radius-s); padding: 16px; display: flex; align-items: center; justify-content: space-between; background: rgba(0,0,0,0.02); margin-bottom: 16px; }
.payment-method span { font-weight: 600; }

.qty-selector { display: flex; align-items: center; justify-content: space-between; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-s); overflow: hidden; margin-bottom: 8px; }
.qty-btn { width: 52px; height: 52px; font-size: 1.4rem; font-weight: 600; color: var(--text); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.qty-btn:active, .qty-btn:hover { background: var(--border); }
.qty-display { flex: 1; text-align: center; font-weight: 700; font-size: 1.2rem; color: var(--text); }
.stock-indicator { font-size: 0.78rem; color: var(--text-m); margin-top: 6px; text-align: right; }
.stock-indicator.low-stock { color: var(--error); font-weight: 600; }

.overlay-full { position: fixed; inset: 0; background: var(--bg); z-index: 200; display: flex; flex-direction: column; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; }
.overlay-full.open { transform: translateY(0); }
.overlay-header { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 1.1rem; position: sticky; top: 0; background: var(--bg); z-index: 10; color: var(--text); }

.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 16px; }
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-content { background: var(--bg); width: 100%; max-width: 400px; border-radius: var(--radius); padding: 24px; transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s; max-height: 90vh; overflow-y: auto; color: var(--text); }
.modal-bg.open .modal-content { transform: scale(1); }
.modal-content button, .overlay-header button { color: var(--text); }

.toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--text); color: var(--bg); padding: 14px 24px; border-radius: var(--radius-s); font-weight: 500; font-size: 0.9rem; animation: slideIn 0.3s forwards; box-shadow: 0 4px 12px rgba(0,0,0,0.15); pointer-events: all; transition: opacity 0.3s ease, transform 0.3s ease; text-align: center; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.dark-toggle-btn { display: flex; align-items: center; justify-content: center; color: var(--text); padding: 4px; border-radius: 6px; transition: background 0.15s; }
.dark-toggle-btn:hover { background: var(--bg-alt); }

.rules-box { background: #fffbeb; border: 1px solid #fde68a; padding: 16px; border-radius: 8px; font-size: 0.85rem; color: #92400e; line-height: 1.6; }

.footer { text-align: center; padding: 40px 16px; border-top: 1px solid var(--border); margin-top: auto; color: var(--text-m); background: var(--bg-alt); }

.category-chip-container { display: flex; gap: 10px; padding: 0 16px; margin-bottom: 24px; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.category-chip-container::-webkit-scrollbar { display: none; }
.category-chip { padding: 8px 18px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 99px; font-size: 0.85rem; font-weight: 600; white-space: nowrap; cursor: pointer; transition: all 0.2s ease; color: var(--text-m); }
.category-chip.active { background: var(--primary); color: var(--primary-text); border-color: var(--primary); }
.category-section { margin-bottom: 32px; transition: all 0.3s ease; }
.category-header { display: flex; justify-content: space-between; align-items: center; padding: 0 16px; margin-bottom: 16px; cursor: pointer; }
.category-header h2 { font-size: 1.15rem; margin: 0; }
.category-header i { transition: transform 0.3s ease; color: var(--text-l); }
.category-section.collapsed .shop-grid { display: none; }
.category-section.collapsed .category-header i { transform: rotate(-90deg); }
@keyframes spin { 100% { transform: rotate(360deg); } }

body.admin-mode { padding-top: 0; display: flex; flex-direction: column; min-height: 100vh; }
@media (min-width: 1024px) { body.admin-mode { flex-direction: row; } }

.admin-sidebar { background: var(--bg-alt); border-right: 1px solid var(--border); width: 280px; min-height: 100vh; position: sticky; top: 0; display: flex; flex-direction: column; z-index: 100; transition: all 0.3s ease; }
.admin-sidebar-header { padding: 24px; font-size: 1.25rem; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.admin-nav { display: flex; flex-direction: column; padding: 24px 16px; gap: 8px; flex-grow: 1; }
.admin-nav button { font-weight: 500; padding: 12px 16px; border-radius: 8px; transition: 0.2s; display: flex; align-items: center; gap: 12px; border: none; cursor: pointer; width: 100%; text-align: left; color: var(--text-m); }
.admin-nav button:hover { background: rgba(0,0,0,0.05); color: var(--text); }
.admin-nav button.active { background: var(--primary); color: var(--primary-text); }
.admin-main-content { flex-grow: 1; padding: 32px; max-width: 1200px; margin: 0 auto; width: 100%; }

@media (max-width: 1023px) {
  .admin-sidebar { width: 100%; min-height: auto; border-right: none; border-bottom: 1px solid var(--border); position: sticky; top: 0; }
  .admin-sidebar-header { display: none; }
  .admin-nav { flex-direction: row; overflow-x: auto; padding: 16px; white-space: nowrap; scrollbar-width: none; }
  .admin-nav::-webkit-scrollbar { display: none; }
  .admin-nav button { width: auto; padding: 10px 16px; }
  .admin-main-content { padding: 24px 16px; }
}

.admin-card { border-radius: var(--radius); padding: 24px; margin-bottom: 24px; border: 1px solid var(--border); background: var(--bg); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); color: var(--text); }
.admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 32px; }
.admin-stat-box { padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); color: var(--text); display: flex; flex-direction: column; gap: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.admin-stat-box h3 { font-size: 0.85rem; color: var(--text-m); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.admin-stat-box .value { font-size: 2.25rem; font-weight: 700; color: var(--text); }
.admin-search-bar { display: flex; gap: 12px; margin-bottom: 24px; }
.admin-search-bar input { flex: 1; }
.bulk-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; align-items: center; padding: 16px 12px; border-bottom: 1px solid var(--border); color: var(--text); }
.bulk-grid.header { font-weight: 600; color: var(--text-m); font-size: 0.85rem; text-transform: uppercase; background: var(--bg-alt); border-radius: 8px 8px 0 0; }

.editor-toolbar { display: flex; gap: 8px; margin-bottom: 8px; padding: 8px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-s); }
.editor-toolbar button { padding: 6px; border-radius: 4px; border: 1px solid transparent; color: var(--text); background: transparent; display: flex; align-items: center; justify-content: center; }
.editor-toolbar button:hover { background: var(--border); }
.editor-content { border: 1px solid var(--border); border-radius: var(--radius-s); padding: 16px; min-height: 150px; outline: none; background: var(--bg); color: var(--text); font-family: var(--font-main); line-height: 1.6; font-size: 0.95rem; }
.editor-content:focus { border-color: var(--primary); }
.editor-content ul, .editor-content ol { margin-left: 20px; }
[data-placeholder]:empty:before { content: attr(data-placeholder); color: var(--text-l); pointer-events: none; display: block; }

#scrollToTopBtn { display: none; position: fixed; bottom: 100px; right: 20px; z-index: 80; background: var(--text); color: var(--bg); border: none; width: 48px; height: 48px; border-radius: 12px; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: opacity 0.3s, transform 0.3s; align-items: center; justify-content: center; }
#scrollToTopBtn:hover { transform: translateY(-4px); }
#scrollToTopBtn.show { display: flex; opacity: 1; animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

.input-wrapper { position: relative; width: 100%; display: block; }
.input-helper-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: var(--bg); border: 1px solid var(--border); color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 6px; border-radius: 50%; z-index: 10; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: 0.2s; }
.input-helper-btn:hover { background: var(--bg-alt); transform: translateY(-50%) scale(1.05); }

@media (min-width: 768px) {
  .max-w-screen { max-width: 800px; margin: 0 auto; }
  #productContainer { margin-top: 40px !important; margin-bottom: 120px !important; border-radius: 16px !important; min-height: auto !important; border: 1px solid var(--border); overflow: hidden; }
  .product-options { grid-template-columns: repeat(4, 1fr) !important; }
  #fixedBottomBar { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); }
  [data-theme="dark"] #fixedBottomBar { background: rgba(9, 9, 11, 0.85); }
}

.timeline { position: relative; padding-left: 32px; margin-top: 24px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-step { position: relative; margin-bottom: 32px; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-icon { position: absolute; left: -32px; top: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; z-index: 2; transition: 0.3s; }
.timeline-content { padding-top: 2px; }
.timeline-content h3 { font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.timeline-content p { font-size: 0.85rem; color: var(--text-m); }
.timeline-step.active .timeline-icon { border-color: var(--primary); background: var(--primary); color: var(--primary-text); }
.timeline-step.success .timeline-icon { border-color: var(--success); background: var(--success); color: #fff; }
.timeline-step.error .timeline-icon { border-color: var(--error); background: var(--error); color: #fff; }
.timeline-step.success ~ .timeline-step::before { background: var(--success); }
