:root {
    --mw-bg: #f0f2f7;
    --mw-surface: #ffffff;
    --mw-text: #1a2b3c;
    --mw-muted: #64748b;
    --mw-border: #dde3ea;
    --mw-accent: #2563eb;
    --mw-accent-dark: #1d4ed8;
    --mw-sidebar: #1f2933;
    --mw-sidebar-hover: #2d3a47;
    --mw-sidebar-active: #1565a8;
    --mw-success: #198754;
    --mw-navbar-height: 56px;
    --mw-sidebar-width: 260px;
    --mw-font: "Segoe UI", "Source Sans Pro", system-ui, sans-serif;
    --mw-radius: 14px;
    --mw-shadow: 0 1px 2px rgba(26, 43, 60, 0.06), 0 8px 24px rgba(26, 43, 60, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: var(--mw-font);
    color: var(--mw-text);
    background: var(--mw-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.mw-app {
    min-height: 100vh;
}

.mw-app.is-sidebar-collapsed .mw-sidebar {
    transform: translateX(calc(-1 * var(--mw-sidebar-width)));
}

.mw-app.is-sidebar-collapsed .mw-main {
    margin-left: 0;
}

/* Navbar */
.mw-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: var(--mw-sidebar-width);
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--mw-navbar-height);
    padding: 0.45rem 1.25rem;
    background: var(--mw-surface);
    border-bottom: 1px solid var(--mw-border);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
    transition: left 0.25s ease;
}

.mw-app.is-sidebar-collapsed .mw-navbar {
    left: 0;
}

.mw-navbar__left,
.mw-navbar__right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.mw-navbar__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--mw-border);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--mw-text);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mw-navbar__toggle:hover {
    background: #eef2f7;
    border-color: #c7d2e0;
}

.mw-navbar__stats {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f4f8 100%);
    border: 1px solid var(--mw-border);
    border-radius: 10px;
}

.mw-stat {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}

.mw-stat__label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6c7a89;
}

.mw-stat__value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--mw-text);
}

.mw-stat__value--accent {
    color: #1565a8;
}

.mw-stat-divider {
    width: 1px;
    height: 2rem;
    background: #cfd8e3;
}

.mw-navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.mw-btn:hover {
    transform: translateY(-1px);
}

.mw-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--mw-accent) 0%, var(--mw-accent-dark) 100%);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.mw-btn--outline {
    color: var(--mw-accent);
    background: #fff;
    border-color: rgba(37, 99, 235, 0.35);
}

.mw-btn--ghost {
    color: var(--mw-muted);
    background: #f8fafc;
    border-color: var(--mw-border);
}

/* Sidebar */
.mw-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1040;
    width: var(--mw-sidebar-width);
    background: var(--mw-sidebar);
    color: #e8edf2;
    box-shadow: 4px 0 24px rgba(15, 23, 42, 0.18);
    transition: transform 0.25s ease;
    overflow: hidden;
}

.mw-sidebar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: var(--mw-navbar-height);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.12);
}

.mw-sidebar__brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.mw-sidebar__brand-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.mw-sidebar__brand-text small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #9fb0c0;
}

.mw-sidebar__user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mw-sidebar__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    overflow: hidden;
}

.mw-sidebar__avatar--logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mw-sidebar__user-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.mw-sidebar__user-role {
    font-size: 0.72rem;
    color: #9fb0c0;
}

.mw-sidebar__section-title {
    padding: 0.85rem 1rem 0.35rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7f92a3;
}

.mw-sidebar__nav {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0.65rem 1.25rem;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
}

.mw-sidebar__nav li {
    margin-bottom: 0.2rem;
}

.mw-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    color: #d7e0e8;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.mw-sidebar__link i {
    width: 1.1rem;
    text-align: center;
    opacity: 0.9;
}

.mw-sidebar__link:hover,
.mw-sidebar__link.is-active {
    background: var(--mw-sidebar-hover);
    color: #fff;
}

.mw-sidebar__link.is-active {
    background: linear-gradient(90deg, rgba(21, 101, 168, 0.95), rgba(37, 99, 235, 0.75));
    box-shadow: inset 3px 0 0 #60a5fa;
}

/* Main content */
.mw-main {
    margin-left: var(--mw-sidebar-width);
    padding-top: var(--mw-navbar-height);
    min-height: 100vh;
    transition: margin-left 0.25s ease;
}

@media (min-width: 992px) {
    .mw-main--fit {
        min-height: calc(100vh - var(--mw-navbar-height));
    }
}

.mw-page-head {
    padding: 1rem 1.5rem 0.5rem;
}

.mw-page-head__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    background: var(--mw-surface);
    border: 1px solid var(--mw-border);
    border-radius: var(--mw-radius);
    box-shadow: var(--mw-shadow);
}

.mw-page-head__left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.mw-page-head__icon {
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--mw-accent);
}

.mw-content {
    padding: 0.5rem 1.5rem 1rem;
}

/* Home showcase (mirrors MUABSA dashboard home) */
.mw-home-showcase {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.75rem 2rem;
    min-height: 0;
    padding: 1rem 1.25rem 1.25rem;
}

.mw-home-showcase__side {
    flex: 0 1 240px;
    width: 100%;
    max-width: 260px;
    display: flex;
    justify-content: center;
}

.mw-home-showcase__center {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.mw-home-logo__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.75rem 3.25rem;
    background: transparent;
    border: 2px solid rgba(148, 163, 184, 0.35);
    border-radius: 28px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 40px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mw-home-logo__frame:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 18px 48px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.mw-home-logo__frame img {
    display: block;
    max-width: min(620px, 90vw);
    max-height: min(480px, 62vh);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 10px 28px rgba(15, 23, 42, 0.14));
}

.mw-home-logo__tagline {
    margin: 1.35rem 0 0;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mw-muted);
    text-align: center;
}

.mw-home-widget {
    width: 100%;
    max-width: 240px;
    padding: 1.35rem 1.25rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(148, 163, 184, 0.35);
    border-radius: 24px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 32px rgba(15, 23, 42, 0.07);
    text-align: center;
}

.mw-home-widget__title {
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mw-muted);
}

.mw-analog-clock__face {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #f8fafc 55%, #eef2f7 100%);
    border: 3px solid #cbd5e1;
    box-shadow: inset 0 2px 8px rgba(15, 23, 42, 0.06), 0 4px 16px rgba(15, 23, 42, 0.08);
}

.mw-analog-clock__mark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 10px;
    margin-left: -1px;
    margin-top: -82px;
    background: #475569;
    border-radius: 2px;
    transform-origin: 50% 82px;
}

.mw-analog-clock__mark--minor {
    width: 1px;
    height: 5px;
    background: #94a3b8;
}

.mw-analog-clock__number {
    position: absolute;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.mw-analog-clock__hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    border-radius: 999px;
    z-index: 2;
}

.mw-analog-clock__hand--hour {
    width: 5px;
    height: 52px;
    margin-left: -2.5px;
    background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
}

.mw-analog-clock__hand--minute {
    width: 3px;
    height: 68px;
    margin-left: -1.5px;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    z-index: 3;
}

.mw-analog-clock__hand--second {
    width: 2px;
    height: 74px;
    margin-left: -1px;
    background: #dc2626;
    z-index: 4;
}

.mw-analog-clock__center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid #fff;
    z-index: 5;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
}

.mw-analog-clock__digital {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: 0.04em;
}

.mw-home-calendar__header {
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #e2e8f0;
}

.mw-home-calendar__month {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.mw-home-calendar__year {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mw-muted);
    letter-spacing: 0.08em;
}

.mw-home-calendar__weekdays,
.mw-home-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.mw-home-calendar__weekday {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0;
}

.mw-home-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    border-radius: 8px;
}

.mw-home-calendar__day--muted {
    color: #cbd5e1;
}

.mw-home-calendar__day--today {
    background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.mw-hero-card {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 48%, #3b82f6 100%);
    border-radius: var(--mw-radius);
    color: #fff;
    box-shadow: var(--mw-shadow);
}

.mw-hero-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
}

.mw-hero-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.92;
    max-width: 52rem;
}

.mw-footer {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--mw-muted);
}

.mw-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1035;
    background: rgba(15, 23, 42, 0.45);
}

.mw-overlay.is-visible {
    display: block;
}

@media (max-width: 1199.98px) {
    .mw-home-showcase {
        flex-wrap: wrap;
        gap: 1.25rem;
        padding: 1rem 1rem 1.25rem;
    }

    .mw-home-showcase__center {
        order: 1;
        width: 100%;
    }

    .mw-home-showcase__side--clock {
        order: 2;
    }

    .mw-home-showcase__side--calendar {
        order: 3;
    }

    .mw-home-showcase__side {
        flex: 1 1 220px;
        max-width: none;
    }
}

@media (max-width: 991.98px) {
    .mw-sidebar {
        transform: translateX(calc(-1 * var(--mw-sidebar-width)));
    }

    .mw-app.is-sidebar-open .mw-sidebar {
        transform: translateX(0);
    }

    .mw-main,
    .mw-navbar {
        margin-left: 0;
        left: 0;
    }

    .mw-navbar__stats {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .mw-page-head,
    .mw-content,
    .mw-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Products showcase */
.mw-section {
    margin-top: 0.5rem;
    padding: 0.65rem 0.85rem 0.75rem;
    background: var(--mw-surface);
    border: 1px solid var(--mw-border);
    border-radius: var(--mw-radius);
    box-shadow: var(--mw-shadow);
}

.mw-section--compact {
    margin-top: 0.35rem;
    padding: 0.55rem 0.75rem 0.65rem;
}

.mw-marquee {
    overflow: hidden;
    margin-bottom: 0.55rem;
    padding: 0.45rem 0;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(13, 148, 136, 0.08));
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mw-marquee--compact {
    margin-bottom: 0.45rem;
    padding: 0.35rem 0;
}

.mw-marquee__track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: mw-marquee 28s linear infinite;
}

.mw-marquee__track--reverse {
    animation-direction: reverse;
    animation-duration: 32s;
    margin-top: 0.5rem;
}

.mw-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--mw-border);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--mw-text);
}

@keyframes mw-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.mw-featured {
    margin-bottom: 0;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.mw-featured--compact {
    min-height: 108px;
}

.mw-featured__slide {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0.75rem;
    align-items: center;
    animation: mw-featured-in 0.55s ease;
}

.mw-featured--compact .mw-featured__slide {
    grid-template-columns: 76px 1fr;
    gap: 0.65rem;
}

.mw-featured .mw-product-card__visual {
    height: 76px;
    border-radius: 12px;
}

.mw-featured--compact .mw-product-card__visual {
    height: 68px;
}

.mw-featured .mw-product-card__initial {
    font-size: 1.35rem;
}

.mw-featured__title {
    margin: 0.35rem 0 0.15rem;
    font-size: 1rem;
    line-height: 1.25;
}

.mw-featured--compact .mw-featured__title {
    font-size: 0.9rem;
}

.mw-featured__category,
.mw-product-card__category {
    margin: 0;
    color: var(--mw-muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.mw-featured__dots {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.45rem;
}

.mw-footer--compact {
    padding: 0.45rem 1.25rem 0.65rem;
    font-size: 0.75rem;
}

.mw-featured__badge,
.mw-product-card__badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--mw-accent-dark);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mw-featured__dot {
    width: 0.65rem;
    height: 0.65rem;
    border: 0;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mw-featured__dot.is-active {
    background: var(--mw-accent);
    transform: scale(1.2);
}

.mw-section[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.mw-section[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mw-products-grid {
    display: grid;
    grid-template-columns: repeat(var(--product-count, 6), minmax(0, 1fr));
    gap: 0.55rem;
    overflow-x: auto;
}

.mw-product-card {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--mw-border);
    box-shadow: 0 1px 2px rgba(26, 43, 60, 0.05);
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease;
    transition-delay: var(--delay, 0s);
    min-width: 0;
}

.mw-product-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mw-product-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

.mw-product-card__visual {
    position: relative;
    height: 72px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.45), transparent 45%),
        linear-gradient(145deg, color-mix(in srgb, var(--product-color) 72%, white), var(--product-color));
}

.mw-product-card__orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    animation: mw-float 5s ease-in-out infinite;
}

.mw-product-card__orb--1 {
    width: 48px;
    height: 48px;
    top: 12%;
    left: 10%;
}

.mw-product-card__orb--2 {
    width: 32px;
    height: 32px;
    right: 12%;
    bottom: 14%;
    animation-delay: 1.2s;
}

.mw-product-card__initial {
    position: relative;
    z-index: 1;
    font-size: 1.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    animation: mw-pulse 3s ease-in-out infinite;
}

.mw-product-card__body {
    padding: 0.55rem 0.5rem 0.65rem;
}

.mw-product-card__badge {
    font-size: 0.5625rem;
    padding: 0.15rem 0.45rem;
}

.mw-product-card__name {
    margin: 0.35rem 0 0.1rem;
    font-size: 0.72rem;
    line-height: 1.25;
}

.mw-product-card__category {
    font-size: 0.625rem;
}

.mw-products-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--mw-muted);
    padding: 2rem 1rem;
}

.mw-guest-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.1);
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 700;
}

@keyframes mw-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes mw-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes mw-featured-in {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .mw-featured,
    .mw-featured__slide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .mw-products-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding-bottom: 0.25rem;
        scroll-snap-type: x proximity;
    }

    .mw-product-card {
        flex: 0 0 108px;
        scroll-snap-align: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mw-marquee__track,
    .mw-product-card__orb,
    .mw-product-card__initial {
        animation: none;
    }

    .mw-product-card {
        opacity: 1;
        transform: none;
    }
}
