    /* Global Shop Styling */
    body { background-color: #fff; font-family: 'Inter', -apple-system, sans-serif; }
    

        .un-product-thumbnail {
        position: relative;
        overflow: hidden;
        display: block;
    }

    /* ইমেজ হোভার সেটিংস */
    .img-primary {
        display: block;
        transition: opacity 0.5s ease;
    }
    .img-secondary {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    /* লাল ব্যাজ স্টাইল */
    .deal-badge {
        position: absolute;
        top: 10px;
        left: 0;
        background: #ff0000;
        color: #fff;
        padding: 4px 12px;
        font-size: 11px;
        font-weight: 700;
        z-index: 10;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        
        /* হোভার করলে দেখানোর জন্য ডিফল্ট হাইড */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        transform: translateX(-15px);
    }

    .deal-badge::after {
        content: "";
        position: absolute;
        right: -8px;
        top: 0;
        border-width: 12.5px 4px; 
        border-style: solid;
        border-color: #ff0000 transparent #ff0000 #ff0000;
    }

    /* হোভার করলে ইমেজ ও ব্যাজ পরিবর্তন */
    .product-inner:hover .img-secondary {
        opacity: 1;
    }
    .product-inner:hover .img-primary {
        opacity: 0;
    }
    .product-inner:hover .deal-badge {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
        margin-right: 8px;
        font-size: 0.9em;
    }



    .page-title { 
        font-size: 22px; 
        font-weight: 700; 
        text-transform: uppercase; 
        letter-spacing: 0.5px;
        margin: 0;
    }

    /* Category Drawer */
    #category-drawer {
        background: #ffffff;
        padding: 20px 0;
        margin-bottom: 30px;
        border-bottom: 1px solid #f0f0f0;
    }

    .cat-btn {
        padding: 8px 18px;
        margin-right: 8px;
        margin-bottom: 10px;
        font-size: 13px;
        font-weight: 500;
        border: 1px solid #e1e1e1;
        background: #fff;
        color: #444;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s ease-in-out;
    }

    .cat-btn:hover, .cat-btn.active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

    /* Product Card & Image Auto-Fit Logic */
    .product-inner {
        margin-bottom: 35px;
    }

    .un-product-thumbnail {
        position: relative;
        background: #fcfcfc;
        overflow: hidden;
        /* Matches the aspect ratio of your uploaded image */
        aspect-ratio: 3 / 4; 
        width: 100%;
    }

    .un-product-thumbnail img {
        width: 100%;
        height: 100%;
        display: block;
        /* This ensures the image fills the 3:4 box without stretching */
        object-fit: cover; 
        transition: opacity 0.4s ease;
    }

    .img-secondary {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .product-inner:hover .img-secondary { opacity: 1; }
    .product-inner:hover .img-primary { opacity: 0; }

    /* Text Styling */
    .un-product-details {
        padding-top: 12px;
        text-align: left;
    }

    .un-product-title {
        font-size: 14px;
        font-weight: 600;
        color: #000;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .un-product-title a {
        text-decoration: none;
        color: inherit;
    }

    .price-wrapper {
        font-size: 14px;
        color: #666; 
        font-weight: 500;
    }

    .old-price {
        text-decoration: line-through;
        color: #bbb;
        margin-right: 8px;
        font-size: 13px;
    }

    .toggle-cat-btn {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        color: #000;
        border: 1px solid #000;
        padding: 6px 14px;
        background: transparent;
        border-radius: 0;
    }