/* ══════════════════════════════════════════════════════
   알바플러스 (Alba Plus) — Design System v5
   Premium Minimal / Responsive
   ══════════════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ─── Design Tokens ─── */
:root {
    /* Colors */
    --white: #FFFFFF;
    --bg: #F5F6F8;
    --bg-elevated: #FFFFFF;
    --border: #E8EAED;
    --border-light: #F0F1F3;
    --text-primary: #111319;
    --text-secondary: #454954;
    --text-tertiary: #868B98;
    --text-muted: #B3B7C1;

    /* Brand */
    --purple: #6C5CE7;
    --purple-50: #F4F2FF;
    --purple-100: #E8E5FF;
    --purple-600: #5A4BD1;
    --green: #00B894;
    --green-50: #ECFDF5;
    --blue: #0984E3;
    --blue-50: #EFF6FF;
    --amber: #F59E0B;
    --amber-50: #FFFBEB;
    --red: #EF4444;
    --red-50: #FEF2F2;

    /* Elevation */
    --shadow-xs: 0 1px 2px rgba(0,0,0,.03);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
    --shadow-md: 0 4px 6px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.02);
    --shadow-lg: 0 10px 24px rgba(0,0,0,.06);

    /* Radius */
    --r-xs: 6px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-full: 9999px;

    /* Spacing */
    --gap-page: 20px;
    --gap-section: 28px;
    --gap-card: 16px;

    /* Sidebar */
    --sidebar-w: 240px;
    --header-h: 56px;
}

@media (min-width: 1024px) {
    :root {
        --gap-page: 32px;
        --gap-section: 36px;
        --gap-card: 20px;
        --header-h: 0px; /* no mobile header on desktop */
    }
}

/* ─── Focus ─── */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(108,92,231,.1);
}

/* ══════════════════════════════════════════════════════
   LAYOUT — Desktop Sidebar + Mobile Header/Nav
   ══════════════════════════════════════════════════════ */

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    min-height: 100vh;
}

/* ─── Desktop Sidebar ─── */
.sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: var(--sidebar-w);
        background: var(--white);
        border-right: 1px solid var(--border);
        z-index: 50;
    }

    .sidebar__logo {
        padding: 24px 20px 20px;
        border-bottom: 1px solid var(--border-light);
    }
    .sidebar__logo-link {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .sidebar__logo-text {
        font-size: 17px;
        font-weight: 800;
        color: var(--text-primary);
        letter-spacing: -0.02em;
    }

    .sidebar__store-filter {
        padding: 8px 12px 0;
    }
    .sidebar__store-select {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid var(--border-light);
        border-radius: var(--r-sm);
        font-size: 13px;
        font-weight: 500;
        color: var(--text-primary);
        background: var(--bg);
        cursor: pointer;
        outline: none;
        transition: border-color .15s;
    }
    .sidebar__store-select:focus {
        border-color: var(--purple);
    }

    .sidebar__nav {
        flex: 1;
        padding: 16px 12px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        overflow-y: auto;
    }
    .sidebar__item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 14px;
        border-radius: var(--r-sm);
        font-size: 14px;
        font-weight: 500;
        color: var(--text-tertiary);
        transition: all .15s ease;
    }
    .sidebar__item svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    .sidebar__item:hover {
        background: var(--bg);
        color: var(--text-secondary);
    }
    .sidebar__item--active {
        background: var(--purple-50);
        color: var(--purple);
        font-weight: 600;
    }

    .sidebar__footer {
        padding: 16px;
        border-top: 1px solid var(--border-light);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sidebar__user {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .sidebar__user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--purple-50);
        color: var(--purple);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 700;
    }
    .sidebar__user-info {
        display: flex;
        flex-direction: column;
    }
    .sidebar__user-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.2;
    }
    .sidebar__user-role {
        font-size: 11px;
        color: var(--text-muted);
        line-height: 1.2;
    }
    .sidebar__logout {
        color: var(--text-muted);
        padding: 6px;
        border-radius: var(--r-xs);
        transition: all .15s;
    }
    .sidebar__logout:hover {
        background: var(--red-50);
        color: var(--red);
    }

    /* Desktop body offset */
    body.has-nav {
        padding-left: var(--sidebar-w);
    }
}

/* ─── Mobile Header ─── */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.mobile-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 16px;
}
.mobile-header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mobile-header__store-select {
    padding: 5px 8px;
    border: 1px solid var(--border-light);
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--surface);
    max-width: 140px;
    cursor: pointer;
}
.mobile-header__btn {
    color: var(--text-muted);
    padding: 4px;
}

@media (min-width: 1024px) {
    .mobile-header { display: none; }
}

/* ─── Mobile Bottom Nav ─── */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 50;
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 0 6px;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .15s;
}
.mobile-nav__item svg { width: 22px; height: 22px; }
.mobile-nav__item--active { color: var(--purple); font-weight: 600; }

@media (min-width: 1024px) {
    .mobile-nav { display: none; }
}

/* ─── Legacy compat (old class names → still work) ─── */
.top-header { display: none; }
.bottom-nav { display: none; }
.bottom-nav__inner, .bottom-nav__item, .top-header__inner { display: none; }

/* ══════════════════════════════════════════════════════
   PAGE CONTENT
   ══════════════════════════════════════════════════════ */

.page {
    padding: 20px 16px 100px;
    max-width: 100%;
}
@media (min-width: 768px) {
    .page { padding: 28px 24px 100px; }
}
@media (min-width: 1024px) {
    .page {
        padding: 32px 40px 48px;
        max-width: 1200px;
    }
}

.page-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
@media (min-width: 1024px) {
    .page-title {
        font-size: 26px;
        margin-bottom: 32px;
    }
}

.pb-nav { padding-bottom: 100px; }
@media (min-width: 1024px) { .pb-nav { padding-bottom: 48px; } }


/* ══════════════════════════════════════════════════════
   SECTION — 섹션 구분 (핵심: 카드 사이 구분선 + 간격)
   ══════════════════════════════════════════════════════ */

.section {
    margin-bottom: var(--gap-section);
}
.section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 0;
}
.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
    .section-title { font-size: 18px; }
}
.section-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 2px;
    transition: color .15s;
}
.section-link:hover { color: var(--purple); }
.section-link svg { width: 14px; height: 14px; }

/* Section Divider — 섹션 사이 수평선 */
.section + .section {
    padding-top: var(--gap-section);
    border-top: 1px solid var(--border-light);
}

.gap-section { margin-bottom: var(--gap-section); }

/* ══════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════ */

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px;
    box-shadow: var(--shadow-xs);
}
@media (min-width: 1024px) {
    .card { padding: 24px; }
}

.card-sm {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    box-shadow: var(--shadow-xs);
}

.card-flush { padding: 0; overflow: hidden; }
.card-hover {
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card-hover:hover {
    border-color: #D1D5DB;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* ── Stat Cards ── */
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
}
.stat-card--purple::after { background: var(--purple); }
.stat-card--green::after { background: var(--green); }
.stat-card--blue::after { background: var(--blue); }
.stat-card--amber::after { background: var(--amber); }
.stat-card--red::after { background: var(--red); }

.stat-card__label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.stat-card__value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
    .stat-card { padding: 20px 24px; }
    .stat-card__value { font-size: 28px; }
}

/* Stat grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-card);
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stat-grid { grid-template-columns: repeat(4, 1fr); gap: var(--gap-card); } }


/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-sm);
    padding: 10px 20px;
    border: none;
    white-space: nowrap;
    transition: all .15s ease;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-600); box-shadow: 0 2px 8px rgba(108,92,231,.25); }
.btn-secondary { background: var(--white); color: var(--text-secondary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg); }
.btn-outline { background: transparent; color: var(--purple); border: 1px solid var(--purple); }
.btn-outline:hover { background: var(--purple-50); }
.btn-ghost { background: transparent; color: var(--purple); }
.btn-ghost:hover { background: var(--purple-50); }
.btn-danger { background: var(--red-50); color: var(--red); }
.btn-danger:hover { background: #FEE2E2; }
.btn-sm { font-size: 13px; padding: 7px 14px; border-radius: var(--r-xs); }
.btn-lg { font-size: 15px; padding: 14px 28px; border-radius: var(--r-md); }
.btn-block { width: 100%; }
.btn-loading { pointer-events: none; opacity: .5; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--r-sm); display: inline-flex; align-items: center; justify-content: center; }
.btn-icon--sm { width: 32px; height: 32px; border-radius: var(--r-xs); }


/* ══════════════════════════════════════════════════════
   BADGES
   ══════════════════════════════════════════════════════ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--r-full);
    letter-spacing: 0.01em;
}
.badge--purple { background: var(--purple-50); color: var(--purple); }
.badge--green { background: var(--green-50); color: var(--green); }
.badge--blue { background: var(--blue-50); color: var(--blue); }
.badge--amber { background: var(--amber-50); color: #D97706; }
.badge--red { background: var(--red-50); color: var(--red); }
.badge--gray { background: #F3F4F6; color: var(--text-tertiary); }


/* ══════════════════════════════════════════════════════
   TABS (underline style)
   ══════════════════════════════════════════════════════ */

.tab-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.tab-item {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color .2s;
    white-space: nowrap;
    min-width: 72px;
}
.tab-item.active { color: var(--text-primary); }
.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--purple);
    border-radius: 2px 2px 0 0;
}


/* ══════════════════════════════════════════════════════
   FORM
   ══════════════════════════════════════════════════════ */

.input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.input::placeholder { color: var(--text-muted); }
@media (min-width: 1024px) {
    .input { padding: 13px 16px; font-size: 15px; }
}

.input-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.select {
    width: 100%;
    padding: 12px 14px;
    padding-right: 40px;
    border-radius: var(--r-sm);
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23868B98' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

/* Filter Chips */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: var(--r-full);
    font-size: 13px;
    font-weight: 500;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .15s;
}
.chip:hover { border-color: #C9CDD4; }
.chip.active { background: var(--text-primary); border-color: var(--text-primary); color: #fff; }


/* ══════════════════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════════════════ */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.modal-content {
    background: var(--white);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    padding: 24px 20px;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalUp .3s cubic-bezier(.32,.72,0,1);
}
.modal-content::before {
    content: '';
    display: block;
    width: 32px;
    height: 4px;
    background: #DDE0E4;
    border-radius: 2px;
    margin: 0 auto 16px;
}
@media (min-width: 768px) {
    .modal-backdrop { align-items: center; }
    .modal-content {
        border-radius: var(--r-lg);
        max-width: 520px;
        padding: 28px;
    }
    .modal-content::before { display: none; }
}
@keyframes modalUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* ══════════════════════════════════════════════════════
   LIST / DIVIDER
   ══════════════════════════════════════════════════════ */

.list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
}
.list-row:last-child { border-bottom: none; }
.list-row--hover { cursor: pointer; transition: background .15s; }
.list-row--hover:hover { background: var(--bg); }

.divider { height: 1px; background: var(--border-light); margin: 16px 0; }


/* ══════════════════════════════════════════════════════
   AVATAR
   ══════════════════════════════════════════════════════ */

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    background: var(--purple-50);
    color: var(--purple);
}
.avatar--sm { width: 32px; height: 32px; font-size: 12px; }
.avatar--lg { width: 56px; height: 56px; font-size: 20px; }


/* ══════════════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
    font-size: 14px;
}
.empty-state svg { margin: 0 auto 12px; opacity: .3; }


/* ══════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════ */

.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 10px 20px;
    border-radius: var(--r-full);
    font-size: 14px;
    font-weight: 600;
    animation: toastIn .3s ease;
    box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) { .toast { bottom: 32px; } }
.toast-success { background: var(--text-primary); color: #fff; }
.toast-error { background: var(--red); color: #fff; }
@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ══════════════════════════════════════════════════════
   CALENDAR
   ══════════════════════════════════════════════════════ */

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.cal-header {
    background: var(--bg);
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    border-bottom: 1px solid var(--border);
}
.cal-header:not(:last-child) { border-right: 1px solid var(--border-light); }
.cal-cell {
    background: var(--white);
    min-height: 68px;
    padding: 6px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    transition: background .15s;
}
.cal-cell:hover { background: #FAFBFC; }
@media (min-width: 1024px) {
    .cal-cell { min-height: 96px; padding: 8px; }
}
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell--today { background: var(--purple-50); }
.cal-cell__date { font-weight: 600; color: var(--text-primary); margin-bottom: 3px; font-size: 13px; }
.cal-cell__date--muted { color: #D1D5DB; }
.cal-cell__event {
    background: var(--purple-50);
    color: var(--purple);
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* Weekly Bar */
.week-bar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.week-day {
    text-align: center;
    padding: 10px 0;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    transition: all .15s;
}
.week-day--active { background: var(--purple-50); border-color: var(--purple); }
.week-day__label { font-size: 11px; color: var(--text-tertiary); font-weight: 500; }
.week-day__num { font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 3px 0 5px; }
.week-day__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--purple); margin: 0 auto; }
.week-day__dot--empty { background: #E5E7EB; }


/* ══════════════════════════════════════════════════════
   PROGRESS
   ══════════════════════════════════════════════════════ */

.progress { height: 4px; background: var(--border-light); border-radius: 2px; overflow: hidden; }
.progress__bar { height: 100%; border-radius: 2px; transition: width .4s ease; }


/* ══════════════════════════════════════════════════════
   RESPONSIVE GRIDS
   ══════════════════════════════════════════════════════ */

.page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-card);
}
@media (min-width: 768px) { .page-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gap-card); } }
@media (min-width: 1024px) { .page-grid { grid-template-columns: repeat(3, 1fr); } }

.page-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-card);
}
@media (min-width: 768px) { .page-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-responsive {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-card);
}
@media (min-width: 768px) { .grid-responsive { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-responsive { grid-template-columns: repeat(3, 1fr); } }


/* ══════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════ */

.text-muted { color: var(--text-tertiary); }
.text-xs { font-size: 12px; }
.icon-16 { width: 16px; height: 16px; }
.icon-20 { width: 20px; height: 20px; }
.icon-24 { width: 24px; height: 24px; }

.hide-mobile { display: none !important; }
@media (min-width: 768px) { .hide-mobile { display: block !important; } }
.hide-desktop { display: block !important; }
@media (min-width: 1024px) { .hide-desktop { display: none !important; } }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Selection color */
::selection { background: var(--purple-100); color: var(--purple-600); }
