/* ==========================================================================
   Napoleon Tunnel — CSS
   Palette  : gold #C9A84C · dark-green #1C3A2A · cream #F5EDD8 · mid-green #2A5240
   Typo     : Playfair Display (titres/prix) · Roboto (corps)
   ========================================================================== */

/* ── Reset contextuel ── */
.np-tunnel *,
.np-tunnel *::before,
.np-tunnel *::after { box-sizing: border-box; }

.np-tunnel-wrapper > .row-parent { 
  padding: 16px !important;
}

.np-tunnel {
	font-family: 'Playfair Display', sans-serif;
	color: #F5EDD8;
	width: 100%;
	padding: 0 0 80px;
}

.np-gold  { color: #C9A84C; }
.np-icon  { display: inline-block !important; vertical-align: middle; flex-shrink: 0; }

.np-tunnel__header {
	  position: relative;
		margin: 20px 0 50px;
    display: flex;
    align-items: center;
}
.np-tunnel__header-logo {
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
}
.np-tunnel__header-back {
	display: flex;
  align-items: center;
}
.np-tunnel__header-back-label {
	font-size: 14px;
}

/* ==========================================================================
   NAVIGATION DES ÉTAPES
   ========================================================================== */

.np-tunnel__nav {
	display: flex !important;
	border-bottom: none;
	margin-bottom: 0;
}

.np-tunnel__nav-item {
	flex: 1;
	padding: 14px 0 0;
	cursor: default;
	text-align: center;
}
.np-tunnel__nav-item.is-done   { cursor: pointer; }

.np-tunnel__nav-label {
	display: block !important;
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
	text-transform: uppercase;
	color: #F5EDD8;
	margin-bottom: 30px;
}

.np-tunnel__nav-line {
	display: block !important;
	height: 2px;
	background: rgba(201, 168, 76, .5);
	transition: background .2s;
}
.np-tunnel__nav-item.is-active .np-tunnel__nav-line { background: #C9A84C !important; }
.np-tunnel__nav-item.is-done   .np-tunnel__nav-line { background: rgba(201, 168, 76, .5) !important; }

/* ==========================================================================
   ÉTAPE 1 — LAYOUT 2 COLONNES
   ========================================================================== */

.np-step1 {
	display: grid !important;
	grid-template-columns: 1fr 400px !important;
	gap: 48px;
	align-items: start;
}

@media (max-width: 820px) {
	.np-step1 {
		grid-template-columns: minmax(0, 1fr) !important; /* minmax(0,…) évite le "blowout" : la colonne ne peut plus dépasser l'écran */
	}
	.np-step1__main { min-width: 0; } /* autorise la colonne à rétrécir sous la largeur de son contenu */
	.np-sidebar {
		order: 0;                      /* sidebar SOUS le panier (ordre naturel du DOM) */
		position: static !important;   /* plus de sticky : elle défile avec la page, dans le flux */
		top: auto !important;          /* neutralise le top:24px du sticky */
		min-width: 0;                  /* le récap ne gonfle plus (valeurs alignées à droite restent dans le cadre) */
	}

	/* Garde-fou : aucun débordement horizontal du tunnel sur mobile,
	   même si le thème (Uncode/WPBakery) place le shortcode dans une
	   rangée/colonne plus large que l'écran (marges négatives, etc.).
	   On "clampe" le wrapper à la largeur exacte du viewport. */
	.np-tunnel-wrapper {
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		overflow-x: hidden;
	}
	.np-tunnel-wrapper > .row-parent,
	#np-tunnel.np-tunnel {
		max-width: 100%;
		overflow-x: hidden;
	}
	#np-tunnel.np-tunnel { overflow-wrap: break-word; } /* les longs mots s'enroulent au lieu d'élargir */

	/* Nav des étapes : carrousel horizontal. L'étape courante est mise en avant
	   et on laisse apparaître un aperçu des étapes voisines (démarcation claire
	   qu'il y a d'autres étapes), avec snap au centre. */
	.np-tunnel__nav {
		overflow-x: auto;
		gap: 16px;                             /* séparation visible entre étapes */
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;                 /* Firefox : masque la barre de scroll */
	}
	.np-tunnel__nav::-webkit-scrollbar { display: none; } /* Chrome / Safari */
	.np-tunnel__nav-item {
		flex: 0 0 80% !important;              /* < 100% : les étapes voisines dépassent sur les côtés */
		min-width: 0;
		scroll-snap-align: center;
	}
	/* L'étape en cours ressort ; les voisines sont estompées */
	.np-tunnel__nav-item:not(.is-active) .np-tunnel__nav-label { opacity: .45; }

	/* Cross-sell : colonne centrale rétrécissable, nom qui s'enroule */
	.np-crosssell__product { grid-template-columns: 56px minmax(0, 1fr) auto !important; }
	.np-crosssell__name    { overflow-wrap: anywhere; }

	/* Étapes 2 & 3 : même protection anti-blowout que l'étape 1
	   (sinon un enfant large fait dépasser la colonne, puis overflow:hidden le rogne
	   → sous-titre / prix / "Offerte" coupés à droite). */
	.np-step2, .np-step3 { grid-template-columns: minmax(0, 1fr) !important; }
	.np-step2__main, .np-step3__main { min-width: 0; }

	/* Rangées de formulaire & champs : colonnes rétrécissables */
	.np-form-row--2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
	.np-form-group  { min-width: 0; }
	.np-form-input,
	.np-form-select { min-width: 0; }

	/* Options de livraison : la colonne infos peut rétrécir, le prix reste visible */
	.np-shipping-method       { grid-template-columns: 20px minmax(0, 1fr) auto !important; }
	.np-shipping-method__info { min-width: 0; }
}

/* ── Titres ── */
.np-step1__title {
	font-family: 'Playfair Display', serif !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	line-height: 120% !important;
	color: #F5EDD8 !important;
	margin: 40px 0 8px !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.np-step1__title .np-gold { color: #C9A84C !important; }

.np-step1__subtitle {
	font-family: 'Playfair Display', serif !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	line-height: 120% !important;
	color: #F5EDD8 !important;
	margin: 0 0 24px !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.np-step1__empty {
	color: rgba(245, 237, 216, .45);
	font-size: 14px;
	padding: 24px 0;
}

/* ==========================================================================
   ARTICLES DU PANIER
   ========================================================================== */

.np-cart-items {
	display: flex !important;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 28px;
}

.np-cart-item {
	display: grid !important;
	grid-template-columns: auto 1fr auto !important;
	gap: 0;
	align-items: stretch !important;
	background: rgba(28, 58, 42, 0.75) !important;
	border: 1px solid #D4B896 !important;
	border-radius: 0;
	transition: opacity .25s, transform .25s;
}
.np-cart-item.np-removing {
	opacity: 0;
	transform: translateX(-8px);
}

/* Colonnes */
.np-cart-item__col {
	display: flex !important;
	flex-direction: column;
	justify-content: center;
}

/* Col 1 — Image */
.np-cart-item__col--img {
	align-items: center;
	padding: 16px 24px 16px 16px;
	border-right: 1px solid #D4B896 !important;
}

/* Col 2 — Infos */
.np-cart-item__col--info {
	padding: 16px 24px;
	border-right: 1px solid #D4B896 !important;
	justify-content: center;
	gap: 6px;
	min-width: 0;
}



.np-cart-item__img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 0;
	display: block !important;
	flex-shrink: 0;
}

.np-cart-item__name {
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
	color: #FFF;
	margin: 0;
}

.np-cart-item__img-link {
	display: block;
	line-height: 0;
}

.np-cart-item__name-link {
	color: inherit;
	text-decoration: none;
	transition: color .15s ease;
}

.np-cart-item__name-link:hover,
.np-cart-item__name-link:focus {
	color: #C9A84C;
	text-decoration: underline;
}

.np-cart-item__variant {
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
	color: #E8C97A;
	margin: 0;
}

.np-cart-item__badge {
	font-size: 11px;
	color: #C9A84C;
	display: flex !important;
	align-items: center;
	gap: 5px;
	margin: 0;
}

.np-cart-item__price {
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
	color: #FFF;
	white-space: nowrap;
	text-align: center;
}

/* Col 3 — Prix / Qty / Supprimer */
.np-cart-item__col--actions {
	padding: 16px 16px 16px 24px;
	align-items: center;
	justify-content: space-between;
	min-width: 120px;
}

/* Quantité */
.np-cart-qty {
	display: flex;
	align-items: stretch;
	border: 1px solid #D4B896;
}
.np-cart-qty__input {
	width: 40px !important;
	padding: 6px 4px !important;
	text-align: center;
	background: transparent !important;
	border: none !important;
	border-left: 1px solid #D4B896 !important;
	border-right: 1px solid #D4B896 !important;
	color: #F5EDD8 !important;
	border-radius: 0;
	font-size: 14px;
	font-family: 'Playfair Display', sans-serif;
	-moz-appearance: textfield;
	margin: 0 !important;
}
.np-cart-qty__input::-webkit-inner-spin-button,
.np-cart-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; }
.np-cart-qty__input:focus { outline: none; }
.np-cart-qty__btn {
	width: 28px;
	background: transparent !important;
	border: none !important;
	color: #F5EDD8 !important;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	padding: 0 !important;
	margin: 0 !important;
	transition: background .2s, opacity .2s;
}
.np-cart-qty__btn:hover { background: rgba(201, 168, 76, .15) !important; }
.np-cart-qty:focus-within { border-color: #C9A84C; }

/* Bouton supprimer */
.np-cart-item__remove {
	background: none !important;
	border: none !important;
	color: #FFF !important;
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
	cursor: pointer;
	padding: 0 !important;
	transition: opacity .2s;
	text-decoration: none;
}
.np-cart-item__remove:hover { opacity: .7; }

/* ── Mobile : article panier en 1 seule colonne (au lieu de 3) ── */
@media (max-width: 600px) {
	.np-cart-item {
		grid-template-columns: 1fr !important;
	}
	/* Les séparateurs verticaux deviennent horizontaux entre les blocs empilés */
	.np-cart-item__col--img,
	.np-cart-item__col--info {
		border-right: none !important;
		border-bottom: 1px solid #D4B896 !important;
	}
	/* Actions à plat : prix / quantité / supprimer sur une ligne */
	.np-cart-item__col--actions {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px 16px;
		min-width: 0;
	}
}

.np-gift-wrap { margin-bottom: 28px; }

.np-gift-label {
	display: flex !important;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	cursor: pointer;
	user-select: none;
}

.np-gift-label input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: #C9A84C;
	cursor: pointer;
	flex-shrink: 0;
}

.np-gift-area { margin-top: 12px; }

.np-gift-area__hint {
	font-size: 12px;
	color: rgba(245, 237, 216, .45);
	font-style: italic;
	margin: 0 0 8px;
}

.np-gift-area textarea {
	width: 100%;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(201, 168, 76, .3);
	color: #F5EDD8;
	padding: 12px;
	border-radius: 3px;
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	resize: vertical;
	min-height: 80px;
}
.np-gift-area textarea:focus { outline: none; border-color: #C9A84C; }
.np-gift-area textarea::placeholder { color: rgba(245, 237, 216, .3); }

/* ==========================================================================
   BOUTON CTA
   ========================================================================== */

.np-btn-cta {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 24px;
	background: #C9A84C;
	color: #1A1A1A !important;
	border: none;
	cursor: pointer;
	font-family: 'Roboto', sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 150% !important;
	text-transform: uppercase !important;
	letter-spacing: normal !important;
	border-radius: 0;
	transition: background .2s, transform .1s;
}
.np-btn-cta:hover  { background: #d4b55a; }
.np-btn-cta:active { transform: scale(.99); }
.np-btn-cta.is-disabled,
.np-btn-cta:disabled { opacity: .45; cursor: not-allowed; }

/* Animation shake validation */
@keyframes np-shake {
	0%, 100% { transform: translateX(0); }
	20%       { transform: translateX(-6px); }
	40%       { transform: translateX(6px); }
	60%       { transform: translateX(-4px); }
	80%       { transform: translateX(4px); }
}
.np-shake { animation: np-shake .35s ease; }

.np-step1__trust {
	text-align: center;
	font-family: 'Playfair Display', sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 120%;
	color: #F5EDD8;
	margin: 10px 0 44px;
}

/* ==========================================================================
   CROSS-SELLS
   ========================================================================== */

.np-crosssells { margin-top: 8px; }

.np-crosssells__divider {
	display: flex !important;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.np-crosssells__divider::before,
.np-crosssells__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(201, 168, 76, .2);
}
.np-crosssells__divider span {
	font-family: "Playfair Display";
	color: #E8C97A;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	white-space: nowrap;
}

.np-crosssell {
	margin-bottom: 24px;
}
.np-crosssell__product {
	display: grid !important;
	grid-template-columns: 80px 1fr auto !important;
	gap: 16px;
	align-items: center;
	border: 1px solid #D4B896;
	border-radius: 3px;
	padding: 14px;
	transition: border-color .2s;
	background: rgba(28, 58, 42, 0.75);
}
.np-crosssell__product:hover { border-color: rgba(201, 168, 76, .35); }

.np-crosssell img,
.np-crosssell__placeholder {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 2px;
	background: rgba(255, 255, 255, .05);
	display: block !important;
}

.np-crosssell__name {
	color: #FFF;
	font-family: "Playfair Display";
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.np-crosssell__subtitle {
	font-size: 12px;
	color: rgba(245, 237, 216, .5);
	margin: 0 0 5px;
}

.np-crosssell__price {
	margin: 0 0 4px;
	font-size: 14px;
}
.np-crosssell__price del {
	color: rgba(245, 237, 216, .35);
	font-size: 13px;
	margin-right: 4px;
}
.np-crosssell__price strong { 
		font-family: 'Playfair Display', serif;
		color: #E8C97A;
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
}

.np-crosssell__saving {
	font-size: 18px;
	font-family: 'Playfair Display', serif;
	color: #39D38E;
	display: flex !important;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 5px;
	border: 1px solid var(--color-primary-mid, #2A5240);
	background: rgba(28, 58, 42, 0.75);
}
.np-crosssell__saving img {
	width: 32px;
	height: 32px;
	margin: 0 20px 0 10px;
}

.np-crosssell__add {
	background: none;
	border: 1px solid rgba(201, 168, 76, .45);
	color: #C9A84C;
	padding: 9px 14px;
	cursor: pointer;
	font-family: 'Playfair Display', sans-serif;
	font-size: 12px;
	border-radius: 2px;
	white-space: nowrap;
	transition: background .2s, color .2s, border-color .2s;
}
.np-crosssell__add:hover { background: #C9A84C; color: #1C3A2A; border-color: #C9A84C; }
.np-crosssell__add.is-added { background: #2A5240; border-color: #2A5240; color: #F5EDD8; cursor: default; }

/* ==========================================================================
   SIDEBAR RÉCAPITULATIF
   ========================================================================== */

.np-sidebar {
	background: rgba(42, 82, 64, 0.95) !important;
	border: none;
	border-radius: 0;
	padding: 40px 24px;
	position: sticky;
	top: 24px;
}

/* Reset tout border issu du thème sur les enfants sidebar */
.np-sidebar *,
.np-sidebar *::before,
.np-sidebar *::after { border: none !important; outline: none !important; }

/* Rétablir les borders fonctionnels des champs */
.np-sidebar__coupon input  { border: 1px solid #D4B896 !important; border-right: none !important; }
.np-sidebar__coupon input:focus { border-color: #C9A84C !important; }
.np-sidebar__coupon button { border: 1px solid #D4B896 !important; }

/* 3 lignes séparatrices */
.np-sidebar__items,
.np-sidebar__coupon,
.np-sidebar__totals,
.np-sidebar__included { 
	border-bottom: 1px solid #D4B896 !important; 
}

.np-sidebar__title {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 120%;
	color: #F5EDD8;
	margin: 0 0 24px;
}

.np-sidebar__title .np-gold { color: #E8C97A; }

/* Articles sidebar */
.np-sidebar__items {
	display: flex !important;
	flex-direction: column;
	gap: 24px;
	padding-bottom: 24px;
	margin-bottom: 24px;
}

.np-sidebar__item {
	display: grid !important;
	grid-template-columns: 48px 1fr;
	gap: 12px;
	align-items: start;
}

.np-sidebar__item img {
	border-radius: 2px;
	object-fit: cover;
	display: block !important;
}

.np-sidebar__item-info {
	display: flex !important;
	flex-direction: column;
	gap: 4px;
}

.np-sidebar__item-name {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
	color: #F5EDD8;
	margin: 0;
}

.np-sidebar__item-variant {
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 120%;
	color: rgba(245, 237, 216, 0.60);
	margin: 0;
}

.np-sidebar__item-bottom {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	margin-top: 4px;
}

.np-sidebar__item-qty {
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 120%;
	color: #C9A84C;
	margin: 0;
}

.np-sidebar__item-price {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 120%;
	color: #FFF;
	margin: 0;
	white-space: nowrap;
}

/* Code promo */
.np-sidebar__coupon {
	padding-bottom: 24px;
	display: flex !important;
	gap: 0;
	margin-bottom: 24px;
}

.np-sidebar__coupon input {
	flex: 1;
	min-width: 0;
	padding: 12px !important;
	margin-top: 0 !important;
	background: rgba(255, 255, 255, 0.20);
	color: rgba(0, 0, 0, 0.60);
	border-radius: 0;
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 150%;
}
.np-sidebar__coupon input::placeholder {
	color: rgba(0, 0, 0, 0.60);
	font-family: 'Playfair Display', serif;
	font-size: 13px;
	font-weight: 400;
}
.np-sidebar__coupon input:focus { outline: none; }

.np-sidebar__coupon button {
	padding: 12px 24px !important;
	background: #2A5240;
	color: #FFF;
	cursor: pointer;
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	text-transform: uppercase;
	border-radius: 0;
	transition: background .2s;
	white-space: nowrap;
	letter-spacing: normal;
}
.np-sidebar__coupon button:hover { background: #1C3A2A; }
.np-sidebar__coupon button:disabled { opacity: .5; cursor: not-allowed; }

.np-sidebar__coupon-msg {
	font-size: 11px;
	margin-bottom: 12px;
}
.np-sidebar__coupon-msg.is-success { color: #89d09b; }
.np-sidebar__coupon-msg.is-error   { color: #e08080; }

/* Totaux */
.np-sidebar__totals {
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	padding: 0 0 24px;
}

.np-sidebar__line {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Sous-total et livraison — labels et valeurs */
.np-sidebar__line span {
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	color: rgba(245, 237, 216, 0.60);
}

/* "Offerte" */
#np-shipping {
	color: #E8C97A !important;
	text-align: right;
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.np-sidebar__line--discount { color: #89d09b; }
#np-discount-line[hidden] { display: none; }

/* Ligne Total TTC — 24px au dessus */
.np-sidebar__line--total {
	margin-top: 14px; /* 10px gap + 14px = 24px total depuis livraison */
}

/* "Total TTC" label */
.np-sidebar__line--total span:first-child {
	color: #FFF;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
}

/* Prix total */
#np-total,
#np-total * {
	color: #C9A84C !important;
	text-align: right;
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 150%;
}

/* Idem pour sous-total et shipping — cibler aussi les spans WC imbriqués */
#np-subtotal,
#np-subtotal * {
	color: rgba(245, 237, 216, 0.60) !important;
}

#np-shipping,
#np-shipping * {
	color: #E8C97A !important;
}

/* Paiement sécurisé */
.np-sidebar__secure {
	display: flex !important;
	align-items: flex-start;
	gap: 12px;
	padding-top: 24px;
	margin-top: 0;
}

.np-sidebar__secure strong {
	display: block !important;
	color: #FFF;
	font-size: 16px;
	font-weight: 600;
	line-height: 120%;
	margin-bottom: 4px;
}

.np-sidebar__secure span {
	display: block !important;
	color: #F5EDD8;
	font-size: 13px;
	font-weight: 500;
	line-height: 120%;
}

/* ==========================================================================
   PLACEHOLDER STEPS 2-3-4 (temporaire)
   ========================================================================== */

.np-step-placeholder {
	min-height: 200px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(201, 168, 76, .3);
	border-radius: 4px;
	color: rgba(245, 237, 216, .4);
	font-size: 14px;
}

/* ==========================================================================
   ÉTAPE 2 — LIVRAISON
   ========================================================================== */

.np-step2 {
	display: grid !important;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}

@media (max-width: 820px) {
	.np-step2 { grid-template-columns: 1fr !important; }
}

.np-step2__main { display: flex !important; flex-direction: column; gap: 0; }

.np-step2__title {
	font-family: 'Playfair Display', serif !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	line-height: 120% !important;
	color: #F5EDD8 !important;
	margin: 40px 0 8px !important;
	text-transform: none !important;
}

.np-step2__title--shipping { margin-top: 40px !important; }

.np-step2__subtitle {
	font-family: 'Playfair Display', serif !important;
	font-size: 18px !important;
	font-weight: 500 !important;
	line-height: 120% !important;
	color: #F5EDD8 !important;
	margin: 0 0 24px !important;
}

/* ── Formulaire ── */

.np-address-form { display: flex !important; flex-direction: column; gap: 16px; margin-bottom: 0; }

.np-form-row {
	display: grid !important;
	gap: 16px;
}
.np-form-row--2 { grid-template-columns: 1fr 1fr !important; }

.np-form-group { display: flex !important; flex-direction: column; gap: 6px; }
.np-form-group[hidden] { display: none !important; }

.np-form-label {
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgba(245, 237, 216, .70);
	margin: 0;
}

.np-form-hint {
	font-family: 'Playfair Display', sans-serif;
	font-size: 11px;
	font-weight: 400;
	color: rgba(245, 237, 216, .50);
	margin: 0;
}

.np-form-input {
	background: #3F3D3D !important;
	border: 1px solid rgba(212, 184, 150, .4) !important;
	color: #F5EDD8 !important;
	padding: 12px 14px !important;
	font-family: 'Roboto', sans-serif !important;
	font-size: 14px !important;
	border-radius: 0 !important;
	width: 100% !important;
	box-sizing: border-box !important;
	outline: none !important;
	margin: 0 !important;
	transition: border-color .2s;
}
.np-form-input::placeholder { color: rgba(245, 237, 216, .30) !important; }
.np-form-input:focus { border-color: #C9A84C !important; }
.np-form-input.np-input-error { border-color: #e07676 !important; }

.np-form-select { cursor: pointer; }
.np-form-select option { background: #3F3D3D; color: #F5EDD8; }

/* ── Méthodes de livraison ── */

.np-shipping-methods {
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.np-shipping-method {
	display: grid !important;
	grid-template-columns: 20px 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 16px;
	border: 1px solid rgba(212, 184, 150, .3) !important;
	cursor: pointer;
	transition: border-color .2s, background .2s;
	background: rgba(255,255,255,.03) !important;
}
.np-shipping-method:hover  { border-color: rgba(201, 168, 76, .5) !important; }
.np-shipping-method.is-selected {
	border-color: #C9A84C !important;
	background: rgba(201, 168, 76, .08) !important;
}

.np-shipping-method input[type="radio"] { display: none !important; }

.np-shipping-method__radio {
	display: block !important;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid rgba(212, 184, 150, .5) !important;
	flex-shrink: 0;
	position: relative;
	transition: border-color .2s;
}
.np-shipping-method.is-selected .np-shipping-method__radio {
	border-color: #C9A84C !important;
}
.np-shipping-method.is-selected .np-shipping-method__radio::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #C9A84C;
}

.np-shipping-method__info { display: flex !important; flex-direction: column; gap: 3px; }

.np-shipping-method__name {
	font-family: 'Playfair Display', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #F5EDD8;
}

.np-shipping-method__desc {
	font-family: 'Playfair Display', sans-serif;
	font-size: 12px;
	color: rgba(245, 237, 216, .5);
}

.np-shipping-method__price {
	font-family: 'Playfair Display', serif;
	font-size: 14px;
	color: #C9A84C;
	white-space: nowrap;
}

.np-shipping-methods__empty {
	font-size: 13px;
	color: rgba(245, 237, 216, .5);
	font-style: italic;
	padding: 16px 0;
	margin: 0;
}

/* ── Facturation identique ── */

.np-billing-same {
	display: flex !important;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #F5EDD8;
	cursor: pointer !important;
	margin-bottom: 32px;
	user-select: none;
	position: relative;
	z-index: 2;
	pointer-events: auto !important;
}
.np-billing-same input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
	accent-color: #C9A84C;
	flex-shrink: 0;
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative;
	z-index: 2;
	appearance: auto !important;
	-webkit-appearance: checkbox !important;
	background: transparent !important;
}
/* Forcer le checkmark visible sur fond sombre */
.np-billing-same input[type="checkbox"]::before,
.np-billing-same input[type="checkbox"]::after {
	color: #1C3A2A !important;
	background-color: #C9A84C !important;
	border-color: #C9A84C !important;
	fill: #1C3A2A !important;
}

.np-btn-calc-shipping {
	background: none;
	border: 1px solid rgba(201, 168, 76, .5) !important;
	color: #C9A84C;
	padding: 10px 20px;
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	cursor: pointer;
	border-radius: 0;
	transition: background .2s;
	margin-top: 8px;
}
.np-btn-calc-shipping:hover { background: rgba(201, 168, 76, .1); }

/* ── Adresse de facturation (si différente) ── */
.np-billing-fields {
	margin: -16px 0 32px;
	padding: 22px 0 4px;
	border-top: 1px solid rgba(212, 184, 150, .18);
	animation: np-billing-in .25s ease;
}
.np-billing-fields[hidden] { display: none !important; }
.np-billing-fields__title {
	font-family: 'Playfair Display', serif !important;
	font-size: 20px !important;
	font-weight: 600 !important;
	color: #F5EDD8 !important;
	margin: 0 0 18px !important;
}
.np-billing-fields__title .np-gold { color: #C9A84C !important; }
@keyframes np-billing-in {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   ÉTAPE 3 — Paiement
   ════════════════════════════════════════════════════════════ */
.np-step3 {
	display: grid !important;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}
@media (max-width: 820px) { .np-step3 { grid-template-columns: 1fr !important; } }

.np-step3__main { display: flex !important; flex-direction: column; gap: 0; }

.np-step3__title {
	font-family: 'Playfair Display', serif !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	line-height: 120% !important;
	color: #F5EDD8 !important;
	margin: 40px 0 8px !important;
}
.np-step3__title .np-gold { color: #C9A84C !important; }
.np-step3__subtitle {
	font-family: 'Roboto', sans-serif !important;
	font-size: 14px !important;
	color: rgba(245, 237, 216, .6) !important;
	margin: 0 0 28px !important;
}

/* Onglets moyen de paiement */
.np-pay-methods {
	display: flex !important;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.np-pay-tab {
	flex: 1 1 0;
	min-width: 140px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 18px;
	background: rgba(255,255,255,.03) !important;
	border: 1px solid rgba(212, 184, 150, .3) !important;
	color: rgba(245, 237, 216, .75);
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color .2s, background .2s, color .2s;
}
.np-pay-tab svg { color: currentColor; }
.np-pay-tab:hover { border-color: rgba(201, 168, 76, .5) !important; }
.np-pay-tab.is-active {
	border-color: #C9A84C !important;
	background: rgba(201, 168, 76, .08) !important;
	color: #F5EDD8;
}
.np-pay-tab__paypal { font-size: 16px; color: #F5EDD8; }
.np-pay-tab__paypal span { color: #C9A84C; }

/* Panneaux */
.np-pay-panel { margin-bottom: 24px; }
.np-pay-panel[hidden] { display: none !important; }

.np-stripe-element { min-height: 56px; }
.np-stripe-loading {
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	color: rgba(245, 237, 216, .5);
	padding: 18px 0;
}
.np-pay-error {
	color: #f0a3a3;
	background: rgba(224, 118, 118, .1);
	border: 1px solid rgba(224, 118, 118, .35);
	padding: 12px 14px;
	font-size: 13px;
	margin-top: 12px;
}
.np-pay-paypal-note {
	font-family: 'Playfair Display', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(245, 237, 216, .7);
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(212, 184, 150, .2);
	padding: 18px;
	margin: 0;
}

/* Consentements */
.np-pay-check {
	display: flex !important;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #F5EDD8;
	cursor: pointer !important;
	margin-bottom: 14px;
	user-select: none;
	position: relative;
	z-index: 2;
	pointer-events: auto !important;
}
.np-pay-check strong { color: #F5EDD8; font-weight: 600; }
.np-pay-check input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
	accent-color: #C9A84C;
	flex-shrink: 0;
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative;
	z-index: 2;
	appearance: auto !important;
	-webkit-appearance: checkbox !important;
	background: transparent !important;
}
.np-pay-check input[type="checkbox"]::before,
.np-pay-check input[type="checkbox"]::after {
	color: #1C3A2A !important;
	background-color: #C9A84C !important;
	border-color: #C9A84C !important;
	fill: #1C3A2A !important;
}

/* Récap livraison */
.np-pay-recap {
	border: 1px solid rgba(212, 184, 150, .25);
	padding: 16px 18px;
	margin: 20px 0 24px;
}
.np-pay-recap__label {
	font-family: 'Playfair Display', sans-serif;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(245, 237, 216, .5);
	margin: 0 0 4px;
}
.np-pay-recap__value {
	font-family: 'Playfair Display', sans-serif;
	font-size: 14px;
	color: #F5EDD8;
	margin: 0;
}

/* Boutons d'action — état « requête en cours ».
   Pas de spinner dans les boutons : le bouton est désactivé et atténué le temps
   de la requête, ce qui suffit comme retour visuel. Les spinners précédents
   déclaraient « display: inline-block », qui écrase l'attribut hidden posé par
   le JS (la règle [hidden] du navigateur est moins spécifique qu'une classe) :
   ils tournaient donc en permanence. */
#np-pay-now.is-loading,
.np-btn-cta.is-loading { opacity: .75; cursor: progress; }
@keyframes np-spin { to { transform: rotate(360deg); } }

/* Recalcul en cours (changement de pays, pro/TVA, quantité, coupon...) */
.np-sidebar__totals { position: relative; }
.np-sidebar__totals.np-is-recalculating .np-sidebar__line { opacity: .35; transition: opacity .15s ease; }
.np-totals__spinner {
	position: absolute;
	top: 50%; right: 0;
	width: 16px; height: 16px;
	margin-top: -8px;
	border: 2px solid rgba(245, 237, 216, .25);
	border-top-color: #C9A84C;
	border-radius: 50%;
	animation: np-spin .7s linear infinite;
}

#np-pay-amount.np-is-recalculating { opacity: .45; transition: opacity .15s ease; }

/* ════════════════════════════════════════════════════════════
   ÉTAPE 4 — Confirmation
   ════════════════════════════════════════════════════════════ */
.np-step4 {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	padding: 8px 0 40px;
}
.np-step4__head { margin-bottom: 36px; }
.np-step4__icon { display: inline-block; margin-bottom: 18px; }
.np-step4__title {
	font-family: 'Playfair Display', serif !important;
	font-size: 34px !important;
	font-weight: 700 !important;
	color: #F5EDD8 !important;
	margin: 0 0 12px !important;
}
.np-step4__title .np-gold { color: #C9A84C !important; }
.np-step4__subtitle {
	font-family: 'Playfair Display', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(245, 237, 216, .65);
	margin: 0;
}
.np-step4__details {
	border: 1px solid rgba(212, 184, 150, .25);
	padding: 26px 28px;
	margin-bottom: 28px;
	text-align: left;
}
.np-step4__details-title {
	font-family: 'Playfair Display', sans-serif;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(245, 237, 216, .5);
	margin: 0 0 18px;
}
.np-step4__grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 18px 28px;
}
@media (max-width: 560px) { .np-step4__grid { grid-template-columns: 1fr; } }
.np-step4__grid > div { display: flex; flex-direction: column; gap: 4px; }
.np-step4__grid span {
	font-family: 'Playfair Display', sans-serif;
	font-size: 12px;
	color: rgba(245, 237, 216, .5);
}
.np-step4__grid strong {
	font-family: 'Playfair Display', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #F5EDD8;
}
.np-step4__ctas {
	display: flex !important;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}
.np-btn-cta--inline { width: auto !important; display: inline-flex !important; }
.np-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	color: #F5EDD8;
	border: 1px solid rgba(245, 237, 216, .3);
	padding: 14px 28px;
	font-family: 'Playfair Display', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: border-color .2s, color .2s;
}
.np-btn-outline:hover { border-color: #C9A84C; color: #C9A84C; }

/* ============================================================
 * Point relais Colissimo (étape 2)
 * ============================================================ */
.np-relay-block {
	margin: 18px 0 4px;
	padding: 20px 22px;
	border: 1px solid rgba( 201, 168, 76, .28 );
	border-radius: 8px;
	background: rgba( 42, 82, 64, .22 );
	animation: np-billing-in .35s ease;
}
#np-relay-block[hidden] { display: none !important; }

.np-relay-block.np-input-error {
	border-color: #e07676;
	box-shadow: 0 0 0 1px rgba( 224, 118, 118, .35 );
}

.np-relay-block__title {
	font-size: 18px;
	font-weight: 600;
	color: #F5EDD8;
	margin: 0 0 4px;
}
.np-relay-block__title .np-gold { color: #C9A84C; }
.np-relay-block__subtitle {
	font-size: 13px;
	color: rgba( 245, 237, 216, .6 );
	margin: 0 0 16px;
}

/* Bouton « Choisir / Changer le point relais » (fourni par le plugin) */
.np-relay-block .lpc_pick_up_widget_show_map {
	display: inline-block;
	background: #C9A84C;
	color: #1C3A2A !important;
	border: 1px solid #C9A84C;
	border-radius: 4px;
	padding: 11px 22px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s, color .2s;
}
.np-relay-block .lpc_pick_up_widget_show_map:hover {
	background: transparent;
	color: #C9A84C !important;
}

/* Logo Colissimo dans l'en-tête de la modale — laisser tel quel */
.np-relay-block #lpc_layer_error_message {
	color: #e07676;
	font-size: 13px;
	margin: 8px 0;
}

/* Récapitulatif du point relais sélectionné */
.np-relay-block #lpc_pick_up_info {
	margin: 0 0 16px;
	color: #F5EDD8;
}
.np-relay-block #lpc_pick_up_info:empty { display: none; }
.np-relay-block #lpc_pick_up_info[data-pickup-id] {
	padding: 14px 16px;
	border: 1px solid rgba( 201, 168, 76, .35 );
	border-radius: 6px;
	background: rgba( 28, 58, 42, .55 );
}
.np-relay-block .lpc_pickup_info_title {
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #C9A84C;
	margin-bottom: 6px;
}
.np-relay-block .lpc_pickup_info_address_name { font-weight: 700; color: #F5EDD8; }
.np-relay-block .lpc_pickup_info_address_line,
.np-relay-block .lpc_pickup_info_distance_txt { color: rgba( 245, 237, 216, .8 ); font-size: 13px; }

/* Verrouille le scroll de la page tant que la modale Colissimo (point relais)
 * est ouverte : LpcModal() (plugin Colissimo) ne le fait pas lui-même. Le vrai
 * élément qui défile est <html> (Uncode force `html { overflow-y: scroll;
 * height: 100% }` dans style-core.css) — verrouiller seulement <body> est sans
 * effet, c'est ce qui faisait déjà défiler le body au lieu de la modale. */
html.np-lpc-modal-open,
body.np-lpc-modal-open {
	overflow: hidden !important;
}

/* ============================================================
 * Codes promo appliqués (puces) — sidebar
 * ============================================================ */
.np-applied-coupons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0;
}
.np-applied-coupons:empty { margin-top: 0; }

.np-coupon-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px 6px 12px;
	border: 1px solid rgba( 201, 168, 76, .4 );
	border-radius: 999px;
	background: rgba( 201, 168, 76, .1 );
	font-size: 12px;
	line-height: 1;
	animation: np-billing-in .25s ease;
}
.np-coupon-chip__code {
	font-weight: 700;
	letter-spacing: .04em;
	color: #C9A84C;
	text-transform: uppercase;
}
.np-coupon-chip__amount { color: #89d09b; font-weight: 600; }
.np-coupon-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba( 224, 128, 128, .18 );
	color: #e08080;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	transition: background .15s, color .15s;
}
.np-coupon-remove:hover { background: #e08080; color: #1C3A2A; }

/* ============================================================
 * « Inclus dans la commande » — récap panier
 * ============================================================ */
.np-sidebar__included {
	list-style: none;
	padding: 0 0 24px 0;
	margin-bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.np-sidebar__included-title {
	font-family: 'Playfair Display', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: rgba(245, 237, 216, 0.60);
	margin: 0 0 6px;
}
.np-sidebar__included ul { padding: 0; margin: 0; }
.np-sidebar__included li {
	display: inline-flex;
	align-items: baseline;
	font-size: 16px;
	line-height: 1.4;
	color: rgba( 245, 237, 216, .75 );
}
.np-sidebar__included span.checkbox {
	display: inline-flex;
	width: 16px;
	height: 16px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	margin-right: 8px;
	padding: 2px;
	vertical-align: middle;
	justify-content: center;
	align-items: center;
}

/* Quantité verrouillée (réservation Amelia — non modifiable, cf. class-np-tunnel.php) */
.np-cart-qty--locked {
	justify-content: center;
	padding: 6px 12px;
	color: #F5EDD8;
	font-size: 14px;
	font-family: 'Playfair Display', sans-serif;
}