    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Poppins, sans-serif;
    }
    
    body {
        overflow-x: hidden;
    }
    /* NAVBAR */
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        transition: .4s;
        padding: 18px 0;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0) 100%);
    }
    
    .navbar.scrolled {
        background: #000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
        padding: 12px 0;
    }
    
    .container {
        width: 95%;
        max-width: 1400px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #fff;
        font-size: 25px;
        font-weight: 600;
    }
    
    .logo img {
        height: 65px;
    }
    
    .nav-menu {
        display: flex;
        gap: 35px;
    }
    
    .nav-menu a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }
    
    .nav-menu .active {
        color: #60a883;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .user-btn {
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #60a883;
        cursor: pointer;
        color: #fff;
    }
    
    .search-box {
        background: #fff;
        display: flex;
        align-items: center;
        padding: 0 15px;
        border-radius: 40px;
        height: 48px;
        width: 260px;
    }
    
    .search-box input {
        border: none;
        outline: none;
        width: 100%;
        padding-left: 10px;
    }
    
    .icon {
        position: relative;
        color: #fff;
        font-size: 22px;
    }
    
    .icon span {
        position: absolute;
        top: -8px;
        right: -10px;
        background: #60a883;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
    }
    
    .mobile-toggle {
        display: none;
    }
    /* Banner */
    
    .hero-banner {
        width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .banner-container {
        width: 100%;
        padding: 0px 2%;
        margin: auto;
    }
    
    .banner-container img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 12px;
    }
    /* Large Desktop */
    
    @media (min-width:1600px) {
        .banner-container img {
            height: 500px;
        }
    }
    /* Laptop */
    
    @media (max-width:1599px) {
        .banner-container img {
            height: 420px;
        }
    }
    /* Tablet */
    
    @media (max-width:991px) {
        .banner-container img {
            height: 300px;
            border-radius: 8px;
        }
    }
    /* Mobile */
    
    @media (max-width:768px) {
        .user-btn {
            display: none;
        }
        .ab-wrapper {
            padding: 12px 2%!important;
        }
        .categories-section {
            padding: 30px 10px!important;
        }
        .banner-container img {
            height: 180px;
            object-fit: cover;
            border-radius: 6px;
        }
    }
    /* Small Mobile */
    
    @media (max-width:480px) {
        .banner-container img {
            height: 140px;
        }
    }
    /* HERO */
    
    .hero-slider {
        position: relative;
        height: 560px;
        overflow: hidden;
        /* background: linear-gradient(180deg, #8b17cc, #4f007f); */
    }
    
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: .8s;
        padding-top: 0px;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .content {
        width: 50%;
        text-align: center;
        color: #fff;
    }
    
    .content h1 {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .content p {
        font-size: 22px;
        line-height: 1.6;
    }
    
    .marketplaces {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }
    
    .marketplaces img {
        height: 65px;
        background: #fff;
        padding: 10px 20px;
        border-radius: 50px;
    }
    
    .banner-img {
        width: 40%;
        max-width: 650px;
    }
    
    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #fff;
        font-size: 35px;
        cursor: pointer;
        z-index: 20;
    }
    
    .prev {
        left: 20px;
    }
    
    .next {
        right: 20px;
    }
    
    .categories-section {
        padding: 30px 0;
        background: #fff;
    }
    
    .section-title {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 30px;
    }
    
    .category-slider {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
    
    .category-card {
        background: #fff;
        border-radius: 18px;
        padding: 0px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
        transition: .3s;
        cursor: pointer;
    }
    
    .category-card img {
        width: 100%;
        /* height: 220px; */
        object-fit: cover;
        border-radius: 14px;
    }
    
    .category-card h3 {
        text-align: center;
        margin-top: 15px;
        font-size: 22px;
        font-weight: 600;
    }
    /* ===== SECTION WRAPPER ===== */
    
    .siw-wrapper {
        width: 100%;
        padding: 70px 2%;
        background: #fff;
        box-sizing: border-box;
    }
    /* ===== CONTAINER ===== */
    
    .siw-container {
        /* max-width: 1200px;
    margin: 0 auto; */
        text-align: center;
    }
    /* ===== TITLE ===== */
    
    .siw-title {
        font-size: 38px;
        font-weight: 600;
        color: #111;
        margin-bottom: 10px;
    }
    /* ===== SUBTITLE ===== */
    
    .siw-subtitle {
        font-size: 14px;
        color: #60a883;
        margin-bottom: 50px;
    }
    /* ===== FLOW FLEX ===== */
    
    .siw-flow {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }
    /* ===== STEP ITEM ===== */
    
    .siw-item {
        width: 220px;
    }
    /* ===== ICON ===== */
    
    .siw-icon {
        width: 85px;
        height: 85px;
        border-radius: 50%;
        background: #60a883;
        color: #fff;
        font-size: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }
    /* ===== HEADING ===== */
    
    .siw-heading {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #111;
    }
    /* ===== TEXT ===== */
    
    .siw-text {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }
    /* ===== ARROW ===== */
    
    .siw-arrow {
        font-size: 30px;
        color: #b0b0b0;
    }
    
    .ps-wrapper {
        padding: 25px 2%;
        background: #fff;
    }
    
    .ps-title {
        text-align: center;
        font-size: 32px;
        margin-bottom: 30px;
    }
    /* SLIDER */
    
    .ps-slider {
        position: relative;
        /* max-width: 1200px; */
        margin: auto;
    }
    /* TRACK WRAP */
    
    .ps-track-wrap {
        overflow: hidden;
    }
    /* TRACK */
    
    .ps-track {
        display: flex;
        transition: 0.4s ease;
    }
    /* CARD */
    
    .ps-card {
        flex: 0 0 25%;
        /* 🔥 4 cards desktop */
        padding: 10px;
        box-sizing: border-box;
    }
    
    .ps-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .ps-card h3 {
        text-align: center;
        margin-top: 10px;
        line-height: 30px;
    }
    /* BUTTON */
    
    .ps-btn {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        background: #000;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 2;
    }
    
    .ps-prev {
        left: -10px;
    }
    
    .ps-next {
        right: -10px;
    }
    /* ===== FOOTER BASE ===== */
    
    .cf-footer {
        background: #0b0f14;
        color: #fff;
        font-family: Arial, sans-serif;
    }
    /* ===== TOP SECTION ===== */
    
    .cf-top {
        max-width: 1200px;
        margin: auto;
        padding: 50px 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    /* ===== TITLES ===== */
    
    .cf-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    /* ===== LINKS ===== */
    
    .cf-links {
        list-style: none;
        padding: 0;
    }
    
    .cf-links li {
        margin-bottom: 10px;
    }
    
    .cf-links a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .cf-links a:hover {
        color: #60a883;
    }
    /* ===== CONTACT ===== */
    
    .cf-contact {
        list-style: none;
        padding: 0;
        font-size: 14px;
        color: #ccc;
    }
    
    .cf-contact li {
        margin-bottom: 15px;
    }
    
    .cf-highlight {
        color: #ccc;
        line-height: 21px;
    }
    /* ===== SOCIAL ===== */
    
    .cf-social {
        list-style: none;
        padding: 0;
    }
    
    .cf-social li {
        margin-bottom: 10px;
        color: #ccc;
        cursor: pointer;
        transition: 0.3s;
    }
    
    .cf-social li:hover {
        color: #60a883;
    }
    /* ===== TEXT ===== */
    
    .cf-text {
        line-height: 23px;
        font-size: 14px;
        color: #ccc;
        margin-bottom: 15px;
    }
    /* ===== NEWSLETTER ===== */
    
    .cf-newsletter {
        display: flex;
    }
    
    .cf-newsletter input {
        flex: 1;
        padding: 10px;
        border: none;
        outline: none;
    }
    
    .cf-newsletter button {
        background: #60a883;
        color: #fff;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
    }
    /* ===== BOTTOM ===== */
    
    .cf-bottom {
        border-top: 1px solid #1a1f25;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    /* LOGO */
    
    .cf-logo {
        font-size: 22px;
        font-weight: bold;
        color: #60a883;
    }
    /* POLICY */
    
    .cf-policy a {
        color: #ccc;
        margin: 0 10px;
        text-decoration: none;
        font-size: 14px;
    }
    
    .cf-policy a:hover {
        color: #60a883;
    }
    /* COPY */
    
    .cf-copy {
        font-size: 13px;
        color: #888;
    }
    /* ===== ABOUT SECTION ===== */
    
    .ab-wrapper {
        padding: 80px 2%;
        background: #fff;
    }
    
    .ab-container {
        /* max-width: 1200px; */
        margin: auto;
        display: flex;
        align-items: center;
        gap: 50px;
    }
    /* IMAGE */
    
    .ab-image {
        flex: 1;
    }
    
    .ab-image img {
        width: 100%;
        border-radius: 12px;
    }
    /* CONTENT */
    
    .ab-content {
        flex: 1;
    }
    
    .ab-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .ab-text {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .ab-btn {
        display: inline-block;
        padding: 12px 25px;
        background: #60a883;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
    }
    /* RESPONSIVE */
    
    @media(max-width:768px) {
        .ab-container {
            flex-direction: column;
        }
    }
    /* ===== RESPONSIVE ===== */
    
    @media(max-width:992px) {
        .cf-top {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media(max-width:600px) {
        .cf-top {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        .cf-bottom {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
        .cf-policy {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
    }
    /* MOBILE */
    
    @media(max-width:768px) {
        .ps-card {
            flex: 0 0 100%;
            /* 🔥 1 card mobile */
        }
        .ps-btn {
            width: 35px;
            height: 35px;
        }
    }
    /* ===== TABLET ===== */
    
    @media(max-width:992px) {
        .siw-item {
            width: 200px;
        }
    }
    /* ===== MOBILE ===== */
    
    @media(max-width:768px) {
        .siw-flow {
            flex-direction: column;
            gap: 30px;
        }
        .siw-arrow {
            transform: rotate(90deg);
        }
        .siw-item {
            width: 100%;
            max-width: 300px;
        }
        .siw-title {
            font-size: 28px;
        }
    }
    /* 📱 MOBILE */
    
    @media(max-width:768px) {
        .product-track {
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
        }
        .product-track::-webkit-scrollbar {
            display: none;
        }
        .product-card {
            min-width: 48%;
            /* 🔥 2 cards in 1 row */
        }
    }
    /* MOBILE SLIDER */
    
    @media(max-width:768px) {
        .category-slider {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .category-slider::-webkit-scrollbar {
            display: none;
        }
        .category-card {
            min-width: 220px;
            flex: 0 0 auto;
            scroll-snap-align: start;
        }
        .category-card img {
            height: 180px;
        }
        .category-card h3 {
            font-size: 18px;
        }
    }
    
    @media(max-width:991px) {
        .mobile-toggle {
            display: block;
            background: none;
            border: none;
            font-size: 30px;
            color: #fff;
        }
        .nav-menu {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: #6d00a8;
            flex-direction: column;
            padding: 30px;
            transition: .4s;
        }
        .nav-menu.show {
            left: 0;
        }
        .search-box {
            display: none;
        }
        .content {
            width: 90%;
        }
        .content h1 {
            font-size: 38px;
        }
        .banner-img {
            width: 85%;
        }
        .slide {
            flex-direction: column;
            gap: 20px;
        }
        .marketplaces {
            flex-wrap: wrap;
        }
    }