.product-recommendations {
    margin-bottom: 2rem;
}

.product-recommendations h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.product-rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-rec-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-rec-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-rec-card:hover {
    transform: translateY(-5px);
}

.product-rec-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-rec-card h3 {
    font-size: 1.5rem;
    margin: 1rem;
    color: #333;
}

.product-rec-card .description {
    margin: 0 1rem 1rem;
    color: #4a5568;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rec-card .date {
    margin: 0 1rem 1rem;
    color: #718096;
    font-size: 0.85rem;
}