@media (max-width: 768px) {
    .container {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .filter-container-mobile {
        padding: 10px 12px;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 10px;
        background-color: #fff;
    }

    .filter-form-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .filter-selects-mobile {
        display: flex;
        gap: 8px;
    }

    .filter-select-mobile {
        flex: 1;
        padding: 10px 12px;
        font-size: 0.9rem;
        border: 1px solid #ddd;
        background-color: #fff;
        font-family: inherit;
        color: #333;
        min-height: 40px;
        box-sizing: border-box;
    }

    .filter-select-mobile:focus {
        outline: none;
        border-color: var(--primary-color);
    }

    .filter-actions-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .filter-button-mobile,
    .clear-button-mobile {
        padding: 10px 12px;
        font-size: 0.9rem;
        height: 40px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: inherit;
        box-sizing: border-box;
    }

    .filter-button-mobile {
        background-color: var(--primary-color);
        color: white;
    }

    .filter-button-mobile:active {
        transform: scale(0.97);
        background-color: var(--primary-color-dark);
    }

    .clear-button-mobile {
        background-color: var(--neutral-color);
        color: white;
    }

    .clear-button-mobile:active {
        transform: scale(0.97);
        background-color: #545b62;
    }

    .products-info {
        padding: 0 16px;
        margin-bottom: 12px;
    }

    .product-count {
        font-size: 0.9rem;
        color: #666;
    }

    .products-container {
        --entry-size: auto;
        width: 100%;
        padding: 0 12px 16px 12px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .product-card-link {
        display: block;
        transition: transform 0.15s ease;
    }

    .product-card-link:active {
        transform: scale(0.98);
    }

    .products-container .product-card {
        height: auto;
        min-height: 140px;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 16px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        border: 1px solid #e8e8e8;
    }

    .products-container .product-card:active {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .products-container .product-card .product-image {
        --card-image-size: 100px;
        width: var(--card-image-size);
        height: var(--card-image-size);
        min-width: var(--card-image-size);
        object-fit: contain;
        margin-bottom: 0;
        margin-right: 16px;
        flex-shrink: 0;
        background-color: #f8f9fa;
        padding: 8px;
    }

    .product-card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }

    .products-container .product-card h3 {
        font-size: 1rem;
        line-height: 1.3;
        margin: 0 0 8px 0;
        height: auto;
        display: block;
        text-align: left;
        color: #222;
        font-weight: 600;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .products-container .product-card .price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-color);
        height: auto;
        display: block;
        text-align: left;
        margin-top: auto;
    }

    .products-container .product-card .hover-overlay {
        display: none;
    }

    .products-container .product-card .description,
    .products-container .product-card .specifications {
        display: none;
    }

    .filter-label {
        display: none;
    }

    .product-stock {
        margin-bottom: 20px;
        font-size: 16px;
        font-weight: 500;
    }
}
