/* General container styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;

}

/* Product detail container */
.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow:1px 3px 10px 5px rgba(0, 0, 0, 0.5) /* Add shadow from all sides */
}

/* Product image styling */
.product-image {
    flex: 1 1 40%;
    max-width: 40%;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Product information styling */
.product-info {
    flex: 1 1 55%;
    max-width: 55%;
}

/* Enquiry button styling */
.enquiry-button {
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.enquiry-button:hover {
    background-color: #128C7E; /* Darker green on hover */
}

.enquiry-button i {
    margin-right: 10px;
}

/* Product name styling */
.product-name {
    font-size: 28px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Product description styling */
.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Product tagline styling */
.product-info p strong {
    font-size: 18px;
    color: #2c3e50;
}

/* Key features and benefits styling */
h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

ul li strong {
    color: #2c3e50;
}

/* Suitable crops styling */
.product-info p {
    font-size: 16px;
    color: #555;
    /*margin-bottom: 20px;*/
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }

    .product-image, .product-info {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .product-name {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .enquiry-button {
        width: 100%;
        padding: 15px;
    }
}