/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    /* Increased width for more space */
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px; /* Adds spacing between image and description */
}

.lightbox-content img {
    width: 300px; /* Fixed size to maintain original dimensions */
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}





.product-details {
    font-family: Arial, sans-serif;
    text-align: left;
    flex-grow: 1; /* Allows description section to take more space */
    margin-top: 10px;
}

.product-details h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.price {
    font-size: 18px;
    color: green;
    margin-bottom: 8px;
}

.description {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    line-height: 1.5; /* Better line spacing */
}

.description span{
    font-weight: 800;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
   
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgb(0, 0, 0);
    font-size: 40px;
    cursor: pointer;
}

.productsec {
    text-align: center;
    margin-top: 20px;
}

.product-image {
    width: 200px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s;
}

.product-image:hover {
    transform: scale(1.05);
}

