/**
 * Charte et mise en forme des blocs Beurre Noisette.
 *
 * Relevé fidèle de la maquette d'accueil fournie par le client — voir
 * docs/maquette/charte.md. C'est la seule feuille de style des dix-neuf blocs,
 * chargée à l'identique côté public et dans l'éditeur : c'est ce qui garantit
 * que ce que le client voit en rédigeant est ce qui sera publié.
 *
 * Les blocs n'exposent volontairement ni sélecteur de couleur ni réglage de
 * typographie. La charte se pilote ici, et nulle part ailleurs.
 *
 * Le chargement de Fraunces et Karla relève du thème enfant Blocksy.
 */

:root {
	--bn-creme: #f5ede3;
	--bn-creme-2: #ede1d2;
	--bn-chocolat: #3d2b1f;
	--bn-noisette: #a6703e;
	--bn-caramel: #d99a4e;
	--bn-sauge: #8a9a7b;
	--bn-framboise: #9b4a46;

	--bn-display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--bn-text: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

	--bn-section: 86px;
	--bn-wrap: 1120px;
}

/* Enveloppe commune ------------------------------------------------------- */

.bn-hero,
.bn-arguments,
.bn-formule,
.bn-etapes,
.bn-galerie,
.bn-avis,
.bn-zone,
.bn-cadeau,
.bn-portrait,
.bn-faq,
.bn-cta {
	font-family: var( --bn-text );
	color: var( --bn-chocolat );
	line-height: 1.65;
}

.bn-hero > *,
.bn-arguments > *,
.bn-formule > *,
.bn-etapes > *,
.bn-galerie > *,
.bn-avis > *,
.bn-zone > *,
.bn-cadeau > *,
.bn-portrait > *,
.bn-faq > *,
.bn-cta > * {
	max-width: var( --bn-wrap );
	margin-inline: auto;
}

.bn-formule,
.bn-avis,
.bn-cadeau,
.bn-cta,
.bn-faq,
.bn-etapes,
.bn-zone,
.bn-portrait,
.bn-galerie {
	padding: var( --bn-section ) 24px;
}

.bn-formule,
.bn-cta {
	padding-block: calc( var( --bn-section ) * 1.35 );
}

.bn-galerie,
.bn-etapes {
	padding-block: calc( var( --bn-section ) * 0.75 );
}

/* Sections à fond sombre --------------------------------------------------- */

/*
 * Blocksy pose une couleur explicite sur les titres et les paragraphes. Elle
 * l'emporte sur celle héritée de la section, ce qui donnait un titre chocolat
 * sur fond chocolat — invisible. On la reprend donc à la main, section par
 * section, plutôt que de compter sur l'héritage.
 */

.bn-formule,
.bn-formule h1,
.bn-formule h2,
.bn-formule h3,
.bn-formule p,
.bn-formule li,
.bn-formule span,
.bn-formule dt,
.bn-formule dd,
.bn-cadeau,
.bn-cadeau h1,
.bn-cadeau h2,
.bn-cadeau h3,
.bn-cadeau p,
.bn-cadeau span,
.bn-cta,
.bn-cta h1,
.bn-cta h2,
.bn-cta h3,
.bn-cta p,
.bn-cta span,
.bn-arguments,
.bn-arguments li,
.bn-arguments span {
	color: var( --bn-creme );
}

/* Les accents de ces sections gardent leur couleur propre. */
.bn-formule .bn-kicker,
.bn-formule .bn-formule__price,
.bn-formule .bn-formule__shipping,
.bn-formule .bn-formule__allergens a {
	color: var( --bn-caramel );
}

.bn-formule .bn-button,
.bn-cadeau .bn-button,
.bn-cta .bn-button {
	color: var( --bn-chocolat );
}

.bn-formule .bn-button:hover,
.bn-formule .bn-button:focus {
	color: var( --bn-creme );
}

.bn-cadeau .bn-kicker {
	color: rgba( 245, 237, 227, 0.75 );
}

/* Surtitre ---------------------------------------------------------------- */

.bn-kicker {
	font-family: var( --bn-display );
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	color: var( --bn-noisette );
	margin: 0 0 10px;
}

/* Titres ------------------------------------------------------------------ */

.bn-hero__title,
.bn-formule__title,
.bn-etapes__title,
.bn-galerie__title,
.bn-avis__title,
.bn-zone__title,
.bn-cadeau__title,
.bn-portrait__title,
.bn-faq__title,
.bn-cta__title {
	font-family: var( --bn-display );
	font-weight: 600;
	font-size: clamp( 30px, 4.4vw, 44px );
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.bn-lede {
	margin: 16px 0 0;
	font-size: 17px;
	color: rgba( 61, 43, 31, 0.75 );
	max-width: 52ch;
}

/* Boutons ----------------------------------------------------------------- */

.bn-button {
	background: var( --bn-caramel );
	color: var( --bn-chocolat );
	border: none;
	padding: 17px 30px;
	font-family: var( --bn-text );
	font-weight: 700;
	font-size: 14.5px;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: 0.18s;
	text-decoration: none;
	display: inline-block;
	min-height: 48px;
}

.bn-button:hover,
.bn-button:focus {
	background: var( --bn-noisette );
	color: var( --bn-creme );
}

.bn-button--ghost {
	background: transparent;
	border: 1.5px solid var( --bn-chocolat );
	color: var( --bn-chocolat );
}

.bn-button--ghost:hover,
.bn-button--ghost:focus {
	background: var( --bn-chocolat );
	color: var( --bn-creme );
}

/* Bouton de sélection d'image, dans l'éditeur seulement -------------------- */

.bn-media-button {
	display: block;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	width: 100%;
}

.bn-media-button img {
	display: block;
	width: 100%;
	height: auto;
}

/* HERO --------------------------------------------------------------------- */

.bn-hero {
	padding: 56px 24px 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: calc( var( --bn-wrap ) + 48px );
	margin-inline: auto;
}

.bn-hero > * {
	max-width: none;
}

.bn-hero__surtitle {
	font-family: var( --bn-display );
	font-size: 17px;
	font-style: italic;
	font-weight: 400;
	color: var( --bn-noisette );
	margin: 0 0 14px;
}

.bn-hero__title {
	font-size: clamp( 38px, 5vw, 60px );
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin: 0;
}

/* La maquette met une partie du titre en valeur sans l'incliner : l'italique
   de l'éditeur sert de marqueur, la couleur fait le reste. */
.bn-hero__title em {
	font-style: normal;
	color: var( --bn-noisette );
}

.bn-hero__text {
	margin-top: 22px;
	font-size: 17.5px;
	max-width: 44ch;
	color: rgba( 61, 43, 31, 0.78 );
}

.bn-hero__slot {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 24px;
	background: var( --bn-creme-2 );
	padding: 10px 16px;
	font-size: 13.5px;
	font-weight: 600;
}

.bn-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 26px;
	align-items: center;
}

.bn-hero__figures {
	margin-top: 30px;
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.bn-figure__label {
	display: block;
	font-size: 13px;
	color: rgba( 61, 43, 31, 0.55 );
	margin-bottom: 2px;
}

.bn-figure__value {
	display: block;
	font-family: var( --bn-display );
	font-size: 19px;
	font-weight: 600;
}

.bn-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

/* BANDEAU D'ARGUMENTS -------------------------------------------------------- */

.bn-arguments {
	background: var( --bn-sauge );
	color: var( --bn-creme );
	padding: 22px 24px;
}

.bn-arguments__list {
	display: flex;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bn-argument {
	font-size: 13px;
	letter-spacing: 0.09em;
	font-weight: 600;
}

/* FORMULE --------------------------------------------------------------------- */

.bn-formule {
	background: var( --bn-chocolat );
	color: var( --bn-creme );
}

.bn-formule .bn-kicker {
	color: var( --bn-caramel );
}

.bn-formule .bn-lede {
	color: rgba( 245, 237, 227, 0.75 );
}

.bn-formule__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: start;
	margin-top: 46px;
}

.bn-formule__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bn-formule-item {
	padding: 20px 0;
	border-top: 1px solid rgba( 245, 237, 227, 0.2 );
}

.bn-formule-item:first-child {
	border-top: none;
	padding-top: 0;
}

.bn-formule-item__title {
	font-family: var( --bn-display );
	font-size: 20px;
	font-weight: 600;
	display: block;
	margin: 0 0 5px;
}

.bn-formule-item__description {
	font-size: 14.5px;
	opacity: 0.72;
	line-height: 1.55;
	margin: 0;
}

.bn-formule__allergens {
	margin-top: 26px;
	font-size: 13px;
	opacity: 0.55;
	line-height: 1.6;
}

.bn-formule__allergens a {
	color: var( --bn-caramel );
}

.bn-formule__price-card {
	border: 1px solid rgba( 245, 237, 227, 0.28 );
	padding: 36px 30px;
	text-align: center;
	position: sticky;
	top: 100px;
}

.bn-formule__price-label {
	font-family: var( --bn-display );
	font-size: 15px;
	font-style: italic;
	opacity: 0.7;
	margin: 0;
}

.bn-formule__price {
	font-family: var( --bn-display );
	font-size: 60px;
	color: var( --bn-caramel );
	line-height: 1;
	margin: 14px 0 6px;
}

.bn-formule__price-unit {
	font-size: 13px;
	opacity: 0.65;
	margin: 0 0 22px;
}

.bn-formule__shipping {
	font-size: 12.5px;
	color: var( --bn-caramel );
	font-weight: 600;
	letter-spacing: 0.06em;
	margin: 0 0 22px;
}

.bn-formule__price-card .bn-button {
	width: 100%;
}

.bn-formule__deadline {
	font-size: 12px;
	opacity: 0.55;
	margin-top: 18px;
	line-height: 1.55;
}

.bn-formule__capacity {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba( 245, 237, 227, 0.2 );
	font-size: 12.5px;
	opacity: 0.65;
	line-height: 1.5;
}

/* ÉTAPES ------------------------------------------------------------------------ */

.bn-etapes__list {
	counter-reset: bn-etape;
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 36px;
	margin: 50px 0 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.bn-etape {
	counter-increment: bn-etape;
}

.bn-etape::before {
	content: counter( bn-etape );
	font-family: var( --bn-display );
	font-size: 46px;
	font-weight: 400;
	font-style: italic;
	color: var( --bn-noisette );
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}

.bn-etape__title {
	font-family: var( --bn-display );
	font-size: 21px;
	font-weight: 600;
	margin: 0 0 8px;
}

.bn-etape__text {
	font-size: 15px;
	color: rgba( 61, 43, 31, 0.72 );
	margin: 0;
}

/* GALERIE -------------------------------------------------------------------------- */

.bn-galerie {
	padding-top: 0;
}

.bn-galerie__grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 12px;
	margin-top: 46px;
}

.bn-galerie__grid figure {
	margin: 0;
}

.bn-galerie__grid img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

/* La première photo tient deux colonnes et deux rangées, comme la maquette. */
.bn-galerie__grid > *:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.bn-galerie__grid > *:first-child img {
	aspect-ratio: auto;
}

/* AVIS ------------------------------------------------------------------------------- */

.bn-avis {
	background: var( --bn-creme-2 );
}

.bn-avis__list {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 20px;
	margin-top: 44px;
}

.bn-avis-item {
	background: var( --bn-creme );
	padding: 28px 26px;
	margin: 0;
}

.bn-avis-item__rating {
	color: var( --bn-caramel );
	font-size: 15px;
	letter-spacing: 0.14em;
	margin: 0 0 14px;
}

.bn-avis-item__text {
	font-family: var( --bn-display );
	font-size: 17px;
	line-height: 1.45;
	margin: 0 0 16px;
	padding: 0;
	border: 0;
}

.bn-avis-item__author {
	font-size: 13.5px;
	color: var( --bn-noisette );
}

.bn-avis-item__city::before {
	content: ' · ';
}

.bn-avis__link {
	margin-top: 30px;
	font-size: 14px;
}

.bn-avis__link a {
	color: var( --bn-noisette );
	font-weight: 600;
	text-decoration: none;
}

/* ZONE ---------------------------------------------------------------------------------- */

.bn-zone {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
	max-width: calc( var( --bn-wrap ) + 48px );
}

.bn-zone > * {
	max-width: none;
}

.bn-zone__communes {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
}

.bn-commune {
	background: var( --bn-creme-2 );
	padding: 13px 16px;
	font-size: 14.5px;
	font-weight: 500;
}

.bn-commune__note {
	display: block;
	font-size: 12px;
	color: rgba( 61, 43, 31, 0.6 );
}

.bn-zone__note {
	margin-top: 20px;
	font-size: 14px;
	color: rgba( 61, 43, 31, 0.7 );
}

.bn-zone__note a {
	color: var( --bn-noisette );
	font-weight: 600;
}

.bn-zone__map img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
}

/* CARTE CADEAU ------------------------------------------------------------------------------ */

.bn-cadeau {
	background: var( --bn-framboise );
	color: var( --bn-creme );
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: calc( var( --bn-wrap ) + 48px );
}

.bn-cadeau > * {
	max-width: none;
}

.bn-cadeau .bn-kicker {
	color: rgba( 245, 237, 227, 0.75 );
}

.bn-cadeau__text {
	font-size: 16.5px;
	opacity: 0.88;
	margin-top: 16px;
	max-width: 46ch;
}

.bn-cadeau .bn-button {
	background: var( --bn-creme );
	color: var( --bn-chocolat );
	margin-top: 26px;
}

.bn-cadeau .bn-button:hover,
.bn-cadeau .bn-button:focus {
	background: var( --bn-chocolat );
	color: var( --bn-creme );
}

.bn-cadeau__card {
	border: 1px solid rgba( 245, 237, 227, 0.35 );
	padding: 34px;
	text-align: center;
}

.bn-cadeau__amount {
	font-family: var( --bn-display );
	font-size: 34px;
	display: block;
	line-height: 1;
	margin: 0;
}

.bn-cadeau__card-label {
	font-size: 13px;
	opacity: 0.75;
	display: block;
	margin-top: 12px;
}

/* QUI JE SUIS ------------------------------------------------------------------------------------ */

.bn-portrait {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 56px;
	align-items: center;
	max-width: calc( var( --bn-wrap ) + 48px );
}

.bn-portrait > * {
	max-width: none;
}

.bn-portrait__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.bn-portrait__quote {
	font-family: var( --bn-display );
	font-size: clamp( 21px, 2.6vw, 27px );
	line-height: 1.35;
	margin: 26px 0;
	padding-left: 22px;
	border-left: 3px solid var( --bn-caramel );
}

.bn-portrait__body p {
	font-size: 16px;
	color: rgba( 61, 43, 31, 0.78 );
	margin-bottom: 14px;
}

.bn-portrait__signature {
	margin-top: 22px;
	font-family: var( --bn-display );
	font-size: 17px;
	font-weight: 600;
}

.bn-portrait__role {
	display: block;
	font-family: var( --bn-text );
	font-size: 13px;
	color: var( --bn-noisette );
	margin-top: 2px;
}

/* FAQ ------------------------------------------------------------------------------------------------ */

.bn-faq {
	background: var( --bn-creme-2 );
}

.bn-faq__list {
	max-width: 760px;
	margin: 42px 0 0;
}

.bn-faq-item {
	border-top: 1px solid rgba( 61, 43, 31, 0.2 );
	padding: 18px 0;
}

.bn-faq-item:last-child {
	border-bottom: 1px solid rgba( 61, 43, 31, 0.2 );
}

.bn-faq-item__question {
	font-family: var( --bn-display );
	font-size: 18.5px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	margin: 0;
}

.bn-faq-item__question::-webkit-details-marker {
	display: none;
}

.bn-faq-item__question::after {
	content: '+';
	color: var( --bn-noisette );
	font-size: 24px;
	font-weight: 400;
	flex: 0 0 auto;
	transition: 0.2s;
}

.bn-faq-item[open] .bn-faq-item__question::after {
	transform: rotate( 45deg );
}

.bn-faq-item__answer {
	margin-top: 12px;
	font-size: 15.5px;
	color: rgba( 61, 43, 31, 0.75 );
	max-width: 64ch;
}

/* APPEL FINAL ------------------------------------------------------------------------------------------- */

.bn-cta {
	background: var( --bn-noisette );
	color: var( --bn-creme );
	text-align: center;
}

.bn-cta__title {
	margin-bottom: 16px;
}

.bn-cta__text {
	font-size: 17px;
	opacity: 0.85;
	max-width: 46ch;
	margin: 0 auto 30px;
}

.bn-cta .bn-button {
	background: var( --bn-creme );
	color: var( --bn-chocolat );
}

.bn-cta .bn-button:hover,
.bn-cta .bn-button:focus {
	background: var( --bn-chocolat );
	color: var( --bn-creme );
}

.bn-cta__phone {
	margin-top: 22px;
	font-size: 14px;
	opacity: 0.8;
}

.bn-cta__phone a {
	color: var( --bn-creme );
	font-weight: 600;
}

/* VALEUR DYNAMIQUE ---------------------------------------------------------------------------------------- */

.bn-dynamic {
	font-weight: inherit;
	color: inherit;
}

.bn-dynamic--editor {
	background: rgba( 166, 112, 62, 0.14 );
	border-radius: 3px;
	padding: 0.1em 0.4em;
}

/* PETITS ÉCRANS ---------------------------------------------------------------------------------------------- */

@media ( max-width: 860px ) {
	:root {
		--bn-section: 58px;
	}

	.bn-hero {
		grid-template-columns: 1fr;
		gap: 38px;
		padding: 42px 24px 54px;
	}

	/* La photo passe en tête sur mobile, comme dans la maquette. */
	.bn-hero__media {
		order: -1;
	}

	.bn-hero__media img {
		aspect-ratio: 4 / 3;
	}

	.bn-formule__grid,
	.bn-zone,
	.bn-cadeau,
	.bn-portrait {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.bn-formule__price-card {
		position: static;
	}
}

@media ( max-width: 760px ) {
	.bn-etapes__list {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bn-avis__list {
		grid-template-columns: 1fr;
	}

	.bn-galerie__grid {
		grid-template-columns: repeat( 2, 1fr );
	}

	.bn-galerie__grid > *:first-child {
		grid-column: span 2;
		grid-row: auto;
	}

	.bn-galerie__grid > *:first-child img {
		aspect-ratio: 4 / 3;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	* {
		transition: none !important;
	}
}

/* ALERTE D'OUVERTURE ----------------------------------------------------------- */

/*
 * Avant l'ouverture, la page reçoit des visiteurs qui ne peuvent rien
 * commander. Une adresse e-mail est alors la seule chose qu'on puisse leur
 * demander, et la plus précieuse : ce sont les premiers clients du 29 octobre.
 */

.bn-opening {
	background: var( --bn-creme-2 );
	padding: var( --bn-section ) 24px;
	text-align: center;
}

.bn-opening__title {
	font-family: var( --bn-display );
	font-weight: 600;
	font-size: clamp( 26px, 3.6vw, 36px );
	line-height: 1.15;
	margin: 0 0 12px;
}

.bn-opening__text {
	max-width: 46ch;
	margin: 0 auto 24px;
	color: rgba( 61, 43, 31, 0.78 );
	font-size: 17px;
}

.bn-opening__fields {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 30rem;
	margin: 0 auto;
}

.bn-opening__fields input {
	flex: 1 1 16rem;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid rgba( 61, 43, 31, 0.25 );
	background: #fff;
	font: inherit;
	font-size: 16px;
}

.bn-opening__feedback {
	margin: 14px 0 0;
	font-weight: 600;
}

.bn-opening__feedback.is-success {
	color: #2f6b3f;
}

.bn-opening__feedback.is-error {
	color: var( --bn-framboise );
}

.bn-opening__legal {
	margin-top: 16px;
	font-size: 13px;
	color: rgba( 61, 43, 31, 0.55 );
}

/* Bandeau d'ouverture ----------------------------------------------------- */

/*
 * Posé avant l'en-tête, sur toutes les pages, tant que la boutique n'a pas
 * livré. Le contraste est volontairement maximal : c'est la seule chose de la
 * page qui périme, et elle disparaîtra d'elle-même.
 */

.bn-annonce {
	background: var( --bn-chocolat );
	color: var( --bn-creme );
	font-family: var( --bn-text );
	font-size: 15px;
	line-height: 1.4;
}

.bn-annonce__inner {
	max-width: var( --bn-wrap );
	margin: 0 auto;
	padding: 11px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 18px;
	text-align: center;
}

.bn-annonce__text strong {
	color: var( --bn-caramel );
	font-weight: 700;
}

.bn-annonce__link {
	color: var( --bn-creme );
	text-decoration: none;
	border-bottom: 1px solid var( --bn-caramel );
	padding-bottom: 1px;
	font-weight: 600;
	white-space: nowrap;
}

.bn-annonce__link:hover,
.bn-annonce__link:focus {
	color: var( --bn-caramel );
}

@media ( max-width: 600px ) {
	.bn-annonce {
		font-size: 14px;
	}

	.bn-annonce__inner {
		padding: 10px 16px;
	}
}

/* Codes de carte cadeau ---------------------------------------------------- */

/*
 * Affichés sur la page de confirmation, dans « Ma commande » et dans l'e-mail.
 * Un code se recopie à la main ou se lit à voix haute : il lui faut de l'air,
 * une police à chasse fixe, et une taille qui ne se discute pas.
 */

.bn-gift-codes {
	background: var( --bn-creme-2 );
	padding: 24px;
	margin: 28px 0;
	font-family: var( --bn-text );
	color: var( --bn-chocolat );
}

.bn-gift-codes h2 {
	font-family: var( --bn-display );
	font-size: 22px;
	margin: 0 0 8px;
}

.bn-gift-codes__list {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}

.bn-gift-codes__list li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 14px;
	padding: 12px 0;
	border-top: 1px solid rgba( 61, 43, 31, 0.15 );
}

.bn-gift-codes__code {
	font-family: ui-monospace, 'SFMono-Regular', 'Menlo', 'Consolas', monospace;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0.08em;
	background: var( --bn-chocolat );
	color: var( --bn-creme );
	padding: 6px 12px;
}

.bn-gift-codes__value {
	font-weight: 700;
}

.bn-gift-codes__expiry {
	color: rgba( 61, 43, 31, 0.65 );
	font-size: 14px;
}
