:root {
            --mg-primary: var(--primary, #d32f2f);
            --mg-primary-2: #ff4d4f;
            --mg-gold: #d4af37;
            --mg-gold-soft: #f2d680;
            --mg-dark-0: #04070d;
            --mg-dark-1: #080d16;
            --mg-dark-2: #0c121d;
            --mg-dark-3: #131b28;
            --mg-card: rgba(12,18,29,.94);
            --mg-card-soft: rgba(16,24,36,.86);
            --mg-card-border: rgba(255,255,255,.09);
            --mg-text: #f7f8fb;
            --mg-text-soft: rgba(255,255,255,.72);
            --mg-text-dim: rgba(255,255,255,.50);
            --mg-light-bg: #f8fafc;
            --mg-light-card: rgba(255,255,255,.96);
            --mg-light-border: rgba(15,23,42,.08);
            --mg-light-text: #0f172a;
            --mg-light-soft: #64748b;
            --mg-radius-xl: 28px;
            --mg-radius-lg: 22px;
            --mg-radius-md: 18px;
            --mg-shadow: 0 28px 80px rgba(0,0,0,.30);
            --mg-shell: 1420px;
            --mg-section-gap: 32px;
        }

        body.dark {
            --mg-page-bg:
                radial-gradient(circle at top left, rgba(211,47,47,.10), transparent 28%),
                radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 24%),
                linear-gradient(180deg, #03060b 0%, #060b14 20%, #090f18 58%, #07111d 100%);
            --mg-surface: rgba(10,15,24,.92);
            --mg-surface-2: rgba(15,23,35,.90);
            --mg-border: rgba(255,255,255,.09);
            --mg-text-main: #f8fafc;
            --mg-text-sub: rgba(248,250,252,.74);
            --mg-text-faint: rgba(248,250,252,.48);
        }

        body:not(.dark) {
            --mg-page-bg:
                radial-gradient(circle at top left, rgba(211,47,47,.06), transparent 26%),
                linear-gradient(180deg, #f8fafc 0%, #ffffff 38%, #f8fafc 100%);
            --mg-surface: rgba(255,255,255,.96);
            --mg-surface-2: rgba(255,255,255,.98);
            --mg-border: rgba(15,23,42,.08);
            --mg-text-main: #0f172a;
            --mg-text-sub: #475569;
            --mg-text-faint: #94a3b8;
            --mg-shadow: 0 18px 52px rgba(2,6,23,.10);
        }

        .mg-home {
            position: relative;
            background: var(--mg-page-bg);
            color: var(--mg-text-main);
            overflow: hidden;
            min-height: 100vh;
        }

        .mg-home *,
        .mg-home *::before,
        .mg-home *::after {
            box-sizing: border-box;
        }

        .mg-shell {
            width: min(calc(100% - 34px), var(--mg-shell));
            margin: 0 auto;
        }

        .mg-top-space {
            height: 10px;
        }

        .mg-section {
            position: relative;
            padding: 28px 0 26px;
        }

        .mg-section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .mg-section-title-wrap {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .mg-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--mg-primary-2);
        }

        .mg-kicker::before,
        .mg-kicker::after {
            content: "";
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--mg-primary), var(--mg-primary-2));
        }

        .mg-title {
            margin: 0;
            font-size: clamp(24px, 2.6vw, 42px);
            line-height: 1.04;
            font-weight: 900;
            letter-spacing: -.03em;
            color: var(--mg-text-main);
        }

        .mg-title.serif,
        .mg-hero-title,
        .mg-block-title,
        .mg-brand-name,
        .mg-category-name,
        .mg-arrival-name {
            font-family: Georgia, "Times New Roman", serif;
        }

        .mg-lead {
            margin: 0;
            max-width: 780px;
            font-size: 15px;
            line-height: 1.7;
            color: var(--mg-text-sub);
        }

        .mg-link-btn,
        .mg-btn,
        .mg-btn-outline,
        .mg-btn-ghost,
        .mg-icon-btn {
            appearance: none;
            border: 0;
            text-decoration: none;
            cursor: pointer;
            transition: .22s ease;
            font-weight: 800;
            white-space: nowrap;
        }

        .mg-btn,
        .mg-btn-outline,
        .mg-btn-ghost,
        .mg-link-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 46px;
            padding: 0 18px;
            border-radius: 14px;
            font-size: 14px;
        }

        .mg-btn {
            color: #fff;
            background: linear-gradient(135deg, var(--mg-primary), var(--mg-primary-2));
            box-shadow: 0 14px 30px rgba(211,47,47,.24);
        }

        .mg-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(211,47,47,.30);
        }

        .mg-btn-outline {
            color: #fff;
            border: 1px solid rgba(255,255,255,.24);
            background: rgba(255,255,255,.06);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        body:not(.dark) .mg-btn-outline {
            color: var(--mg-light-text);
            border-color: rgba(15,23,42,.14);
            background: rgba(255,255,255,.72);
        }

        .mg-btn-outline:hover,
        .mg-btn-ghost:hover,
        .mg-link-btn:hover {
            transform: translateY(-2px);
        }

        .mg-btn-ghost,
        .mg-link-btn {
            color: var(--mg-text-main);
            border: 1px solid var(--mg-border);
            background: rgba(255,255,255,.04);
        }

        body:not(.dark) .mg-btn-ghost,
        body:not(.dark) .mg-link-btn {
            background: rgba(255,255,255,.9);
        }

        .mg-link-btn::after {
            content: "\203A";
            font-size: 18px;
            line-height: 1;
        }

        .mg-gradient-text,
        .text-gradient {
            background: linear-gradient(90deg, #ffffff 0%, #ffd8d8 30%, #ff6f6f 80%, #ff4343 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        body:not(.dark) .mg-gradient-text,
        body:not(.dark) .text-gradient {
            background: linear-gradient(90deg, #7f1d1d 0%, #dc2626 60%, #ef4444 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .mg-panel {
            position: relative;
            overflow: hidden;
            border-radius: var(--mg-radius-xl);
            background: var(--mg-surface);
            border: 1px solid var(--mg-border);
            box-shadow: var(--mg-shadow);
        }

        .mg-panel::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(180deg, rgba(255,255,255,.06), transparent 24%),
                radial-gradient(circle at top right, rgba(255,255,255,.06), transparent 34%);
        }

        body:not(.dark) .mg-panel::before {
            background:
                linear-gradient(180deg, rgba(15,23,42,.02), transparent 24%);
        }

        /* ================= HERO ================= */

        .mg-hero-wrap {
            padding-top: 8px;
        }

        .mg-hero {
            position: relative;
            min-height: 760px;
            background: #02050a;
            overflow: hidden;
            border-radius: 28px;
            border: 1px solid var(--mg-border);
            box-shadow: var(--mg-shadow);
        }

        .mg-hero-loader {
            position: absolute;
            inset: 0;
            z-index: 60;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(2,5,10,.44);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: opacity .28s ease, visibility .28s ease;
        }

        .mg-hero-loader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .mg-hero-loader-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 800;
        }

        .mg-hero-spinner {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 4px solid rgba(255,255,255,.14);
            border-top-color: #fff;
            animation: mgSpin .8s linear infinite;
        }

        @keyframes mgSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .mg-hero-track {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .mg-hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity .48s ease;
            overflow: hidden;
        }

        .mg-hero-slide.is-active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .ssw-home-hero-media,
        .ssw-hero-media,
        .ssw-hero-image,
        .ssw-hero-video {
            position: absolute !important;
            inset: 0 !important;
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center center !important;
            display: block !important;
            background: #000;
        }

        .mg-hero-slide .ssw-home-hero-media,
        .mg-hero-slide .ssw-hero-media {
            transform: scale(1);
            transition: transform 6s ease, filter .4s ease;
            filter: brightness(.80) saturate(1.05);
            will-change: transform, filter;
        }

        .mg-hero-slide.is-active .ssw-home-hero-media,
        .mg-hero-slide.is-active .ssw-hero-media {
            transform: scale(1.045);
            filter: brightness(.94) saturate(1.08);
        }

        .mg-hero-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
            background:
                linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.42) 32%, rgba(0,0,0,.16) 64%, rgba(0,0,0,.10) 100%),
                linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.10) 54%, rgba(0,0,0,.50) 100%);
            pointer-events: none;
        }

        .mg-hero-slide.mg-hero-text-dark::after {
            background:
                linear-gradient(90deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,.18) 32%, rgba(255,255,255,.08) 64%, rgba(255,255,255,.04) 100%),
                linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.06) 54%, rgba(255,255,255,.22) 100%);
        }

        .mg-hero-shell {
            position: relative;
            z-index: 6;
            min-height: 760px;
            display: flex;
            align-items: center;
        }

        .mg-hero-layout {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 90px 0 70px;
        }

        .mg-hero-card {
            position: relative;
            width: min(640px, 100%);
            padding: 34px 36px;
            border-radius: 28px;
            background: rgba(15,19,27,.56);
            border: 1px solid rgba(255,255,255,.13);
            box-shadow: 0 26px 70px rgba(0,0,0,.30);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            overflow: hidden;
        }

        .mg-hero-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(255,255,255,.08), transparent 32%),
                radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 32%);
            pointer-events: none;
        }

        .mg-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            color: rgba(255,255,255,.92);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
        }

        .mg-hero-badge::before {
            content: "\2726";
            color: var(--mg-primary-2);
            font-size: 12px;
        }

        .mg-hero-title {
            margin: 14px 0 10px;
            font-size: clamp(40px, 5.1vw, 76px);
            line-height: .96;
            letter-spacing: -.05em;
            font-weight: 900;
            color: #fff;
            max-width: 560px;
        }

        .mg-hero-copy {
            margin: 0;
            max-width: 520px;
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255,255,255,.84);
        }

        .mg-hero-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .mg-hero-cart-line {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 18px;
        }

        .mg-hero-cart-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 46px;
            padding: 0 16px;
            border-radius: 999px;
            color: #fff;
            font-weight: 800;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.14);
        }

        .mg-hero-cart-badge {
            min-width: 32px;
            height: 32px;
            padding: 0 10px;
            border-radius: 999px;
            background: #fff;
            color: #111827;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
        }

        .mg-hero-side-controls {
            position: absolute;
            inset: auto 16px 18px 16px;
            z-index: 7;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .mg-hero-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            pointer-events: auto;
        }

        .mg-hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: 0;
            background: rgba(255,255,255,.32);
            cursor: pointer;
            transition: .22s ease;
            padding: 0;
        }

        .mg-hero-dot.is-active {
            width: 28px;
            background: var(--mg-primary-2);
        }

        .mg-hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 8;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,.16);
            background: rgba(10,15,24,.56);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .mg-hero-arrow:hover {
            transform: translateY(-50%) scale(1.04);
            background: rgba(10,15,24,.78);
        }

        .mg-hero-arrow.prev {
            left: 14px;
        }

        .mg-hero-arrow.next {
            right: 14px;
        }

        .mg-hero-bottom-caption {
            position: absolute;
            left: 28px;
            bottom: 22px;
            z-index: 6;
            max-width: 580px;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity .32s ease, transform .32s ease;
            pointer-events: none;
        }

        .mg-hero-slide.is-active .mg-hero-bottom-caption {
            opacity: 1;
            transform: translateY(0);
        }

        .mg-hero-bottom-caption-box {
            display: inline-block;
            max-width: 100%;
            padding: 16px 18px;
            border-radius: 18px;
            background: rgba(8,12,18,.44);
            border: 1px solid rgba(255,255,255,.10);
            color: rgba(255,255,255,.90);
            font-size: 14px;
            line-height: 1.7;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .mg-hero-bottom-title {
            font-size: 22px;
            line-height: 1.1;
            font-weight: 900;
            color: #fff;
            margin-bottom: 8px;
            font-family: Georgia, "Times New Roman", serif;
        }

        /* ================= CATEGORY STRIP ================= */

        .mg-category-section .mg-panel {
            padding: 26px 22px 22px;
        }

        .mg-category-heading {
            text-align: center;
            margin-bottom: 20px;
        }

        .mg-category-heading .mg-title {
            font-size: clamp(24px, 2.4vw, 42px);
        }

        .mg-category-heading .mg-kicker {
            justify-content: center;
        }

        .mg-category-grid {
            display: grid;
            grid-template-columns: repeat(8, minmax(0, 1fr));
            gap: 14px;
        }

        .mg-category-card {
            position: relative;
            min-height: 168px;
            padding: 12px 12px 14px;
            border-radius: 18px;
            text-decoration: none;
            color: inherit;
            background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
            border: 1px solid var(--mg-border);
            transition: .22s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        .mg-category-card:hover {
            transform: translateY(-4px);
            border-color: rgba(211,47,47,.42);
            box-shadow: 0 18px 40px rgba(0,0,0,.20);
        }

.mg-category-media {
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

        .mg-category-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform .28s ease;
            filter: drop-shadow(0 10px 24px rgba(0,0,0,.34));
        }

        .mg-category-card:hover .mg-category-media img {
            transform: scale(1.05);
        }

        .mg-category-name {
            font-size: 16px;
            line-height: 1.24;
            font-weight: 800;
            color: var(--mg-text-main);
            text-align: center;
            min-height: 40px;
        }

        .mg-category-arrow {
            position: absolute;
            right: 12px;
            bottom: 10px;
            color: var(--mg-text-faint);
            font-size: 20px;
            font-weight: 900;
        }

        /* ================= ARRIVALS ================= */

        .mg-arrivals-section .mg-panel {
            padding: 22px;
        }

        .mg-arrivals-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 16px;
        }

        .mg-arrival-card {
            position: relative;
            min-height: 440px;
            display: flex;
            flex-direction: column;
            padding: 14px;
            border-radius: 20px;
            background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
            border: 1px solid var(--mg-border);
            overflow: hidden;
            transition: .22s ease;
        }

        .mg-arrival-card:hover {
            transform: translateY(-5px);
            border-color: rgba(211,47,47,.36);
            box-shadow: 0 20px 50px rgba(0,0,0,.22);
        }

        .mg-arrival-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }

        .mg-arrival-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 26px;
            padding: 0 10px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--mg-primary), var(--mg-primary-2));
            color: #fff;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .mg-arrival-heart {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            border: 1px solid var(--mg-border);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.88);
            font-size: 15px;
            background: rgba(255,255,255,.03);
        }

        body:not(.dark) .mg-arrival-heart {
            color: #64748b;
        }

.mg-arrival-media {
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 12px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

        .mg-arrival-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform .3s ease;
            filter: drop-shadow(0 14px 28px rgba(0,0,0,.28));
        }

        .mg-arrival-card:hover .mg-arrival-media img {
            transform: scale(1.05);
        }

        .mg-arrival-name {
            margin: 0 0 8px;
            font-size: 20px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--mg-text-main);
            min-height: 76px;
        }

        .mg-arrival-meta {
            margin: 0 0 10px;
            font-size: 13px;
            line-height: 1.6;
            color: var(--mg-text-sub);
            min-height: 42px;
        }

        .mg-arrival-price {
            margin-top: auto;
            font-size: 30px;
            line-height: 1;
            font-weight: 900;
            color: var(--mg-primary-2);
        }

        .mg-arrival-min {
            margin-top: 8px;
            color: var(--mg-text-sub);
            font-size: 13px;
            line-height: 1.5;
        }

        .mg-arrival-add {
            position: absolute;
            right: 14px;
            bottom: 14px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--mg-primary), var(--mg-primary-2));
            color: #fff;
            font-size: 22px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 14px 26px rgba(211,47,47,.24);
        }

        .mg-arrivals-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 18px;
        }

        .mg-arrivals-dots span {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: rgba(255,255,255,.18);
        }

        .mg-arrivals-dots span.active {
            width: 20px;
            background: var(--mg-primary-2);
        }

        /* ================= BRANDS ================= */

        .mg-brands-section .mg-panel {
            padding: 22px;
        }

        .mg-brand-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 16px;
        }

        .mg-brand-card {
            position: relative;
            min-height: 130px;
            padding: 18px;
            border-radius: 18px;
            border: 1px solid var(--mg-border);
            text-decoration: none;
            color: inherit;
            background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
            transition: .22s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .mg-brand-card:hover {
            transform: translateY(-4px);
            border-color: rgba(212,175,55,.34);
            box-shadow: 0 18px 44px rgba(0,0,0,.20);
        }

.mg-brand-media {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

        .mg-brand-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
        }

        .mg-brand-name {
            text-align: center;
            font-size: 15px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--mg-text-main);
        }

        /* ================= TRUST STRIP ================= */

        .mg-trust-strip {
            margin-top: 18px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .mg-trust-card {
            display: grid;
            grid-template-columns: 58px 1fr;
            gap: 14px;
            align-items: center;
            padding: 18px 16px;
            border-radius: 18px;
            background: rgba(255,255,255,.03);
            border: 1px solid var(--mg-border);
        }

        .mg-trust-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(211,47,47,.12);
            border: 1px solid rgba(211,47,47,.30);
            color: var(--mg-primary-2);
            font-size: 26px;
            font-weight: 900;
        }

        .mg-trust-title {
            margin: 0 0 4px;
            font-size: 16px;
            font-weight: 900;
            color: var(--mg-text-main);
        }

        .mg-trust-copy {
            margin: 0;
            font-size: 13px;
            line-height: 1.7;
            color: var(--mg-text-sub);
        }

        /* ================= ABOUT / CONTACT / SUBSCRIBE ================= */

        .mg-split {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
            gap: 18px;
        }

        .mg-block {
            padding: 24px;
        }

        .mg-block-title {
            margin: 0 0 10px;
            font-size: 34px;
            line-height: 1.08;
            font-weight: 900;
            color: var(--mg-text-main);
        }

        .mg-block-copy {
            margin: 0;
            font-size: 15px;
            line-height: 1.85;
            color: var(--mg-text-sub);
        }

        .mg-feature-list {
            display: grid;
            gap: 12px;
            margin-top: 18px;
        }

        .mg-feature-item {
            display: grid;
            grid-template-columns: 52px 1fr;
            gap: 14px;
            align-items: start;
            padding: 14px;
            border-radius: 18px;
            border: 1px solid var(--mg-border);
            background: rgba(255,255,255,.03);
        }

        .mg-feature-badge {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--mg-primary), var(--mg-primary-2));
            color: #fff;
            font-weight: 900;
            font-size: 18px;
        }

        .mg-feature-item strong {
            display: block;
            margin-bottom: 4px;
            color: var(--mg-text-main);
            font-size: 16px;
        }

        .mg-feature-item span {
            display: block;
            color: var(--mg-text-sub);
            font-size: 14px;
            line-height: 1.75;
        }

        .mg-subscribe-box {
            display: grid;
            gap: 16px;
            padding: 24px;
        }

        .mg-input,
        .mg-textarea {
            width: 100%;
            outline: none;
            border-radius: 16px;
            border: 1px solid var(--mg-border);
            background: rgba(255,255,255,.04);
            color: var(--mg-text-main);
            padding: 14px 16px;
            font-size: 15px;
            transition: .2s ease;
        }

        body:not(.dark) .mg-input,
        body:not(.dark) .mg-textarea {
            background: rgba(255,255,255,.92);
        }

        .mg-input:focus,
        .mg-textarea:focus {
            border-color: rgba(211,47,47,.44);
            box-shadow: 0 0 0 4px rgba(211,47,47,.10);
        }

        .mg-textarea {
            min-height: 150px;
            resize: vertical;
            font-family: inherit;
        }

        .mg-status {
            margin-top: 10px;
            font-size: 14px;
            font-weight: 800;
        }

        .mg-status.ok {
            color: #22c55e;
        }

        .mg-status.error {
            color: #ef4444;
        }

        .mg-contact-grid {
            display: grid;
            gap: 18px;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        }

        .mg-contact-form {
            display: grid;
            gap: 12px;
            margin-top: 18px;
        }

        .mg-contact-inline {
            display: grid;
            gap: 12px;
            grid-template-columns: 1fr 1fr;
        }

        .mg-contact-info {
            display: grid;
            gap: 12px;
            margin-top: 16px;
        }

        .mg-contact-info-card {
            padding: 16px;
            border-radius: 16px;
            border: 1px solid var(--mg-border);
            background: rgba(255,255,255,.03);
            color: var(--mg-text-sub);
            line-height: 1.7;
        }

        .mg-contact-info-card strong {
            display: block;
            color: var(--mg-text-main);
            margin-bottom: 4px;
        }

        .mg-map {
            margin-top: 16px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--mg-border);
        }

        .mg-map iframe {
            width: 100%;
            height: 300px;
            border: 0;
            display: block;
        }

        /* ================= MODAL ================= */

        .mg-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(2,5,10,.82);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .mg-modal.show {
            display: flex;
        }

        .mg-modal-dialog {
            width: min(900px, 100%);
            max-height: 88vh;
            overflow: hidden;
            border-radius: 26px;
            background: #000;
            border: 1px solid rgba(255,255,255,.12);
            box-shadow: 0 24px 90px rgba(0,0,0,.45);
            position: relative;
        }

        .mg-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            z-index: 2;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,.16);
            background: rgba(255,255,255,.10);
            color: #fff;
            font-size: 20px;
            font-weight: 900;
            cursor: pointer;
        }

        .mg-modal-body img,
        .mg-modal-body video {
            width: 100%;
            max-height: 74vh;
            object-fit: contain;
            display: block;
            background: #000;
        }

        .mg-modal-caption {
            padding: 16px 20px 20px;
            background: #09111d;
            color: rgba(255,255,255,.86);
            line-height: 1.7;
        }

        /* ================= UTIL ================= */

        .mg-empty {
            padding: 28px;
            text-align: center;
            border-radius: 18px;
            border: 1px dashed var(--mg-border);
            color: var(--mg-text-sub);
            background: rgba(255,255,255,.03);
            font-weight: 800;
        }

        @media (max-width: 1280px) {
            .mg-category-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .mg-arrivals-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .mg-brand-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }

            .mg-trust-strip {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 1024px) {
            .mg-hero,
            .mg-hero-shell {
                min-height: 680px;
            }

            .mg-hero-layout {
                padding: 82px 0 64px;
            }

            .mg-split,
            .mg-contact-grid {
                grid-template-columns: 1fr;
            }

            .mg-arrivals-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .mg-brand-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mg-shell {
                width: min(calc(100% - 18px), var(--mg-shell));
            }

            .mg-section {
                padding: 18px 0 18px;
            }

            .mg-hero,
            .mg-hero-shell {
                min-height: 620px;
            }

            .mg-hero-layout {
                align-items: flex-end;
                padding: 88px 0 74px;
            }

            .mg-hero-card {
                width: 100%;
                padding: 24px 20px;
                border-radius: 22px;
            }

            .mg-hero-title {
                font-size: clamp(34px, 10vw, 52px);
            }

            .mg-hero-copy {
                font-size: 15px;
            }

            .mg-hero-actions .mg-btn,
            .mg-hero-actions .mg-btn-outline {
                width: 100%;
            }

            .mg-hero-arrow {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }

            .mg-hero-bottom-caption {
                left: 16px;
                right: 16px;
                bottom: 54px;
                max-width: none;
            }

            .mg-category-grid,
            .mg-arrivals-grid,
            .mg-brand-grid,
            .mg-trust-strip,
            .mg-contact-inline {
                grid-template-columns: 1fr;
            }

            .mg-arrival-card {
                min-height: 400px;
            }

            .mg-block,
            .mg-panel,
            .mg-subscribe-box {
                border-radius: 20px;
            }
        }



/* =========================================================
   CLIENTFILES HERO UPDATE
   Request:
   - Keep slideshow, brand names, product types, arrivals intact.
   - Remove dark/tinted overlay from hero images.
   - Make hero slideshow full-width.
   ========================================================= */

.mg-hero-wrap {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mg-hero-wrap > .mg-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.mg-hero {
    width: 100% !important;
    min-height: min(780px, calc(100vh - 72px)) !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Keep hero text/content aligned to your normal content width. */
.mg-hero .mg-hero-shell {
    width: min(calc(100% - 34px), var(--mg-shell)) !important;
    max-width: var(--mg-shell) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Remove the dark tint/filter from the actual media. */
.mg-hero-slide .ssw-home-hero-media,
.mg-hero-slide .ssw-hero-media,
.mg-hero-slide.is-active .ssw-home-hero-media,
.mg-hero-slide.is-active .ssw-hero-media,
.ssw-home-hero-media,
.ssw-hero-media,
.ssw-hero-image,
.ssw-hero-video {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    background: transparent !important;
}

/* Remove black/dark overlay from the full image area. */
.mg-hero-slide::after,
.mg-hero-slide.mg-hero-text-dark::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* The bottom caption remains, but it is no longer a dark block over the image. */
.mg-hero-bottom-caption-box {
    background: rgba(255, 255, 255, .82) !important;
    border: 1px solid rgba(255, 255, 255, .55) !important;
    color: #0f172a !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .14) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

.mg-hero-bottom-title {
    color: #0f172a !important;
}

/* Arrows are now light, not black/dark. */
.mg-hero-arrow {
    background: rgba(255, 255, 255, .88) !important;
    color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, .60) !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .16) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.mg-hero-arrow:hover {
    background: rgba(255, 255, 255, .96) !important;
    color: #0f172a !important;
}

/* Loader is lighter too, so the hero never looks dark while media loads. */
.mg-hero-loader {
    background: rgba(255, 255, 255, .36) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

.mg-hero-loader-box {
    color: #0f172a !important;
}

.mg-hero-spinner {
    border-color: rgba(15, 23, 42, .14) !important;
    border-top-color: var(--mg-primary) !important;
}

@media (max-width: 900px) {
    .mg-hero {
        min-height: 82vh !important;
    }

    .mg-hero-layout {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* =========================================================
   FINAL HOME CATEGORY + BRAND CARD REDESIGN
   Better card design + more readable product type / brand sections
========================================================= */

.mg-category-section .mg-panel,
.mg-brands-section .mg-panel {
    padding: clamp(22px, 2.4vw, 34px) !important;
    border-radius: 34px !important;
    overflow: hidden !important;
}

.mg-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)) !important;
    gap: 18px !important;
}

.mg-brand-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
    gap: 18px !important;
}

.mg-category-card,
.mg-brand-card {
    position: relative !important;
    min-height: 218px !important;
    padding: 16px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-rows: 112px minmax(0, 1fr) 38px !important;
    gap: 12px !important;
    text-decoration: none !important;
    color: var(--mg-text-main) !important;
    background:
        radial-gradient(circle at top left, rgba(211,47,47,.10), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025)) !important;
    border: 1px solid color-mix(in srgb, var(--mg-primary) 18%, var(--mg-border)) !important;
    box-shadow: 0 18px 44px rgba(2, 6, 23, .10) !important;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease !important;
}

body:not(.dark) .mg-category-card,
body:not(.dark) .mg-brand-card {
    background:
        radial-gradient(circle at top left, rgba(211,47,47,.055), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96)) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .07) !important;
}

.mg-category-card:hover,
.mg-brand-card:hover {
    transform: translateY(-6px) !important;
    border-color: color-mix(in srgb, var(--mg-primary) 55%, var(--mg-border)) !important;
    box-shadow: 0 26px 60px rgba(2, 6, 23, .16) !important;
}

.mg-card-glow {
    position: absolute;
    inset: auto -70px -80px auto;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle, color-mix(in srgb, var(--mg-primary) 24%, transparent), transparent 66%);
    opacity: .75;
    pointer-events: none;
}

.mg-category-media,
.mg-brand-media {
    position: relative !important;
    z-index: 1 !important;
    height: 112px !important;
    margin: 0 !important;
    padding: 13px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    background:
        linear-gradient(180deg, #ffffff, #f8fafc) !important;
    border: 1px solid rgba(15, 23, 42, .08) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.70),
        0 12px 28px rgba(15,23,42,.08) !important;
}

.mg-category-media img,
.mg-brand-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, .18)) !important;
    transition: transform .22s ease !important;
}

.mg-category-card:hover .mg-category-media img,
.mg-brand-card:hover .mg-brand-media img {
    transform: scale(1.055) !important;
}

.mg-card-copy {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
    display: grid !important;
    align-content: start !important;
    gap: 5px !important;
}

.mg-category-name,
.mg-brand-name {
    min-height: 0 !important;
    margin: 0 !important;
    color: var(--mg-text-main) !important;
    font-size: 17px !important;
    line-height: 1.22 !important;
    font-weight: 900 !important;
    text-align: center !important;
    letter-spacing: -.015em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.mg-card-sub {
    min-height: 18px;
    color: var(--mg-text-sub);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 750;
    text-align: center;
    opacity: .85;
}

.mg-card-action {
    position: relative !important;
    z-index: 2 !important;
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 14px !important;
    color: #fff !important;
    background: linear-gradient(135deg, var(--mg-primary), var(--mg-primary-2)) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    box-shadow: 0 12px 26px rgba(211,47,47,.18) !important;
}

.mg-card-action span {
    font-size: 17px;
    line-height: 1;
}

.mg-category-arrow {
    display: none !important;
}

@media (max-width: 700px) {
    .mg-category-grid,
    .mg-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .mg-category-card,
    .mg-brand-card {
        min-height: 205px !important;
        padding: 12px !important;
        border-radius: 20px !important;
        grid-template-rows: 98px minmax(0, 1fr) 36px !important;
    }

    .mg-category-media,
    .mg-brand-media {
        height: 98px !important;
        border-radius: 16px !important;
    }

    .mg-category-name,
    .mg-brand-name {
        font-size: 14px !important;
    }
}


/* Fast home load patch: no hero splash overlay. */
.mg-hero-loader,
#HeroLoader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.mg-hero {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}


/* =========================================================
   HOME PAGE APP-FEEL MOBILE UPDATE 2026-07
========================================================= */
.mg-home {
    min-height: 100dvh;
    overflow-x: clip !important;
}

.mg-panel,
.mg-hero-card,
.mg-category-card,
.mg-brand-card,
.mg-arrival-card,
.mg-trust-card,
.mg-feature-item,
.mg-contact-info-card {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1024px) {
    .mg-shell {
        width: min(calc(100% - 22px), var(--mg-shell)) !important;
    }

    .mg-section {
        padding: 16px 0 !important;
    }

    .mg-hero {
        min-height: calc(100dvh - 68px) !important;
        max-height: none !important;
    }

    .mg-hero-shell {
        min-height: calc(100dvh - 68px) !important;
    }

    .mg-hero-layout {
        align-items: end !important;
        padding: 70px 0 88px !important;
    }

    .mg-hero-card {
        width: min(560px, 100%) !important;
        padding: 22px !important;
        border-radius: 28px !important;
        background: rgba(15, 19, 27, .62) !important;
        backdrop-filter: blur(18px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
    }

    .mg-hero-title {
        font-size: clamp(31px, 8.4vw, 54px) !important;
        line-height: .98 !important;
    }

    .mg-hero-copy {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .mg-hero-actions {
        gap: 10px !important;
    }

    .mg-btn,
    .mg-btn-outline,
    .mg-btn-ghost,
    .mg-link-btn {
        min-height: 48px !important;
        border-radius: 17px !important;
        font-size: 14px !important;
    }

    .mg-hero-actions .mg-btn,
    .mg-hero-actions .mg-btn-outline {
        flex: 1 1 calc(50% - 6px) !important;
        width: auto !important;
        min-width: 145px !important;
    }

    .mg-hero-actions #HeroViewMediaBtn {
        flex-basis: 100% !important;
    }

    .mg-hero-side-controls {
        bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .mg-hero-arrow {
        display: none !important;
    }

    .mg-panel {
        border-radius: 26px !important;
    }

    .mg-category-section .mg-panel,
    .mg-brands-section .mg-panel,
    .mg-block,
    .mg-subscribe-box {
        padding: 18px !important;
        border-radius: 26px !important;
    }

    .mg-section-head {
        gap: 12px !important;
    }

    .mg-title,
    .mg-block-title {
        font-size: clamp(24px, 7vw, 36px) !important;
    }

    .mg-lead,
    .mg-block-copy,
    .mg-trust-copy,
    .mg-feature-item span {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .mg-input,
    .mg-textarea {
        min-height: 50px !important;
        border-radius: 17px !important;
        font-size: 16px !important; /* prevents iPhone zoom */
    }

    .mg-textarea {
        min-height: 132px !important;
    }

    .mg-map iframe {
        height: 240px !important;
    }

    .mg-modal {
        z-index: 91000 !important;
        padding: max(10px, env(safe-area-inset-top, 0px)) max(10px, env(safe-area-inset-right, 0px)) max(10px, env(safe-area-inset-bottom, 0px)) max(10px, env(safe-area-inset-left, 0px)) !important;
        align-items: center !important;
    }

    .mg-modal-dialog {
        width: min(100%, 780px) !important;
        max-height: calc(100dvh - 20px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
        border-radius: 24px !important;
    }

    .mg-modal-body img,
    .mg-modal-body video {
        max-height: calc(100dvh - 145px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)) !important;
    }

    .mg-modal-caption {
        max-height: 36dvh !important;
        overflow: auto !important;
        padding: 14px 16px 18px !important;
    }
}

@media (max-width: 560px) {
    .mg-shell {
        width: min(calc(100% - 16px), var(--mg-shell)) !important;
    }

    .mg-hero-layout {
        padding: 54px 0 82px !important;
    }

    .mg-hero-card {
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .mg-hero-badge {
        font-size: 10px !important;
        padding: 8px 10px !important;
    }

    .mg-hero-title {
        font-size: clamp(30px, 10vw, 45px) !important;
    }

    .mg-hero-copy {
        font-size: 13px !important;
    }

    .mg-hero-actions .mg-btn,
    .mg-hero-actions .mg-btn-outline {
        flex-basis: 100% !important;
        width: 100% !important;
    }

    .mg-category-grid,
    .mg-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .mg-category-card,
    .mg-brand-card {
        min-height: 190px !important;
        padding: 10px !important;
        grid-template-rows: 88px minmax(0, 1fr) 34px !important;
        border-radius: 19px !important;
    }

    .mg-category-media,
    .mg-brand-media {
        height: 88px !important;
        padding: 10px !important;
    }

    .mg-card-action {
        min-height: 34px !important;
        border-radius: 13px !important;
        font-size: 12px !important;
    }

    .mg-trust-strip,
    .mg-feature-list,
    .mg-contact-info {
        gap: 10px !important;
    }

    .mg-trust-card,
    .mg-feature-item {
        grid-template-columns: 44px 1fr !important;
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .mg-trust-icon,
    .mg-feature-badge {
        width: 44px !important;
        height: 44px !important;
        border-radius: 15px !important;
        font-size: 16px !important;
    }

    .mg-modal-dialog {
        width: 100% !important;
        max-height: 100dvh !important;
        border-radius: 22px !important;
    }
}


/* PWA APP SHELL FIX 03 - cleaner mobile/home hero */
.mg-hero-bottom-caption {
    display: none !important;
}

@media (max-width: 768px) {
    .mg-hero {
        border-radius: 0 !important;
        min-height: calc(100dvh - 68px - 74px) !important;
    }

    .mg-hero-shell {
        min-height: calc(100dvh - 68px - 74px) !important;
    }

    .mg-hero-card {
        width: min(100% - 28px, 520px) !important;
        margin: 0 auto !important;
        padding: 24px 22px !important;
        border-radius: 24px !important;
    }

    .mg-hero-title {
        font-size: clamp(34px, 10vw, 50px) !important;
    }

    .mg-hero-copy {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }
}


/* =========================================================
   PWA FIX 04 - mobile app polish + site settings card
   ========================================================= */
.mg-site-config-card {
    padding: 28px;
}

.mg-site-config-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mg-site-config-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    color: var(--mg-text-sub);
}

.mg-site-config-actions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mg-click-card,
.mg-brand-card,
.mg-category-card {
    position: relative;
    z-index: 2;
    cursor: pointer;
    touch-action: manipulation;
}

@media (max-width: 900px) {
    .mg-site-config-grid {
        grid-template-columns: 1fr;
    }

    .mg-hero {
        min-height: calc(var(--app-vh, 100vh) - 120px);
        border-radius: 0 0 28px 28px;
    }

    .mg-hero-shell {
        min-height: calc(var(--app-vh, 100vh) - 120px);
    }

    .mg-hero-card {
        width: calc(100vw - 34px);
        padding: 28px 22px;
        border-radius: 26px;
    }
}


/* =========================================================
   PWA FIX 05 - Default page settings + mobile polish
   ========================================================= */
.mg-site-config-card {
    padding: 28px;
}

.mg-site-config-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mg-site-config-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    color: var(--mg-text-sub);
}

.mg-site-config-actions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mg-click-card,
.mg-brand-card,
.mg-category-card {
    position: relative;
    z-index: 2;
    cursor: pointer;
    touch-action: manipulation;
}

@media (max-width: 900px) {
    .mg-site-config-grid {
        grid-template-columns: 1fr;
    }

    .mg-hero {
        min-height: calc(var(--app-vh, 100vh) - 120px);
        border-radius: 0 0 28px 28px;
    }

    .mg-hero-shell {
        min-height: calc(var(--app-vh, 100vh) - 120px);
    }

    .mg-hero-card {
        width: calc(100vw - 34px);
        padding: 28px 22px;
        border-radius: 26px;
    }
}
