.product-page {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

/* Image Gallery */

.image-gallery {
    flex: 1;
    min-width: 650px;
    max-width: 500px;
    text-align: center;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid #ddd;
    transition: transform 0.3s ease, border 0.3s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.05);
    border: 2px solid #2196F3;
}

/* Product Details */
.product-details {
    flex: 2;
    min-width: 350px;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.product-price {
    font-size: 28px;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-location {
    font-size: 16px;
    color: #777;
    margin-top: 20px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
}

.action-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-save {
    background-color: #FFC107;
    color: white;
    border: 2px solid #FFC107;
}

.button-save:hover {
    background-color: white;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.button-share {
    background-color: #2196F3;
    color: white;
    border: 2px solid #2196F3;
}

.button-share:hover {
    background-color: white;
    color: #2196F3;
    border: 2px solid #2196F3;
}

/* Property Tag */
.property-tag {
    background-color: #2196F3;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Contact Info Section */
.contact-info {
    margin-top: 30px;
    /* padding: 20px; */
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.contact-info p {
    font-size: 1em;
    margin-bottom: 8px;
}

.contact-info strong {
    font-weight: bold;
}


/* Lightbox Modal Styles */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black background with opacity */
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 80%;
}

.lightbox img {
    width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 150px;
    right: 200px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #f1f1f1;
    text-decoration: none;
}

/* .property-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
} */

.explore-more {
    display: flex;
    /* justify-content: flex-end; */
    width: 100%;
    margin-top: 50px; /* Adjust space between property items and the explore button */
}

.explore-more-btn {
    display: flex;
    align-items: center;
    margin-top: 85px;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: hsl(200, 69%, 14%); /* Button color */
    color: white;
    border-radius: 50%;
    font-size: 24px; /* Adjust icon size */
    transition: all 0.3s ease;
    text-decoration: none;
}

.explore-more-btn:hover {
    background-color:#304f64; /* Hover color */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}
