/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(139,92,246,0.38);
    box-shadow: 0 18px 44px rgba(139,92,246,0.18);
}

.product-icon {
    height: 160px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.product-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.product-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
}

.product-body p { color: var(--text-soft); font-size: 0.86rem; line-height: 1.6; flex: 1; }

/* Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.product-detail-visual {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
}

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.9rem;
    line-height: 1.2;
}

.product-detail-info p {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

/* Responsive */
@media (max-width: 700px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-detail-visual { height: 200px; position: static; font-size: 4rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}
