.vof-products-grid {
    padding: 80px 0 120px;
    background: var(--bg);
}

/* Filters */
.vof-products-grid__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.vof-products-grid__filter {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    background: var(--surface);
    border: 1.5px solid var(--border);
    padding: 8px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.vof-products-grid__filter:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.vof-products-grid__filter.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Grid */
.vof-products-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vof-products-grid__card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.vof-products-grid__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.vof-products-grid__img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface-alt);
}

.vof-products-grid__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vof-products-grid__card:hover .vof-products-grid__img img {
    transform: scale(1.04);
}

.vof-products-grid__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
}

.vof-products-grid__img-placeholder span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
}

.vof-products-grid__body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vof-products-grid__cat {
    font-family: var(--font-mono);
    font-size: 0.5625rem;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-light);
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 12px;
}

.vof-products-grid__body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
    line-height: 1.3;
}

.vof-products-grid__body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.vof-products-grid__body h3 a:hover { color: var(--accent); }

.vof-products-grid__body p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.vof-products-grid__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.vof-products-grid__spec {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--ink-light);
    background: var(--surface-alt);
    border: 1px solid var(--border-light);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.vof-products-grid__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: gap 0.2s;
}

.vof-products-grid__link:hover { gap: 8px; }

.vof-products-grid__empty {
    text-align: center;
    color: var(--muted);
    font-size: 0.9375rem;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    .vof-products-grid__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .vof-products-grid { padding: 56px 0 80px; }
    .vof-products-grid__grid { grid-template-columns: 1fr; }
}
