    /* Title বড় ও বেশি bold */
    .shop-title{
        font-size: 32px;   /* আগের থেকে বড় */
        font-weight: 900;  /* বেশি bold */
        line-height: 1.2;
    }
    .shop-gradient-text{
        background: linear-gradient(90deg, var(--primary), var(--secondary-base));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .shop-view-all-link{
        letter-spacing: .05em;
        font-weight: 600;
    }

    /* উপরের pills wrapper (brand & category দুটোই এটা share করছে) */
    .brand-pill-wrapper{
        position: relative;
    }
    .pill-scroll{
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .pill-scroll::-webkit-scrollbar{
        display: none;
    }
    .simple-logo-pill{
        border-radius: 999px;
        border: 1px solid #eeeeee;
        padding: 6px 14px;
        font-size: 13px;
        color: #333;
        background: #ffffff;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 4px;
        white-space: nowrap;
        transition: all .15s ease-in-out;
        flex: 0 0 auto;
    }
    .simple-logo-pill img{
        width: 18px;
        height: 18px;
        object-fit: contain;
    }
    .simple-logo-pill:hover{
        border-color: var(--primary);
        box-shadow: 0 0 0 1px var(--soft-primary);
        text-decoration: none;
    }
    .simple-logo-pill.is-active{
        border-color: var(--primary);
        background: var(--soft-primary);
    }

    .pill-arrow{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border-radius: 999px;
        border: 1px solid #e5e5e5;
        background: #fff;
        font-size: 18px;
        cursor: pointer;
        z-index: 2;
    }
    .pill-arrow-left{ left: -16px; }
    .pill-arrow-right{ right: -16px; }

    /* ============ PRODUCT GRID LAYOUT ============ */

    .shop-grid-seven{
        display: flex;
        flex-wrap: wrap;
        margin-left: -8px;
        margin-right: -8px;
    }
    .shop-grid-seven .product-col{
        padding: 0 8px 16px;
        display: flex;
    }

    /* ডেস্কটপ ডিফল্ট: ৭×২ = ১৪ (৭টা করে ২ লাইন) */
    @media (min-width: 1200px) {
        .shop-grid-seven .product-col{
            flex: 0 0 14.2857%;
            max-width: 14.2857%;
        }
        /* ১৪টার বেশি থাকলে ১৫ নম্বর থেকে আর দেখাবো না */
        .shop-grid-seven .product-col:nth-child(n+15){
            display: none;
        }
    }

    /* ট্যাব: ৪×২ = ৮ */
    @media (min-width: 768px) and (max-width: 1199.98px) {
        .shop-grid-seven .product-col{
            flex: 0 0 25%;
            max-width: 25%;
        }
        /* ৮টার বেশি থাকলে লুকিয়ে দাও */
        .shop-grid-seven .product-col:nth-child(n+9){
            display: none;
        }
    }

    /* মোবাইল: ২×২ = ৪ */
    @media (max-width: 767.98px) {
        .shop-grid-seven .product-col{
            flex: 0 0 50%;
            max-width: 50%;
        }
        /* ৫ নম্বর থেকে আর কিছু দেখাবো না (মোট visible max ৪টা) */
        .shop-grid-seven .product-col:nth-child(n+5){
            display: none;
        }
    }

    /* কার্ড ডিজাইন (brand+category same) */
    .shop-prod-card{
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid #f0f0f0;
        padding: 10px 8px 12px;
        transition: box-shadow .15s ease, transform .15s ease;
        width: 100%;
    }
    .shop-prod-card:hover{
        box-shadow: 0 8px 18px rgba(0,0,0,0.07);
        transform: translateY(-2px);
    }
    .shop-prod-img-wrapper{
        width: 100%;
        padding-top: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }
    .shop-prod-img-wrapper img{
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .shop-prod-title{
        font-size: 13px;
        font-weight: 500;
        height: 36px;
        overflow: hidden;
    }
    .shop-prod-price{
        font-size: 13px;
    }
