
    /* ========================================
CATEGORY PRODUCTS PAGE STYLES
======================================== */

:root {
    --primary-green: #058C4C;
    --secondary-navy: #1a2332;
    --text-dark: #1a1a1a;
    --text-gray: #606060;
    --text-light: #808080;
    --border-light: #E8E8E8;
    --bg-light: #F8F9FA;
    --bg-lighter: #FCFCFC;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --premium-gold: #FFD700;
    --professional-blue: #4A90E2;
    --basic-silver: #C0C0C0;
}

/* ========================================
   BREADCRUMB SECTION
   ======================================== */

.breadcrumb_section__ {
    padding: 20px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb_nav__ {
    font-size: 14px;
}

.breadcrumb__ {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb_item__ {
    display: flex;
    align-items: center;
}

.breadcrumb_item__ a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb_item__ a:hover {
    color: var(--primary-green);
}

.breadcrumb_item__.active__ {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb_item__:not(:last-child)::after {
    content: '›';
    margin-left: 12px;
    color: var(--text-light);
    font-size: 16px;
}

/* ========================================
   CATEGORY HEADER SECTION
   ======================================== */

.category_header_section__ {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.category_header__ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.category_info__ {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.category_icon__ {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #047a42 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category_icon__ img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category_title__ {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.category_description__ {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.category_stats__ {
    display: flex;
    gap: 32px;
}

.stat_item__ {
    text-align: center;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat_item__:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.stat_item__.highlight__ {
    background: linear-gradient(135deg, var(--primary-green) 0%, #047a42 100%);
}

.stat_item__.highlight__ .stat_value__,
.stat_item__.highlight__ .stat_label__ {
    color: var(--white);
}

.stat_value__ {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 4px;
}

.stat_label__ {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   PREMIUM SELLERS SECTION
   ======================================== */

.premium_sellers_section__ {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section_header__ {
    text-align: center;
    margin-bottom: 40px;
}

.section_title__ {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.premium_badge__ {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--premium-gold) 0%, #FFA500 100%);
    border-radius: 50%;
}

.premium_badge__ svg {
    stroke: var(--white);
    fill: var(--white);
}

.section_description__ {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* Sellers Carousel */
.sellers_carousel__ {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.seller_card__ {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.seller_card__:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.seller_badge__ {
    position: absolute;
    top: 16px;
    right: 16px;
}

.plan_badge__ {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan_badge__.premium {
    background: linear-gradient(135deg, var(--premium-gold) 0%, #FFA500 100%);
    color: var(--white);
}

.plan_badge__.professional {
    background: linear-gradient(135deg, var(--professional-blue) 0%, #2E6AB3 100%);
    color: var(--white);
}

.plan_badge__.basic {
    background: var(--basic-silver);
    color: var(--white);
}

.seller_header__ {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.seller_logo__ {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-light);
}

.seller_logo__.placeholder__ {
    background: linear-gradient(135deg, var(--primary-green) 0%, #047a42 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.seller_info__ {
    flex: 1;
    min-width: 0;
}

.seller_name__ {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seller_location__ {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-gray);
}

.seller_location__ svg {
    stroke: var(--text-gray);
    flex-shrink: 0;
}

.seller_stats__ {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.seller_stat__ {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.seller_stat__ .stat_value__ {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.seller_stat__ .stat_label__ {
    font-size: 12px;
    color: var(--text-gray);
}

.seller_cta__ {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.seller_cta__:hover {
    background: #047a42;
    transform: translateX(4px);
}

.seller_cta__ svg {
    stroke: var(--white);
    transition: var(--transition);
}

.seller_cta__:hover svg {
    transform: translateX(4px);
}

/* Refresh Button */
.refresh_sellers__ {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.refresh_sellers__:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.refresh_sellers__:hover svg {
    stroke: var(--white);
}

.refresh_sellers__ svg {
    stroke: var(--text-gray);
    transition: var(--transition);
}

.refresh_sellers__.rotating svg {
    animation: rotate 0.5s ease-in-out;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products_section__ {
    padding: 60px 0;
    background: var(--white);
}

.products_layout__ {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* ========================================
   FILTERS SIDEBAR
   ======================================== */

.filters_sidebar__ {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter_section__ {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.filter_title__ {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.filter_group__ {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.filter_group__:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter_group_title__ {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.price_inputs__ {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter_input__ {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.filter_input__:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(5, 140, 76, 0.1);
}

.filter_checkbox__ {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.filter_checkbox__ input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter_select__ {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter_select__:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(5, 140, 76, 0.1);
}

.apply_filters__ {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.apply_filters__:hover {
    background: #047a42;
    box-shadow: var(--shadow-md);
}

/* ========================================
   PRODUCTS CONTENT
   ======================================== */

.products_content__ {
    min-width: 0;
}

.products_header__ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.results_count__ {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.products_controls__ {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort_select__ {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.sort_select__:focus {
    outline: none;
    border-color: var(--primary-green);
}

.view_toggles__ {
    display: flex;
    gap: 8px;
}

.view_toggle__ {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.view_toggle__:hover {
    background: var(--white);
    border-color: var(--primary-green);
}

.view_toggle__.active__ {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.view_toggle__ svg {
    stroke: var(--text-gray);
}

.view_toggle__.active__ svg {
    stroke: var(--white);
}

.view_toggle__.active__ svg rect {
    fill: var(--white);
}

/* ========================================
   PRODUCTS GRID
   ======================================== */

.products_grid__ {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.products_list__ {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

/* Product Card */
.product_card__ {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.product_card__.animated {
    opacity: 1;
    transform: translateY(0);
}

.product_card__:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product_link__ {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product_image__ {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.product_image__ img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product_card__:hover .product_image__ img {
    transform: scale(1.05);
}

.verified_badge__ {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.product_content__ {
    padding: 20px;
}

.product_name__ {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.product_description__ {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 0 16px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product_footer__ {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.product_price__ {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.product_country__ {
    font-size: 13px;
    color: var(--text-gray);
}

/* List View Styles */
.products_list__ .product_card__ {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.products_list__ .product_image__ {
    height: 100%;
    min-height: 180px;
}

.products_list__ .product_content__ {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination_wrapper__ {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ========================================
   LOADING INDICATOR
   ======================================== */

.loading_indicator__ {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 16px;
}

.spinner__ {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading_indicator__ p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   INFO BANNER
   ======================================== */

.info_banner__ {
    padding: 40px 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.banner_content__ {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.banner_icon__ {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #047a42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner_icon__ svg {
    stroke: var(--white);
}

.banner_text__ h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.banner_text__ p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .products_layout__ {
        grid-template-columns: 1fr;
    }

    .filters_sidebar__ {
        position: static;
    }

    .category_header__ {
        flex-direction: column;
        align-items: flex-start;
    }

    .category_stats__ {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .category_title__ {
        font-size: 24px;
    }

    .category_info__ {
        flex-direction: column;
        align-items: flex-start;
    }

    .category_stats__ {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .stat_item__ {
        width: 100%;
    }

    .sellers_carousel__ {
        grid-template-columns: 1fr;
    }

    .products_header__ {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .products_controls__ {
        width: 100%;
        justify-content: space-between;
    }

    .products_grid__ {
        grid-template-columns: 1fr;
    }

    .products_list__ .product_card__ {
        grid-template-columns: 1fr;
    }

    .banner_content__ {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category_icon__ {
        width: 60px;
        height: 60px;
    }

    .category_icon__ img {
        width: 36px;
        height: 36px;
    }

    .section_title__ {
        font-size: 22px;
        flex-direction: column;
    }

    .seller_stats__ {
        gap: 16px;
    }

    .view_toggles__ {
        display: none;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/*.container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 20px;*/
/*}*/

/*@media (min-width: 1400px) {*/
/*    .container {*/
/*        max-width: 1320px;*/
/*    }*/
/*}*/

/* Animation classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

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

.slide-up {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

