/* ===== Product Filter ===== */
.products-filter-section {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--gradient-1);
    color: #000;
    border-color: transparent;
    font-weight: 600;
}

/* ===== Products List Section ===== */
.products-list-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.products-full-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-card-full {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card-full:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.card-image-full {
    position: relative;
    height: 280px;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gradient-1);
    color: #000;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 20px;
}

.card-body-full {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.card-meta {
    margin-bottom: 12px;
}

.card-category {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-title-full {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.card-desc-full {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.card-link {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.product-card-full:hover .card-link {
    gap: 6px;
}

@media (max-width: 1024px) {
    .product-card-full {
        grid-template-columns: 1fr;
    }

    .card-image-full {
        height: 200px;
    }

    .card-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-specs {
        grid-template-columns: 1fr;
    }
}
