/* Main Product Section Container */
.single_product_main_section {
    background-color: #101014;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Product Information Container */
.product_information_container {
    background-color: #202024;
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-radius: 20px;
}

/* Product Image Wrapper */
.product_image_wrapper {
    flex: 0 0 45%;
}

.product_image_wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Visual Separator Between Image and Details */
.product_visual_separator {
    width: 2px;
    background-color: #404044;
    height: 400px;
    flex-shrink: 0;
}

/* Product Details Content Area */
.product_details_content {
    flex: 1;
    text-align: left;
}

/* Product Title/Name */
.product_title_heading {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 900;
}

/* Product Description Text */
.product_description_text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

/* Product Price Display */
.product_price_display {
    color: #25D366;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* WhatsApp Contact Section */
.whatsapp_contact_section {
    background-color: #202024;
    width: 100%;
    max-width: 1000px;
    padding: 40px 60px;
    margin-top: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* WhatsApp Buttons Container */
.whatsapp_buttons_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Individual WhatsApp Button */
.whatsapp_contact_button {
    background-color: #25D366;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.whatsapp_contact_button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* WhatsApp Section Heading */
.whatsapp_section_heading {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 0 25px 0;
    text-align: center;
    font-weight: 600;
}

/* Product Gallery Section */
.product_gallery_section {
    background-color: #202024;
    width: 100%;
    max-width: 1000px;
    padding: 40px 60px;
    margin-top: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Gallery Section Heading */
.gallery_section_heading {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

/* Gallery Images Container */
.gallery_images_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Gallery Image Wrapper */
.gallery_image_wrapper {
    width: 100%;
}

.gallery_image_wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design Breakpoints */

/* Large Desktop Screens (1200px and above) */
@media (min-width: 1200px) {
    .product_information_container {
        max-width: 1200px;
        padding: 80px;
    }
    
    .product_gallery_section {
        max-width: 1200px;
        padding: 50px 80px;
    }
    
    .whatsapp_contact_section {
        max-width: 1200px;
        padding: 50px 80px;
    }
}

/* Standard Desktop and Laptop Screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .product_information_container {
        max-width: 900px;
        padding: 50px;
    }
    
    .product_gallery_section {
        max-width: 900px;
        padding: 40px 50px;
    }
    
    .whatsapp_contact_section {
        max-width: 900px;
        padding: 40px 50px;
    }
}

/* Tablet Devices (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .single_product_main_section {
        padding: 30px 15px;
    }
    
    .product_information_container {
        max-width: 700px;
        padding: 40px;
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .product_image_wrapper {
        flex: none;
        width: 100%;
    }
    
    .product_image_wrapper img {
        height: 300px;
    }
    
    .product_visual_separator {
        width: 100%;
        height: 2px;
    }
    
    .product_details_content {
        text-align: center;
    }
    
    .product_title_heading {
        font-size: 2rem;
    }
    
    .product_price_display {
        font-size: 1.8rem;
    }
    
    .product_gallery_section {
        max-width: 700px;
        padding: 30px 40px;
        flex-direction: column;
        gap: 25px;
    }
    
    .gallery_images_container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery_image_wrapper img {
        height: 200px;
    }
    
    .whatsapp_contact_section {
        max-width: 700px;
        padding: 30px 40px;
        flex-direction: column;
        gap: 25px;
    }
    
    .whatsapp_buttons_container {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp_contact_button {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile and iPad Devices (767px and below) */
@media (max-width: 767px) {
    .single_product_main_section {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .product_information_container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 20px;
        flex-direction: column;
        gap: 25px;
        min-height: auto;
        border-radius: 15px;
        box-sizing: border-box;
    }
    
    .product_image_wrapper {
        flex: none;
        width: 100%;
    }
    
    .product_image_wrapper img {
        height: 250px;
        border-radius: 10px;
    }
    
    .product_visual_separator {
        width: 100%;
        height: 2px;
    }
    
    .product_details_content {
        text-align: center;
    }
    
    .product_title_heading {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .product_price_display {
        font-size: 1.6rem;
    }
    
    .product_description_text {
        font-size: 1rem;
    }
    
    .product_gallery_section {
        width: 100%;
        max-width: 100%;
        margin: 30px auto 0 auto;
        padding: 25px 30px;
        flex-direction: column;
        gap: 20px;
        border-radius: 15px;
        box-sizing: border-box;
    }
    
    .gallery_images_container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery_image_wrapper img {
        height: 200px;
    }
    
    .whatsapp_contact_section {
        width: 100%;
        max-width: 100%;
        margin: 30px auto 0 auto;
        padding: 25px 30px;
        flex-direction: column;
        gap: 20px;
        border-radius: 15px;
        box-sizing: border-box;
    }
    
    .whatsapp_buttons_container {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp_contact_button {
        flex: none;
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .whatsapp_contact_button img {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .single_product_main_section {
        padding: 15px 12px;
    }
    
    .product_information_container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 25px 15px;
        gap: 20px;
        box-sizing: border-box;
    }
    
    .product_image_wrapper img {
        height: 200px;
    }
    
    .product_title_heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .product_price_display {
        font-size: 1.4rem;
    }
    
    .product_description_text {
        font-size: 0.9rem;
    }
    
    .product_gallery_section {
        width: 100%;
        max-width: 100%;
        margin: 25px auto 0 auto;
        padding: 20px 20px;
        gap: 15px;
        box-sizing: border-box;
    }
    
    .gallery_image_wrapper img {
        height: 180px;
    }
    
    .whatsapp_contact_section {
        width: 100%;
        max-width: 100%;
        margin: 25px auto 0 auto;
        padding: 20px 20px;
        gap: 15px;
        box-sizing: border-box;
    }
    
    .whatsapp_buttons_container {
        flex-direction: column;
        gap: 12px;
    }
    
    .whatsapp_contact_button {
        width: 100%;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .whatsapp_contact_button img {
        width: 18px;
        height: 18px;
    }
}

/* Modal styles for image enlargement */
.image_modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.modal_image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.close_modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.clickable_image {
    cursor: pointer;
} 