    .solar-product-list {
        gap: 30px;
        padding: 20px;
    }

    .solar-product-link {
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease;
    }

    .solar-product-link:hover {
        transform: translateY(-5px);
    }

    .solar-product-card {
        width: 18rem;
        border: none;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .solar-product-card img {
        height: 250px;
        object-fit: cover;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .solar-product-card .card-body {
        padding: 20px;
        background-color: #f9f9f9;
    }

    .solar-product-card .card-title {
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .solar-product-card .card-text {
        font-size: 0.95rem;
        color: #555;
        margin-bottom: 5px;
        text-align:left;
    }

    .solar-product-card .price {
        font-size: 1.2rem;
        color: #28a745;
        font-weight: bold;
    }

    .solar-product-card .short-spec {
        font-style: italic;
        color: #666;
    }

    @media (max-width: 768px) {
        .solar-product-card {
            width: 100%;
        }
    }

/*Solar products description page*/

.product-description-page {
    background-color: #f9f9f9;
 
}
.product-title {
    font-size: 32px;
    font-weight: 700;
}
.product-meta p {
    font-size: 16px;
    margin-bottom: 10px;
}
.product-specs {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.product-image {
    border-radius: 8px;
    object-fit: cover;
    height: auto;
    max-height: 500px;
}
.enquiry-btn {
    margin-top: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}
.enquiry-btn:hover {
    background-color: #0056b3;
}
@media (max-width: 767.98px) {
    .product-title {
        font-size: 24px;
        text-align: center;
    }
    .product-meta, .rating, .product-specs {
        text-align: center;
    }
    .enquiry-btn {
        display: block;
        margin: 0 auto;
    }
}
