/* RESET
-----------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust :100%
}

/* FONTS
-----------------------------------------------*/

@font-face {
	font-family: 'Quicksand';
	src: url('quicksand-bold.woff2') format('woff2'),
	     url('quicksand-bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: block;
}

@font-face {
	font-family: 'Outfit';
	src: url('outfit.woff2') format('woff2'),
	     url('outfit.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit Bold';
	src: url('outfit-bold.woff2') format('woff2'),
	     url('outfit-bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter Tight';
	src: url('inter-tight-italic.woff2') format('woff2'),
	     url('inter-tight-italic.woff') format('woff');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

/* COLOR SCHEME - ALL
-----------------------------------------------*/

:root {
	color-scheme: light dark;
}

body {
	background: var(--bg);
	color: var(--text);
	transition: background 0.3s, color 0.3s;
}

/* COLOR SCHEME - LIGHT
-----------------------------------------------*/

:root {
	--bg: #ffffff;
	--text: #404040;
}

.site-header {
	background: #ffffff;
}

a, a:visited {
	color: #3f3f3f;
}

summary {
	color: #515151;
}

.disclaimer {
	color: #656565;
}

nav {
	color: #656565;
}

.item {
	background: #f5f5f5;
}

/* COLOR SCHEME - DARK
-----------------------------------------------*/

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #232325;
		--text: #ffffff;
	}

	.site-header {
		background: #232325;
	}
	
	a, a:visited {
		color: #e7e7e7;
	}

	summary {
		color: #ffffff;
	}

	.disclaimer {
		color: #cccccc;
	}

	nav {
		color: #9a9a9a;
	}
	
	.item {
		background: #3e3e40;
	}
	
	.logo-amazon-text {
		fill: #ffffff;
	}
}

/* ELEMENTS - ALL
-----------------------------------------------*/

body {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	cursor: default;
}

b, strong {
	font-family: 'Outfit Bold', -apple-system, BlinkMacSystemFont, sans-serif;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.3s ease;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	display: block;
}

.logo img {
	display: block;
	width: auto;
	transition: height 0.3s ease;
}

.cta-header .cta-button {
	transition: all 0.3s ease;
}

h1, h2, h3 {
	font-family: 'Quicksand';
	color: #70bf44;
}

h1 {
	text-align: center;
        -webkit-text-stroke: 0.8px #70bf44;
	text-stroke: 0.8px #70bf44;
}

.center-stage {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.support-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.box > a {
	text-decoration: none;
	display: block;
	width: 15rem;
	position: relative;
}

.support-box > a {
	text-decoration: none;
	display: block;
	width: 14rem;
	position: relative;
}

.box > a:first-child .item {
	border: 3px solid #70bf44;
	box-sizing: border-box;
}

.box > a:first-child:before {
	content: "le moins cher";
	position: absolute;
	top: -1.5rem;
	left: 50%;
	transform: translateX(-50%);
	background-color: #70bf44;
	border-radius: 0.5rem 0.5rem 0 0;
	font-family: 'Outfit Bold', -apple-system, BlinkMacSystemFont, sans-serif;
	letter-spacing: 0.1rem;
	color: #ffffff;
	padding: 0.3rem 1rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	white-space: nowrap;
	z-index: 10;
}

.item {
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	overflow: hidden;
	text-align: center;
	padding: 1rem;
}

.support-logo-lbc {
	margin-top: 0.5rem;
	margin-bottom: 0.6rem;
}

.support-logo-ebay {
	margin-top: 0.4rem;
	margin-bottom: 0.3rem;
}

.support-logo-amazon {
	margin-top: 0.5rem;
}

.logo-ebay {
	margin-top: 0.2rem;
	margin-bottom: -0.3rem;
}

.logo-amazon {
	margin-top: 0.5rem;
}

.logo-lbc {
	margin-top: 0.1rem;
}

.price {
	font-family: 'Outfit Bold';
	font-size: 2rem;
	margin-top: 0.3rem;
	text-align: center;
}

.status-price {
	font-family: 'Outfit Bold';
	font-size: 1rem;
	text-transform: uppercase;
	margin-top: 1rem;
}

.min-price {
	font-size: 1rem;
	position: relative;
	top: -0.7rem;
	padding: 0 0.1rem;
}

.from-price {
	font-family: 'Outfit';
}

.box-link, .box-link:visited, .box-link:hover, .box-link:active {
	color: var(--text);
}

a .view-button, a:visited .view-button, a:hover .view-button, a:active .view-button,
a .view-button-support, a:visited .view-button-support, a:hover .view-button-support, a:active .view-button-support {
	color: #ffffff;
}

.view-button {
	background-color: #70bf44;
	text-align: center;
	font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 30px;
	border: 1px solid #70bf44;
	padding: 0.6rem 2rem 0.6rem 2rem;
	width: 75%;
	margin: 1rem auto 0;
	display: block;
	box-sizing: border-box;
}

.view-button-support {
	background-color: #70bf44;
	text-align: center;
	font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 30px;
	border: 1px solid #70bf44;
	padding: 0.6rem 2rem 0.6rem 2rem;
	margin: 1rem auto 0;
	width: 100%;
	display: block;
	box-sizing: border-box;
}

footer {
	color: #9a9a9a;
	text-align: center;
}

.copyright-date::after {
	content: "2026";
}

img {
	display: block;
	margin: auto;
}

.cta-button {
	background-color: #70bf44;
	text-align: center;
	font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 30px;
	border: 1px solid #70bf44;
}

.cta a, .cta a:visited, .cta a:hover, .cta a:active,
.cta-header a, .cta-header a:visited, .cta-header a:hover, .cta-header a:active {
	color: #ffffff;
}

nav::before {
	content: "Sommaire";
	display: block;
	text-transform: uppercase;
}

.catch-phrase {
	font-family: 'Inter Tight';
	font-style: italic;
	color: #70bf44;
}

.buy-button {
	text-align: center;
}

details {
	border: 1px solid #9a9a9a;
	border-radius: 10px;
}

summary {
	font-family: 'Outfit Bold';
	cursor: pointer;
}

a:hover, a:active {
	color: #70bf44;
}

.middot::before {
	content: "• ";
}

/* ELEMENTS - DESKTOP
-----------------------------------------------*/

.site-header {
	padding: 1.2rem 1.5rem;
}	

body.scrolled .site-header {
	padding: 1rem;
	box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.logo img {
	height: 35px;
	width: auto;
	display: block;
	transition: height 0.3s ease-in-out;
}

body.scrolled .logo img {
	height: 30px;
}

body.scrolled .cta-header .cta-button {
	font-size: 0.8rem;
}

main {
	margin-top: 5rem;
}

.hero {
	width: 75%;
}

main, .copyright-info, .menu-bottom {
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.box {
	padding-top: 3rem;
}

.support-box {
	padding-top: 1rem;
	margin-bottom: 2.4rem;
}

footer {
	font-size: 1rem;
	margin-bottom: 1rem;
	margin-top: 4rem;
}

.cta {
	margin: 1.5rem 0 3rem 1rem;
}

.cta-button {
	font-size: 1rem;
}

.copyright-info {
	margin-bottom: 0.5rem;
}

h1 {
	font-size: 2.3rem;
	margin: 8rem 0 2.3rem 0;
}

h2 {
	font-size: 1.8rem;
	margin: 2rem 0 1.2rem 2rem;
}

h3 {
	font-size: 1.3rem;
	margin: 2rem 0 2rem 1rem;
}

.middot {
	margin: 0 0 1rem 1rem;
}

.center-stage {
	margin-bottom: 0.9rem;
}

nav {
	margin: 0 0 2.5rem 3rem;
	font-size: 1.1rem;
}

nav::before {
	margin: 0 0 0.5rem 0.5rem;
	opacity: 0.9;
}

ul li {
	line-height: 1.8rem;
	margin-bottom: 0.8rem;
}

.maj-date {
	margin: 0 0 1rem 2rem;
	font-size: 1rem;
}

p {
	margin: 0 0 1rem 0;
	line-height: 1.8rem;
	font-size: 1.2rem;
}

.buy-button {
	margin-top: 3rem;
}

.catch-phrase {
	font-size: 1.5rem;
	line-height: 2rem;
	margin: 2rem;
}

ul {
	font-size: 1.2rem;
	margin-left: 3.25rem;
}

nav {
	margin-top: 4rem;
}

.disclaimer p {
	font-size: 1rem;
	line-height: 1rem;
}

.disclaimer {
	margin-top: 4rem;
}

details {
	padding: 0.5em 0.5em 0;
	margin: 1.5rem;
}

summary {
	margin: -0.5em 0.5em 0;
	padding: 0.5em;
	font-size: 1.2rem;
}

details[open] {
	padding: 0.5em;
}

details[open] summary {
	margin-bottom: 0.5em;
}

details p {
	margin: 0 0.5em 0.5em 0.5em;
	font-size: 1.2rem;
	line-height: 1.6rem;
}

.cta-button {
	padding: 0.6rem 2rem 0.6rem 2rem;
}

.menu-bottom {
	line-height: 1.6rem;
}

li {
	line-height: 1.8;
}

.view-button-support {
	font-size: 1rem;
}

.from-price {
	font-size: 1rem;
}

/* ELEMENTS - MOBILE
-----------------------------------------------*/

@media screen and (max-width: 667px) {
	.site-header {
		padding: 0;
	}
	
	body.scrolled .site-header {
		padding: 0 0 0.6rem 0;
	}
	
	.header-container {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		padding: 1rem 1.5rem;
		align-items: center;
		width: 100%;
		text-align: center;
	}
	
	body.scrolled .header-container {
		padding: 0.6rem 1.5rem;
		gap: 1rem;
	}

	.logo img {
		margin: 0 auto;
		height: 32px;
	}

	.logo {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	body.scrolled .logo img {
		height: 28px;
	}

	body.scrolled .cta-header .cta-button {
		padding: 0.5rem 1.8rem 0.5rem 1.8rem;
		font-size: 0.8rem;
	}

	main {
		margin-top: 7rem;
	}

	main, .copyright-info, .menu-bottom {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.box {
		padding-top: 2rem;
	}

	.support-box {
		padding-top: 0.5rem;
		margin-bottom: 2.9rem;
	}

	footer {
		font-size: 1rem;
		margin-bottom: 0.5rem;
		margin-top: 3rem;
	}
	
	.cta {
		margin: 0 0 3.5rem 0;
	}
	
	.cta-button {
		font-size: 0.9rem;
		padding: 0.6rem 2rem 0.6rem 2rem;
	}
	
	.menu-bottom {
		line-height: 1.8;
	}

	.copyright-info {
		margin-bottom: 0.3rem;
	}
	
	h1 {
		font-size: 1.8rem;
		padding: 1.5rem 0 0 0;
		margin: 8rem 0 2rem 0;
	}
	
	h2 {
		font-size: 1.5rem;
		margin: 2.1rem 1rem 1.6rem 1rem;
	}

	h3 {
		font-size: 1.2rem;
		margin: 0 0 0.9rem 1rem;
	}

	.center-stage {
		margin-bottom: 1.5rem;
	}
	
	nav {
		margin: 2.6rem 0 2.5rem 0;
		font-size: 1.1rem;
	}
	
	nav::before {
		margin: 0 0 0.6rem 0;
		opacity: 0.9;
	}

	ul li {
		line-height: 1.6rem;
		margin-bottom: 0.6rem;
	}
	
	li {
		line-height: 1.8;
		margin-left: -1.5rem;
	}
	
	.maj-date {
		margin: 0 0 1rem 0;
		font-size: 1rem;
	}
	
	p {
		margin: 0 0 1rem 0;
		line-height: 1.7rem;
		font-size: 1.2rem;
	}

	.buy-button {
		margin-top: 2.5rem;
	}

	.catch-phrase {
		font-size: 1.3rem;
		line-height: 2rem;
		margin: 1.8rem 2rem;
	}

	ul {
		font-size: 1.2rem;
		margin-left: 3.5rem;
		margin-bottom: 1.2rem;
	}

	.disclaimer p {
		font-size: 0.9rem;
		line-height: 1rem;
	}

	.disclaimer {
		margin-top: 4rem;
	}

	details {
		padding: 0.5em 0.5em 0;
		margin: 1.5rem 0.5rem 1.5rem 0.5rem;
	}

	summary {
		margin: -0.5em 0.5em 0;
		padding: 0.5em 0;
		font-size: 1.2rem;
	}

	details[open] {
		padding: 0.5em;
	}

	details[open] summary {
		margin-bottom: 0.5em;
	}

	details p {
		margin: 0 1em 0.5em 1em;
		font-size: 1.2rem;
		line-height: 1.6rem;
	}
	
	.form-button {
		text-align: center;
		margin-top: 2.1rem;
	}
	
	.view-button-support {
		font-size: 0.9rem;
	}
	
	#faq {
		margin-top: -0.5rem;
	}
	
	.from-price {
		font-size: 1.1rem;
	}
}