    .top_category_section {
        max-width: 1200px;
        padding: 0 20px;
        position: relative;
        margin-bottom: 8px;
    }

    .top_category_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #1e3a8a;
        padding: 12px 16px;
        margin-bottom: 0;
    }

    .top_category_title_wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .top_category_icon {
        font-size: 20px;
        color: #fbbf24;
    }

    .top_category_header h2 {
        color: #ffffff;
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .view_all_link {
        color: #fbbf24;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .view_all_link:hover {
        color: #ffffff;
        text-decoration: underline;
    }

    .view_all_link i {
        font-size: 16px;
    }

    .top_category_grid_wrapper {
        background: white;
        padding: 5px;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        position: relative;
    }

    .scroll_indicator_mobile {
        display: none;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        background: rgba(30, 58, 138, 0.9);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 5;
        align-items: center;
        gap: 4px;
        box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    }

    .scroll_indicator_mobile i {
        font-size: 14px;
    }

    .view_all_categories_container {
        text-align: center;
        padding: 20px 0;
        margin-top: 10px;
    }

    .view_all_categories_link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #1e3a8a;
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
    }

    .view_all_categories_link:hover {
        background: #2563eb;
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
    }

    .view_all_categories_link i {
        font-size: 16px;
    }

    .top_category_grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc(50% - 4px);
        gap: 8px;
        list-style: none;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0;
        margin: 0;
        align-items: stretch;
    }

    .top_category_grid::-webkit-scrollbar {
        display: none;
    }

    .top_category_grid li {
        height: 100%;
        display: flex;
    }

    .top_category_card_link {
        text-decoration: none;
        color: inherit;
        display: flex;
        width: 100%;
        height: 100%;
    }

    .top_category_card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 260px;
    }

    .top_category_card:hover {
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
    }

    .top_category_image_container {
        width: 100%;
        height: 140px;
        position: relative;
        background: #ffffff;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #e5e7eb;
    }

    .top_category_image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .top_category_info {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1;
        min-height: 0;
    }

    .top_category_name {
        font-size: 13px;
        color: #1e3a8a;
        font-weight: 600;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-shrink: 0;
    }

    .top_category_pricing {
        margin-top: 2px;
        padding-top: 0;
    }

    .top_category_price {
        font-size: 15px;
        font-weight: 700;
        color: #22c55e;
    }

    .top_category_original_price {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
        margin-left: 6px;
    }

    .no_category_products,
    .no_top_categories {
        text-align: center;
        padding: 60px 20px;
        color: #1e3a8a;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        grid-column: 1 / -1;
    }

    .no_category_products i,
    .no_top_categories i {
        font-size: 48px;
        color: #1e3a8a;
    }

    .top_category_nav_btn {
        display: none;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: #1e3a8a;
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .top_category_nav_btn:hover {
        background: #2563eb;
    }

    .top_category_nav_btn i {
        font-size: 20px;
    }

    .top_category_nav_btn.prev {
        left: 10px;
    }

    .top_category_nav_btn.next {
        right: 10px;
    }

    .top_category_grid_wrapper:hover .top_category_nav_btn:not(.hidden) {
        opacity: 1;
    }

    .top_category_nav_btn.hidden {
        visibility: hidden;
    }

    @media (max-width: 480px) {
        .top_category_grid {
            grid-auto-columns: calc(50% - 4px);
            gap: 8px;
        }

        .top_category_card {
            min-height: 140px;
        }

        .top_category_image_container {
            height: 140px;
        }

        .top_category_name {
            font-size: 12px;
        }

        .top_category_price {
            font-size: 14px;
        }

        .top_category_original_price {
            font-size: 11px;
        }

        .top_category_info {
            padding: 8px;
            gap: 2px;
        }

        .top_category_pricing {
            margin-top: 2px;
            padding-top: 0;
        }
    }

    @media (min-width: 481px) and (max-width: 767px) {
        .top_category_grid {
            grid-auto-columns: calc(33.33% - 6px);
            gap: 10px;
        }

        .top_category_card {
            min-height: 160px;
        }

        .top_category_image_container {
            height: 160px;
        }
    }

    @media (max-width: 600px) {
        .top_category_section {
            padding: 0;
        }

        .scroll_indicator_mobile {
            display: flex;
        }
    }

    @media (min-width: 768px) {
        .top_category_grid {
            gap: 12px;
            grid-auto-columns: calc(16.666% - 10px);
        }

        .top_category_card {
            min-height: 180px;
        }

        .top_category_image_container {
            height: 180px;
        }

        .top_category_name {
            font-size: 12px;
        }

        .top_category_info {
            padding: 10px;
            gap: 2px;
        }

        .top_category_price {
            font-size: 15px;
        }

        .top_category_original_price {
            font-size: 11px;
        }

        .top_category_pricing {
            margin-top: 2px;
            padding-top: 0;
        }

        .top_category_nav_btn {
            display: flex;
        }
    }