    /* Global Shop Styling */
    body { background-color: #fff; font-family: 'Inter', -apple-system, sans-serif; }
    
    .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;
    }