/* ============================================
   HOMEPAGE - Modern Design
   ============================================ */

/* -- Variables -- */
:root {
	--hp-pink:       #4A7EB8;
	--hp-pink-light: #8FB5D8;
	--hp-mauve:      #4D6E85;
	--hp-mauve-dark: #2C4A63;
	--hp-bg-soft:    #F3F7FB;
	--hp-bg-pink:    #DCE8F0;
	--hp-text:       #2D2D2D;
	--hp-text-soft:  #5B6570;
	--hp-white:      #ffffff;
	--hp-radius:     12px;
	--hp-shadow:     0 4px 20px rgba(44, 74, 99, 0.1);
	--hp-shadow-lg:  0 8px 40px rgba(44, 74, 99, 0.15);
	--hp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -- Tagline top (label style) avec H1 inline -- */
.hp-tagline {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: var(--hp-mauve);
	text-align: center;
	margin: 14px auto 8px;
	padding: 0 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hp-h1-inline {
	display: inline;
	font-family: inherit;
	font-size: inherit;
	font-weight: 600;
	color: var(--hp-mauve-dark);
	letter-spacing: inherit;
	text-transform: inherit;
	margin: 0;
	padding: 0;
}

/* -- Reset for homepage -- */
.hp {
	max-width: 100%;
	overflow: hidden;
	font-family: 'Open Sans', Arial, sans-serif;
	color: var(--hp-text);
	line-height: 1.6;
}

.hp *, .hp *::before, .hp *::after {
	box-sizing: border-box;
}

.hp a {
	font-family: 'Open Sans', Arial, sans-serif;
}

.hp-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* -- Fade-in animation -- */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   HERO DESKTOP CAROUSEL
   ============================================ */
.hp-hero-desktop {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 10px 0;
	background: var(--hp-white);
}

.hp-hero-dk-col {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(135, 69, 109, 0.1);
}

.hp-hero-dk-track {
	display: flex;
	transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.hp-hero-dk-slide {
	flex: 0 0 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
}

.hp-hero-dk-slide:hover {
	text-decoration: none;
}

.hp-hero-dk-slide:hover img {
	transform: scale(1.03);
}

.hp-hero-dk-slide img {
	width: 100%;
	height: 45vh;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.hp-hero-dk-label {
	display: block;
	text-align: center;
	padding: 0px 16px 0px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--hp-mauve-dark);
	background: var(--hp-white);
	letter-spacing: 0.5px;
	position: relative;
}

.hp-hero-dk-label::after {
	/*content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: var(--hp-pink);
	margin: 8px auto 0;
	border-radius: 2px;*/
}

.hp-hero-dk-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 0px 0 14px;
	background: var(--hp-white);
}

.hp-hero-dk-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hp-bg-pink);
	cursor: pointer;
	transition: all 0.3s ease;
}

.hp-hero-dk-dot.active {
	background: var(--hp-pink);
	width: 30px;
	border-radius: 4px;
}

/* ============================================
   HERO CAROUSEL (tablet/mobile only)
   ============================================ */
.hp-hero-mobile {
	display: none;
	position: relative;
	background: var(--hp-white);
}

.hp-hero-mobile-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.hp-hero-mobile-track::-webkit-scrollbar {
	display: none;
}

.hp-hero-mobile-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.hp-hero-mobile-slide:hover {
	text-decoration: none;
}

.hp-hero-mobile-slide img {
	width: 100%;
	aspect-ratio: 3 / 4;
	max-height: 55vh;
	object-fit: cover;
	display: block;
}

.hp-hero-mobile-label {
	display: block;
	text-align: center;
	padding: 18px 20px;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--hp-mauve-dark);
	background: var(--hp-white);
	letter-spacing: 0.5px;
}

.hp-hero-mobile-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 0 0 24px;
	background: var(--hp-white);
}

.hp-hero-mobile-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--hp-bg-pink);
	cursor: pointer;
	transition: all 0.6s ease;
}

.hp-hero-mobile-dot.active {
	background: var(--hp-pink);
	transform: scale(1.3);
}

/* -- Buttons -- */
.hp-btn {
	display: inline-block;
	padding: 13px 28px;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--hp-transition);
	border: 2px solid transparent;
	letter-spacing: 0.3px;
}

.hp-btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
}

.hp-btn-primary {
	background: var(--hp-pink);
	color: var(--hp-white);
	border-color: var(--hp-pink);
	box-shadow: 0 4px 15px rgba(209, 22, 125, 0.3);
}

.hp-btn-primary:hover {
	background: var(--hp-mauve-dark);
	border-color: var(--hp-mauve-dark);
	box-shadow: 0 6px 20px rgba(92, 45, 74, 0.3);
	color: var(--hp-white);
}

.hp-btn-outline {
	background: transparent;
	color: var(--hp-mauve-dark);
	border-color: var(--hp-mauve-dark);
}

.hp-btn-outline:hover {
	background: var(--hp-mauve-dark);
	color: var(--hp-white);
}

.hp-btn-white {
	background: var(--hp-white);
	color: var(--hp-pink);
	border-color: var(--hp-white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hp-btn-white:hover {
	background: var(--hp-bg-soft);
	color: var(--hp-mauve-dark);
}

/* ============================================
   CATEGORIES CAROUSEL
   ============================================ */
.hp-categories {
	padding: 10px 0 8px;
	background: var(--hp-white);
}

.hp-section-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(20px, 3.5vw, 20px);
	font-weight: 700;
	color: var(--hp-mauve-dark);
	text-align: center;
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
}

.hp-section-title::before,
.hp-section-title::after {
	content: '';
	flex: 0 1 200px;
	min-width: 20px;
	height: 1px;
	background: var(--hp-bg-pink);
	position: relative;
	top: 2px;
}

.hp-section-title {
	white-space: nowrap;
}

.hp-section-sub {
	text-align: center;
	color: var(--hp-text-soft);
	font-size: 19px;
	font-weight: 300;
	margin: 0 0 35px;
}

/* Category cards: fill visible area (3 per view), border, no radius */
.hp-categories .hp-new-card {
	flex: 0 0 calc((100% - 36px) / 3);
	border-radius: 0;
	border: 1px solid #ddd;
	box-shadow: none;
}

.hp-categories .hp-new-card:hover {
	border-color: var(--hp-pink);
}

/* Category square cards (inside hp-new-carousel) */
.hp-cat-sq-img {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--hp-bg-soft);
}

.hp-cat-sq-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.hp-new-card:hover .hp-cat-sq-img img {
	transform: scale(1.06);
}

.hp-cat-sq-name {
	text-align: center;
	padding: 8px 10px;
	min-height: calc(1.3em * 2 + 16px);
	font-size: 15px;
	background: var(--hp-bg-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hp-cat-sq-name span {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
	font-weight: 600;
	color: var(--hp-mauve-dark);
	font-family: 'Open Sans', Arial, sans-serif;
	line-height: 1.3;
}

.hp-new-card:hover .hp-cat-sq-name span {
	color: var(--hp-pink);
}

/* ============================================
   NOUVEAUTES PRODUCTS CAROUSEL
   ============================================ */
.hp-nouveautes {
	padding: 10px 0 5px;
	background: var(--hp-white);
}

/* Carousel wrapper */
.hp-new-carousel-wrap {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Horizontal scroll container */
.hp-new-carousel {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 10px 70px 20px;
	cursor: grab;
}

.hp-new-carousel.grabbing {
	cursor: grabbing;
	scroll-behavior: auto;
}

.hp-new-carousel {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.hp-new-carousel::-webkit-scrollbar {
	display: none;
}

/* Product card */
.hp-new-card {
	flex: 0 0 210px;
	scroll-snap-align: start;
	background: var(--hp-white);
	border-radius: var(--hp-radius);
	overflow: hidden;
	box-shadow: var(--hp-shadow);
	transition: all var(--hp-transition);
}

.hp-new-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--hp-shadow-lg);
}

/* Border on bestsellers & nouveautés cards — same style as categories */
.hp-bestsellers .hp-new-card,
.hp-nouveautes .hp-new-card {
	border: 1px solid #ddd;
}
.hp-bestsellers .hp-new-card:hover,
.hp-nouveautes .hp-new-card:hover {
	border-color: var(--hp-pink);
}

/* First 3 cards visible immediately (no fade-in delay) */
.hp-new-carousel .hp-new-card.fade-in:nth-child(-n+3) {
	opacity: 1;
	transform: translateY(0);
}

.hp-new-card-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.hp-new-card-link:hover {
	text-decoration: none;
	color: inherit;
}

/* Product photo */
.hp-new-photo {
	position: relative;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	overflow: hidden;
	background: var(--hp-white);
}

.hp-new-photo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.hp-new-card:hover .hp-new-photo img {
	transform: scale(1.05);
	opacity: 0.9;
}

/* Promo badge */
.hp-new-photo.prd-badge-promo::after {
	content: attr(data-promo);
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--hp-pink);
	color: var(--hp-white);
	font-size: 15px;
	font-weight: 700;
	line-height: 52px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(209, 22, 125, 0.3);
}

/* Top Prix badge */
.hp-new-photo.prd-badge-top::before {
	content: 'PRIX';
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--hp-white);
	box-shadow: 0 2px 8px rgba(135, 69, 109, 0.15);
	color: #999;
	font-size: 11px;
	font-weight: 600;
	line-height: 72px;
	text-align: center;
}

.hp-new-photo.prd-badge-top::after {
	content: 'TOP';
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	width: 52px;
	height: 52px;
	color: var(--hp-pink);
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
}

/* Product info */
.hp-new-info {
	padding: 0 12px 14px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hp-new-title {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--hp-text);
	text-align: center;
	font-family: 'Open Sans', Arial, sans-serif;
	max-height: calc(1.4em * 3);
	overflow: hidden;
}

.hp-new-card:hover .hp-new-title {
	color: var(--hp-pink);
}

/* Price */
.hp-new-price {
	text-align: center;
	margin-top: auto;
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}

.hp-new-old-price {
	font-size: 13px;
	color: #b1b1b1;
	text-decoration: none;
	position: relative;
}

.hp-new-old-price::after {
	content: '';
	position: absolute;
	left: -2px;
	right: -2px;
	top: 50%;
	height: 1px;
	background: #b1b1b1;
	transform: rotate(-12deg);
}

.hp-new-current-price {
	font-size: 22px;
	font-weight: 700;
	color: #4A7EB8;
	font-family: 'Open Sans', Arial, sans-serif;
}

.hp-new-current-price small {
	font-size: 15px;
	font-weight: 600;
}

.hp-new-current-price i {
	font-style: normal;
	font-size: 16px;
	font-weight: 400;
	color: #4A7EB8;
}

/* Nav buttons — full-height transparent clickable zones over the side padding */
.hp-new-btn {
	position: absolute;
	top: 0;
	z-index: 5;
	width: 50px;
	height: 100%;
	border: none;
	border-radius: 0;
	background: transparent;
	color: var(--hp-mauve-dark);
	box-shadow: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color var(--hp-transition);
}

.hp-new-btn svg {
	position: relative;
	z-index: 1;
}

.hp-new-btn::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--hp-white);
	box-shadow: 0 2px 12px rgba(135, 69, 109, 0.2);
	transition: all var(--hp-transition);
}

.hp-new-btn:hover {
	color: var(--hp-white);
}

.hp-new-btn:hover::before {
	background: var(--hp-pink);
	box-shadow: 0 4px 16px rgba(209, 22, 125, 0.3);
}

.hp-new-prev {
	left: 0;
}

.hp-new-next {
	right: 0;
}

/* CTA button */
.hp-new-cta {
	text-align: center;
	margin-top: 28px;
	padding-bottom: 27px;
}

/* ============================================
   MEILLEURES VENTES CAROUSEL
   ============================================ */
.hp-bestsellers {
	padding: 40px 0 5px;
	background: var(--hp-white);
}

/* ============================================
   REASSURANCE
   ============================================ */
.hp-reassurance {
	padding: 40px 0;
	background: var(--hp-bg-soft);
}

.hp-reassu-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.hp-reassu-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	background: var(--hp-white);
	border-radius: var(--hp-radius);
	box-shadow: var(--hp-shadow);
	text-decoration: none;
	transition: all var(--hp-transition);
}

.hp-reassu-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--hp-shadow-lg);
	text-decoration: none;
}

.hp-reassu-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--hp-bg-pink), var(--hp-bg-soft));
	color: var(--hp-pink);
	margin-bottom: 14px;
	transition: all var(--hp-transition);
}

.hp-reassu-card:hover .hp-reassu-icon {
	background: linear-gradient(135deg, var(--hp-pink-light), var(--hp-bg-pink));
	transform: scale(1.08);
}

.hp-reassu-text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hp-reassu-card strong,
.hp-reassu-text strong {
	font-size: 16px;
	color: var(--hp-mauve-dark);
	margin-bottom: 4px;
	font-family: 'Open Sans', Arial, sans-serif;
}

.hp-reassu-card span,
.hp-reassu-text span {
	font-size: 13px;
	color: var(--hp-text-soft);
	font-family: 'Open Sans', Arial, sans-serif;
}

/* ============================================
   BANNER CTA
   ============================================ */
.hp-banner {
	padding: 40px 0;
	background: var(--hp-white);
}

.hp-banner-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 35px 40px;
	background: linear-gradient(135deg, var(--hp-mauve-dark), var(--hp-pink));
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(135, 69, 109, 0.25);
}

.hp-banner-text h3 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 700;
	color: var(--hp-white);
	margin: 0 0 6px;
}

.hp-banner-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	font-weight: 300;
}

/* ============================================
   SEO TEXT
   ============================================ */
.hp-seo {
	padding: 40px 0 50px;
	background: var(--hp-bg-soft);
}

.hp-seo-content {
	max-width: 740px;
	margin: 0 auto;
}

.hp-seo-h1 {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--hp-mauve-dark);
	margin: 0 0 16px;
}

.hp-seo-content p {
	font-size: 16px;
	color: var(--hp-text-soft);
	line-height: 1.7;
	margin: 0 0 12px;
	text-align: justify;
}

.hp-seo-content a {
	color: var(--hp-pink);
	text-decoration: none;
	font-size: 14px;
	transition: color var(--hp-transition);
}

.hp-seo-content a:hover {
	color: var(--hp-mauve-dark);
	text-decoration: underline;
}

.hp-seo-extra {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.hp-seo-extra.open {
	max-height: 800px;
}

.hp-read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 8px 20px;
	background: var(--hp-white);
	border: 1px solid var(--hp-bg-pink);
	border-radius: 50px;
	color: var(--hp-mauve);
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	cursor: pointer;
	transition: all var(--hp-transition);
}

.hp-read-more:hover {
	background: var(--hp-bg-pink);
	border-color: var(--hp-pink-light);
	color: var(--hp-pink);
}

.hp-chevron {
	font-size: 10px;
	transition: transform 0.3s ease;
}

.hp-chevron-up {
	transform: rotate(180deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media screen and (max-width: 768px) {
	.hp-hero-desktop {
		display: none;
	}

	.hp-hero-mobile {
		display: block;
	}

	.hp-hero-mobile-label {
		font-size: 22px;
		padding: 16px 18px;
	}

	/* Products carousel */
	.hp-new-carousel {
		padding: 10px 40px 20px;
	}

	.hp-new-card {
		flex: 0 0 180px;
	}

	.hp-new-btn {
		width: 40px;
	}

	.hp-new-btn::before {
		width: 34px;
		height: 34px;
	}

	.hp-nouveautes {
		padding: 15px 0 30px;
	}

	.hp-bestsellers {
		padding: 35px 0 30px;
	}

	/* Reassurance: 2 columns on tablet */
	.hp-reassu-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.hp-reassu-card {
		flex-direction: row;
		text-align: left;
		gap: 16px;
		padding: 20px 24px;
	}

	.hp-reassu-text {
		align-items: flex-start;
	}

	.hp-reassu-icon {
		margin-bottom: 0;
		width: 52px;
		height: 52px;
		flex-shrink: 0;
	}

	.hp-reassu-icon svg {
		width: 28px;
		height: 28px;
	}

	.hp-banner-inner {
		flex-direction: column;
		text-align: center;
		padding: 28px 24px;
	}

	.hp-banner-text h3 {
		font-size: 20px;
	}

	.hp-categories {
		padding: 0px 0 5px;
	}

	.hp-categories .hp-new-card {
		flex: 0 0 calc((100% - 18px) / 2);
	}

	.hp-reassurance {
		padding: 30px 0;
	}

	.hp-banner {
		padding: 30px 0;
	}

	.hp-seo {
		padding: 15px 0 30px;
	}
}

/* Mobile */
@media screen and (max-width: 480px) {
	.hp-hero-mobile-slide img {
		max-height: 46vh;
	}

	.hp-hero-mobile-label {
		font-size: 20px;
		padding: 0px 16px;
	}

	.hp-hero-mobile-dots {
		gap: 13px;
		padding: 0 0 5px;
	}

	.hp-hero-mobile-dot {
		width: 8px;
		height: 8px;
	}

	.hp-btn {
		padding: 12px 24px;
		font-size: 13px;
		text-align: center;
	}

	.hp-section-sub {
		font-size: 13px;
		margin-bottom: 24px;
	}

	/* Products carousel mobile */
	.hp-new-carousel {
		padding: 10px 36px 20px;
	}

	.hp-new-card {
		flex: 0 0 160px;
	}

	.hp-new-photo {
		padding: 8px;
	}

	.hp-new-title {
		font-size: 15px;
	}

	.hp-new-current-price {
		font-size: 27px;
	}

	.hp-new-current-price small {
		font-size: 13px;
	}

	.hp-new-info {
		padding: 0 8px 10px;
	}

	.hp-new-btn {
		width: 36px;
	}

	.hp-new-btn::before {
		width: 30px;
		height: 30px;
	}

	.hp-new-btn svg {
		width: 16px;
		height: 16px;
	}

	.hp-new-photo.prd-badge-promo::after,
	.hp-new-photo.prd-badge-top::before {
		width: 44px;
		height: 44px;
		font-size: 13px;
		line-height: 44px;
		top: 6px;
		right: 6px;
	}

	.hp-new-photo.prd-badge-top::before {
		line-height: 60px;
		font-size: 10px;
	}

	.hp-new-photo.prd-badge-top::after {
		width: 44px;
		height: 44px;
		font-size: 12px;
		line-height: 34px;
		top: 6px;
		right: 6px;
	}

	.hp-categories .hp-new-card {
		flex: 0 0 calc((100% - 18px) / 2);
	}

	.hp-nouveautes {
		padding: 10px 0 24px;
	}

	.hp-bestsellers {
		padding: 10px 0 5px;
	}

	.hp-new-cta {
		margin-top: 20px;
	}

	/* Reassurance: single column on mobile */
	.hp-reassu-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.hp-reassu-card {
		padding: 16px 18px;
	}

	.hp-reassu-card strong,
	.hp-reassu-text strong {
		font-size: 14px;
	}

	.hp-reassu-card span,
	.hp-reassu-text span {
		font-size: 12px;
	}

	.hp-banner-inner {
		padding: 24px 18px;
		border-radius: 12px;
	}

	.hp-banner-text h3 {
		font-size: 18px;
	}

	.hp-banner-text p {
		font-size: 13px;
	}

	.hp-seo-h1 {
		font-size: 19px;
	}

	.hp-seo-content p {
		font-size: 13px;
	}

	.hp-container {
		padding: 0 14px;
	}
}

/* -- Color dots for homepage cards -- */
.hp-new-card .prd-colors {
	padding: 4px 6px 0;
	gap: 3px;
}
.hp-new-card .prd-color-dot {
	width: 10px;
	height: 10px;
}
@media (min-width: 769px) {
	.hp-new-card .prd-colors {
		gap: 6px;
	}
	.hp-new-card .prd-color-dot {
		width: 13px;
		height: 13px;
	}
}
