.product-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.product-visual-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--green);
}
.pvc-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}
.pvc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pvc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #16a34a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.pvc-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.pvc-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0f172a;
}
.pvc-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 10px;
}
.pvc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pvc-features li {
    font-size: 0.8rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pvc-features li i {
    color: #16a34a;
    font-size: 0.8rem;
}
.pvc-btn {
    margin-top: auto;
    background: #16a34a;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid #16a34a;
    transition: all 0.3s ease;
    width: 100%;
    display: block;
}
.pvc-btn.outline {
    background: transparent;
    color: #1e293b;
    border-color: #e2e8f0;
}
.product-visual-card:hover .pvc-btn:not(.outline) {
    background: #15803d;
    border-color: #15803d;
}
.pvc-btn.outline:hover {
    border-color: #16a34a;
    color: #16a34a;
}

@media (max-width: 992px) {
    .product-grid-main {
        grid-template-columns: 1fr 1fr;
    }
    .pvc-img {
        height: 240px;
    }
}

@media (max-width: 600px) {
    .product-grid-main {
        grid-template-columns: 1fr;
    }
    .pvc-img {
        height: 260px;
    }
}