#norelle-accueil-2026 {
	--norelle-cards-cream: #f6efe3;
	--norelle-cards-surface: #ffffff;
	--norelle-cards-ink: #211a16;
	--norelle-cards-muted: #6a5d53;
	--norelle-cards-red: #bb3325;
	--norelle-cards-red-dark: #94261d;
	--norelle-cards-green: #215c3a;
	--norelle-cards-border: #dfd0be;
	--norelle-cards-radius: 22px;
}

#norelle-accueil-2026 .norelle-home-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 28px);
	margin: 0;
	padding: 0;
	color: var(--norelle-cards-ink);
}

#norelle-accueil-2026 .norelle-home-products__card {
	display: flex;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	flex-direction: column;
	padding: 0 20px 20px;
	background: var(--norelle-cards-surface);
	border: 1px solid var(--norelle-cards-border);
	border-radius: var(--norelle-cards-radius);
	box-shadow: 0 12px 30px rgba(33, 26, 22, 0.09);
}

#norelle-accueil-2026 .norelle-home-products__image {
	display: grid;
	place-items: center;
	width: calc(100% + 40px);
	aspect-ratio: 1 / 1;
	margin: 0 -20px 20px;
	overflow: hidden;
	background: var(--norelle-cards-cream);
	border-bottom: 1px solid var(--norelle-cards-border);
	border-radius: var(--norelle-cards-radius) var(--norelle-cards-radius) 0 0;
}

#norelle-accueil-2026 .norelle-home-products__image img {
	display: block;
	width: 100%;
	height: 100%;
	padding: clamp(10px, 2vw, 22px);
	object-fit: contain;
	object-position: center;
}

#norelle-accueil-2026 .norelle-home-products__title {
	margin: 0 0 10px;
	font-family: "Roboto Slab", Georgia, serif;
	font-size: clamp(1.15rem, 1.4vw, 1.45rem);
	font-weight: 700;
	line-height: 1.2;
}

#norelle-accueil-2026 .norelle-home-products__title a {
	color: var(--norelle-cards-ink);
	text-decoration: none;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

#norelle-accueil-2026 .norelle-home-products__title a:hover {
	color: var(--norelle-cards-red-dark);
	text-decoration: underline;
}

#norelle-accueil-2026 .norelle-home-products__price {
	margin: auto 0 12px;
	color: var(--norelle-cards-ink);
	font-size: clamp(1.25rem, 1.7vw, 1.65rem);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1.25;
}

#norelle-accueil-2026 .norelle-home-products__price del {
	margin-right: 6px;
	color: var(--norelle-cards-muted);
	font-size: 0.72em;
	font-weight: 500;
}

#norelle-accueil-2026 .norelle-home-products__price ins {
	color: var(--norelle-cards-red-dark);
	text-decoration: none;
}

#norelle-accueil-2026 .norelle-home-products__kg {
	color: var(--norelle-cards-muted);
	font-size: 0.7em;
	font-weight: 600;
}

#norelle-accueil-2026 .norelle-home-products__weight-status {
	margin: 0 0 12px;
	color: var(--norelle-cards-green);
	font-size: 0.94rem;
	font-weight: 700;
}

#norelle-accueil-2026 .norelle-home-products__weight-status span {
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 8px;
	background: currentColor;
	border-radius: 50%;
}

#norelle-accueil-2026 .norelle-home-products__choices {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 14px;
	padding: 0;
	border: 0;
}

#norelle-accueil-2026 .norelle-home-products__choices legend {
	width: 100%;
	margin: 0 0 6px;
	padding: 0;
	color: var(--norelle-cards-muted);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
}

#norelle-accueil-2026 .norelle-home-products__choice {
	position: relative;
	display: inline-flex;
}

#norelle-accueil-2026 .norelle-home-products__choice input[type="radio"] {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	min-width: 44px;
	height: 100%;
	min-height: 44px;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

#norelle-accueil-2026 .norelle-home-products__choice label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 16px;
	color: var(--norelle-cards-ink);
	background: var(--norelle-cards-cream);
	border: 1px solid var(--norelle-cards-border);
	border-radius: 999px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

#norelle-accueil-2026 .norelle-home-products__choice input[type="radio"]:hover + label {
	border-color: var(--norelle-cards-ink);
}

#norelle-accueil-2026 .norelle-home-products__choice input[type="radio"]:checked + label {
	color: var(--norelle-cards-surface);
	background: var(--norelle-cards-ink);
	border-color: var(--norelle-cards-ink);
}

#norelle-accueil-2026 .norelle-home-products__choice input[type="radio"]:disabled {
	cursor: not-allowed;
}

#norelle-accueil-2026 .norelle-home-products__choice input[type="radio"]:disabled + label {
	color: var(--norelle-cards-muted);
	background: #eee7dc;
	border-color: #d8cdbf;
	opacity: 0.68;
	cursor: not-allowed;
	text-decoration: line-through;
}

#norelle-accueil-2026 .norelle-home-products__unavailable {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

#norelle-accueil-2026 .norelle-home-products__status,
#norelle-accueil-2026 .norelle-home-products__feedback {
	min-height: 24px;
	margin: 0 0 10px;
	color: var(--norelle-cards-muted);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.45;
}

#norelle-accueil-2026 .norelle-home-products__status::before {
	display: none;
	width: 9px;
	height: 9px;
	margin-right: 8px;
	background: currentColor;
	border-radius: 50%;
	content: "";
}

#norelle-accueil-2026 .norelle-home-products__status {
	color: var(--norelle-cards-muted);
}

#norelle-accueil-2026 .norelle-home-products__status.is-available {
	color: var(--norelle-cards-green);
}

#norelle-accueil-2026 .norelle-home-products__status.is-available::before {
	display: inline-block;
}

#norelle-accueil-2026 .norelle-home-products__status.is-unavailable {
	color: var(--norelle-cards-red-dark);
}

#norelle-accueil-2026 .norelle-home-products__feedback:empty {
	display: none;
}

#norelle-accueil-2026 .norelle-home-products__add,
#norelle-accueil-2026 .norelle-home-products__details {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 12px 18px;
	color: var(--norelle-cards-surface);
	background: var(--norelle-cards-red);
	border: 2px solid var(--norelle-cards-red);
	border-radius: 13px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	touch-action: manipulation;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

#norelle-accueil-2026 .norelle-home-products__add:hover,
#norelle-accueil-2026 .norelle-home-products__details:hover {
	color: var(--norelle-cards-surface);
	background: var(--norelle-cards-red-dark);
	border-color: var(--norelle-cards-red-dark);
}

#norelle-accueil-2026 .norelle-home-products__add.disabled,
#norelle-accueil-2026 .norelle-home-products__add.loading,
#norelle-accueil-2026 .norelle-home-products__add[aria-disabled="true"] {
	color: #f4eee7;
	background: var(--norelle-cards-muted);
	border-color: var(--norelle-cards-muted);
	opacity: 0.72;
	cursor: wait;
	pointer-events: none;
}

#norelle-accueil-2026 .norelle-home-products__add.disabled:not(.loading),
#norelle-accueil-2026 .norelle-home-products__add[aria-disabled="true"]:not(.loading) {
	cursor: not-allowed;
}

#norelle-accueil-2026 .norelle-home-products__image:focus-visible,
#norelle-accueil-2026 .norelle-home-products__title a:focus-visible,
#norelle-accueil-2026 .norelle-home-products__add:focus-visible,
#norelle-accueil-2026 .norelle-home-products__details:focus-visible,
#norelle-accueil-2026 .norelle-home-products__choice input[type="radio"]:focus-visible + label {
	outline: 0;
	box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px #000000;
}

@media (max-width: 1024px) {
	#norelle-accueil-2026 .norelle-home-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	#norelle-accueil-2026 .norelle-home-products {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	#norelle-accueil-2026 .norelle-home-products__card {
		padding-right: 16px;
		padding-bottom: 16px;
		padding-left: 16px;
		border-radius: 18px;
	}

	#norelle-accueil-2026 .norelle-home-products__image {
		width: calc(100% + 32px);
		margin-right: -16px;
		margin-left: -16px;
		border-radius: 18px 18px 0 0;
	}

	#norelle-accueil-2026 .norelle-home-products__choice {
		flex: 1 1 calc(50% - 4px);
	}

	#norelle-accueil-2026 .norelle-home-products__choice label {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	#norelle-accueil-2026 .norelle-home-products__choice label,
	#norelle-accueil-2026 .norelle-home-products__add,
	#norelle-accueil-2026 .norelle-home-products__details {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
	}
}
