/**
 * CSS Pour le Footer
 * Author: GBI
*/

/*******************
 * VERSION DESKTOP *
 *******************/
/* Localisation */
.tc-footer-location {
    display: flex;
    align-items: flex-start;
    gap: 16px;
	margin-bottom:18px;
}
.tc-footer-location-icon {
    width: 26px;
    height: auto;
    flex: 0 0 26px;
    margin-top: 3px;
}
.tc-footer-location-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    line-height: 1.45;
    color: #2B231D;
    font-weight: 400;
}
/* Téléphone */
.tc-footer-phone {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.tc-footer-phone-icon {
    width: 28px;
    height: auto;
    flex: 0 0 28px;
    margin-top: 3px;
}
.tc-footer-phone-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tc-footer-phone-number,
.tc-footer-phone-number a {
    font-size: 14.5px;
    color: #2B231D;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.tc-footer-phone-hours {
    font-size: 13px;
    color: rgba(43, 35, 29, 0.6);
    line-height: 1.4;
}
/* Mail */
.tc-footer-email {
    display: flex;
    align-items: flex-start;
    gap: 16px;
	margin-top:10px;
}
.tc-footer-email-icon {
    width: 28px;
    height: auto;
    flex: 0 0 28px;
    margin-top: 1px;
}
.tc-footer-email-link {
    font-size: 14.5px;
    color: #2B231D;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
}
.tc-footer-email-link:hover {
    color: #B6842C;
}
/* Menu Mentions légales / CGV / Politique de confidentialité */
.tc-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.tc-footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}
.tc-footer-links a:hover {
    color: #D4A64A;
}
.tc-sep {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}
/* Paiement */
.tc-footer-payments {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.tc-footer-payments img {
    max-width: 170px;
    height: auto;
    display: block;
	opacity: 0.85;
}
/************
 * TABLETTE *
 ************/
.tc-footer-tablet {
	justify-content: center;
    text-align: center;
}
.tc-footer-payments-tablet {
	justify-content: center;
	
}
.tc-footer-payments-tablet img {
	max-width: 170px;
	margin-top: 18px;
	opacity: 0.9;
}
/*************
 * TELEPHONE *
 *************/
.tc-footer-links-phone {
	flex-direction:column;
	gap:5px;
}






