﻿/* ========================================================
   main_productlist.css
   Page-specific styles for main_productlist.aspx.
   Depends on Home.css being loaded first.

   Same cleanup as category_productlist.css: the original
   shop-style.css was a ~2500-line file shared across pages/
   components that don't exist here. Kept only what this page
   actually uses. Product cards reuse Home.css's .product-card-2
   as-is.
   ======================================================== */

/* === BREADCRUMB === */
.shop-breadcrumb {
    width: 100%;
    padding: 28px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
}

.shop-breadcrumb-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

    .shop-breadcrumb-title h2 {
        margin: 0;
        font-family: 'Manrope', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--black);
    }

    .shop-breadcrumb-title span {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: var(--black);
    }

        .shop-breadcrumb-title span a {
            color: var(--black);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

/* === CATEGORY FILTER PANEL === */
.category-filter-panel {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    position: sticky;
    top: 160px;
}

.category-filter-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.category-filter-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.category-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

    .category-filter-item input[type="radio"] {
        appearance: none;
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        margin: 0 8px 0 0;
        border: 2px solid var(--border-light);
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        flex-shrink: 0;
        transition: border-color var(--transition-base);
    }

        .category-filter-item input[type="radio"]:checked {
            border-color: var(--primary-gold);
        }

            .category-filter-item input[type="radio"]:checked::after {
                content: '';
                position: absolute;
                top: 2px;
                left: 2px;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: var(--primary-gold);
            }

    .category-filter-item label {
        font-size: 14px;
        color: var(--dark-gray);
        cursor: pointer;
        flex: 1;
        text-transform: capitalize;
    }

.category-filter-count {
    font-size: 12px;
    color: var(--medium-gray);
}

/* === EMPTY STATE === */
.no-products-panel {
    padding: var(--spacing-2xl) var(--spacing-md);
    text-align: center;
    color: var(--medium-gray);
    background: var(--light-gray);
    border-radius: var(--radius-md);
}

/* === PRODUCT CARD ADDITIONS (hallmark line) === */
.cr-product-hallmark {
    font-size: 12px;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .category-filter-panel {
        position: static;
    }
}

@media (max-width: 480px) {
    .shop-breadcrumb-title h2 {
        font-size: 18px;
    }
}
