        :root {
            --primary: #6D42F5;
            --primary-dark: #5427D9;
            --primary-deep: #35168D;
            --primary-soft: #F2EDFF;
            --primary-faint: #FAF8FF;
            --page: #F8F7FC;
            --surface: #FFFFFF;
            --text: #1D1B2A;
            --muted: #797588;
            --line: #E9E6EF;
            --green: #25D366;
            --danger: #FF5263;
            --warning: #FFB928;
            --shadow-sm: 0 10px 30px rgba(58, 39, 112, .08);
            --shadow-md: 0 20px 55px rgba(61, 39, 135, .14);
            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 26px;
            --container: 1420px;
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            color: var(--text);
            background: var(--page);
            font-family: "Manrope", sans-serif;
            -webkit-font-smoothing: antialiased;
        }
        body.drawer-open {
            overflow: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        img {
            display: block;
            max-width: 100%;
        }
        button,
        input {
            font: inherit;
        }
        button {
            cursor: pointer;
        }
        .ss-container {
            width: min(calc(100% - 36px), var(--container));
            margin-inline: auto;
        }
        /* ==================== TOP STRIP ==================== */
        .top-strip {
            height: 30px;
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, .9);
            background: linear-gradient(90deg, var(--primary-deep), var(--primary), #825FFF);
            font-size: 10px;
            font-weight: 700;
        }
        .top-strip .ss-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }
        .top-strip__left,
        .top-strip__right {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .top-strip i {
            margin-right: 5px;
        }
        .top-strip a:hover {
            color: #fff;
        }
        /* ==================== HEADER ==================== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, .96);
            border-bottom: 1px solid rgba(233, 230, 239, .9);
            box-shadow: 0 8px 30px rgba(45, 31, 88, .06);
            backdrop-filter: blur(16px);
        }
        .header-row {
            min-height: 72px;
            display: grid;
            grid-template-columns: auto 180px minmax(320px, 1fr) auto;
            align-items: center;
            gap: 16px;
        }
        .menu-button,
        .header-icon {
            position: relative;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
            border: 1px solid var(--line);
            border-radius: 13px;
            color: #554F62;
            background: #fff;
            font-size: 19px;
            transition: .2s ease;
        }
        .menu-button:hover,
        .header-icon:hover {
            color: #fff;
            border-color: var(--primary);
            background: var(--primary);
            transform: translateY(-1px);
        }
        .brand-logo {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        .brand-logo img {
            width: 181px;
            height: auto;
            object-fit: contain;
        }
        .header-search-wrap {
            position: relative;
        }
        .header-search {
            height: 46px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            overflow: hidden;
            border: 1px solid #cfcfcf;
            border-radius: 15px;
            background: #FAF9FD;
            transition: .2s ease;
        }
        .header-search:focus-within {
            border-color: rgba(109, 66, 245, .45);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(109, 66, 245, .08);
        }
        .header-search>i {
            margin-left: 15px;
            color: var(--primary);
            font-size: 18px;
        }
        .header-search input {
            min-width: 0;
            width: 100%;
            height: 100%;
            padding: 0 13px;
            border: 0;
            outline: 0;
            color: var(--text);
            background: transparent;
            font-size: 12px;
            /* font-weight: bold; */
        }
        .header-search button {
            height: 38px;
            margin-right: 4px;
            padding: 0 18px;
            border: 0;
            border-radius: 11px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            font-size: 11px;
            font-weight: 800;
        }
        .header-search-results {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            display: none;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: #fff;
            box-shadow: var(--shadow-md);
        }
        .header-search-wrap.is-open .header-search-results {
            display: block;
        }
        .search-result {
            display: grid;
            grid-template-columns: 44px minmax(0, 1fr) auto;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            border-bottom: 1px solid #F1EEF6;
        }
        .search-result:last-child {
            border-bottom: 0;
        }
        .search-result:hover {
            background: var(--primary-faint);
        }
        .search-result img {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            object-fit: cover;
            background: #F3F0F8;
        }
        .search-result strong {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 13px;
        }
        .search-result small {
            color: var(--muted);
            font-size: 8px;
        }
        .search-result__price {
            color: var(--primary);
            font-size: 12px;
            font-weight: 800;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 7px;
        }
        .header-action-wrap {
            position: relative;
        }
        .header-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            z-index: 2;
            min-width: 19px;
            height: 19px;
            display: grid;
            place-items: center;
            padding: 0 4px;
            border: 2px solid #fff;
            border-radius: 99px;
            color: #fff;
            background: var(--danger);
            font-size: 8px;
            font-weight: 800;
        }
        .login-button {
            height: 42px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0 15px;
            border-radius: 13px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            font-size: 10px;
            font-weight: 800;
            box-shadow: 0 8px 20px rgba(109, 66, 245, .18);
        }
        .notification-panel {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 330px;
            display: none;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 17px;
            background: #fff;
            box-shadow: var(--shadow-md);
        }
        .header-action-wrap.is-open .notification-panel {
            display: block;
        }
        .notification-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 14px;
            border-bottom: 1px solid var(--line);
        }
        .notification-head strong {
            font-size: 12px;
        }
        .notification-head a {
            color: var(--primary);
            font-size: 9px;
            font-weight: 800;
        }
        .notification-item {
            display: grid;
            grid-template-columns: 36px 1fr;
            gap: 9px;
            padding: 11px 14px;
            border-bottom: 1px solid #F2EFF6;
        }
        .notification-item:hover {
            background: var(--primary-faint);
        }
        .notification-symbol {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            color: var(--primary);
            background: var(--primary-soft);
        }
        .notification-item strong {
            display: block;
            font-size: 9px;
        }
        .notification-item span span {
            display: block;
            margin-top: 2px;
            color: var(--muted);
            font-size: 8px;
            line-height: 1.4;
        }
        .desktop-nav {
            min-height: 38px;
            display: flex;
            align-items: center;
            gap: 2px;
            overflow-x: auto;
            border-top: 1px solid #F2EFF6;
            scrollbar-width: none;
        }
        .desktop-nav::-webkit-scrollbar {
            display: none;
        }
        .desktop-nav a {
            flex: 0 0 auto;
            padding: 7px 12px;
            border-radius: 9px;
            color: #686272;
            font-size: 10px;
            font-weight: 700;
            transition: .2s ease;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--primary);
            background: var(--primary-soft);
        }
        .desktop-nav .deal-link {
            margin-left: auto;
            color: #E23850;
            background: #FFF0F3;
        }
        /* ==================== HERO ==================== */
        .hero {
            padding: 12px 0 0;
        }
        .hero-card {
            position: relative;
            height: 300px;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-radius: 24px;
            color: #fff;
            background:
                /* linear-gradient(90deg, rgba(40, 18, 116, .98) 0%, rgba(85, 43, 211, .92) 38%, rgba(109, 66, 245, .44) 58%, rgba(109, 66, 245, .05) 78%), */
                var(--sellshopee-hero-image) center right / cover no-repeat;
            box-shadow: var(--shadow-md);
            isolation: isolate;
        }
        .hero-card::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            right: -120px;
            top: -160px;
            border: 52px solid rgba(255, 255, 255, .08);
            border-radius: 50%;
            z-index: -1;
        }
        .hero-content {
            width: min(56%, 680px);
            padding: 32px 42px;
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 10px;
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 99px;
            background: rgba(255, 255, 255, .11);
            font-size: 8px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
        }
        .hero-kicker i {
            color: #FFD96A;
        }
        .hero h1 {
            max-width: 600px;
            margin: 11px 0 8px;
            font-size: clamp(27px, 3.1vw, 46px);
            line-height: 1.02;
            letter-spacing: -.045em;
        }
        .hero h1 span {
            color: #DCD1FF;
        }
        .hero p {
            max-width: 540px;
            margin: 0;
            color: rgba(255, 255, 255, .79);
            font-size: 11px;
            line-height: 1.6;
        }
        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 9px;
            margin-top: 16px;
        }
        .hero-btn {
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 0 15px;
            border-radius: 11px;
            font-size: 10px;
            font-weight: 800;
            transition: .2s ease;
        }
        .hero-btn:hover {
            transform: translateY(-1px);
        }
        .hero-btn--light {
            color: var(--primary-dark);
            background: #fff;
        }
        .hero-btn--ghost {
            border: 1px solid rgba(255, 255, 255, .25);
            background: rgba(255, 255, 255, .10);
        }
        .hero-mini-card {
            position: absolute;
            right: 22px;
            bottom: 20px;
            width: 205px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px;
            border: 1px solid rgba(255, 255, 255, .34);
            border-radius: 15px;
            background: rgba(255, 255, 255, .88);
            color: var(--text);
            box-shadow: 0 14px 34px rgba(39, 22, 91, .18);
            backdrop-filter: blur(10px);
        }
        .hero-mini-card__icon {
            width: 38px;
            height: 38px;
            flex: 0 0 auto;
            display: grid;
            place-items: center;
            border-radius: 11px;
            color: #fff;
            background: var(--primary);
            font-size: 17px!important;
        }
        .hero-mini-card strong {
            display: block;
            font-size: 9px;
        }
        .hero-mini-card span {
            color: var(--muted);
            font-size: 7px;
        }
        /* ==================== FIRST VIEW CATEGORIES ==================== */
        .quick-categories {
            padding: 14px 0 0;
        }
        .quick-category-shell {
            padding: 14px 16px 12px;
            border: 1px solid var(--line);
            border-radius: 20px;
            background: #fff;
            box-shadow: var(--shadow-sm);
        }
        .quick-category-head {
            display: block;
            margin-bottom: 9px;
        }
        .quick-category-title {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 800;
        }
        .quick-category-title span {
            width: 28px;
            height: 28px;
            display: grid;
            place-items: center;
            border-radius: 9px;
            color: var(--primary);
            background: var(--primary-soft);
        }
        .quick-category-list {
            display: grid;
            grid-template-columns: repeat(8, minmax(0, 1fr));
            gap: 8px;
        }
        .quick-category-card {
            min-width: 0;
            padding: 8px 4px 7px;
            border: 1px solid transparent;
            border-radius: 14px;
            text-align: center;
            transition: .2s ease;
        }
        .quick-category-card:hover {
            border-color: #DED5FF;
            background: var(--primary-faint);
            transform: translateY(-2px);
        }
        .quick-category-image {
            width: 58px;
            height: 58px;
            margin: 0 auto 7px;
            overflow: hidden;
            border: 2px solid #F1ECFF;
            border-radius: 17px;
            background: #F4F1FA;
        }
        .quick-category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .quick-category-card strong {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 9px;
        }
        .quick-category-card small {
            display: block;
            margin-top: 2px;
            color: var(--muted);
            font-size: 7px;
        }
        /* ==================== TRUST STRIP ==================== */
        .trust-strip {
            margin-top: 12px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: #fff;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 12px 15px;
        }
        .trust-item+.trust-item {
            border-left: 1px solid var(--line);
        }
        .trust-icon {
            width: 34px;
            height: 34px;
            flex: 0 0 auto;
            display: grid;
            place-items: center;
            border-radius: 10px;
            color: var(--primary);
            background: var(--primary-soft);
            font-size: 15px;
        }
        .trust-item strong {
            display: block;
            font-size: 9px;
        }
        .trust-item span {
            color: var(--muted);
            font-size: 7px;
        }
        /* ==================== CONTENT ==================== */
        .section {
            padding-top: 30px;
        }
        .section-head {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 13px;
        }
        .section-title-wrap {
            display: flex;
            align-items: center;
            gap: 9px;
        }
        .section-icon {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 11px;
            color: var(--primary);
            background: var(--primary-soft);
            font-size: 16px;
        }
        .section-head h2 {
            margin: 0;
            font-size: clamp(18px, 2vw, 26px);
            letter-spacing: -.03em;
        }
        .section-head p {
            margin: 2px 0 0;
            color: var(--muted);
            font-size: 9px;
        }
        .view-all {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 10px;
            border-radius: 99px;
            color: var(--primary);
            background: var(--primary-soft);
            font-size: 9px;
            font-weight: 800;
        }
        .product-tabs {
            display: flex;
            gap: 7px;
            overflow-x: auto;
            margin-bottom: 12px;
            scrollbar-width: none;
        }
        .product-tabs::-webkit-scrollbar {
            display: none;
        }
        .product-tab {
            flex: 0 0 auto;
            height: 36px;
            padding: 0 13px;
            border: 1px solid var(--line);
            border-radius: 10px;
            color: #6D6876;
            background: #fff;
            font-size: 9px;
            font-weight: 800;
        }
        .product-tab.active {
            color: #fff;
            border-color: var(--primary);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }
        .quick-category-head .product-tabs {
            width: auto;
            display: flex;
            align-items: center;
            gap: 7px;
            margin: 0;
            overflow: visible;
        }
        .quick-category-head .product-tab {
            width: auto;
            min-width: 112px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 0 14px;
            white-space: nowrap;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 12px;
        }
        .product-card {
            min-width: 0;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: .2s ease;
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .product-media {
            position: relative;
            aspect-ratio: 1 / .84;
            overflow: hidden;
            background: #F3F0F8;
        }
        .product-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .35s ease;
        }
        .product-card:hover .product-media img {
            transform: scale(1.04);
        }
        .product-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            z-index: 1;
            padding: 5px 7px;
            border-radius: 99px;
            color: var(--primary);
            background: rgba(247, 244, 255, .94);
            font-size: 7px;
            font-weight: 800;
        }
        .product-body {
            padding: 11px;
        }
        .product-title {
            min-height: 34px;
            margin: 0;
            display: -webkit-box;
            overflow: hidden;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            font-size: 14px;
            line-height: 1.55;
        }
        .product-meta {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 5px;
            color: var(--muted);
            font-size: 7px;
        }
        .stock-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #19B968;
        }
        .product-footer {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 8px;
            margin-top: 9px;
        }
        .price small {
            display: block;
            color: var(--muted);
            font-size: 10px;
        }
        .price strong {
            color: var(--primary);
            font-size: 17px;
            letter-spacing: -.03em;
        }
        .price del {
            margin-left: 3px;
            color: #AAA5B1;
            font-size: 7px;
        }
        .add-btn {
            min-width: 62px;
            height: 32px;
            border: 0;
            border-radius: 9px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            font-size: 8px;
            font-weight: 800;
        }
        .bulk-banner {
            position: relative;
            min-height: 175px;
            display: flex;
            align-items: center;
            overflow: hidden;
            margin-top: 30px;
            padding: 28px 34px;
            border-radius: 22px;
            color: #fff;
            background: linear-gradient(115deg, #25105F, var(--primary-dark) 62%, #865DFF);
            box-shadow: var(--shadow-md);
        }
        .bulk-banner::after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            right: -55px;
            border: 45px solid rgba(255, 255, 255, .08);
            border-radius: 50%;
        }
        .bulk-banner-content {
            position: relative;
            z-index: 2;
            max-width: 620px;
        }
        .bulk-banner h2 {
            margin: 6px 0;
            font-size: clamp(22px, 2.7vw, 34px);
        }
        .bulk-banner p {
            margin: 0;
            color: rgba(255, 255, 255, .75);
            font-size: 9px;
        }
        .bulk-banner .hero-btn {
            margin-top: 13px;
        }
        .bulk-icon {
            position: absolute;
            right: 9%;
            bottom: 20px;
            z-index: 1;
            color: rgba(255, 255, 255, .75);
            font-size: 90px;
            transform: rotate(-6deg);
        }
        /* ==================== FOOTER ==================== */
        footer {
            margin-top: 36px;
            padding: 38px 0 22px;
            color: #D6D1DF;
            background: #1E192A;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.45fr repeat(3, 1fr);
            gap: 35px;
        }
        .footer-logo img {
            width: 155px;
            filter: brightness(0) invert(1);
        }
        .footer-about p {
            max-width: 350px;
            margin: 13px 0;
            color: #AAA4B6;
            font-size: 9px;
            line-height: 1.7;
        }
        .socials {
            display: flex;
            gap: 7px;
        }
        .socials a {
            width: 31px;
            height: 31px;
            display: grid;
            place-items: center;
            border: 1px solid #3B3548;
            border-radius: 9px;
            font-size: 12px;
        }
        .socials a:hover {
            color: #fff;
            border-color: var(--primary);
            background: var(--primary);
        }
        .footer-col h4 {
            margin: 2px 0 11px;
            color: #fff;
            font-size: 10px;
        }
        .footer-col a {
            display: block;
            margin: 7px 0;
            color: #AAA4B6;
            font-size: 8px;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            margin-top: 28px;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            border-top: 1px solid #342E40;
            color: #837D8F;
            font-size: 8px;
        }
        /* ==================== DRAWER ==================== */
        .drawer-backdrop {
            position: fixed;
            inset: 0;
            z-index: 1190;
            opacity: 0;
            visibility: hidden;
            background: rgba(17, 11, 31, .52);
            transition: .22s ease;
        }
        .drawer-backdrop.is-open {
            opacity: 1;
            visibility: visible;
        }
        .menu-drawer {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            z-index: 1200;
            width: min(86vw, 330px);
            overflow-y: auto;
            padding: 18px;
            background: #fff;
            box-shadow: 25px 0 60px rgba(33, 22, 66, .20);
            transform: translateX(-105%);
            transition: transform .26s ease;
        }
        .menu-drawer.is-open {
            transform: translateX(0);
        }
        .drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 17px;
        }
        .drawer-head img {
            width: 145px;
        }
        .drawer-close {
            width: 35px;
            height: 35px;
            border: 0;
            border-radius: 10px;
            color: var(--primary);
            background: var(--primary-soft);
        }
        .drawer-profile {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px;
            border-radius: 15px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }
        .drawer-profile-icon {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--primary);
            background: #fff;
        }
        .drawer-profile strong {
            display: block;
            font-size: 10px;
        }
        .drawer-profile small {
            color: rgba(255, 255, 255, .7);
            font-size: 8px;
        }
        .drawer-label {
            margin: 19px 8px 7px;
            color: var(--muted);
            font-size: 8px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .08em;
        }
        .drawer-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 8px;
            border-radius: 10px;
            color: #5E5968;
            font-size: 9px;
            font-weight: 700;
        }
        .drawer-link:hover {
            color: var(--primary);
            background: var(--primary-faint);
        }
        .drawer-link>i:first-child {
            width: 29px;
            height: 29px;
            display: grid;
            place-items: center;
            border-radius: 9px;
            color: var(--primary);
            background: var(--primary-soft);
        }
        .drawer-link .bi-chevron-right {
            margin-left: auto;
            font-size: 9px;
        }
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .header-row {
                grid-template-columns: auto 160px minmax(260px, 1fr) auto;
                gap: 11px;
            }
            .brand-logo img {
                width: 150px;
            }
            .login-button span {
                display: none;
            }
            .login-button {
                width: 42px;
                padding: 0;
                justify-content: center;
            }
            .quick-category-list {
                grid-template-columns: repeat(7, minmax(0, 1fr));
            }
            .quick-category-card:nth-child(8) {
                display: none;
            }
            .product-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
            .product-card:nth-child(5) {
                display: none;
            }
        }
        @media (max-width: 900px) {
            .top-strip {
                display: none;
            }
            .site-header {
                position: sticky;
            }
            .header-row {
                min-height: 64px;
                grid-template-columns: auto 1fr auto;
                gap: 8px;
                padding: 7px 0 8px;
            }
            .brand-logo {
                justify-content: flex-start;
            }
            .brand-logo img {
                width: 135px;
                height: 40px;
            }
            .header-search-wrap {
                grid-column: 1 / -1;
                grid-row: 2;
            }
            .header-search {
                height: 42px;
                border-radius: 13px;
            }
            .header-search button {
                display: none;
            }
            .header-actions {
                gap: 5px;
            }
            .header-icon,
            .menu-button {
                width: 38px;
                height: 38px;
                border-radius: 11px;
                font-size: 17px;
            }
            .login-button {
                display: none;
            }
            .desktop-nav {
                display: none;
            }
            .hero {
                padding-top: 9px;
            }
            .hero-card {
                height: 255px;
                align-items: flex-end;
                border-radius: 20px;
                /* background-image:
                    linear-gradient(180deg, rgba(54, 22, 147, .04) 0%, rgba(54, 22, 147, .17) 33%, rgba(55, 21, 151, .94) 70%, #35178D 100%),
                    var(--sellshopee-hero-image); */
                background-position: 67% center;
                background-size: cover;
            }
            .hero-content {
                width: 100%;
                padding: 18px 20px;
            }
            .hero-kicker {
                display: none;
            }
            .hero h1 {
                max-width: 450px;
                margin: 0 0 5px;
                font-size: clamp(22px, 6vw, 33px);
            }
            .hero p {
                max-width: 430px;
                font-size: 9px;
                line-height: 1.45;
            }
            .hero-buttons {
                margin-top: 10px;
            }
            .hero-btn {
                height: 34px;
                padding: 0 11px;
                font-size: 8px;
            }
            .hero-mini-card {
                display: none;
            }
            .quick-categories {
                padding-top: 9px;
            }
            .quick-category-shell {
                padding: 11px 10px 9px;
                border-radius: 17px;
            }
            .quick-category-list {
                display: flex;
                gap: 4px;
                overflow-x: auto;
                padding-bottom: 2px;
                scroll-snap-type: x proximity;
                scrollbar-width: none;
            }
            .quick-category-list::-webkit-scrollbar {
                display: none;
            }
            .quick-category-card {
                flex: 0 0 78px;
                scroll-snap-align: start;
                padding-inline: 2px;
            }
            .quick-category-card:nth-child(8) {
                display: block;
            }
            .quick-category-image {
                width: 53px;
                height: 53px;
                border-radius: 15px;
            }
            .quick-category-card strong {
                font-size: 8px;
            }
            .quick-category-card small {
                display: none;
            }
            .trust-strip {
                grid-template-columns: 1fr 1fr;
            }
            .trust-item:nth-child(3) {
                border-left: 0;
                border-top: 1px solid var(--line);
            }
            .trust-item:nth-child(4) {
                border-top: 1px solid var(--line);
            }
            .product-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .product-card:nth-child(5) {
                display: block;
            }
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr;
            }
            .footer-col:last-child {
                display: none;
            }
        }
        @media (max-width: 600px) {
            .ss-container {
                width: min(calc(100% - 18px), var(--container));
            }
            .header-row {
                gap: 5px;
            }
            .brand-logo img {
                width: 170px;
                height: auto;
            }
            .header-actions {
                gap: 3px;
            }
            .header-user__profile {
                height: 35px;
                max-width: 105px;
                gap: 4px;
                padding: 3px 5px 3px 3px;
                border-radius: 10px;
            }
            .header-user__avatar {
                width: 29px;
                height: 29px;
                border-radius: 8px;
                font-size: 12px;
            }
            .header-user__info strong {
                max-width: 54px;
                font-size: 9px;
            }
            .header-user__chevron {
                font-size: 7px;
            }
            .header-icon,
            .menu-button {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            .header-search {
                height: 39px;
            }
            .header-search>i {
                margin-left: 12px;
                font-size: 16px;
            }
            .header-search input {
                font-size: 10px;
                font-weight: bold;
            }
            .notification-panel {
                position: fixed;
                top: 102px;
                left: 9px;
                right: 9px;
                width: auto;
            }
            .hero-card {
                height: 210px;
                border-radius: 18px;
                background-position: 66% center;
            }
            .hero-content {
                padding: 14px 15px;
            }
            .hero h1 {
                max-width: 340px;
                font-size: 24px;
            }
            .hero p {
                max-width: 315px;
                font-size: 8px;
            }
            .hero-buttons {
                gap: 6px;
            }
            .hero-btn {
                height: 31px;
                border-radius: 9px;
                font-size: 7px;
            }
            .quick-category-head {
                margin-bottom: 6px;
            }
            .quick-category-title {
                font-size: 10px;
            }
            .quick-category-title > span:first-child {
                display: none;
            }
            .quick-category-head .product-tabs {
                gap: 4px;
            }
            .quick-category-head .product-tab {
                height: 34px;
                padding: 0 4px;
                border-radius: 9px;
                font-size: 9px;
            }
            .quick-category-card {
                flex-basis: 70px;
            }
            .quick-category-image {
                width: 49px;
                height: 49px;
            }
            .trust-item {
                padding: 9px 8px;
                gap: 7px;
            }
            .trust-icon {
                width: 30px;
                height: 30px;
            }
            .trust-item strong {
                font-size: 8px;
            }
            .trust-item span {
                display: none;
            }
            .section {
                padding-top: 24px;
            }
            .section-head {
                align-items: center;
                margin-bottom: 10px;
            }
            .section-head p {
                display: none;
            }
            .section-icon {
                width: 32px;
                height: 32px;
            }
            .product-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 9px;
            }
            .product-media {
                aspect-ratio: 1 / .92;
            }
            .product-body {
                padding: 9px;
            }
            .product-title {
                min-height: 31px;
                font-size: 9px;
            }
            .product-meta {
                display: none;
            }
            .price strong {
                font-size: 15px;
            }
            .price del {
                display: none;
            }
            .add-btn {
                min-width: 54px;
                height: 29px;
                font-size: 7px;
            }
            .bulk-banner {
                min-height: 210px;
                padding: 24px 20px;
            }
            .bulk-icon {
                right: 3%;
                opacity: .18;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 25px 16px;
            }
            .footer-about {
                grid-column: 1 / -1;
            }
            .footer-col:last-child {
                display: block;
            }
            .footer-bottom {
                flex-direction: column;
            }
        }
        /* =========================================================
           GLOBAL FONT SIZE UPGRADE
           Keeps the existing layout/design, but improves readability
        ========================================================= */
        body {
            font-size: 14px;
            line-height: 1.45;
        }
        .top-strip {
            font-size: 12px;
        }
        .header-search input {
            font-size: 14px;
        }
        .header-search button {
            font-size: 12px;
        }
        .header-badge {
            font-size: 9px;
        }
        .login-button {
            font-size: 12px;
        }
        .notification-head strong {
            font-size: 14px;
        }
        .notification-head a {
            font-size: 11px;
        }
        .notification-item strong {
            font-size: 11px;
        }
        .notification-item span span {
            font-size: 10px;
        }
        .desktop-nav a {
            font-size: 12px;
        }
        .hero-kicker {
            font-size: 10px;
        }
        .hero p {
            font-size: 13px;
        }
        .hero-btn {
            font-size: 12px;
        }
        .hero-mini-card strong {
            font-size: 11px;
        }
        .hero-mini-card span {
            font-size: 9px;
        }
        .quick-category-title {
            font-size: 14px;
        }
        .quick-category-card strong {
            font-size: 11px;
        }
        .quick-category-card small {
            font-size: 9px;
        }
        .trust-item strong {
            font-size: 11px;
        }
        .trust-item span {
            font-size: 9px;
        }
        .section-head p {
            font-size: 11px;
        }
        .view-all {
            font-size: 11px;
        }
        .product-tab {
            font-size: 11px;
        }
        .product-badge {
            font-size: 9px;
        }
        .product-title {
            font-size: 14px;
            line-height: 1.5;
        }
        .product-meta {
            font-size: 9px;
        }
        .price small {
            font-size: 10px;
        }
        .price del {
            font-size: 9px;
        }
        .add-btn {
            font-size: 10px;
        }
        .bulk-banner p {
            font-size: 11px;
            line-height: 1.6;
        }
        .footer-about p {
                font-size: 12px;
    font-weight: bold;
        }
        .footer-col h4 {
            font-size: 17px;
        }
        .footer-col a {
                font-size: 11px;
    font-weight: bold;
        }
        .footer-bottom {
            font-size: 10px;
        }
        .drawer-profile strong {
            font-size: 12px;
        }
        .drawer-profile small {
            font-size: 10px;
        }
        .drawer-label {
            font-size: 10px;
        }
        .drawer-link {
            font-size: 11px;
        }
        .drawer-link .bi-chevron-right {
            font-size: 10px;
        }
        /* =========================================================
           LOGGED-IN USER - HEADER DROPDOWN
        ========================================================= */
        .header-user-dropdown {
            position: relative;
        }
        .header-user__profile {
            min-width: 175px;
            max-width: 225px;
            height: 44px;
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 5px 10px 5px 6px;
            border: 1px solid #E5DFFF;
            border-radius: 14px;
            color: var(--text);
            background: linear-gradient(135deg, #FFFFFF, var(--primary-faint));
            box-shadow: 0 7px 18px rgba(75, 49, 150, .07);
            font-family: "Manrope", sans-serif;
            text-align: left;
            transition: .2s ease;
        }
        .header-user__profile:hover,
        .header-user__profile[aria-expanded="true"] {
            color: var(--primary-dark);
            border-color: #D3C6FF;
            background: var(--primary-soft);
            transform: translateY(-1px);
        }
        .header-user__avatar {
            width: 32px;
            height: 32px;
            flex: 0 0 auto;
            display: block;
            overflow: hidden;
            border: 2px solid #fff;
            border-radius: 50%;
            background: var(--primary-soft);
            box-shadow: 0 5px 14px rgba(79, 50, 164, .16);
        }
        .header-user__avatar-img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: inherit;
        }
        .header-user__info {
            min-width: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }
        .header-user__info small {
            margin-bottom: 2px;
            color: var(--muted);
            font-size: 9px;
            font-weight: 600;
        }
        .header-user__info strong {
            display: block;
            overflow: hidden;
            color: var(--text);
            font-size: 11px;
            font-weight: 800;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .header-user__chevron {
            flex: 0 0 auto;
            margin-left: auto;
            color: #9992A6;
            font-size: 10px;
            transition: transform .2s ease;
        }
        .header-user__profile[aria-expanded="true"] .header-user__chevron {
            transform: rotate(180deg);
        }
        .header-user-menu {
            width: 285px;
            margin-top: 9px !important;
            padding: 7px;
            border: 1px solid var(--line);
            border-radius: 17px;
            background: #fff;
            box-shadow:
                0 22px 55px rgba(45, 30, 90, .18),
                0 6px 18px rgba(45, 30, 90, .06);
            overflow: hidden;
        }
        .header-user-menu__head {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
        }
        .header-user-menu__avatar {
            width: 40px;
            height: 40px;
            flex: 0 0 auto;
            display: block;
            overflow: hidden;
            border: 2px solid #eee8ff;
            border-radius: 50%;
            background: var(--primary-soft);
        }
        .header-user-menu__avatar-img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: inherit;
        }
        .header-user-menu__head > div {
            min-width: 0;
        }
        .header-user-menu__head small {
            display: block;
            margin-bottom: 2px;
            color: var(--muted);
            font-size: 9px;
        }
        .header-user-menu__head strong {
            display: block;
            overflow: hidden;
            max-width: 195px;
            color: var(--text);
            font-size: 12px;
            font-weight: 800;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .header-user-menu__divider {
            height: 1px;
            margin: 4px 5px;
            background: var(--line);
        }
        .header-user-menu__item {
            display: grid;
            grid-template-columns: 36px minmax(0, 1fr) auto;
            align-items: center;
            gap: 9px;
            padding: 8px;
            border-radius: 11px;
            color: var(--text);
            transition: .18s ease;
        }
        .header-user-menu__item:hover {
            color: var(--primary);
            background: var(--primary-faint);
        }
        .header-user-menu__icon {
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            border-radius: 10px;
            color: var(--primary);
            background: var(--primary-soft);
            font-size: 14px;
        }
        .header-user-menu__item > span:nth-child(2) {
            min-width: 0;
        }
        .header-user-menu__item strong {
            display: block;
            color: inherit;
            font-size: 11px;
            font-weight: 800;
        }
        .header-user-menu__item small {
            display: block;
            margin-top: 2px;
            color: var(--muted);
            font-size: 8px;
        }
        .header-user-menu__item .menu-arrow {
            color: #B0AAB8;
            font-size: 9px;
            transition: .18s ease;
        }
        .header-user-menu__item:hover .menu-arrow {
            color: var(--primary);
            transform: translateX(2px);
        }
        .header-user-menu__logout {
            color: #D73C54;
        }
        .header-user-menu__logout .header-user-menu__icon {
            color: #D73C54;
            background: #FFF0F3;
        }
        .header-user-menu__logout:hover {
            color: #C72E46;
            background: #FFF4F6;
        }
        .header-user-menu__logout:hover .header-user-menu__icon {
            color: #fff;
            background: var(--danger);
        }
        /* =========================================================
           DRAWER LOGOUT
        ========================================================= */
        .drawer-logout-link {
            margin-top: 6px;
            color: #CF3B50;
            background: #FFF5F7;
        }
        .drawer-logout-link > i:first-child {
            color: #D94158;
            background: #FFE9ED;
        }
        .drawer-logout-link:hover {
            color: #fff;
            background: var(--danger);
        }
        .drawer-logout-link:hover > i:first-child {
            color: var(--danger);
            background: #fff;
        }
        /* =========================================================
           RESPONSIVE FONT SIZE UPGRADE
        ========================================================= */
        @media (max-width: 1200px) {
            .header-user__profile {
                min-width: 0;
                width: auto;
                max-width: 170px;
            }
            .header-user__info {
                display: flex;
            }
            .header-user__chevron {
                display: block;
            }
        }
        @media (max-width: 900px) {
            .header-user-dropdown {display:block;}
            .header-user__profile {
                width:40px;
                min-width:40px;
                max-width:40px;
                height:40px;
                padding:2px;
                gap:0;
                border:0;
                border-radius:50%;
                background:transparent;
                box-shadow:none;
                transform:none;
            }
            .header-user__profile:hover,
            .header-user__profile[aria-expanded="true"] {
                border:0;
                background:transparent;
                box-shadow:none;
                transform:none;
            }
            .header-user__avatar {
                width:36px;
                height:36px;
                display:block;
                border:2px solid #e5ddff;
                box-shadow:0 4px 12px rgba(78,49,164,.16);
            }
            .header-user__info,
            .header-user__chevron {display:none!important;}
            .header-user-menu {width:265px;}
            .quick-category-title {display:block;}
            .quick-category-title>span {display:none;}
            .quick-category-head .product-tabs {width:100%;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:6px;}
            .quick-category-head .product-tab {width:100%;min-width:0;height:35px;gap:4px;padding:0 5px;font-size:10px;}
            .hero p {font-size:11px;}
            .hero-btn {font-size:10px;}
            .quick-category-card strong {font-size:10px;}
            .product-title {font-size:11px;}
        }
        @media (max-width: 600px) {
            .header-search input {
                font-size: 12px;
            }
            .hero p {
                font-size: 10px;
            }
            .hero-btn {
                font-size: 9px;
            }
            .quick-category-title {
                font-size: 12px;
            }
            .quick-category-card strong {
                font-size: 9px;
            }
            .trust-item strong {
                font-size: 9px;
            }
            .product-title {
                font-size: 14px;
            }
            .price small {
                font-size: 10px;
            }
            .add-btn {
                font-size: 9px;
            }
            .footer-about p {
                font-size: 10px;
            }
            .footer-col h4 {
                font-size: 11px;
            }
            .footer-col a {
                font-size: 9px;
            }
            .footer-bottom {
                font-size: 9px;
            }
            .drawer-profile strong {
                font-size: 12px;
            }
            .drawer-profile small {
                font-size: 9px;
            }
            .drawer-label {
                font-size: 9px;
            }
            .drawer-link {
                font-size: 11px;
            }
        }
        @media (max-width: 380px) {
            .brand-logo img {width:92px;}
            .header-icon,.menu-button {width:33px;height:33px;}
            .header-user__profile {height:33px;max-width:92px;padding:0 7px;}
            .header-user__avatar {display:none;}
            .header-user__info strong {max-width:67px;font-size:8px;}
            .header-user__chevron {font-size:7px;}
            .quick-category-shell {padding-left:7px;padding-right:7px;}
            .quick-category-head .product-tabs {gap:3px;}
            .quick-category-head .product-tab {height:32px;padding:0 2px;font-size:8px;}
        }

        /* ==================== FINAL MOBILE ACCOUNT / LOGIN ==================== */
        @media (max-width:900px){
            .login-button{display:inline-flex!important;width:auto;height:38px;padding:0 11px;gap:5px;border-radius:11px;font-size:10px;justify-content:center;white-space:nowrap;margin-left:10px}
            .login-button span{display:inline!important;}
            .login-button i{font-size:14px;}
            .header-user-dropdown{display:block;min-width:0;}
            .header-user__profile{height:38px;min-width:0;max-width:118px;gap:5px;padding:0 2px;border:0;border-radius:0;background:transparent;box-shadow:none;color:var(--text);transform:none;}
            .header-user__profile:hover,.header-user__profile[aria-expanded="true"]{border:0;background:transparent;box-shadow:none;color:var(--primary-dark);transform:none;}
            .header-user__avatar{display:none!important;}
            .header-user__info{display:block;min-width:0;flex:1;}
            .header-user__info small{display:none;}
            .header-user__info strong{display:block;max-width:96px;overflow:hidden;color:var(--text);font-size:10px;font-weight:800;text-overflow:ellipsis;white-space:nowrap;text-align:right;}
            .header-user__chevron{display:block!important;flex:0 0 auto;margin-left:1px;color:var(--primary);font-size:11px;line-height:1;}
            .header-user__profile[aria-expanded="true"] .header-user__chevron{transform:rotate(180deg);}
        }
        @media (max-width:600px){
            .login-button{height:35px;padding:0 9px;font-size:9px;}
            .login-button i{font-size:13px;}
            .header-user__profile{height:35px;max-width:102px;padding:0;gap:4px;}
            .header-user__info strong{max-width:82px;font-size:9px;}
            .header-user__chevron{font-size:10px;}
        }
        @media (max-width:380px){
            .login-button{height:33px;padding:0 7px;font-size:8px;}
            .login-button i{font-size:12px;}
            .header-user__profile{height:33px;max-width:84px;}
            .header-user__info strong{max-width:66px;font-size:8px;}
            .header-user__chevron{font-size:9px;}
        }



        @media (max-width: 900px) {
            .login-button {
                display:inline-flex!important;
                width:auto;
                height:38px;
                padding:0 10px;
                gap:5px;
                border-radius:10px;
                font-size:10px;
                white-space:nowrap;
            }
            .login-button span {display:inline!important;}
        }



        /* ==========================================
   MOBILE LOGGED USER - IMAGE ONLY
========================================== */
@media (max-width: 900px) {

    .header-user-dropdown {
        display: block;
    }

    .header-user__profile {
        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        height: 38px !important;

        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        border-radius: 50%;
        background: transparent;
        box-shadow: none;
    }

    /* Hide Welcome back + Shop Name */
    .header-user__info {
        display: none !important;
    }

    /* Hide dropdown arrow */
    .header-user__chevron {
        display: none !important;
    }

    .header-user__avatar {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px;

        border: 2px solid #fff;
        border-radius: 50%;

        box-shadow: 0 4px 12px rgba(61, 39, 135, .18);
    }

    .header-user__avatar-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .header-user__profile:hover,
    .header-user__profile[aria-expanded="true"] {
        background: transparent;
        transform: none;
    }
}

/* =========================================================
   HEADER USER PROFILE
   DESKTOP = IMAGE + SHOP NAME
   MOBILE  = IMAGE ONLY
========================================================= */

.header-user-dropdown {
    position: relative;
}

/* Mobile trigger hidden on desktop */
.header-user__profile-mobile {
    display: none !important;
}


/* =========================================================
   DESKTOP PROFILE
========================================================= */

.header-user__profile--desktop {
    min-width: 175px;
    max-width: 225px;
    height: 44px;

    display: flex !important;
    align-items: center;

    gap: 9px;

    padding: 5px 10px 5px 6px;

    border: 1px solid #E5DFFF;
    border-radius: 14px;

    color: var(--text);

    background:
        linear-gradient(
            135deg,
            #FFFFFF,
            var(--primary-faint)
        );

    box-shadow:
        0 7px 18px rgba(75,49,150,.07);

    text-align: left;

    transition: .2s ease;
}

.header-user__profile--desktop:hover,
.header-user__profile--desktop[aria-expanded="true"] {

    color: var(--primary-dark);

    border-color: #D3C6FF;

    background: var(--primary-soft);

    transform: translateY(-1px);
}


/* Avatar */

.header-user__avatar {

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: block;

    overflow: hidden;

    border: 2px solid #fff;

    border-radius: 50%;

    background: var(--primary-soft);

    box-shadow:
        0 5px 14px rgba(79,50,164,.16);
}

.header-user__avatar-img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


/* User text */

.header-user__info {

    min-width: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    line-height: 1.15;
}

.header-user__info small {

    margin-bottom: 2px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 600;
}

.header-user__info strong {

    display: block;

    max-width: 145px;

    overflow: hidden;

    color: var(--text);

    font-size: 12px;

    font-weight: 800;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.header-user__chevron {

    flex: 0 0 auto;

    margin-left: auto;

    color: #9992A6;

    font-size: 10px;

    transition: transform .2s ease;
}

.header-user__profile--desktop[aria-expanded="true"]
.header-user__chevron {

    transform: rotate(180deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    /* Completely remove desktop profile */
    .header-user__profile--desktop {

        display: none !important;
    }


    /* Show mobile image button */
    .header-user__profile-mobile {

        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;

        height: 38px !important;

        padding: 0 !important;
        margin: 0 !important;

        display: flex !important;

        align-items: center;
        justify-content: center;

        flex: 0 0 38px;

        overflow: visible;

        border: 1px solid #E6DFFF;

        border-radius: 50%;

        color: var(--primary);

        background: #fff;

        box-shadow:
            0 5px 14px rgba(63,40,130,.11);

        cursor: pointer;
    }


    .header-user__profile-mobile:hover,
    .header-user__profile-mobile[aria-expanded="true"] {

        border-color: var(--primary);

        background: var(--primary-soft);
    }


    /* Image holder */
    .header-user__avatar-mobile {

        width: 34px;
        height: 34px;

        display: block;

        overflow: hidden;

        border-radius: 50%;

        background: var(--primary-soft);
    }


    .header-user__avatar-mobile img {

        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;

        border-radius: 50%;
    }


    /* Dropdown position */
    .header-user-menu {

        right: 0 !important;
        left: auto !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .header-user__profile-mobile {

        width: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;

        height: 36px !important;

        flex-basis: 36px;
    }

    .header-user__avatar-mobile {

        width: 32px;
        height: 32px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .header-user__profile-mobile {

        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;

        height: 34px !important;

        flex-basis: 34px;
    }

    .header-user__avatar-mobile {

        width: 30px;
        height: 30px;
    }

}
.cursor-pointer{
    cursor: pointer;
}