
.cpl-product-grid {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.cpl-columns-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

@media (min-width: 1024px) {
    .cpl-columns-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cpl-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cpl-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cpl-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.cpl-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cpl-product-card:hover .cpl-product-image img {
    transform: scale(1.05);
}

.cpl-product-content {
    padding: 25px;
}

.cpl-product-price {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.cpl-product-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cpl-product-subtitle {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cpl-columns-3 {
        grid-template-columns: 1fr;
    }
    
    .cpl-product-image {
        height: 250px;
    }
    
    .cpl-product-title {
        font-size: 20px;
    }
}
    