/*
Theme Name: NGBeautyShop
Theme URI: https://www.ngbeautyshop.com
Description: Thème enfant de Storefront pour la boutique NG Beauty Shop
Author: Philippe Leménager - Logicielem
Author URI: https://www.logicielem.com
Template: storefront
Version: 1.0.0
Text Domain: storefront-child
*/

/* Acheter par catégories en page d'accueil */
.home .woocommerce.columns-3 .products {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.home .woocommerce.columns-3 .products li.product-category {
    flex: 1 1 45%; /* Ajustez cette valeur selon vos besoins */
    margin: 0 10px; /* Ajustez la marge selon vos besoins */
    box-sizing: border-box;
}

/* Ajustez la taille du logo */
.site-header .site-logo img {
    max-width: 100px; /* Remplacez par la taille souhaitée */
    height: auto !important;
}

/* Logo, le nom du site et le slogan */
/* Style pour le logo, le nom du site et le slogan */
.site-branding {
    display: flex;
    /*align-items: center;*/
    place-items: center stretch;
}

.site-logo{
	float: left;
	height: auto !important;
}

.site-title {
    float: left;
    vertical-align: center;
	font-size: 24px; /* Ajustez la taille selon vos besoins */
    margin: 0 20px; /* Ajustez la marge selon vos besoins */
}

.site-description {
	font-size: 14px; /* Ajustez la taille selon vos besoins */
    margin: 0;
}

/* Pied de page personnalisé */
.site-footer-custom {
    text-align: left;
    margin-top: 20px;
    padding: 20px 0;
    width: 100%;
}

.site-footer-custom .copyright {
    margin-bottom: 10px;
    font-size: 14px;
}

.site-footer-custom .footer-links {
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
}

.site-footer-custom .footer-links a {
    margin-right: 8px;
}

/* Masque le pied de page par défaut de Storefront */
.storefront-credits,
.footer-credits {
    display: none !important;
}

/* Adaptation pour mobile */
@media (max-width: 768px) {
    .footer-links {
        white-space: normal !important;
        text-align: center;
    }
}

