/*****************************************************************
	Couleurs:
		// Gris fonce #171717
		// Vert #86c52b
*****************************************************************/




/***** Général *****/
html{
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	height: 100%;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	background: #252525;
}

.config {
	background: url('../img/config-back.jpg') no-repeat center center;
	background-size: cover;
}

h1 {
	color: #86c52b;
	font-size: 45px;
	text-align: center;
	font-weight: normal;
}

::-moz-selection {
	background: #86c52b;
	color: #fff;
}

::selection {
	background: #86c52b;
	color: #fff;
}

.clear {
	clear: both;
}

.center {
	margin: 0 auto 0 auto;
	position: relative;
}

.bouton {
	padding: 10px 20px 10px 20px;
	color: #252525;
	font-size: 22px;
	border-radius: 10px 10px 10px 10px;
	background: #bfd255; /* Old browsers */
	background: -moz-linear-gradient(top,  #bfd255 0%, #8eb92a 50%, #72aa00 51%, #9ecb2d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bfd255), color-stop(50%,#8eb92a), color-stop(51%,#72aa00), color-stop(100%,#9ecb2d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfd255', endColorstr='#9ecb2d',GradientType=0 ); /* IE6-9 */
}

/* Système de colonnes et grille */
.container {
	width: 1100px;
	margin: 0 auto 0 auto;
}

.col-50 {
	width: 50%;
}

.col-l {
	float: left;
}

.col-r {
	float: right;
}

.col-align-l {
	text-align: left;
}

.col-align-r {
	text-align: right;
}

@media (max-width: 1150px) {
	.container {
		width: 900px;
	}
}

@media (max-width: 920px) {
	.container {
		width: 100%;
	}

	.col-l {
		float: none;
		width: 85%;
		margin: 0 auto 0 auto;
	}

	.col-r {
		float: none;
		width: 85%;
		margin: 0 auto 0 auto;
	}

	.col-align-l {
		text-align: center;
	}

	.col-align-r {
		text-align: center;
		margin-top: 65px;
	}
}




/***** Menu *****/
.menu {
	width: 100%;
	height: 85px;
	position: fixed;
	z-index: 9999;
	background: #171717;
	border-bottom: 1px solid #747474;
}

.logo {
	width: 275px;
	height: 57px;
	margin: 17px auto 0 auto;
	background: url('../img/logo.png') no-repeat center center;
}

.dev-logo {
	width: 350px;
	height: 57px;
	margin: 17px auto 0 auto;
	background: url('../img/dev-logo.png') no-repeat center center;
}

.cart {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 21px;
    right: 30px;
    cursor: pointer;
}

.cart-icon {
	font-size: 40px;
	color: white;
	opacity: 0.4;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    transition: all 250ms;
}

.cart-icon:hover {
	opacity: 1;
}

.cart-badge {
	position: absolute;
	top: -5px;
	right: -18px;
	background-color: red;
	color: white;
	font-size: 12px;
	line-height: 23px;
	font-weight: bold;
	border-radius: 50%;
	text-align: center;
	width: 24px;
    height: 24px;
}

.contact {
	margin-left: 38px;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 19px;
	left: calc(50% + 160px);
	background: url('../img/phone.png') no-repeat center center;
	opacity: 0.4;
	cursor: pointer;
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	transition: all 250ms;
}

.contact:hover, .contact:focus {
	opacity: 1;
}

.popup-triangle {
	width: 20px;
	height: 10px;
	position: absolute;
	bottom: 0px;
	left: calc(50% + 208px);
	visibility: hidden;
	background: url('../img/popup-triangle.png') no-repeat center center;
}




/***** Popup contact *****/
.popup-contact {
	width: 100%;
	height: 100%;
	padding: 50px 0 0 0;
	position: fixed;
	visibility: hidden;
	z-index: 999999;
	top: 85px;
	background: #fff;
	border-top: 15px solid #86c52b;
}

.popup-close {
	width: 30px;
	height: 30px;
	visibility: hidden;
	margin-bottom: 50px;
	margin-left: calc(100% - 30px);
	background: url('../img/popup-close.png') no-repeat center center;
	cursor: pointer;
}

.popup-contact a, .popup-contact a:visited {
	text-decoration: none;
	color: #171717;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	transition: all 250ms;
}

.popup-contact a:hover, .popup-contact a:focus {
	border-bottom: 1px solid #171717;
}

.popup-contact iframe {
	width: 100%;
}




/***** Alert popup *****/
.alert-back {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99999;
	background: #000;
	opacity: 0.5;
	visibility: hidden;
}

.alert-box {
	width: 70%;
	height: 50%;
	position: fixed;
	top: 25%;
	left: 15%;
	z-index: 99999;
	background: #fff;
	-webkit-border-radius: 20px 20px 20px 20px;
	-moz-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
	-webkit-box-shadow: 0 0 75px 50px #000;
	box-shadow: 0 0 75px 50px #000;
	visibility: hidden;
}

.alert-box h4 {
	margin: 50px 0 25px 0;
	padding: 0 50px 0 50px;
	color: #86c52b;
	font-size: 40px;
}

.alert-box p {
	margin: 20px 0 0 0;
	padding: 0 50px 0 50px;
	color: #252525;
	font-size: 22px;
}

.alert-close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50px;
	right: 50px;
	background: url('../img/popup-close.png') no-repeat center center;
	cursor: pointer;
}




/***** Contenu *****/
.contenu {
	padding: 80px 0 0 0;
	min-height: 400px;
}

.contenu a {
	text-decoration: none;
}

/* Bandeau */
.bandeau {
	width: 100%;
	height: 300px;
	margin: 0;
	padding: 0;
	background: #8e8e8e;
	cursor: pointer;
	border-bottom: 1px solid #747474;
}

.bandeau-hover {
	width: 100%;
	height: 300px;
	position: relative;
	margin: 0;
	padding: 0;
	background: rgba(0,0,0,0.65);
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	transition: all 250ms;
}

.bandeau-hover:hover, .bandeau-hover:focus {
	background: rgba(0,0,0,0.2);
}

.bandeau h2 {
	margin: 0;
	padding: 123px 0 0 0;
	color: #fff;
	text-align: center;
	font-size: 40px;
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	transition: all 250ms;
}

.bandeau:hover h2, .bandeau:focus h2 {
	opacity: 0.65;
	padding: 84px 0 0 0;
	font-size: 100px;
	text-shadow: 0 0 20px #000000;
}

.b-wheel {
	background: url('../img/b-wheel.jpg') no-repeat center center;
	background-size: cover;
}

.b-pneus {
	background: url('../img/b-pneus.jpg') no-repeat;
	background-size: cover;
}

.b-accessoires {
	background: url('../img/b-accessoires.jpg') no-repeat center center;
	background-size: cover;
}

/* Marques */
.marque {
	height: 250px;
	position: relative;
	float: left;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
}

.marque:hover {
	-moz-transform: scale(0.70);
	-webkit-transform: scale(0.70);
	-o-transform: scale(0.70);
	-ms-transform: scale(0.70);
	transform: scale(0.70);
}

.b-33 {
	width: 33.33333%;
	height: 250px;
}

.m-header {
	width: 100%;
	position: relative;
}

.m-mags {
	background: #202020 url('../img/h-mags.jpg') no-repeat bottom center;
	background-size: cover;
	padding: 35px 0 35px 0;
}

.m-content {
	opacity: 0;
}

#marques-autos {
	display: block;
}

#marques-camions {
	display: none;
}

/* Logos des marques */
.rtx {
	background: url('../img/logos/rtx.png') no-repeat center center;
	background-size: 50%;
}

.wheel-1 {
	background: url('../img/logos/wheel-1.png') no-repeat center center;
	background-size: 50%;
}

.niche {
	background: url('../img/logos/niche.png') no-repeat center center;
	background-size: 50%;
}

.tsw {
	background: url('../img/logos/tsw.png') no-repeat center center;
	background-size: 50%;
}

.dai {
	background: url('../img/logos/dai.png') no-repeat center center;
	background-size: 50%;
}

.xxr {
	background: url('../img/logos/xxr.png') no-repeat center center;
	background-size: 50%;
}

.ruffino {
	background: url('../img/logos/ruffino.png') no-repeat center center;
	background-size: 50%;
}

.konig {
	background: url('../img/logos/konig.png') no-repeat center center;
	background-size: 50%;
}

.enkei {
	background: url('../img/logos/enkei.png') no-repeat center center;
	background-size: 50%;
}

.montegi {
	background: url('../img/logos/montegi.png') no-repeat center center;
	background-size: 50%;
}

.ultra-wheels {
	background: url('../img/logos/ultra-wheels.png') no-repeat center center;
	background-size: 50%;
}

.rotiform {
	background: url('../img/logos/rotiform.png') no-repeat center center;
	background-size: 50%;
}

.fast {
	background: url('../img/logos/fast-wheels.png') no-repeat center center;
	background-size: 50%;
}

.lorenzo {
	background: url('../img/logos/lorenzo.png') no-repeat center center;
	background-size: 50%;
}

.lexani {
	background: url('../img/logos/lexani.png') no-repeat center center;
	background-size: 50%;
}

.asanti {
	background: url('../img/logos/asanti.png') no-repeat center center;
	background-size: 50%;
}

.braelin {
	background: url('../img/logos/braelin.png') no-repeat center center;
	background-size: 50%;
}

.atx {
	background: url('../img/logos/atx.png') no-repeat center center;
	background-size: 50%;
}

.dub {
	background: url('../img/logos/dub.png') no-repeat center center;
	background-size: 50%;
}

.fuel-offroad {
	background: url('../img/logos/fuel-offroad.png') no-repeat center center;
	background-size: 50%;
}

.giovana {
	background: url('../img/logos/giovana.png') no-repeat center center;
	background-size: 50%;
}

.kmc {
	background: url('../img/logos/kmc.png') no-repeat center center;
	background-size: 50%;
}

.lrg {
	background: url('../img/logos/lrg.png') no-repeat center center;
	background-size: 50%;
}

.moto-metal {
	background: url('../img/logos/moto-metal.png') no-repeat center center;
	background-size: 50%;
}

.pro-comp {
	background: url('../img/logos/pro-comp.png') no-repeat center center;
	background-size: 50%;
}

.worx {
	background: url('../img/logos/worx.png') no-repeat center center;
	background-size: 50%;
}

.evergreen {
	background: url('../img/logos/evergreen.png') no-repeat center center;
	background-size: 50%;
}

.falken {
	background: url('../img/logos/falken.png') no-repeat center center;
	background-size: 50%;
}

.hercules {
	background: url('../img/logos/hercules.png') no-repeat center center;
	background-size: 50%;
}

.nankang {
	background: url('../img/logos/nankang.png') no-repeat center center;
	background-size: 50%;
}

.amp {
	background: url('../img/logos/amp.png') no-repeat center center;
	background-size: 50%;
}

.bf-goodrich {
	background: url('../img/logos/bfgoodrich.png') no-repeat center center;
	background-size: 50%;
}

.mickey {
	background: url('../img/logos/mickey-thompson.png') no-repeat center center;
	background-size: 50%;
}

/* Selector */
.selector {
	width: 150px;
	height: 55px;
	color: #fff;
	font-size: 20px;
	line-height: 55px;
	text-align: center;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
	cursor: pointer;
}

.selector-selected {
	background: #fff!important;
	color: #252525;
}

.selector:hover, .selector:focus {
	background: #454545;
}

.selector-left {
	border-top: 2px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	float: left;
	-webkit-border-radius: 15px 0px 0px 15px;
	-moz-border-radius: 15px 0px 0px 15px;
	border-radius: 15px 0px 0px 15px;
}

.selector-right {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	border-left: 1px solid #fff;
	float: left;
	-webkit-border-radius: 0px 15px 15px 0px;
	-moz-border-radius: 0px 15px 15px 0px;
	border-radius: 0px 15px 15px 0px;
}

/* Website iframes */
.website {
	width: 100%;
	border: none;
}

.bottom-0 {
	bottom: 0;
	position: absolute;
}

/***** Footer *****/

.footer {
	width: 100%;
	height: 50px;
	background: #171717;
}

@media (max-width: 920px) {
	.footer {
		padding: 5px 0 0 0;
		height: 50px;
	}
}

.footer p {
	margin: 0;
	padding: 0;
}

.footer a, .footer a:visited {
	text-decoration: none;
	color: #fff;
	border-bottom: 1px dotted transparent;
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	transition: all 250ms;
}

.footer a:hover, .footer a:focus {
	border-bottom: 1px dotted #86c52b;
}

/* =============================
   Privacy Policy (Politique) Styles
   ============================= */
.policy-container {
	width: 100%;
	margin: 0 auto;
}

.policy-card {
	background: #171717;
	padding: 30px;
	border-radius: 8px;
	margin: 40px auto;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.policy-title {
	color: #86c52b;
	text-align: left;
	font-size: 34px;
	margin-top: 0;
}

.policy-section-title {
	color: #ffffff;
	margin-top: 24px;
}

.policy-text {
	color: #dddddd;
	line-height: 1.8;
	font-size: 16px;
}

.policy-updated {
	margin-top: 40px;
	color: #bbbbbb;
}

/* Links inside policy card */
.policy-card a,
.policy-card a:visited {
	color: #86c52b;
	text-decoration: none;
	border-bottom: 1px dotted transparent;
	transition: all 250ms;
}

.policy-card a:hover,
.policy-card a:focus {
	border-bottom: 1px dotted #86c52b;
}

@media (max-width: 920px) {
	.policy-card {
		margin: 20px auto;
		padding: 20px;
	}
	.policy-title {
		font-size: 28px;
	}
}

.footer .container {
    display: flex;
    justify-content: space-between; /* spreads items horizontally */
    align-items: center; /* vertically centers content */
    text-align: center; /* centers text inside each column */
    flex-wrap: wrap; /* keeps layout responsive */
}

.footer .footer-item {
	margin-top: 15px;
    flex: 1;
}

/* =============================
   Consent Banner Styles
   ============================= */
.consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: #111;
	color: #fff;
	padding: 14px 16px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	font-family: 'Open Sans', sans-serif;
}

.is-hidden {
	display: none;
}

.consent-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.consent-text {
	flex: 1 1 520px;
	font-size: 14px;
	line-height: 1.4;
}

.consent-text a {
	color: #86c52b;
	text-decoration: underline;
}

.consent-actions {
	display: flex;
	gap: 8px;
}

.consent-btn {
	border: none;
	padding: 10px 14px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
}

.consent-btn.accept {
	background: #86c52b;
	color: #111;
}

.consent-btn.decline {
	background: #333;
	color: #fff;
	border: 1px solid #555;
}

