:root {
    --bg: #0C0C0C;
    --bg-elevated: #141414;
    --card: #1A1A1A;
    --card-hover: #222222;
    --border: #2A2A2A;
    --border-light: #333333;
    --fg: #F0EBE3;
    --fg-secondary: #B8B0A6;
    --muted: #6B6560;
    --accent: #E8772E;
    --accent-hover: #F5923F;
    --accent-glow: rgba(232, 119, 46, 0.25);
    --success: #34D399;
    --warning: #FBBF24;
    --danger: #F87171;
    --info: #60A5FA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* ── Background ── */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.bg-blob-1 {
    width: 600px; height: 600px;
    background: rgba(232, 119, 46, 0.08);
    top: -200px; right: -200px;
    animation: blobFloat 25s ease-in-out infinite;
}
.bg-blob-2 {
    width: 500px; height: 500px;
    background: rgba(232, 119, 46, 0.05);
    bottom: -150px; left: -150px;
    animation: blobFloat 30s ease-in-out infinite reverse;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ── Navigation ── */
.nav-glass {
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

/* ── Buttons ── */
.btn-accent {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: inherit;
}
.btn-accent:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-1px);
}
.btn-accent:active { transform: translateY(0) scale(0.98); }
.btn-accent:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: inherit;
    font-size: inherit;
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232, 119, 46, 0.05);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--fg-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
    font-size: inherit;
}
.btn-ghost:hover { color: var(--fg); }

.btn-danger {
    background: var(--danger);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: inherit;
}
.btn-danger:hover { background: #ef4444; transform: translateY(-1px); }

/* ── Category Pills ── */
.cat-pill {
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg-secondary);
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    font-family: inherit;
}
.cat-pill:hover { border-color: var(--accent); color: var(--accent); }
.cat-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Food Cards ── */
.food-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.food-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.food-card:hover .food-card-img { transform: scale(1.08); }
.food-card-img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ── Cart ── */
.cart-panel {
    position: fixed;
    top: 0; right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.cart-panel.open { transform: translateX(0); }

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

/* ── Modals ── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 1100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    overflow-y: auto;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    width: 90%;
    max-width: 480px;
    margin-bottom: 5vh;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.25s ease;
}
.modal-backdrop.open .modal-box { transform: scale(1) translateY(0); }
.modal-box-lg { max-width: 640px; }
.modal-box-xl { max-width: 800px; }

/* ── Toast ── */
.toast-container {
    position: fixed;
    top: 80px; right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast {
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    animation: toastIn 0.3s ease forwards;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
}
.toast.removing { animation: toastOut 0.3s ease forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(60px); } }

/* ── Inputs ── */
.input-field {
    width: 100%;
    padding: 12px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--fg);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    outline: none;
}
.input-field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.input-field::placeholder { color: var(--muted); }

select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6560' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ── Badges ── */
.badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.badge-pending { background: rgba(251, 191, 36, 0.15); color: var(--warning); }
.badge-confirmed { background: rgba(96, 165, 250, 0.15); color: var(--info); }
.badge-preparing { background: rgba(232, 119, 46, 0.15); color: var(--accent); }
.badge-ready { background: rgba(168, 85, 247, 0.15); color: #A855F7; }
.badge-out_for_delivery { background: rgba(96, 165, 250, 0.15); color: var(--info); }
.badge-delivered { background: rgba(52, 211, 153, 0.15); color: var(--success); }
.badge-cancelled { background: rgba(248, 113, 113, 0.15); color: var(--danger); }
.badge-completed { background: rgba(52, 211, 153, 0.15); color: var(--success); }

/* ── Timeline ── */
.timeline-line {
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    z-index: 1;
}
.timeline-dot.completed { background: var(--accent); color: #fff; }
.timeline-dot.current {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}
.timeline-dot.pending { background: var(--card); border: 2px solid var(--border); color: var(--muted); }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 8px transparent; } }

/* ── Admin ── */
.admin-sidebar {
    width: 260px;
    min-height: calc(100vh - 64px);
    background: var(--bg-elevated);
    border-right: 1px solid var(--border);
    padding: 24px 16px;
    flex-shrink: 0;
}
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--fg-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    font-weight: 500;
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.04); color: var(--fg); }
.admin-nav-item.active { background: rgba(232, 119, 46, 0.1); color: var(--accent); }

/* ── Tables ── */
.data-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}
.data-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--fg-secondary);
}
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.data-table tr:last-child td { border-bottom: none; }

/* ── Hero ── */
.hero-gradient { background: linear-gradient(135deg, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.85) 60%, var(--bg) 100%); }

/* ── Quantity Buttons ── */
.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--fg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.15s ease;
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }

@keyframes badgeBounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }
.badge-bounce { animation: badgeBounce 0.3s ease; }

.spinner {
    width: 20px; height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.fade-in { animation: fadeIn 0.4s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── Image Previews ── */
.img-preview {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--border);
    background: var(--card);
}
.img-preview-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: var(--card);
}

/* ── Status Filter Buttons ── */
.status-filter-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg-secondary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
    font-family: inherit;
}
.status-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.status-filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Order Item Card ── */
.order-item-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s ease;
}
.order-item-card:hover { border-color: var(--border-light); }

/* ── Confirm Dialog ── */
.confirm-dialog { text-align: center; }
.confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    background: rgba(248,113,113,0.15);
    color: var(--danger);
}

/* ── Footer ── */
.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    margin-top: auto;
    position: relative;
    z-index: 10;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-secondary);
    transition: all 0.2s ease;
    text-decoration: none;
}
.social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232, 119, 46, 0.1);
    transform: translateY(-2px);
}
.footer-link {
    color: var(--fg-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}
.footer-link:hover { color: var(--fg); }

/* ── Map ── */
#checkout-map {
    height: 250px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    z-index: 1;
    margin-bottom: 16px;
}
.leaflet-container { background: var(--card) !important; border-radius: 12px; }
.map-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0 0 10px 10px;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}
.map-search-results.active { display: block; }
.map-search-item {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--fg-secondary);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}
.map-search-item:hover { background: rgba(255,255,255,0.05); color: var(--fg); }
.map-search-item:last-child { border-bottom: none; }

/* ── Mobile Admin Nav ── */
.mobile-admin-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    z-index: 400;
    padding: 8px 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cart-panel { width: 100vw; }
    .admin-sidebar { display: none; }
    .food-card-img { height: 160px; }
    #checkout-map { height: 200px; }
    .mobile-admin-nav { display: flex; justify-content: space-around; }
    .modal-box { padding: 24px; max-width: 95%; }
    .modal-box-lg, .modal-box-xl { max-width: 95%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


/* ══════════════════════════════════════════════════════
   Notification System
   ══════════════════════════════════════════════════════ */

/* Notification Bell */
.notif-bell {
    position: relative;
    cursor: pointer;
}
.notif-badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    animation: notifPop 0.3s ease;
}
@keyframes notifPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.notif-badge.hidden { display: none; }

/* Notification Dropdown */
.notif-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    overflow: hidden;
}
.notif-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.notif-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notif-dropdown-body {
    max-height: 360px;
    overflow-y: auto;
}
.notif-dropdown-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Single Notification Item */
.notif-item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--border);
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: rgba(255,255,255,0.03); }
.notif-item.unread { background: rgba(232, 119, 46, 0.04); }
.notif-item.unread::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.notif-icon.order { background: rgba(232, 119, 46, 0.15); color: var(--accent); }
.notif-icon.status { background: rgba(96, 165, 250, 0.15); color: var(--info); }
.notif-icon.payment { background: rgba(52, 211, 153, 0.15); color: var(--success); }
.notif-content { flex: 1; min-width: 0; }
.notif-title { font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 2px; }
.notif-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.notif-time { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Slide-in Banner (top of page) */
.notif-banner {
    position: fixed;
    top: 64px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    z-index: 550;
    min-width: 320px;
    max-width: 440px;
    width: calc(100% - 32px);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.notif-banner.show {
    transform: translateX(-50%) translateY(0);
}
.notif-banner-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    font-size: 12px;
}
.notif-banner-close:hover { color: var(--fg); }

/* Order Success Modal */
.order-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    animation: successPop 0.5s ease 0.2s both;
}
@keyframes successPop {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.order-success-checkmark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.order-success-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 24px 0;
}
.success-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}
.success-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: var(--card);
    border: 2px solid var(--border);
    color: var(--muted);
}
.success-step-num.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.success-step-num.done {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}
.success-step-label {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
}
.success-step-connector {
    position: absolute;
    top: 16px;
    left: calc(50% + 16px);
    width: calc(100% - 32px);
    height: 2px;
    background: var(--border);
}
.success-step-connector.done {
    background: var(--success);
}
.success-step-connector.active {
    background: linear-gradient(90deg, var(--success), var(--accent));
}

/* Admin Status Update Confirm */
.admin-confirm-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    width: 340px;
    max-width: calc(100vw - 48px);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.admin-confirm-popup.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.admin-confirm-arrow {
    position: absolute;
    bottom: -6px;
    right: 32px;
    width: 12px;
    height: 12px;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .notif-dropdown { width: calc(100vw - 32px); right: -8px; }
    .admin-confirm-popup { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
    .order-success-steps { gap: 0; }
    .success-step-connector { display: none; }
}

#notif-wrapper {
    position: relative !important;
}