body {
    font-family: 'Instrument Sans', sans-serif;
}

.product-filter {
    margin-bottom: 24px;
}

#toggle-filters {
    margin-bottom: 8px;
    padding: 12px;
    cursor: pointer;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    background: #005432;
    border: 1px solid #005432;
    color: #ffffff;
    border-radius: 24px;
    transition: transform 0.2s ease-in-out;
}

#toggle-filters:hover {
    transform: scale(1.03);
}

.product-filter-card {
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #ffffff;
    margin-bottom: 16px;
}

.filter-columns {
    display: flex;
    flex-direction: column; /* stacked vertically */
    gap: 8px;
    margin-bottom: -64px;
}

.filter-group {
    flex: 1 1 16px;
    min-width: 200px;
    margin-bottom: 16px;
}

.brand-checkbox {
    display: inline-flex;
    align-items: center;
    margin-bottom: -24px;
    gap: 4px;
    font-family: 'Instrument Sans', sans-serif;
}

.brand-checkbox input[type="checkbox"] {
    vertical-align: middle;
    transform: translateY(9px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: white;
    min-height: 280px;
}

.product-img {
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    border-radius: 4px;
    background-size: cover;
    background-position: center center;
    margin-bottom: 10px;
    transition: transform 0.2s ease-in-out;
}

.product-img:hover {
    transform: scale(1.03);
}

.product-name {
    font-weight: bold;
    font-size: 20px;
    color: black;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-decoration: none;
}

.product-meta {
    color: #555;
    font-size: 16px;
}

.no-results {
    grid-column: 1 / -1;
    font-style: italic;
    color: #666;
}
