: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;
        }
        
        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;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        .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;
        }
        
        .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: 1px solid #b5b5b57a;
    border-radius: 17px;
    background: #F4F1FA;
    box-shadow: 0px 0px 5px 0px #bebebe;
        }
        .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 {
            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;
        }
        
        .section {
            padding-top: 13px;
        }
        .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;
            box-shadow:0 0 1px 0px #636363;
        }
        .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: 0px 0px 5px 0px #a0a0a0;
    /* 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 {
            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;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        @media (max-width: 1200px) {
            
            
            
            
            .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) {
            
            
            
            
            
            
            
            
            
            
            
            
            .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));
            }
            
            
            
            
            
            
            
            
            
            
            
            
            .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: 10px;
            }
            .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;
            }
        }
        
        body {
            font-size: 14px;
            line-height: 1.45;
        }
        
        
        
        
        
        
        
        
        
        
        .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;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        @media (max-width: 900px) {
            
            
            
            
            
            
            .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) {
            
            .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;
            }
            
            
            
            
        }
        @media (max-width: 380px) {
            
            
            
            
            
            
            .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:9px;}
        }

        
        
        
        



        



        


















































.cursor-pointer{
    cursor: pointer;
}
.font-bold{
    font-weight: bold;
}
