/* MUKOTO shop homepage — extracted from product_list.html for faster first paint */
/* Mobile shop home — clean header sections */
        .shop-mobile-home {
            background: #fff;
            border-radius: 0 0 24px 24px;
            padding-bottom: 4px;
            margin-bottom: 4px;
        }

        .shop-quick-actions {
            display: flex;
            gap: 10px;
            padding: 12px 16px 8px;
        }

        .shop-action-card {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 12px 6px;
            border-radius: 12px;
            background: #fafafa;
            border: 1px solid #ececec;
            text-decoration: none;
            color: #111;
            transition: transform 0.18s ease, background 0.18s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .shop-action-card:active {
            transform: scale(0.96);
            background: #fffaf6;
        }

        .shop-action-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #fff4ec;
            color: #ff6a00;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .shop-action-icon .ri-icon {
            width: 22px;
            height: 22px;
            display: block;
        }

        .shop-action-label {
            font-size: 11px;
            font-weight: 600;
            text-align: center;
            line-height: 1.25;
            letter-spacing: -0.01em;
        }

        .shop-trends-section {
            padding: 2px 0 18px;
        }

        .shop-section-head {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding: 10px 16px 12px;
        }

        .shop-section-head h2 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            color: #111;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .shop-section-head a {
            font-size: 12px;
            font-weight: 600;
            color: #ff6a00;
            text-decoration: none;
        }

        .shop-trends-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 0 16px 4px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .shop-trends-scroll::-webkit-scrollbar {
            display: none;
        }

        .shop-trend-item {
            flex: 0 0 70px;
            width: 70px;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .shop-trend-image {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            overflow: hidden;
            background: #f5f5f5;
            border: 1px solid #eee;
            flex-shrink: 0;
        }

        .shop-trend-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .shop-trend-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
        }

        .shop-trend-placeholder .ri-icon {
            width: 22px;
            height: 22px;
        }

        .shop-trend-title {
            margin-top: 8px;
            font-size: 11px;
            font-weight: 400;
            color: #666;
            text-align: center;
            width: 70px;
            line-height: 14px;
            height: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .shop-trend-price {
            margin-top: 3px;
            font-size: 12px;
            font-weight: 700;
            color: #ff6a00;
            line-height: 16px;
            letter-spacing: -0.02em;
        }

        .shop-trends-empty {
            margin: 0;
            padding: 8px 16px;
            color: #999;
            font-size: 13px;
        }

        .home-tabs {
            display: flex;
            align-items: stretch;
            background: #fff;
            margin: 0;
            padding: 0 8px;
            border-top: 1px solid #eee;
            border-bottom: none;
            position: relative;
            z-index: 1;
        }

        .home-tab {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 4px;
            color: #888;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0;
            text-decoration: none;
            -webkit-tap-highlight-color: transparent;
        }

        .home-tab span {
            position: relative;
            display: inline-block;
            padding: 12px 0 10px;
        }

        .home-tab.is-active {
            color: #111;
            font-weight: 700;
        }

        .home-tab.is-active span::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            border-radius: 3px 3px 0 0;
            background: #ff6a00;
        }

        /* Content Banner Styles */
        .univ-banner-section {
            width: 100%;
            padding: 1rem 0;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .univ-carousel {
            position: relative;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 1rem;
            overflow: hidden;
        }

        .univ-slide {
            display: none;
            width: 100%;
            position: relative;
            animation: fadeInUniv 0.6s ease-in-out;
        }

        .univ-slide.active {
            display: block;
        }

        .univ-link {
            display: block;
            width: 100%;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            background: #000000;
            position: relative;
            border: 3px solid #dee2e6;
        }

        /* Container for non-clickable items */
        .univ-container {
            display: block;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            background: #000000;
            position: relative;
            border: 3px solid #dee2e6;
        }

        .univ-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Badge */
        .univ-slide::before {
            content: 'Sponsored';
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(255, 255, 255, 0.95);
            color: #495057;
            padding: 0.4rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 600;
            z-index: 5;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Navigation Arrows */
        .univ-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            color: #1a1a1a;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .univ-prev {
            left: 0;
        }

        .univ-next {
            right: 0;
        }

        /* Dots Indicator */
        .univ-dots {
            position: absolute;
            bottom: -2.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 10;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .univ-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e0;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .univ-dot.active {
            background: #ff6b35;
            width: 32px;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
        }

        .univ-dot:hover:not(.active) {
            background: #ff8c5a;
            transform: scale(1.2);
            border-color: #ff6b35;
        }

        @keyframes fadeInUniv {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .univ-carousel {
                padding: 0 0.75rem;
            }

            .univ-img {
                height: 280px;
            }

            .univ-nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.35rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .univ-banner-section {
                padding: 0.75rem 0 0 0;
            }

            .mobile-ad-banner-wrap {
                margin: 0 0 8px 0 !important;
                padding: 0 !important;
            }

            .mobile-ad-banner-wrap .univ-banner-section {
                padding: 0.75rem 0 0 0 !important;
                margin-bottom: 0 !important;
            }

            .mobile-ad-banner-wrap .univ-carousel {
                padding: 0 !important;
                margin-bottom: 0 !important;
            }

            .mobile-ad-banner-wrap .univ-dots {
                bottom: 0.5rem !important;
            }

            .mobile-ad-banner-wrap + .mobile-masonry-item {
                margin-top: 0 !important;
            }

            .univ-carousel {
                padding: 0;
            }

            .univ-img {
                height: 220px;
            }

            .univ-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }

            .univ-dots {
                padding: 0.5rem 1rem;
                bottom: 0.75rem;
            }

            .univ-dot {
                width: 8px;
                height: 8px;
            }

            .univ-dot.active {
                width: 24px;
            }

            .univ-slide::before {
                font-size: 0.65rem;
                padding: 0.3rem 0.6rem;
                top: 0.75rem;
                left: 0.75rem;
            }
        }

/* --- block separator --- */

/* Alibaba-Style Category Grid Cards */
    .category-grid-card {
        background: #ffffff;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        padding: 12px 8px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        min-height: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category-grid-card:hover {
        border-color: #ff6a00;
        box-shadow: 0 4px 20px rgba(255, 106, 0, 0.15);
        transform: translateY(-3px);
    }

    /* Active Category State */
    .category-grid-card.active-category {
        border: 1px solid #ff6a00;
        box-shadow: 0 4px 20px rgba(255, 106, 0, 0.2);
        background: #fff8f5;
        transform: translateY(-2px);
    }

    .category-grid-card.active-category .category-name {
        color: #ff6a00;
        font-weight: 700;
    }

    .category-grid-card.active-category .category-item-count {
        color: #ff6a00 !important;
        font-weight: 600;
    }

    .category-grid-card.active-category .category-image-wrapper {
        border-color: #ff6a00;
        box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
    }

    .category-grid-card.active-category .category-icon-fallback {
        background: linear-gradient(135deg, #ff6a00 0%, #ff8533 100%);
    }

    .category-grid-card.active-category .category-icon-fallback i {
        color: #ffffff !important;
    }

    /* Active Category Arrow Indicator */
    .category-grid-card.active-category::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #ff6a00;
    }

    /* Active Category Badge */
    .category-grid-card.active-category .preview-badge {
        bottom: 10px;
        opacity: 1;
    }

    .category-card-inner {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .category-image-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 2px solid #e8e8e8;
    }

    .category-featured-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .category-grid-card:hover .category-featured-img {
        transform: scale(1.1);
    }

    .category-grid-card:hover .category-image-wrapper {
        border-color: #ff6a00;
        box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
    }

    /* Fallback icon style (if no image) */
    .category-icon-fallback {
        width: 80px;
        height: 80px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .category-grid-card:hover .category-icon-fallback {
        background: linear-gradient(135deg, #ff6a00 0%, #ff8533 100%);
        transform: scale(1.1) rotate(5deg);
    }

    .category-grid-card:hover .category-icon-fallback i {
        color: #ffffff !important;
    }

    .category-info {
        transition: all 0.3s ease;
    }

    .category-name {
        font-weight: 600;
        color: #333;
        transition: color 0.3s ease;
    }

    .category-grid-card:hover .category-name {
        color: #ff6a00;
    }

    .category-hover-preview {
        position: absolute;
        bottom: -40px;
        right: 10px;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .category-grid-card:hover .category-hover-preview {
        bottom: 10px;
        opacity: 1;
    }

    .preview-badge {
        width: 28px;
        height: 28px;
        background: #ff6a00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 12px;
        box-shadow: 0 2px 8px rgba(255, 106, 0, 0.3);
    }

    /* 5th deal item: hidden on normal, visible on XL screens (1400px+) */
    .deal-item-5th { display: none !important; }
    @media (min-width: 1400px) {
        .deal-item-5th { display: flex !important; }
    }

    /* START: Desktop Top Deals Styles */

    .top-deals-desktop {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }

    .top-deals-title {
        font-size: 20px;
        font-weight: 700;
        color: #333;
    }

    .top-deals-scroll-desktop {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 15px 5px 15px 5px; /* Added top padding to prevent hover cut-off */
        scrollbar-width: thin;
        scrollbar-color: #ff6a00 #eee;
    }
    
    .top-deals-scroll-desktop::-webkit-scrollbar {
        height: 6px;
    }
    
    .top-deals-scroll-desktop::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 3px;
    }
    
    .top-deals-scroll-desktop::-webkit-scrollbar-thumb {
        background-color: #ff6a00;
        border-radius: 3px;
    }

    .deal-card-desktop {
        text-decoration: none;
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 100px;
        transition: transform 0.2s ease;
    }

    .deal-card-desktop:hover {
        transform: translateY(-5px);
        color: #ff6a00;
    }

    .deal-image-wrapper {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #eee;
        position: relative;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color 0.2s;
    }

    .deal-card-desktop:hover .deal-image-wrapper {
        border-color: #ff6a00;
    }

    .deal-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .deal-placeholder {
        font-size: 32px;
        color: #ddd;
    }

    .deal-info .deal-title {
        font-size: 13px;
        font-weight: 400 !important; /* Force normal weight */
        color: #333 !important;
    }
    
    .deal-card-desktop:hover .deal-info .deal-title {
        color: #ff6a00 !important;
    }
    
    .deal-info .deal-price {
        font-size: 14px;
        font-weight: 400 !important; /* Force normal weight */
        color: #ff6a00 !important; /* Orange color */
    }


    .text-orange {
        color: #ff6a00 !important;
    }
    
    /* Two-Column Deals Section */
    .deals-two-column-wrapper {
        margin-bottom: 24px;
    }
    
    .deals-section-card {
        background: #FFF8E7; /* Soft Cream/Beige Tone */
        border: none !important; /* Removed border */
        border-radius: 8px;
        padding: 16px;
        height: 100%;
        box-shadow: none !important; /* Ensure no shadow */
    }
    
    .deals-section-title {
        font-size: 18px;
        font-weight: 700;
        color: #333;
    }
    
    .deals-scroll-container {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .deals-scroll-container::-webkit-scrollbar {
        height: 4px;
    }
    
    .deals-scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .deals-scroll-container::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 4px;
    }
    
    .deals-scroll-container::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }
    
    .deal-card-compact {
        flex: 0 0 auto;
        width: 140px;
        text-decoration: none;
        display: block;
        transition: transform 0.2s ease;
        background: transparent !important; /* Removed white background */
        padding: 0 !important; /* Removed padding */
        border: none !important; /* Ensure no border */
    }
    
    .deal-card-compact:hover {
        /* transform: translateY(-4px); Removed hover lift */
    }
    
    .deal-image-wrapper-compact {
        width: 100%; 
        height: 180px; /* Fixed height for consistency */
        border-radius: 10px;
        overflow: hidden;
        background: #ffffff;
        padding: 5px;
        position: relative;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }
    
    .deal-image-wrapper-compact img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 6px;
    }
    
    .deal-info-compact {
        padding: 4px 0;
    }
    
    .deal-price-compact {
        font-size: 16px;
        font-weight: 600;
        color: #ff6a00 !important;
        margin-bottom: 4px;
    }
    
    .deal-price-super {
        font-size: 18px;
        font-weight: 800;
        color: #ff6a00 !important;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    /* Section Divider */
    .section-divider-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 24px 0;
        width: 100%;
    }
    
    .section-divider-line {
        height: 1px;
        background-color: #e0e0e0;
        flex: 1;
        max-width: 100px;
    }
    
    .section-divider-text {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0 16px;
        text-transform: capitalize;
    }

    .deal-tag {
        font-size: 13px;
        font-weight: 600;
        margin-top: 2px;
    }
    
    .deal-title-compact {
        font-size: 12px;
        color: #666;
        line-height: 1.3;
    }
    
    /* Desktop SHEIN-style 3-row circular icon grid */
    .category-orb-section {
        padding: 10px 56px 2px;
        margin-bottom: 4px;
    }

    /* Keep top hero banner aligned to same desktop side spacing */
    .hero-banner-shell {
        /* Match effective main-products gutter:
           outer container (px-md-5 => 48px) + main-products-shell (44px) */
        padding-left: 92px !important;
        padding-right: 92px !important;
    }

    .category-orb-grid-wrap {
        display: flex;
        flex-direction: column;
        gap: 22px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 44px;
    }

    .category-orb-row {
        display: grid;
        grid-template-columns: repeat(10, minmax(0, 1fr));
        gap: 14px;
    }

    .category-orb-link {
        min-width: 0;
        text-decoration: none;
        text-align: center;
        display: block;
    }

    .category-orb {
        width: 100%;
        max-width: 108px;
        aspect-ratio: 1 / 1;
        height: auto;
        margin: 0 auto 10px;
        border-radius: 50%;
        background: #f3f3f3;
        overflow: hidden;
        border: 1px solid #ececec;
        transition: border-color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category-orb.active {
        border-color: #d8d8d8;
        box-shadow: none;
    }

    .category-orb-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.2);
        transform-origin: center center;
    }

    .category-orb-name {
        font-size: 12px;
        line-height: 1.3;
        font-weight: 500;
        color: #1f1f1f;
        min-height: 32px;
        max-width: 102px;
        margin: 0 auto;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    @media (max-width: 1200px) {
        .hero-banner-shell {
            /* 48px outer + 30px inner */
            padding-left: 78px !important;
            padding-right: 78px !important;
        }

        .category-orb-grid-wrap {
            max-width: 100%;
            padding: 0 30px;
        }

        .category-orb-row {
            gap: 10px;
        }

        .category-orb {
            max-width: 98px;
        }

        .category-orb-name {
            font-size: 11px;
            max-width: 92px;
        }
    }


    /* END: Two-Column Deals Section */
    /* END: Desktop Top Deals Styles */



    /* Category Container Wrapper - Clean Flat Design */
    .category-container-wrapper {
        background: #E8DCFF;
        border-radius: 0;
        padding: 15px 25px 10px 25px;
        margin-bottom: 0px; /* Reduced from 30px */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }



    .category-container-header {
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
    }

    .category-header-text {
        display: inline-block;
    }

    .category-container-title {
        color: white;
        font-size: 48px;
        font-weight: 900;
        margin: 0;
        font-style: italic;
        letter-spacing: -1px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        line-height: 1.1;
    }

    .category-container-hashtag {
        color: white;
        font-size: 22px;
        font-weight: 600;
        margin-top: 4px;
        opacity: 0.95;
        font-style: italic;
    }

    /* Category Card Enhancements for Gradient Container */
    .category-container-wrapper .category-grid-card {
        background: white;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-container-wrapper .category-grid-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .category-container-wrapper .active-category {
        border: 2px solid white;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }

    /* Horizontal Scroll Container for Categories */
    .category-scroll-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 30px;
        justify-content: space-between;
        padding: 5px 5px 5px 5px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Custom Scrollbar for Category Section - Very Short Centered Pill */
    .category-scroll-container::-webkit-scrollbar {
        height: 3px;
    }

    .category-scroll-container::-webkit-scrollbar-track {
        background: rgba(255, 248, 231, 0.2); /* Cream tint */
        border-radius: 10px;
        margin: 0 45%; /* Center the track - only middle 10% visible */
    }

    .category-scroll-container::-webkit-scrollbar-thumb {
        background: #FFF8E7; /* Cream/off-white color */
        border-radius: 10px;
        min-width: 30px; /* Very short pill */
        max-width: 50px;
    }

    .category-scroll-container::-webkit-scrollbar-thumb:hover {
        background: #F5F5DC; /* Slightly darker cream on hover */
    }

    /* Horizontal Category Card */
    /* Horizontal Category Card */
    .category-card-horizontal {
        flex: 0 0 auto;
        width: 110px;
        min-width: 110px;
        max-width: 110px;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0 5px;
        overflow: visible;
    }

    .category-card-horizontal:hover .category-image-wrapper {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .category-card-horizontal.active-category .category-image-wrapper {
        border: 3px solid #ff6a00;
        box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
    }
    
    /* Remove styles from the main container in active state */
    .category-card-horizontal.active-category {
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    .category-card-horizontal .category-image-wrapper {
        width: 100px;
        height: 100px;
        background: white;
        overflow: hidden;
        border-radius: 40%;
        margin-bottom: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent; /* Placeholder for active border */
    }

    .category-card-horizontal .category-featured-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .category-card-horizontal .category-icon-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        border-radius: 40%;
    }

    .category-card-horizontal .category-info {
        padding: 8px 4px 0;
        text-align: center;
        width: 100%;
    }

    .category-card-horizontal .category-name {
        font-size: 12px;
        font-weight: 500;
        color: #333;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 100%;
    }

    .category-card-horizontal .category-item-count {
        font-size: 11px;
        color: #ff6a00;
        font-weight: 500;
    }

    .category-card-horizontal .category-hover-preview {
        display: none;
    }
    /* END: Category Container Wrapper */




    /* Desktop Product Card Styles */
    .product-title {
        font-size: 14px;
        font-weight: 400 !important; /* Force normal weight */
        color: #333 !important;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 16px;
        font-weight: 600 !important;
        color: #ff6a00 !important; /* Orange color */
        margin-bottom: 8px;
    }

    .product-info {
        padding: 12px;
    }

    .product-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover !important;
        object-position: center;
        background-color: #fff;
        padding: 0;
        transition: none;
    }

    .product-card:hover .product-image {
        transform: none;
    }

    /* Force 5 products per row on desktop */
    #desktop-product-grid {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
        margin: 0 !important;
    }

    /* Align grid with category orbs (circles sit inset within their grid cells) */
    .main-products-shell {
        box-sizing: border-box;
        padding-left: 68px !important;
        padding-right: 68px !important;
    }

    @media (max-width: 1200px) and (min-width: 768px) {
        .main-products-shell {
            padding-left: 54px !important;
            padding-right: 54px !important;
        }
    }

    @media (max-width: 767px) {
        .main-products-shell {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }
    }

    #desktop-product-grid .product-col {
        margin-bottom: 0 !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        flex: 0 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Laptop/desktop grid: title + price only, larger clear product image */
    @media (min-width: 768px) {
        #desktop-product-grid .product-desc,
        #desktop-product-grid .product-meta-row,
        #desktop-product-grid .condition-badge-card {
            display: none !important;
        }

        #desktop-product-grid .product-image-wrap {
            aspect-ratio: 1 / 1;
            background: #fafafa;
            overflow: hidden;
        }

        #desktop-product-grid .product-image {
            height: 100%;
            width: 100%;
            object-fit: contain;
            object-position: center;
        }

        /* Shein-style: swap to 2nd photo on hover, card stays still */
        #desktop-product-grid .product-image-hover {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        #desktop-product-grid .product-card-link:hover .product-image-hover,
        #desktop-product-grid .product-card-link:focus-visible .product-image-hover {
            opacity: 1;
        }

        #desktop-product-grid .product-info {
            padding: 8px 8px 10px;
        }

        #desktop-product-grid .product-title {
            min-height: calc(1.3em * 2);
            margin-bottom: 4px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            font-size: 13px;
            line-height: 1.3;
        }

        #desktop-product-grid .product-price {
            margin-bottom: 0;
            font-size: 14px;
        }

        /* No hover lift/shadow on desktop product cards */
        #desktop-product-grid .product-card-link,
        #desktop-product-grid .product-card-link:hover,
        #desktop-product-grid .product-card,
        #desktop-product-grid .product-card:hover {
            transform: none !important;
            box-shadow: none !important;
            opacity: 1 !important;
            transition: none !important;
        }

        #desktop-product-grid .product-card-link:hover .product-card {
            border-color: #ededed !important;
            box-shadow: none !important;
            transform: none !important;
        }

        #desktop-product-grid .product-card:hover .product-image,
        #desktop-product-grid .product-image {
            transform: none !important;
        }
    }

    @media (max-width: 991px) {
        #desktop-product-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
        }
    }

    @media (max-width: 767px) {
        #desktop-product-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    /* Category Indicator Header */
    .category-indicator-header {
        padding: 16px 0;
        margin-top: 20px;
    }
    
    .category-indicator-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }
    
    .category-indicator-count {
        font-size: 14px;
        color: #666;
        font-weight: 500;
    }
    
    .category-indicator-divider {
        height: 2px;
        background: linear-gradient(90deg, #ff6a00 0%, transparent 100%);
        margin-top: 12px;
        border-radius: 2px;
    }
    
    .btn-clear-filter {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        background: #f5f5f5;
        color: #666;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        border: 1px solid #e0e0e0;
    }
    
    .btn-clear-filter:hover {
        background: #ff6a00;
        color: white;
        border-color: #ff6a00;
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(255, 106, 0, 0.2);
    }
    
    .btn-clear-filter i {
        font-size: 12px;
    }
    /* END: Category Indicator Header */
    /* END: Desktop Product Card Styles */

    /* Section Header Base Style */
    .section-header {
        padding: 0 8px;
        margin-bottom: 10px;
    }

    /* Mobile Action Cards - Compact SHEIN Style */
    .mobile-action-cards {
        display: flex;
        gap: 6px;
        padding: 0 8px 8px 8px;
        margin-top: -6px; /* Negative margin to pull closer to banner */
        background: #fff;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mobile-action-cards::-webkit-scrollbar {
        display: none;
    }

    .action-card {
        flex: 1;
        min-width: 100px;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 6px;
        padding: 8px 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
        text-decoration: none;
        color: inherit;
    }

    .action-icon {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #ff6a00 0%, #ff8c42 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
    }

    .action-card span {
        font-size: 10px;
        color: #333;
        font-weight: 500;
        line-height: 1.2;
    }

    .open-btn {
        background: #ff6a00;
        color: white;
        border: none;
        border-radius: 12px;
        padding: 3px 10px;
        font-size: 10px;
        font-weight: 600;
        margin-top: 2px;
    }

    /* Category Sidebar Styles */
    .category-search-box input {
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 8px 12px;
        font-size: 13px;
        transition: all 0.3s ease;
    }

    .category-search-box input:focus {
        border-color: #ff6a00;
        box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
        outline: none;
    }

    /* Category Item Wrapper */
    .category-item-wrapper {
        margin-bottom: 4px;
    }

    .category-item-check {
        margin-bottom: 0;
        padding: 8px 10px;
        border-radius: 6px;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .category-item-check:hover {
        background-color: #fff7f0;
    }

    .category-label {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 0;
        font-size: 14px;
        color: #333;
    }

    .category-icon {
        font-size: 16px;
        color: #ff6a00;
        min-width: 20px;
        text-align: center;
    }

    .category-name {
        flex: 1;
    }

    /* Checked state */
    .category-item-check:has(input:checked) {
        background-color: #fff0e6;
        border-left: 3px solid #ff6a00;
    }

    .category-item-check:has(input:checked) .category-label {
        color: #ff6a00;
        font-weight: 600;
    }

    /* Accordion Styles */
    .categories-accordion {
        margin-top: 12px;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        overflow: hidden;
        background: white;
    }

    .accordion-header {
        padding: 12px 14px;
        background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 13px;
        color: #555;
        transition: all 0.3s ease;
        border-bottom: 1px solid #e8e8e8;
    }

    .accordion-header:hover {
        background: linear-gradient(135deg, #fff7f0 0%, #ffffff 100%);
        color: #ff6a00;
    }

    .accordion-icon {
        transition: transform 0.3s ease;
        font-size: 12px;
        color: #999;
    }

    .accordion-icon.rotated {
        transform: rotate(180deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0 8px;
    }

    .accordion-content.open {
        max-height: 600px;
        padding: 12px 8px;
        overflow-y: auto;
    }

    /* Custom Scrollbar for Accordion */
    .accordion-content::-webkit-scrollbar {
        width: 6px;
    }

    .accordion-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .accordion-content::-webkit-scrollbar-thumb {
        background: #ff6a00;
        border-radius: 10px;
    }

    .accordion-content::-webkit-scrollbar-thumb:hover {
        background: #e55f00;
        border-radius: 10px;
    }

    /* Sidebar heading styles */
    .sidebar h6 {
        font-size: 15px;
        font-weight: 700;
        color: #222;
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Product Card Link Styles */
    .product-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        transition: none;
    }

    .product-card-link:hover {
        opacity: 1;
        text-decoration: none;
        color: inherit;
    }

    .product-card-link:hover .product-card {
        border-color: #ededed;
        box-shadow: none;
        transform: none;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .product-card {
        border: 1px solid #ededed;
        border-radius: 0 !important;
        overflow: hidden;
        background: white;
        transition: none;
        height: 100%;
    }

    .product-image {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 0 !important;
    }

    .condition-badge-card {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(255, 255, 255, 0.95);
        padding: 4px 8px;
        border-radius: 3px;
        font-size: 11px;
        font-weight: 600;
        color: #666;
        border: 1px solid #ddd;
    }

    .seller-name {
        font-size: 11px;
        color: #757575;
        font-weight: 500;
    }

    .product-info {
        padding: 7px 7px 9px;
    }

    .product-title {
        font-size: 13px;
        font-weight: 500 !important;
        line-height: 1.35;
        color: #1f1f1f !important;
        margin-bottom: 4px;
        min-height: 38px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-desc {
        font-size: 12px;
        color: #858585;
        line-height: 1.35;
        margin-bottom: 4px;
        min-height: 32px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-price {
        font-size: 13px;
        font-weight: 700 !important;
        color: #ff6a00 !important;
        margin-bottom: 3px;
    }

    .product-meta-row {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: #9a9a9a;
    }

    .meta-dot {
        font-size: 10px;
        color: #bbb;
    }

    .product-meta-time {
        font-size: 11px;
        color: #9a9a9a;
    }

    /* Hide the radio button checkboxes */
    .category-item-check .form-check-input {
        display: none;
    }

    /* Product Col Positioning */
    .product-col {
        position: relative;
    }

    /* Pagination Styles */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 0;
        list-style: none;
    }

    .pagination .page-item {
        margin: 0;
    }

    .pagination .page-link {
        padding: 10px 16px;
        border: 1px solid #e0e0e0;
        background: #ffffff;
        color: #666;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-block;
        min-width: 44px;
        text-align: center;
    }

    .pagination .page-link:hover {
        background: #fff7f0;
        border-color: #ff6b35;
        color: #ff6b35;
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
    }

    .pagination .page-item.active .page-link {
        background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
        border-color: #ff6b35;
        color: #ffffff;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    .pagination .page-item.active .page-link:hover {
        transform: none;
    }

    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        padding: 10px 20px;
        font-weight: 600;
    }

    .pagination .page-item.disabled .page-link {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
    }

    /* Responsive pagination */
    @media (max-width: 768px) {

        /* Reduce product card sizes on mobile */
        .product-card {
            font-size: 11px;
        }

        .product-card img {
            max-height: 80px;
            object-fit: cover;
        }

        .product-card .card-body {
            padding: 6px;
        }

        .product-card .card-title {
            font-size: 11px;
            margin-bottom: 4px;
            line-height: 1.2;
        }

        .product-card .price {
            font-size: 13px;
            font-weight: 600;
        }

        .product-card .text-muted {
            font-size: 9px;
        }

        .condition-badge-card {
            font-size: 8px;
            padding: 2px 4px;
        }

        /* Reduce section titles */
        h2 {
            font-size: 16px;
        }

        h3 {
            font-size: 14px;
        }

        /* Make product info more compact */
        .product-info {
            padding: 6px;
        }

        .product-title {
            font-size: 11px !important;
            line-height: 1.2;
        }

        .product-price {
            font-size: 13px !important;
            font-weight: 600;
        }

        .supplier-info {
            font-size: 9px;
            margin-top: 3px;
        }

        .verified-badge {
            font-size: 8px;
            padding: 1px 4px;
        }

        .seller-name {
            font-size: 9px;
        }

        .product-meta {
            font-size: 8px;
            margin-top: 2px;
        }
    }

    @media (max-width: 576px) {
        .pagination {
            gap: 4px;
        }

        .pagination .page-link {
            padding: 8px 12px;
            font-size: 13px;
            min-width: 38px;
        }

        .pagination .page-item:first-child .page-link,
        .pagination .page-item:last-child .page-link {
            padding: 8px 14px;
        }
    }


    /* Fix anchor scroll offset for fixed header */
    #tab-section {
        scroll-margin-top: 110px;
    }

    /* SHEIN-Style 3-Row Horizontal Scroll - Mobile Only - OVERRIDE ALL */
    @media (max-width: 768px) {
        .mobile-section .mobile-products-grid {
            display: grid !important;
            grid-template-rows: repeat(2, min-content) !important;
            grid-auto-flow: column !important;
            grid-auto-columns: min-content !important;
            overflow-x: auto !important;
            gap: 6px !important; /* Larger gap */
            row-gap: 6px !important;
            column-gap: 8px !important;
            padding: 2px 0 2px 0 !important;
            margin: 0 !important;
            background: inherit !important;
            -webkit-overflow-scrolling: touch !important;
            scrollbar-width: none !important;
            height: auto !important;
        }

        .mobile-section .mobile-products-grid::-webkit-scrollbar {
            display: none !important;
        }

        .mobile-section .mobile-product-card {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: flex-start !important;
            text-align: center !important;
            background: transparent !important;
            border: none !important;
            width: 75px !important;
            min-width: 75px !important;
            max-width: 75px !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .mobile-section .mobile-product-card img {
            width: 70px !important;
            height: 70px !important;
            min-width: 70px !important;
            min-height: 70px !important;
            border-radius: 50% !important;
            object-fit: cover !important;
            border: 2px solid #ffffff !important;
            background-color: transparent !important;
            margin: 0 0 4px 0 !important;
            padding: 2px !important;
            display: block !important;
            box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.1) !important;
        }

        .mobile-section .mobile-product-card .no-image {
            width: 70px !important;
            height: 70px !important;
            border-radius: 50% !important;
            background: transparent !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #ccc !important;
            margin: 0 0 4px 0 !important;
            padding: 0 !important;
            border: 1px solid rgba(0,0,0,0.05) !important;
        }

        .mobile-section .mobile-product-card .product-name {
            font-size: 10px !important;
            color: #333 !important; /* Changed to black/dark */
            font-weight: 400 !important; /* Ensure not bold */
            line-height: 1.2 !important;
        }

        .mobile-section .mobile-product-card .product-price-mobile {
            font-size: 11px !important;
            color: #ff6a00 !important; /* Orange */
            font-weight: 700 !important;
            margin-top: 2px !important;
        }
            text-align: center !important;
            width: 100% !important;
            max-width: 75px !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            white-space: nowrap !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        /* Hide prices and badges for Top Deals */
        .mobile-section .mobile-product-card .price,
        .mobile-section .mobile-product-card .deal-badge,
        .mobile-section .mobile-product-card .min-order,
        .mobile-section .mobile-product-card .product-info {
            display: none !important;
        }

        /* Remove gap between header and products */
        .mobile-section .section-header {
            margin-bottom: 10px !important; /* Small 1-line gap */
            padding: 0 !important; /* No left/right padding for edge-to-edge */
        }

        /* New Arrivals - SHEIN Super Deals Style (Single Row) */
        .new-arrivals-scroll {
            display: flex !important;
            overflow-x: auto !important;
            gap: 10px !important;
            padding: 0 0 12px 0 !important; /* No top padding */
            margin-top: 0 !important; /* No top margin */
            background: white !important;
            -webkit-overflow-scrolling: touch !important;
            scrollbar-width: none !important;
        }

        .new-arrivals-scroll::-webkit-scrollbar {
            display: none !important;
        }

        .new-arrival-card {
            flex-shrink: 0 !important;
            width: 120px !important;
            background: white !important;
            border: none !important;
            border-radius: 10px !important;
            overflow: hidden !important;
            height: 180px !important;
            display: flex !important;
            flex-direction: column !important;
            padding: 5px !important;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
        }

        .new-arrival-card img {
            width: 100% !important;
            height: 120px !important;
            object-fit: cover !important;
            display: block !important;
            flex-shrink: 0 !important;
            border-radius: 6px !important;
        }

        .new-arrival-card .no-image {
            width: 100% !important;
            height: 120px !important;
            background: white !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #ddd !important;
            flex-shrink: 0 !important;
        }

        .new-arrival-card .arrival-info {
            padding: 6px 8px !important;
            flex: 1 !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
        }

        .new-arrival-card .arrival-price {
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #ff6a00 !important;
            margin-bottom: 0 !important;
            line-height: 1.2;
        }

        .new-arrival-card .product-name {
            display: block !important;
            min-height: 14px !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            font-size: 11px !important;
            color: #333 !important;
            margin-bottom: 2px !important;
        }

        /* Mobile Product Links */
        .mobile-product-link,
        .new-arrival-link {
            text-decoration: none !important;
            color: inherit !important;
            display: block !important;
        }

        .mobile-product-link:hover,
        .mobile-product-link:focus,
        .new-arrival-link:hover,
        .new-arrival-link:focus {
            text-decoration: none !important;
            color: inherit !important;
        }

        .mobile-product-link:active .mobile-product-card,
        .new-arrival-link:active .new-arrival-card {
            opacity: 0.7;
            transform: scale(0.98);
        }



        /* Mobile Filter Indicator */
        .mobile-filter-indicator {
            background: linear-gradient(135deg, #fff9f5 0%, #fff5eb 100%);
            border: 1px solid #ffe4cc;
            border-left: 3px solid #ff6a00;
            padding: 12px 16px;
            margin: 12px 16px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 1px 4px rgba(255, 106, 0, 0.08);
        }

        .filter-indicator-content {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .filter-indicator-content i {
            color: #ff6a00;
            font-size: 14px;
        }

        .filter-indicator-content span {
            font-size: 13px;
            font-weight: 600;
            color: #333;
        }

        .filter-count {
            font-size: 12px !important;
            font-weight: 500 !important;
            color: #666 !important;
        }

        .btn-clear-mobile {
            background: #fff;
            color: #ff6a00;
            border: 1px solid #ffd4a8;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.2s;
        }

        .btn-clear-mobile:hover {
            background: #ff6a00;
            color: white;
            border-color: #ff6a00;
        }

        .shop-mobile-feed {
            margin-top: 0;
            background: #f2f2f2;
        }
        .mobile-masonry-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            padding: 8px;
            background-color: #f2f2f2;
            margin-top: 0 !important;
            align-items: stretch;
        }

        .mobile-masonry-item {
            margin: 0;
            background: #fff;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            height: auto !important;
            min-width: 0;
        }

        .mobile-masonry-item:active {
            opacity: 0.92;
        }

        .mobile-product-card-large {
            height: 100% !important;
            display: flex !important;
            flex-direction: column !important;
        }

        .mobile-product-card-large .image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            background: #f7f7f7;
            flex-shrink: 0;
            overflow: hidden;
        }

        .mobile-product-card-large img {
            width: 100%;
            height: 100%;
            aspect-ratio: auto;
            object-fit: cover;
            display: block;
            border-radius: 0 !important;
        }

        .mobile-product-card-large .no-image {
            width: 100%;
            height: 100%;
            background: #f5f5f5;
            position: absolute;
            inset: 0;
        }

        .mobile-product-card-large .no-image i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ccc;
        }

        .mobile-product-card-large .product-details {
            padding: 8px 10px 10px !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 4px !important;
            height: 52px !important;
            min-height: 52px !important;
            max-height: 52px !important;
            box-sizing: border-box !important;
            background: #fff;
        }

        .mobile-product-card-large .product-title,
        .mobile-product-card-large .mobile-card-title {
            font-size: 12px !important;
            font-weight: 500 !important;
            color: #222 !important;
            margin: 0 !important;
            padding: 0 !important;
            line-height: 16px !important;
            height: 16px !important;
            min-height: 16px !important;
            max-height: 16px !important;
            overflow: hidden !important;
            display: block !important;
            white-space: nowrap !important;
            text-overflow: ellipsis !important;
            -webkit-line-clamp: unset !important;
        }

        .mobile-product-card-large .mobile-card-gap {
            display: none !important;
        }

        .mobile-product-card-large .mobile-price-stack {
            display: flex;
            flex-direction: column;
            gap: 2px;
            line-height: 1.2;
        }

        .mobile-product-card-large .old-price {
            font-size: 10px !important;
            font-weight: 400 !important;
            color: #999 !important;
            text-decoration: line-through;
            line-height: 1.2 !important;
        }

        .mobile-product-card-large .current-price {
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #ff6a00 !important;
            display: block;
            margin: 0 !important;
            padding: 0 !important;
            line-height: 18px !important;
            height: 18px !important;
            letter-spacing: -0.02em;
        }

        .mobile-product-card-large .current-price.discount-price {
            color: #ff6a00 !important;
        }

        .mobile-product-card-large .product-meta-row,
        .mobile-product-card-large .mobile-card-price-row {
            display: block !important;
            margin: 0 !important;
            padding: 0 !important;
            height: 18px !important;
            overflow: hidden;
        }

        .badge-new {
            position: absolute;
            top: 0;
            left: 0;
            background-color: #ff6a00;
            color: #fff;
            font-size: 9px;
            padding: 3px 6px;
            font-weight: 700;
            letter-spacing: 0.03em;
            border-radius: 0;
        }

        /* Ensure no gap from the section above */
        .mobile-section {
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
            background: #e5e5e5;
        }

    }

/* --- block separator --- */

.share-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        align-items: center;
        justify-content: center;
    }

    .share-modal-content {
        background: white;
        border-radius: 12px;
        width: 90%;
        max-width: 500px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .share-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .share-modal-header h3 {
        margin: 0;
        font-size: 20px;
        color: #333;
    }

    .share-modal-close {
        background: none;
        border: none;
        font-size: 28px;
        color: #999;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
    }

    .share-modal-close:hover {
        color: #333;
    }

    .share-modal-body {
        padding: 20px;
    }

    .share-product-title {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .share-section {
        margin-bottom: 25px;
    }

    .share-section h4 {
        font-size: 14px;
        color: #333;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .share-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .share-btn {
        padding: 12px;
        border: 1px solid #ddd;
        background: white;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.2s;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .share-btn-copy { color: #666; }
    .share-btn-copy:hover { border-color: #666; background: #f5f5f5; }
    
    .share-btn-whatsapp { color: #25D366; }
    .share-btn-whatsapp:hover { border-color: #25D366; background: #f0fff4; }
    
    .share-btn-facebook { color: #1877F2; }
    .share-btn-facebook:hover { border-color: #1877F2; background: #eff6ff; }
    
    .share-btn-twitter { color: #1DA1F2; }
    .share-btn-twitter:hover { border-color: #1DA1F2; background: #eff6ff; }

    .user-search-input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .user-search-input:focus {
        outline: none;
        border-color: #ff6a00;
    }

    .user-search-results {
        max-height: 200px;
        overflow-y: auto;
        border-radius: 8px;
    }

    .user-result {
        display: flex;
        align-items: center;
        padding: 10px;
        cursor: pointer;
        border-radius: 6px;
        transition: background 0.2s;
    }

    .user-result:hover {
        background: #f5f5f5;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ff6a00;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .user-info {
        flex: 1;
    }

    .user-name {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }

    .user-fullname {
        font-size: 12px;
        color: #999;
    }

    .no-results {
        padding: 20px;
        text-align: center;
        color: #999;
        font-size: 14px;
    }
    /* MUKOTO Hero Carousel Styles */
    .unimarket-hero-carousel {
        height: 340px; /* Reduced from 400px */
        border-radius: 12px;
        overflow: hidden;
        margin: 20px 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .hero-left-content {
        width: 32%; /* Reduced slightly to give more room for larger cards */
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Center content horizontally */
        position: relative;
        overflow: hidden;
    }

    .theme-orange-gradient {
        background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #C4B5FD 100%);
    }

    .theme-orange-gradient .hero-left-content {
        width: 20%;
        min-width: 200px;
        align-items: flex-start;
        justify-content: center;
        padding: 24px 18px;
        background:
            radial-gradient(120px 120px at 18% 10%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 75%),
            radial-gradient(180px 180px at 10% 95%, rgba(124, 58, 237, 0.35) 0%, rgba(124, 58, 237, 0) 70%),
            linear-gradient(160deg, #7c3aed 0%, #8b5cf6 48%, #a78bfa 100%);
        overflow: hidden;
    }

    .theme-orange-gradient .hero-left-content::after {
        content: "";
        position: absolute;
        inset: 8% 10%;
        border-radius: 14px;
        background:
            radial-gradient(circle at 25% 25%, rgba(255,255,255,0.26), rgba(255,255,255,0) 55%),
            radial-gradient(circle at 70% 70%, rgba(255,255,255,0.18), rgba(255,255,255,0) 45%);
        pointer-events: none;
    }

    .trends-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 14px;
        text-align: left;
    }

    .trends-badge {
        font-size: 38px;
        font-style: italic;
        line-height: 1;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0.3px;
    }

    .trends-hashtag {
        color: #ffffff;
        font-size: 26px;
        font-weight: 800;
        line-height: 1.05;
        max-width: 220px;
    }

    .theme-teal-gradient {
        background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    }

    .hero-text-wrapper {
        position: relative;
        z-index: 2;
        color: white;
        text-align: center; /* Center align all text */
    }

    .hero-text-wrapper.text-align-right {
        text-align: right; /* Right align for Campus Tech slide */
    }

    .hero-text-wrapper.text-align-right .value-props-row {
        justify-content: flex-end; /* Align value props to the right */
    }

    .hero-subtitle {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 6px;
        opacity: 0.9;
    }

    .hero-title {
        font-size: 32px; /* Reduced from 38px */
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 10px;
        color: #fff; /* Force white color */
        text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 20px;
        opacity: 0.95;
    }

    /* Hero Value Props */
    .value-props-row {
        font-size: 15px; /* Increased from 13px */
        font-weight: 500;
        opacity: 0.95;
        justify-content: center; /* Center the items */
    }
    .value-prop-item {
        display: flex;
        align-items: center;
        gap: 8px; /* Increased from 6px */
        white-space: nowrap;
    }
    .value-prop-item i {
        font-size: 16px; /* Increased from 14px */
        opacity: 0.9;
    }

    .hero-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: white;
        color: #333;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-transform: uppercase;
        font-size: 13px;
    }

    .theme-orange-gradient .hero-cta-btn { color: #ff6a00; }
    .theme-teal-gradient .hero-cta-btn { color: #4A90E2; }

    .hero-cta-btn:hover {
        transform: translateY(-2px);
        color: #ff6a00; /* Ensure text visible on orange slide */
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Decorative Circles */
    .theme-orange-gradient .hero-decor-circle-1,
    .theme-orange-gradient .hero-decor-circle-2 {
        display: none;
    }
    .hero-decor-circle-1, .hero-decor-circle-2 {
        position: absolute;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
    }
    .hero-decor-circle-1 { width: 180px; height: 180px; top: -40px; right: -40px; }
    .hero-decor-circle-2 { width: 90px; height: 90px; bottom: 30px; left: -10px; }


    .hero-right-products {
        width: 68%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
    }

    /* Slide 1 has transparent background to show gradient, Slide 2 inherits gradient */
    .theme-soft-orange { background: transparent; }
    .theme-soft-teal { background: transparent; }

    /* Unified Grid Layout for Campus Tech Slide */
    .hero-unified-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Text area larger (40/60 split approx) */
        gap: 12px; /* Gap set to 12px as requested */
        padding: 0 40px; 
        height: 100%;
        align-items: center;
    }

    /* ... (skipped lines) ... */

    /* Image with Thin White Border */
    .hero-card-img-minimal {
        width: 100%;
        aspect-ratio: 1/2; /* Made even taller (1:2 ratio) */
        overflow: hidden;
        border-radius: 8px;
        border: 2px solid white;
        background: white;
    }

    .hero-text-section {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        overflow: hidden;
    }

    /* Large Title for Campus Tech */
    .hero-title-large {
        font-size: 48px; /* Reduced from 60px */
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        color: white;
        text-align: center;
    }

    /* Decorative Stars */
    .hero-star {
        position: absolute;
        color: rgba(255, 255, 255, 0.6);
        font-size: 24px;
        font-weight: 300;
        z-index: 1;
    }
    .hero-star-1 { top: 15%; left: 10%; }
    .hero-star-2 { top: 25%; right: 15%; }
    .hero-star-3 { bottom: 30%; left: 20%; }
    .hero-star-4 { bottom: 15%; right: 10%; }

    /* Simple Feature List (No Icons) */
    .hero-feature-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero-feature-text {
        color: white;
        font-size: 16px;
        font-weight: 400;
        opacity: 0.95;
        text-align: center;
    }

    /* New Button Style: White Border, Transparent Background */
    .hero-cta-btn-new {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: white;
        padding: 12px 28px;
        border: 2px solid white;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 14px;
    }

    .hero-cta-btn-new:hover {
        background: white;
        color: #4A90E2;
    }

    .hero-cta-btn-new i {
        font-size: 12px;
    }

    /* Minimal Product Cards - White Frame Style */
    .hero-product-card-minimal {
        position: relative;
        text-decoration: none;
        transition: transform 0.3s ease;
        display: block;
        width: 100%;
        max-width: 190px; /* Wider for 3:4 ratio */
        margin: 0 auto;
        
        /* The White Frame Effect */
        background: white;
        padding: 5px; /* Creates the white border frame */
        border-radius: 4px; /* Sharp-ish corners for frame */
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .hero-product-card-minimal:hover {
        transform: translateY(-4px);
    }

    /* Image with Thin White Border */
    /* Image fills the white frame */
    .hero-card-img-minimal {
        width: 100%;
        aspect-ratio: 2/3; /* Taller 2:3 ratio (increased height by ~20%) */
        overflow: hidden;
        border-radius: 2px; /* Slight rounding inside frame */
        background: #f8f8f8;
        border: none;
    }
    
    .hero-card-img-minimal img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Rounded Price Pill overlapping bottom of image */
    .hero-price-badge {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        color: #ff6a00;
        font-weight: 700;
        font-size: 14px;
        padding: 4px 12px;
        border-radius: 12px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 2;
        white-space: nowrap;
    }

    .hero-products-grid {
        display: flex;
        gap: 25px;
        width: 100%;
        justify-content: center;
    }

    /* Product Card with Polaroid Style */
    .hero-product-card {
        background: white;
        padding: 8px 8px 22px 8px; /* Fine-tuned bottom padding */
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        text-decoration: none;
        transition: transform 0.3s ease;
        position: relative;
        width: 220px;
        display: block;
    }

    .hero-product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    }

    .hero-card-img-wrapper {
        width: 100%;
        aspect-ratio: 3/4; /* Changed from 1/1 (square) to portrait */
        overflow: hidden;
        border-radius: 4px;
        margin-bottom: 0;
    }

    .hero-card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-price-pill {
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        color: #ff6a00;
        font-weight: 700;
        font-size: 14px;
        padding: 4px 12px;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        border: 1px solid #f0f0f0;
        white-space: nowrap;
        z-index: 2;
    }

    /* Purple slide only: cleaner, tighter product cards */
    .theme-orange-gradient .hero-right-products {
        width: 80%;
        padding: 16px 14px;
        background: linear-gradient(135deg, rgba(212, 199, 255, 0.42), rgba(194, 174, 255, 0.34));
    }

    .theme-orange-gradient .hero-products-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        align-items: stretch;
        width: min(100%, 860px);
    }

    .theme-orange-gradient .hero-product-card {
        width: 100%;
        max-width: none;
        padding: 0 0 12px;
        border-radius: 6px;
        overflow: visible;
        background: transparent;
        display: flex;
        flex-direction: column;
        box-shadow: none;
    }

    .theme-orange-gradient .hero-product-card:hover {
        transform: translateY(-3px);
        box-shadow: none;
    }

    .theme-orange-gradient .hero-card-img-wrapper {
        aspect-ratio: 3 / 4;
        border-radius: 4px;
        background: #f1f2f5;
        border: 3px solid #ffffff;
        margin-bottom: 0;
    }

    .theme-orange-gradient .hero-card-img-wrapper img {
        object-fit: cover;
        transform: scale(1.01);
        transform-origin: center;
    }

    .theme-orange-gradient .hero-price-pill {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        padding: 4px 12px;
        font-size: 14px;
        border-radius: 12px;
        border: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
    }

    @media (max-width: 1399.98px) {
        .trends-badge {
            font-size: 32px;
        }

        .trends-hashtag {
            font-size: 22px;
            max-width: 175px;
        }

        .theme-orange-gradient .hero-left-content {
            min-width: 175px;
            padding: 20px 14px;
        }

        .theme-orange-gradient .hero-products-grid {
            gap: 8px;
        }
    }

    .theme-teal-gradient ~ .hero-right-products .hero-price-pill {
        color: #4A90E2; /* Adapt price color for second slide */
    }

    /* Carousel Nav */
    .carousel-nav-btn {
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: all 0.2s;
    }
    .carousel-control-prev, .carousel-control-next {
        width: 60px;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .unimarket-hero-carousel:hover .carousel-control-prev,
    .unimarket-hero-carousel:hover .carousel-control-next {
        opacity: 1;
    }
    .carousel-nav-btn:hover {
        background: white;
        color: #333;
        transform: scale(1.1); /* Slight Zoom instead of color change */
    }

    .carousel-indicators {
        bottom: -15px; /* Moved up slightly */
    }
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: white;
        opacity: 0.5;
        margin: 0 4px;
        border: none;
    }
    .carousel-indicators .active {
        opacity: 1;
        transform: scale(1.2);
    }
    /* Desktop-only: Negative margin for large screens */
    @media (min-width: 992px) {
        .desktop-negative-margin {
            margin-top: -20px;
        }
    }

/* Share product modal (homepage / listing cards) */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.share-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.share-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.share-modal-close:hover {
    color: #333;
}

.share-modal-body {
    padding: 20px;
}

.share-product-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.share-section {
    margin-bottom: 25px;
}

.share-section h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.share-btn {
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn-copy { color: #666; }
.share-btn-copy:hover { border-color: #666; background: #f5f5f5; }

.share-btn-whatsapp { color: #25D366; }
.share-btn-whatsapp:hover { border-color: #25D366; background: #f0fff4; }

.share-btn-facebook { color: #1877F2; }
.share-btn-facebook:hover { border-color: #1877F2; background: #eff6ff; }

.share-btn-twitter { color: #1DA1F2; }
.share-btn-twitter:hover { border-color: #1DA1F2; background: #eff6ff; }

.user-search-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.user-search-input:focus {
    outline: none;
    border-color: #ff6a00;
}

.user-search-results {
    max-height: 200px;
    overflow-y: auto;
    border-radius: 8px;
}

.user-result {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}

.user-result:hover {
    background: #f5f5f5;
}

.share-modal .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff6a00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.share-modal .user-info {
    flex: 1;
}

.share-modal .user-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.share-modal .user-fullname {
    font-size: 12px;
    color: #999;
}

.share-modal .no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}