    .card-img-top {
        height: 200px;
        object-fit: cover;
    }

    .filters {
        display: none
    }

    .form-range {
        width: 100%;
    }

    .card {
        transition: transform 0.2s;
    }

    .search-container {
        margin-bottom: 0.5em;
        flex-grow: 1;
    }


    .search-input {
        width: 100%;
        max-width: none;
        padding: 0.8em 1em;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
    }

    .search-input:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, .25);
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1em;
        padding: 0 1em 1em 1em;
    }

    .product-card {
        background: white;
        border-radius: 4px;
        overflow: hidden;
    }

    .product-card img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }

    .product-info {
        padding: 1em;
    }


    .page-layout {
        display: grid;
        grid-template-columns: 1fr 3fr;
    }

    .sidebar {
        flex-direction: column;
        display: flex;
        gap: 1em;
        padding: 1em;
        border-radius: 2px;
        position: sticky;
        top: 9em;
        align-self: start;
        box-sizing: border-box;
        max-height: calc(100vh - 10em);
        overflow-y: auto;
        scrollbar-width: none; /* Firefox */
    }

    .sidebar::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    .badge-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        border-radius: 16px;
        background-color: #f5f5f5;
        border: 1px solid #e0e0e0;
        color: #424242;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .badge-button:hover {
        background-color: #e0e0e0;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .stack.gap-2.mt-3 {
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-top: 6px;
        justify-content: center;
    }

    .badge-button.active {
        background-color: #2196f3;
        color: white;
        border-color: #1e88e5;
    }

    .sidebar .search-top {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    @media screen and (max-width: 768px) {
        .page-layout {
            grid-template-columns: 1fr;
            grid-template-rows: auto 1fr;
        }

        .sidebar {
            min-width: 100%;
            max-width: 100%;
            position: relative;
            top: 0;
            height: auto;
        }

        .sidebar .search-top {
            flex-direction: row;
            gap: 0.5em;
        }

    }

    .orderBy {
        flex: 1 0 0;
        min-width: 0px;
        max-width: 16em;
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: white;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        transition: all 0.2s ease;
        appearance: none;

            {
            # background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            #
        }

        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 16px;


    }

    .orderBy:hover {
        border-color: #007bff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .orderBy:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, .25);
    }

    .orderBy option {
        padding: 10px;
        font-size: 14px;
    }

    .button button--primary align-items-center gap-2 {
        flex: 1 0 0;
    }

    .multi-filter {
        display: flex;

    }


    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .filter-menu {
        background: white;
        padding: 2em;
        width: 80%;
        height: 100vh;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1001;
    }

    .filter-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5em;
    }

    .close-button {
        background: none;
        border: none;
        font-size: 1.5em;
        cursor: pointer;
    }

    .filter-menu .button--primary {
        width: 100%;
        padding: 0.8em;
        font-weight: 500;
    }


    .paper-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 1em;
    }

    .paper-badge {
        display: inline-flex;
        padding: 8px 16px;
        border-radius: 20px;
        background-color: #f5f5f5;
        border: 1px solid #e0e0e0;
        color: #424242;
        font-size: 0.9rem;
        transition: all 0.2s ease;
        cursor: pointer;
    }

    .paper-badge:hover {
        background-color: #e0e0e0;
        transform: scale(1.05);
    }

    .paper-badge.active {
        background-color: #2196f3;
        color: white;
        border-color: #1e88e5;
    }

    .flex {
        display: flex;
    }

    .items-center {
        align-items: center;
    }

    .justify-center {
        justify-content: center;
    }

    .text-center {
        text-align: center;
    }

    .filter-title {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        padding: 0.5em;
    }

    .category-list {
        overflow-y: auto;
        max-height: 480px;
    }

    .filter-item {
        cursor: pointer;
        background-color: var(--color-primary) !important;
        color: white !important;
    }

    .filter-title i,
    h3 {
        margin: 0;
    }

    .filter-title h3 {
        flex: 1;
    }

    .filter-title .badge {
        border-radius: 1em;
    }

    .badge:empty {
        display: none;
    }

