/**
 * Styles pour le footer généré par WooCommerce Shop Builder.
 *
 * @package WC_Shop_Builder
 */

/* Container principal du footer */
/* Note: Les couleurs sont gérées dynamiquement par WCSB_Color_Manager via le Customizer */
.wcsb-footer {
	background-color: var(--wcsb-footer-bg, #f4f4f4);
	border-top: 1px solid #e0e0e0;
	margin-top: 60px;
	padding: 40px 20px 20px;
	width: 100%;
}

.wcsb-footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Colonnes du footer */
.wcsb-footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 30px;
	justify-content: flex-start;
}

.wcsb-footer-col {
	flex: 1 1 250px;
	min-width: 200px;
}

.wcsb-footer-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 15px 0;
	/* Utiliser la couleur du texte du footer (comme demandé par l'utilisateur) */
	color: var(--wcsb-footer-text, #333);
	/* Polices : gérées par le thème (Shoptimizer) */
}

.wcsb-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wcsb-footer-links li {
	margin-bottom: 10px;
}

.wcsb-footer-links a {
	color: var(--wcsb-footer-text, #666);
	text-decoration: none;
	transition: color 0.2s ease;
	font-size: 14px;
}

.wcsb-footer-links a:hover {
	color: var(--wcsb-footer-link, var(--wcsb-primary-color, #0693e3));
	text-decoration: underline;
}

/* Copyright */
.wcsb-footer-copyright {
	border-top: 1px solid #e0e0e0;
	padding-top: 20px;
	margin-top: 20px;
	text-align: center;
}

.wcsb-footer-copyright p {
	margin: 0;
	color: var(--wcsb-footer-text, #999);
	font-size: 13px;
}

/* Responsive : Mobile */
@media (max-width: 768px) {
	.wcsb-footer {
		padding: 30px 15px 15px;
		margin-top: 40px;
	}

	.wcsb-footer-columns {
		flex-direction: column;
		gap: 30px;
	}

	.wcsb-footer-col {
		flex: 1 1 100%;
		min-width: 100%;
	}

	.wcsb-footer-title {
		font-size: 15px;
		margin-bottom: 12px;
	}

	.wcsb-footer-links a {
		font-size: 13px;
	}

	.wcsb-footer-copyright {
		padding-top: 15px;
		margin-top: 15px;
	}

	.wcsb-footer-copyright p {
		font-size: 12px;
	}
}

/* Responsive : Tablette */
@media (min-width: 769px) and (max-width: 1024px) {
	.wcsb-footer-columns {
		gap: 30px;
	}

	.wcsb-footer-col {
		flex: 1 1 220px;
	}
}

/* Image footer */
.wcsb-footer-image-wrapper {
	text-align: center;
	padding: 40px 20px;
	background: #f9f9f9;
}

.wcsb-footer-image-wrapper .wcsb-footer-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Image page À propos */
.wcsb-about-image-wrapper {
	text-align: center;
	margin: 0 auto 30px;
	display: block;
	width: 100%;
}

.wcsb-about-image-wrapper img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


