/*
Theme Name: Bosa Pro Child
Template: bosa-pro
Version: 1.0
*/

/* Structure de base pour la page produit */
.shopini-product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Espace entre l'image et le texte */
    margin-bottom: 50px;
}

.shopini-gallery {
    flex: 1 1 50%; /* L'image prend 50% de la largeur */
    max-width: 50%;
}

.shopini-summary {
    flex: 1 1 40%; /* Le texte prend le reste */
}

/* Adaptabilité mobile */
@media (max-width: 768px) {
    .shopini-gallery, .shopini-summary {
        flex: 1 1 100%;
        max-width: 100%;
    }
}