/* ==========================================================================
   Footer Cristime
   ========================================================================== */

.cristime-footer {
	background: #1a1a1a;
	color: #ccc;
	font-size: 0.85rem;
	line-height: 1.6;
}

.cristime-footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* --- Partie haute (4 colonnes) --- */

.cristime-footer__main {
	padding: 3.5rem 0 3rem;
}

.cristime-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 2.5rem;
}

/* --- Colonne marque --- */

.cristime-footer__logo-link {
	display: inline-block;
	margin-bottom: 1rem;
}

.cristime-footer__logo {
	height: 45px;
	width: auto;
}

.cristime-footer__tagline {
	color: #999;
	font-size: 0.8rem;
	margin: 0 0 1.25rem;
	line-height: 1.7;
}

/* --- Réseaux sociaux --- */

.cristime-footer__social {
	display: flex;
	gap: 0.75rem;
}

.cristime-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #444;
	color: #999;
	transition: all 0.2s;
}

.cristime-footer__social-link:hover {
	color: #fff;
	border-color: #CAB49B;
	background: rgba(202, 180, 155, 0.1);
}

/* --- Titres colonnes --- */

.cristime-footer__heading {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
	margin: 0 0 1.25rem;
}

/* --- Listes de liens --- */

.cristime-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cristime-footer__links li {
	margin-bottom: 0.5rem;
}

.cristime-footer__links a {
	color: #999;
	text-decoration: none;
	transition: color 0.2s;
	font-size: 0.82rem;
}

.cristime-footer__links a:hover {
	color: #CAB49B;
}

/* --- Boutiques --- */

.cristime-footer__store {
	margin-bottom: 1.25rem;
}

.cristime-footer__store:last-child {
	margin-bottom: 0;
}

.cristime-footer__store-name {
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.15rem;
	font-size: 0.85rem;
}

.cristime-footer__store-detail {
	color: #999;
	margin: 0;
	font-size: 0.8rem;
}

.cristime-footer__store-phone {
	color: #CAB49B;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: color 0.2s;
}

.cristime-footer__store-phone:hover {
	color: #fff;
}

/* --- Barre basse --- */

.cristime-footer__bottom {
	border-top: 1px solid #2c2c2c;
	padding: 1.25rem 0;
}

.cristime-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cristime-footer__copyright {
	color: #666;
	font-size: 0.75rem;
	margin: 0;
}

.cristime-footer__payment {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cristime-footer__payment-label {
	color: #666;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.cristime-footer__payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.5rem;
	background: #2c2c2c;
	border: 1px solid #3a3a3a;
	border-radius: 4px;
	color: #999;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.cristime-footer__payment-icon {
	height: 24px;
	max-height: 24px;
	width: auto;
	max-width: 50px;
	border-radius: 4px;
	background: #fff;
	padding: 2px 4px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
	.cristime-footer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem 2rem;
	}
}

@media (max-width: 768px) {
	.cristime-footer__container {
		padding: 0 1.25rem;
	}

	.cristime-footer__main {
		padding: 2.5rem 0 2rem;
	}

	.cristime-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cristime-footer__bottom-inner {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}
