* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background: #fff;
            color: #333;
        }

        
        /* ============== PROFILE BANNER ============== */
        .container-main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 12px 12px 0;
        }

        .profile-banner {
            position: relative;
            height: 230px;
            border-radius: 12px;
            overflow: hidden;
            background: #e9eef5;
        }

        .profile-banner .bg {
            position: absolute;
            inset: 0;
            /* top:0 right:0 bottom:0 left:0 */
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .profile-banner .overlay {
            position: absolute;
            inset: 0;
            opacity: .6;
            z-index: 1;
            /* اوپر بیٹھے گی */
            background: #2d4f89;
            /* JS اس رنگ کو پروفائل پکچر سے بدل دے گا */
        }

        .profile-content {
            position: absolute;
            z-index: 2;
            left: 20px;
            right: 20px;
            bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #fff;
        }

        .profile-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .profile-info img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, .75);
        }

        .name-row {
            display: flex;
            align-items: center;
            gap: 6px;
            text-shadow: 0 2.36px 13.896px #122378, 0 -1px 1px #ffffff;
        }

        .name-row img.verified {
            width: 18px;
            height: auto;
            border: none;
        }

        .follow-btn {
            background: #1877f2;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
        }

        .sponsor {
            text-shadow: 0 2.36px 13.896px #122378, 0 -1px 1px #ffffff;
        }

        @media (max-width:768px) {
            .profile-banner {
                height: 160px;
            }

            .profile-info img {
                width: 90px;
                height: 90px;
            }

            .name-row h4 {
                font-size: 16px;
            }

            .follow-btn {
                padding: 2px 10px;
            }

            .sponsor {
                text-shadow: 0 2.36px 13.896px #122378, 0 -1px 1px #ffffff;
                font-size: 10px;
            }
        }

        /* ============== TAGLINE ============== */
        .tagline {
            padding: 12px 6px 6px;
            font-size: 14px;
        }

        /* ============== BANNERS SLIDER ============== */
        .banner-container {
            display: flex;
            gap: 14px;
            padding: 15px 0 25px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
        }

        .banner-container a {
            flex: 0 0 auto;
            scroll-snap-align: start;
        }

        .banner-container img {
            width: 320px;
            height: 110px;
            border-radius: 8px;
            object-fit: fill;
            display: block;
        }

        @media (max-width:768px) {
            .banner-container img {
                width: 260px;
                height: 85px;
            }
        }

        /* ============== CATEGORIES ============== */
        .categories {
            display: flex;
            gap: 35px;
            padding: 6px 0 14px;
            overflow-x: auto;
        }

        @media (max-width:768px) {
            .categories {
                gap: 18px;
            }
        }

        .category {
            flex: 0 0 auto;
            max-width: 86px;
            text-align: center;
            cursor: pointer;
        }

        .category img {
            width: 86px;
            height: 86px;
            border-radius: 8px;
            object-fit: cover;
        }

        .category-name {
            margin-top: 6px;
            font-size: 13px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }


        /* ============== PRODUCTS GRID ============== */
        /* ---------- PRODUCTS GRID ---------- */
        .products {
            display: grid;
            gap: 16px;
            padding: 12px 0 4px;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        }

        .product-card {
            background: #fff;
        	width: 202px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
            /* padding: 12px; */
            /* text-align: center; */
            margin-bottom: 3px;
            cursor: pointer;
            transition: transform .2s;
        }
		@media (max-width: 1050px) {
    		.product-card {
        		width: auto;
    		}
		}

        .product-card:hover {
            transform: scale(1.02);
        }

        .product-card img {
            width: 100%;
            height: 160px;
            border: none;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            object-fit: cover;
        }

        .product-detail {
            padding-left: 8px;
            padding-right: 8px;
            padding-bottom: 8px;
        }

        .shop-now {
            display: inline-block;
            margin: 10px 0 6px;
            padding: 7px 14px;
            border-radius: 6px;
            color: #fff;
            font-weight: 700;
            font-size: 13px;
        }

        .green-btn {
            background: #7ac142;
        }

        .red-btn {
            background: #d8262c;
        }

        .blue-btn {
            background: #2d5fa6;
        }

        .yellow-btn {
            background: #f4a300;
        }

        .purple-btn {
            background: #8e44ad;
        }

        .price {
            font-weight: 700;
            margin-top: 4px;
        }

        .desc {
            font-size: 13px;
            color: #666;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }


        .shop-now {
            display: inline-block;
            margin: 0px 0 0px;
            padding: 2px 5px;
            border-radius: 6px;
            color: #fff;
            background-color: #c2c1c1;
            text-decoration: none;
            font-weight: 500;
            float: inline-end;
            font-size: 9px;
        }


        .price {
            font-weight: 700;
            margin-top: 4px;
        }

        .desc {
            font-size: 13px;
            color: #666;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }
        a{
            text-decoration: none;
            color: #555;
        }
		.container {
      		max-width: 1100px;
    	}