/*Container*/

.woocommerce-page .site-content {
	background: #000;
}

/*Titre*/

.woocommerce-page .entry-title {
	font-family: var(--typo-primary);
	font-size: 41px;
	font-weight: 100;
	color: #DE814D;
	line-height: 1em;
	text-align: center;
}

/*Btn*/

.woocommerce-js a.button {
	position: relative;
	z-index: 1;
	display: inline-flex;
	font-weight: 600;
	overflow: hidden;
	background-image: linear-gradient(to right, #773d20, #c26335, #a4562f, #fd9967, #bd6940);
	color: #fff;
}

.woocommerce-js a.button:before {
	content: '';
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(to left, #773d20, #c26335, #a4562f, #fd9967, #bd6940);
	opacity: 0;
}

.woocommerce-js a.button:hover::before {
	opacity: 1;
}