/*
 Theme Name:   ZenSoul Child Theme
 Theme URI:    https://zensoul.themerex.net/
 Description:  ZenSoul Child Theme
 Author:       ThemeREX
 Author URI:   https://themerex.net/
 Template:     zensoul
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  zensoul
*/


/* =Theme customization starts here
------------------------------------------------------------ */

.custom-single-product .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: 36px;
    font-weight: 600;
}

.product-short-desc {
    font-size: 16px;
    color: #555;
}

.product-details-section {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}



