/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

:root {
    --caramel:#DD8E59;
	--terracotta:#C26C32;
	--gris-mineral:#69645E;
	--brun-ecorce:#413D32;
	--vanille:#F2ECDB;
	--lin-naturel:#E0D7BA;
	--bleu-sauge:#628285;
}

/* Menu */
#header{
	z-index:999999;
	margin-bottom:40px;
}
#index #header{
	margin-bottom:0;
}

/* ACCUEIL */

.flip-produits{
	-webkit-box-shadow: 0px 12px 47px -6px rgba(0, 0, 0, 0.3); 
	box-shadow: 0px 12px 47px -6px rgba(0, 0, 0, 0.3)
}
.flip-produits .elementor-flip-box-description{
	font-family: 'Adventpro regular', Helvetica, Arial, Lucida, sans-serif;
	font-size:14px;
	line-height:20px;
	font-weight:700;
	color:#666666;
}
.flip-produits h3, .flip-produits h4{
font-family: 'Arimo regular', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    font-size: 22px;
}
.flip-produits .elementor-testimonial-image img {
    width: 125px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    max-width: none;
}
.flip-produits:hover h3{
	opacity:0;
	transition: opacity .5s;
}
.flip-produits h3{
	transition: opacity .5s;
}
.flip-produits .elementor-flip-box-back .elementor-flip-box-overlay {
    align-items: end;
    padding: 35px 35px 50px 35px;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
        margin: 120px auto;
    }
}

/*le mouton givre*/

/*dates*/
.date span{
	position:relative;
}
.date:hover span{
	color:#618385!important;
	cursor:pointer;
}
.date:hover span:after {
    content: "";
	width:30px;
	height:35px;
	position:absolute;
	top:7px;
	right:-30px;
	background:no-repeat url("/img/cms/illus/eclats-droit-vert512.png");
	background-size:contain;
}
.date:hover span:before {
    content: "";
	width:30px;
	height:35px;
	position:absolute;
	top:7px;
	left:-22px;
	background:no-repeat url("/img/cms/illus/eclats-gauche-vert512.png");
	background-size:contain;
}

/* blog accueil */

.block_cont img {
    height: 265px;
    object-fit: cover;
}
.blog_date {
    position: absolute;
    background: white;
    transform: rotate(180deg);
    top: 10px;
    left: 10px;
    width: 36px;
    height: 265px;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*@media (max-width:1023px){
    .blog_date {
    width: 55px;
    height: 366px;
    }
}*/



.blog_date p{
	color:#C26C32!important;
	text-transform:uppercase!important;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Advent Pro' !important;
}
.block_bas h3{
    text-align: center !important;
    margin-top: 15px !important;
}
.block_bas h3 a{
    font-size: 22px !important;
    font-family: 'Arimo';
    color:#628285!important;
}
.block_cont .prestablog_more {
    display: block;
    background-color: #2fb5d2;
    width: fit-content;
    margin: auto!important;
    border-radius: 12px;
    font-family: 'Advent Pro';
    font-size: 20px;
}
.block_cont {
    background: #F2ECDB !important;
    border-radius: 0 0 25px 25px;
    border: none !important;
}
.block_top {
    position: relative!important;
}
a.blog_link {
    margin-bottom: 25px !important;
    background: #C26C32;
	border:2px solid #C26C32;
    border-radius: 15px;
	text-transform:uppercase;
	letter-spacing:2px;
}
a.blog_link:hover {
    margin-bottom: 25px !important;
    background: none!important;
    border-radius: 15px;
	color:#C26C32!important;
}
p.blog_desc {
    font-family: 'Advent Pro';
    font-size: 16px !important;
}
.prestablog_more {
    background: none !important;
}
.sas_blog #blog_list_1-7 > div{
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}
.sas_blog #blog_list_1-7 .blog-grid{
	width: calc(33% - 20px);
}
#blog_list_1-7 .block_cont{
	display: flex;
    flex-wrap: wrap;
    min-height: 570px;
    align-content: stretch;
}
@media (max-width: 1025px) {
	.sas_blog #blog_list_1-7 .blog-grid{
		width: calc(50% - 20px);
	}
}
@media (max-width: 768px) {
	.sas_blog #blog_list_1-7 > div{
		gap:0;
	}
	.sas_blog #blog_list_1-7 .blog-grid{
		width: 100%;
		padding:20px;
	}
}

/*------------------ Page Produit accordéon (Composition / Entretien / ...) ------------------*/
.accordion-ce-custom {
	padding-bottom:5px;
    margin-bottom: 5px;
}

.accordion-header-ce-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
	font-family: "Arimo", sans-serif;
	color:var(--terracotta);
	text-transform:uppercase;
	font-weight:600;
	font-size:18px;
}

.accordion-arrow-ce-custom {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--terracotta);
    border-bottom: 2px solid var(--terracotta);
    transform: rotate(45deg);
    transition: transform 0.2s;
	order: 2;
}

.accordion-header-ce-custom.active .accordion-arrow-ce-custom {
    transform: rotate(-135deg);
}

.accordion-content-ce-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content-ce-custom p {
    margin: 0;
    padding: 10px 0;
	color:var(--noir) !important;
}

.right-column-product .accordion-content-ce-custom {
    max-height: 100%;
    overflow-y: auto;
}

#wrapper{
	background-color:white;
}
/*menu lateral panier*/

.elementor-cart__product-name a {
    color: #C26C32!important;
	font-size:16px;
	font-weight: 600;
}
.elementor-cart__product-price {
    color: grey;
}
a.elementor-button.elementor-button--view-cart {
    background: #C26C32;
}

.alert_mail_product .tabs{
	padding:0;
	margin:0;
}
.alert_mail_product .tabs button{
	margin-top:0 !important;
}

/*------------------ Article de blog ------------------*/
#prestablog_menu_cat, .prestablogExtra, #prestablog-comments, #prestablog_article {
	display : none;
}

#prestablogfront{
    border: none;
	padding:0;
}

time.date, .info_blog {
	display : none;
}

@media (max-width: 980px) {
	#prestablogfront, .prestablogExtra {
	padding : 0;
	}
}

/*------------------ Footer ------------------*/
#footer a{
	color: var(--lin-naturel);
}
.cls-2{
    mix-blend-mode: normal !important;
}

/*------------------ Newsletter ------------------*/

.newsletter-form-custom {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.input-group-custom {
    display: flex;
    justify-content: flex-end;
	gap:5px;
    padding-bottom: 5px;
	flex-wrap: wrap;
}

.newsletter-input-custom {
    width:100%;
	border: none;
	border-bottom: 1px solid var(--terracotta);
    background-color: transparent;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 0;
    color: black;
    &:focus {
        outline: none;
    }
    &::placeholder {
        color: black;
        opacity: 0.8;
        font-style: italic;
    }
}

.newsletter-btn-custom {
    background-color: var(--terracotta);
    color: white;
    border: none;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    border-radius: 5px; 
    height: 50px;
    padding: 0px 25px;
    &:hover {
        background-color: var(--terracotta);
    }
}

.block_newsletter_custom .alert {
    margin-top: 15px;
}

/*------------------ Formulaire de contact ------------------*/
.contact-form{
    background:none;
}

.contact-form .form-group{
    display:flex;
	flex-wrap:wrap;
}
.contact-form .form-group > label{
    text-align:left;
	font-family: "Advent Pro", sans-serif;
    font-size: 20px;
	margin-bottom: 8px;
	overflow: hidden;
	color: #232323;
	font-weight:400;
}
.contact-form .form-group > label,
.contact-form .form-group > div{
    width:100%;
}
.contact-form .form-group select,
.contact-form .form-group input,
.contact-form .form-group textarea{
    background-color: rgba(2, 1, 1, 0);
    border-color: #C26C32;
    border-width: 0px 0px 1px 0px;
    border-radius: 0px 0px 0px 0px;
}