/* Parcours URIKI — caisse native (panier + commande).
   Tout est scopé à `body.uriki-cart`, posé par le plugin uniquement quand un
   suivi URIKI est au panier : la caisse des autres produits IKI reste intacte. */

/* 1) HEADER — la vidéo-hero (654 px) de l'en-tête du thème (ancien format) écrase
   toutes les pages « natives » (panier, commande, contact, à propos, actualités,
   mentions…). On l'efface GLOBALEMENT — vidéo + texte hero « URIKI®… » — et on
   effondre la hauteur de la section, en gardant la barre de navigation Uriki.
   IDs du gabarit d'en-tête Elementor (identiques prod/staging). Sans effet sur les
   pages Uriki en gabarit canvas (elles n'ont pas cet en-tête). */
header.elementor-location-header .elementor-background-video-container,
header.elementor-location-header .elementor-element-46266c2 {
	display: none !important;
}
header.elementor-location-header .elementor-element-22021373 > .elementor-container {
	min-height: 0 !important;
}
header.elementor-location-header .elementor-element-b7e1b2d {
	min-height: 0 !important;
}

/* 2) TABLE PANIER — un display:grid parasite sur <table> (et block sur thead/tbody)
   casse le flux : le <tbody> déborde de la table et l'encart « Code promo » remonte
   sur la ligne produit suivante. On rétablit l'affichage tableau natif. */
body.uriki-cart .e-shop-table table.shop_table {
	display: table !important;
	width: 100% !important;
}
body.uriki-cart .e-shop-table table.shop_table thead {
	display: table-header-group !important;
}
body.uriki-cart .e-shop-table table.shop_table tbody {
	display: table-row-group !important;
}

/* 3) Encart caution injecté par uriki-cart.js (rappel du 175 € avant paiement). */
body.uriki-cart .uriki-caution-note {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin: 0 0 22px;
	padding: 14px 16px;
	border: 1px solid #e6dcc6;
	border-radius: 14px;
	background: #faf6ec;
	font-size: .9rem;
	line-height: 1.45;
	color: #5b5346;
}
body.uriki-cart .uriki-caution-note b {
	color: #7a1250;
}
body.uriki-cart .uriki-caution-note .uc-ico {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: rgba(122, 18, 80, .1);
	color: #7a1250;
}
body.uriki-cart .uriki-caution-note svg {
	width: 15px;
	height: 15px;
}
