/*
 * Parcours devis : formulaires, popup, liste, page produit.
 * Chargé uniquement sur le catalogue et les pages de devis.
 */

/* --------------------------------------------------------------
   Champs de formulaire
   -------------------------------------------------------------- */

.stp-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.stp-f2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1rem;
}

.stp-field {
	margin: 0 0 0.85rem;
}

.stp-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--stp-ink);
	margin-bottom: 0.3rem;
}

.stp-field label span {
	font-weight: 400;
	color: var(--stp-mute);
}

.stp-field input,
.stp-field textarea,
.stp-field select {
	width: 100%;
	padding: 0.68rem 0.8rem;
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-btn);
	font-size: 0.95rem;
	color: #2f2921;
	background: var(--stp-surface);
}

.stp-field input:focus,
.stp-field textarea:focus,
.stp-field select:focus {
	outline: none;
	border-color: var(--stp-gold);
	box-shadow: 0 0 0 3px rgba(224, 153, 0, 0.18);
}

.stp-field input[type="file"] {
	padding: 0.5rem;
	font-size: 0.85rem;
}

.stp-consent {
	display: flex;
	margin: 0.2rem 0 1.1rem;
	font-size: 0.85rem;
	color: var(--stp-ink2);
	line-height: 1.45;
}

.stp-consent input {
	margin: 0.28rem 0.5rem 0 0;
	flex: 0 0 auto;
}

.stp-form__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin: 0;
}

.stp-form__note {
	font-size: 0.85rem;
	color: var(--stp-mute);
}

.stp-linkbtn {
	background: none;
	border: 0;
	padding: 0;
	color: var(--stp-gold-dk);
	font-size: 0.88rem;
	text-decoration: underline;
	cursor: pointer;
}

.stp-linkbtn:hover {
	color: var(--stp-ink);
}

/* --------------------------------------------------------------
   Popup « Devis express »
   -------------------------------------------------------------- */

body.stp-modal-open {
	overflow: hidden;
}

.stp-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 1.2rem;
	overflow-y: auto;
}

.stp-modal[hidden] {
	display: none;
}

.stp-modal__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(23, 20, 15, 0.68);
	backdrop-filter: blur(2px);
}

.stp-modal__box {
	position: relative;
	background: var(--stp-surface);
	border-radius: var(--stp-r);
	max-width: 680px;
	width: 100%;
	margin: auto;
	padding: 1.8rem 1.8rem 1.5rem;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.stp-modal__x {
	position: absolute;
	top: 0.7rem;
	right: 0.9rem;
	background: none;
	border: 0;
	font-size: 1.9rem;
	line-height: 1;
	color: #9c8f77;
	cursor: pointer;
	padding: 0.2rem 0.4rem;
}

.stp-modal__x:hover {
	color: var(--stp-ink);
}

.stp-modal__box h2 {
	margin: 0 0 0.3rem;
	font-size: 1.45rem;
}

.stp-modal__lead {
	margin: 0 0 1.1rem;
	color: var(--stp-ink2);
	font-size: 0.95rem;
}

.stp-modal__product {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	background: var(--stp-warm);
	border: 1px solid var(--stp-line);
	border-left: 4px solid var(--stp-gold);
	border-radius: var(--stp-r-sm);
	padding: 0.8rem 1rem;
	margin-bottom: 1.1rem;
}

.stp-modal__pname {
	font-weight: 700;
	color: var(--stp-ink);
}

.stp-modal__psku,
.stp-modal__pvar {
	font-size: 0.84rem;
	color: #6b6255;
}

.stp-modal__alt {
	margin: 0.9rem 0 0;
	font-size: 0.85rem;
	color: var(--stp-mute);
}

/* --------------------------------------------------------------
   Page /demander-un-devis/
   -------------------------------------------------------------- */

.stp-devis > * + * {
	margin-top: 2.2rem;
}

/* Deux colonnes, comme la page panier du brief : la liste à gauche (~70 %),
   le récapitulatif collant à droite (~30 %). */
.stp-devis-grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 1.6rem 2rem;
	align-items: start;
}

.stp-devis-items {
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-sm);
	background: var(--stp-surface);
	overflow: hidden;
}

.stp-devis-row {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	align-items: center;
	gap: 0 1rem;
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--stp-line);
}

.stp-devis-row:last-child {
	border-bottom: 0;
}

.stp-devis-row__thumb {
	width: 64px;
	height: 64px;
	padding: 8px;
	border-radius: var(--stp-r-sm);
	background: var(--stp-warm);
	overflow: hidden;
	line-height: 0;
}

.stp-devis-row__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.stp-devis-row__thumb .stp-ph {
	height: 100%;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
	font-size: 0.44rem;
}

.stp-devis-row__thumb .stp-ph span {
	display: none;
}

.stp-devis-row__name {
	font-weight: 600;
	color: var(--stp-ink);
	text-decoration: none;
	line-height: 1.3;
}

.stp-devis-row__name:hover {
	color: var(--stp-gold-dk);
}

.stp-devis-row__meta {
	display: block;
	font-size: 0.78rem;
	color: var(--stp-mute);
}

.stp-devis-row__qty {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.4rem;
	font-size: 0.82rem;
	color: var(--stp-ink2);
}

.stp-devis-row__qty input {
	width: 5rem;
	padding: 0.35rem 0.5rem;
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-btn);
	background: var(--stp-surface);
}

.stp-devis-row__end {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	justify-self: end;
}

.stp-devis-row__price {
	font-weight: 700;
	color: var(--stp-gold-dk);
	white-space: nowrap;
}

.stp-devis-row__price span {
	display: block;
	font-size: 0.74rem;
	font-weight: 400;
	color: var(--stp-mute);
}

/* Retirer une ligne : pastille d'accent, croix en encre. */
.stp-devis-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--stp-gold);
	color: var(--stp-ink);
	font-size: 1.05rem;
	line-height: 1;
	cursor: pointer;
}

.stp-devis-remove:hover {
	background: #f5a800;
}

.stp-devis-list__actions {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin: 1rem 0 0;
}

/* Récapitulatif : total indicatif, envoi, téléphone. */
.stp-recap {
	position: sticky;
	top: 5.5rem;
	padding: 1.35rem 1.4rem;
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r);
	background: var(--stp-surface);
}

.stp-recap__label {
	margin: 0;
	font-size: 0.82rem;
	color: var(--stp-mute);
}

.stp-recap__total {
	margin: 0.1rem 0 0.15rem;
	font-family: var(--stp-font-head);
	font-size: clamp(1.5rem, 2.6vw, 1.9rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--stp-ink);
}

.stp-recap__note {
	margin: 0 0 1.1rem;
	font-size: 0.82rem;
	color: var(--stp-mute);
	line-height: 1.5;
}

.stp-recap__lines {
	list-style: none;
	margin: 0 0 1.1rem;
	padding: 0.9rem 0 0;
	border-top: 1px solid var(--stp-line);
	font-size: 0.86rem;
	color: var(--stp-ink2);
}

.stp-recap__lines li {
	display: flex;
	justify-content: space-between;
	gap: 0.8rem;
	margin-bottom: 0.35rem;
}

.stp-recap__tel {
	margin: 0.9rem 0 0;
	font-size: 0.85rem;
	color: var(--stp-mute);
	line-height: 1.5;
}

.stp-devis-empty {
	background: var(--stp-surface);
	border: 1px dashed var(--stp-line);
	border-radius: var(--stp-r);
	padding: 1.1rem 1.3rem;
	margin: 0;
}

.stp-devis-help {
	background: var(--stp-surface);
	border: 1px solid var(--stp-line);
	border-left: 4px solid var(--stp-gold);
	border-radius: 12px;
	padding: 1.2rem 1.35rem;
}

.stp-devis-help__t {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 0.6rem;
	font-weight: 700;
	color: var(--stp-ink);
}

.stp-devis-help__t .stp-ico {
	color: var(--stp-gold-dk);
}

/* Puces d'accent, comme les listes de caractéristiques du brief. */
.stp-devis-help ul {
	list-style: none;
	padding-left: 0;
}

.stp-devis-help li {
	position: relative;
	padding-left: 1rem;
}

.stp-devis-help li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--stp-gold);
}

.stp-devis-help ul {
	margin: 0 0 0.8rem;
	padding-left: 1.2rem;
	color: var(--stp-ink2);
}

.stp-devis-help li {
	margin-bottom: 0.35rem;
	line-height: 1.5;
}

.stp-devis-help li::marker {
	color: var(--stp-gold);
}

.stp-devis-help__n {
	margin: 0;
	font-size: 0.88rem;
	color: var(--stp-mute);
}

.stp-devis-after {
	padding-top: 1.6rem;
	border-top: 1px solid #ece3d3;
}

.stp-devis-after h2 {
	font-size: 1.35rem;
	margin: 0 0 0.7rem;
}

.stp-devis-after__tel {
	font-weight: 600;
}

/* --------------------------------------------------------------
   Catalogue
   -------------------------------------------------------------- */

.stp-shopbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin: 1.8rem 0 1.2rem;
	font-size: 0.9rem;
	color: var(--stp-ink2);
}

.stp-shopbar .woocommerce-result-count {
	margin: 0;
}

.stp-shopbar select {
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-pill);
	background: var(--stp-surface);
	font-size: 0.9rem;
}

/* Titre à gauche, outils (recherche, tri) à droite. */
.stp-shopbar__tools {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.stp-shopbar__tools .stp-search {
	flex: 1 1 15rem;
	max-width: 22rem;
	padding-left: 0.8rem;
}

.stp-products {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* --------------------------------------------------------------
   Fiche produit
   -------------------------------------------------------------- */

.stp-pdp .product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.4rem 3rem;
	align-items: start;
}

/* WooCommerce dimensionne encore la galerie et le résumé en flottants à 48 %,
   ce qui les réduirait à moitié de leur colonne. Et tout ce qui suit la fiche
   (même gamme, FAQ, onglets) doit occuper toute la largeur, pas devenir une
   troisième et une quatrième colonne. */
.stp-pdp .product > * {
	grid-column: 1 / -1;
	width: 100%;
	float: none;
	margin-inline: 0;
	clear: none;
}

.stp-pdp .product > .woocommerce-product-gallery {
	grid-column: 1 / 2;
	margin: 0;
}

.stp-pdp .product > .summary {
	grid-column: 2 / 3;
}

/* woocommerce-layout.css pose « width: 48 %; float » sur la galerie et le
   résumé avec une spécificité que nos classes ne peuvent pas atteindre :
   #stp-content (le <main> du thème) tranche sans !important. */
#stp-content .stp-pdp .product > .woocommerce-product-gallery,
#stp-content .stp-pdp .product > .summary {
	width: 100%;
	float: none;
	margin: 0;
}

/* La galerie occupe toute sa colonne, image comprise. */
#stp-content .stp-pdp .woocommerce-product-gallery__wrapper {
	width: 100%;
	margin: 0;
}

#stp-content .stp-pdp .woocommerce-product-gallery__image {
	width: 100%;
}

#stp-content .stp-pdp .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
}

/* Les sections de bas de fiche portent déjà leur propre gouttière. */
.stp-pdp .product > .stp-sec {
	max-width: none;
	padding-inline: 0;
}

/* La galerie vit dans une tuile chaude : signature visuelle du catalogue. */
.stp-pdp .woocommerce-product-gallery {
	padding: 1.2rem;
	border-radius: var(--stp-r);
	background: var(--stp-warm);
}

.stp-pdp .woocommerce-product-gallery img {
	border-radius: var(--stp-r-sm);
}

.stp-pdp .woocommerce-product-gallery .stp-ph {
	background: none;
	border: 0;
	min-height: 320px;
}

.stp-pdp .flex-control-thumbs {
	display: flex;
	gap: 8px;
	margin: 0.9rem 0 0;
	padding: 0;
	list-style: none;
}

.stp-pdp .flex-control-thumbs li {
	width: 68px;
	margin: 0;
}

.stp-pdp .flex-control-thumbs img {
	border: 1px solid transparent;
	border-radius: var(--stp-r-btn);
	background: var(--stp-surface);
	opacity: 0.75;
	cursor: pointer;
}

.stp-pdp .flex-control-thumbs img.flex-active,
.stp-pdp .flex-control-thumbs img:hover {
	border-color: var(--stp-gold);
	opacity: 1;
}

/* En-tête de fiche : titre centré, puis fil d'Ariane et gamme sur une ligne. */
.stp-pdp__title {
	text-align: center;
	margin: 0 0 0.9rem;
}

.stp-pdp__crumbrow {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.stp-pdp__crumbrow .stp-crumbs {
	flex: 1 1 20rem;
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.stp-pdp__cat {
	font-size: 0.82rem;
	color: var(--stp-mute);
}

.stp-pdp__cat a {
	color: var(--stp-ink2);
	text-decoration: none;
}

.stp-pdp__cat a:hover {
	color: var(--stp-gold-dk);
	text-decoration: underline;
}

.stp-pdp__head {
	padding-bottom: 0.8rem;
	margin-bottom: 1.6rem;
	border-bottom: 1px solid var(--stp-line);
}

.stp-pdp .summary {
	margin: 0;
}

.stp-pdp .product_title {
	font-size: clamp(1.6rem, 2.8vw, 2.1rem);
	margin-bottom: 0.6rem;
}

.stp-pdp .price {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--stp-gold-dk);
	margin: 0 0 0.2rem;
	vertical-align: middle;
}

/* Pastille d'accent devant le prix : ici le palier, pas une remise. */
.stp-pricetag {
	display: inline-block;
	margin: 0 0.6rem 0.2rem 0;
	padding: 0.28rem 0.7rem;
	border-radius: var(--stp-pill);
	background: var(--stp-gold);
	color: var(--stp-ink);
	font-size: 0.76rem;
	font-weight: 600;
	vertical-align: middle;
}

.stp-pdp .price del {
	color: var(--stp-mute);
	font-weight: 400;
	font-size: 1rem;
}

.stp-pdp .woocommerce-product-details__short-description {
	color: var(--stp-ink2);
}

.stp-pdp .product_meta {
	margin-top: 1.2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--stp-line);
	font-size: 0.85rem;
	color: var(--stp-mute);
}

.stp-pdp .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 2.6rem;
}

.stp-pdp .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0.4rem;
	list-style: none;
	margin: 0 0 1.2rem;
	padding: 0;
	border-bottom: 1px solid var(--stp-line);
}

.stp-pdp .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.55rem 0.2rem;
	margin: 0 0.7rem;
	border-bottom: 2px solid transparent;
	font-weight: 600;
	text-decoration: none;
	color: var(--stp-ink2);
}

.stp-pdp .woocommerce-tabs ul.tabs li a:hover {
	color: var(--stp-ink);
}

.stp-pdp .woocommerce-tabs ul.tabs li.active a {
	color: var(--stp-ink);
	border-bottom-color: var(--stp-gold);
}

.stp-pdp .woocommerce-tabs .panel > h2:first-child {
	display: none;
}

/* WooCommerce dessine des onglets en « dossier » (fond gris, cadre, ombres
   posées en ::before/::after). On revient au simple soulignement du brief. */
#stp-content .stp-pdp .woocommerce-tabs ul.tabs::before,
#stp-content .stp-pdp .woocommerce-tabs ul.tabs li::before,
#stp-content .stp-pdp .woocommerce-tabs ul.tabs li::after {
	display: none;
}

#stp-content .stp-pdp .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

#stp-content .stp-pdp .woocommerce-tabs ul.tabs li.active {
	background: none;
	z-index: auto;
}

/* --------------------------------------------------------------
   Onglet Description : texte, caractéristiques, grille tarifaire
   -------------------------------------------------------------- */

.stp-pdesc {
	max-width: 820px;
}

.stp-pdesc__text {
	color: #2f2921;
	line-height: 1.75;
}

.stp-pdesc__text > *:first-child {
	margin-top: 0;
}

/* Caractéristiques en liste de définitions : lisible, et le libellé reste
   accroché à sa valeur même sur un écran étroit. */
.stp-specs {
	margin: 1.8rem 0;
	padding: 0;
	border-top: 1px solid var(--stp-line);
}

.stp-specs__row {
	display: grid;
	grid-template-columns: 12rem 1fr;
	gap: 0 1rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--stp-line);
}

.stp-specs dt {
	margin: 0;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--stp-ink);
}

.stp-specs dd {
	margin: 0;
	font-size: 0.95rem;
	color: var(--stp-ink2);
}

.stp-marquage {
	margin: 0 0 1.8rem;
	padding: 0.9rem 1.1rem;
	background: var(--stp-warm);
	border-left: 3px solid var(--stp-gold);
	border-radius: 0 var(--stp-r-sm) var(--stp-r-sm) 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--stp-ink2);
}

.stp-tiers h3 {
	font-size: 1.05rem;
	margin: 0 0 0.8rem;
}

.stp-tiers__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-sm);
	overflow: hidden;
}

.stp-tiers__table th,
.stp-tiers__table td {
	padding: 0.7rem 0.9rem;
	text-align: left;
	border-bottom: 1px solid var(--stp-line);
}

.stp-tiers__table thead th {
	background: var(--stp-warm);
	border-bottom: 2px solid var(--stp-gold);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--stp-ink);
}

.stp-tiers__table tbody th {
	font-weight: 600;
	color: var(--stp-ink);
}

.stp-tiers__table tbody tr:last-child th,
.stp-tiers__table tbody tr:last-child td {
	border-bottom: 0;
}

.stp-tiers__table tbody tr:hover th,
.stp-tiers__table tbody tr:hover td {
	background: #fdfbf7;
}

.stp-tiers__price {
	font-weight: 700;
	color: var(--stp-gold-dk);
	white-space: nowrap;
}

.stp-tiers__save {
	color: var(--stp-mute);
	font-size: 0.88rem;
	white-space: nowrap;
}

.stp-tiers__note {
	margin: 0.9rem 0 0;
	font-size: 0.85rem;
	color: var(--stp-mute);
	line-height: 1.55;
}

@media (max-width: 560px) {
	.stp-specs__row {
		grid-template-columns: 1fr;
		gap: 0.15rem;
	}

	.stp-tiers__table th,
	.stp-tiers__table td {
		padding: 0.6rem 0.55rem;
	}

	.stp-tiers__save {
		display: none;
	}
}

.stp-related {
	margin-inline: auto;
}

@media (max-width: 860px) {
	.stp-pdp .product {
		grid-template-columns: 1fr;
		gap: 1.6rem;
	}

	/* Sur une seule colonne, « 2 / 3 » créerait une colonne implicite. */
	.stp-pdp .product > .woocommerce-product-gallery,
	.stp-pdp .product > .summary {
		grid-column: 1 / -1;
	}
}


.stp-reperes {
	list-style: none;
	margin: 1.1rem 0 0.4rem;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.stp-reperes li {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-size: 0.93rem;
	line-height: 1.45;
	color: var(--stp-ink2);
}

.stp-reperes .stp-ico {
	color: var(--stp-gold-dk);
	margin-top: 0.15rem;
	width: 18px;
	height: 18px;
	flex-basis: 18px;
}

.stp-trustbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.7rem;
	align-items: center;
	margin: 1.4rem 0;
	padding: 0.95rem 1.1rem;
	background: var(--stp-surface);
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-sm);
}

.stp-trustbar__item {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--stp-ink);
	line-height: 1.2;
}

.stp-trustbar__item .stp-ico {
	color: var(--stp-gold-dk);
}

.stp-pcta {
	margin: 1.2rem 0 1.5rem;
	padding: 1.2rem 1.3rem;
	background: var(--stp-surface);
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-sm);
	color: var(--stp-ink2);
}

.stp-pcta__lead {
	margin: 0 0 0.9rem;
	font-size: 1rem;
	color: var(--stp-ink2);
	line-height: 1.5;
}

.stp-pcta__lead strong {
	color: var(--stp-ink);
}

/* Le devis est l'action primaire de la fiche : pleine largeur, en accent. */
.stp-pcta__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.7rem;
	margin: 0;
}

.stp-pcta__actions .stp-btn--primary {
	width: 100%;
}

.stp-pcta__actions .stp-addform {
	margin: 0;
}

.stp-pcta__actions .stp-addform .stp-btn {
	flex: 1;
}

.stp-pcta__tel {
	color: var(--stp-gold-dk);
	font-weight: 700;
	text-decoration: none;
	font-size: 0.95rem;
	text-align: center;
}

.stp-pcta__tel:hover {
	color: var(--stp-ink);
	text-decoration: underline;
}

.stp-pcta__alt {
	margin: 0.85rem 0 0;
	font-size: 0.83rem;
	color: var(--stp-mute);
	line-height: 1.45;
}

.stp-pcta__alt a {
	color: var(--stp-gold-dk);
}

.stp-addform {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.6rem 0 0;
}

.stp-addform__qty {
	width: 5.5rem;
	padding: 0.55rem 0.6rem;
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-btn);
	background: var(--stp-surface);
}

/* Barre d'action collante — mobile, sur le catalogue */
.stp-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	display: none;
	gap: 0.6rem;
	padding: 0.6rem 0.8rem;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(6px);
	border-top: 1px solid var(--stp-line);
	box-shadow: 0 -6px 20px rgba(23, 20, 15, 0.12);
}

.stp-sticky__tel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--stp-line);
	border-radius: var(--stp-r-btn);
	background: var(--stp-soft);
	color: var(--stp-ink);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	white-space: nowrap;
}

.stp-sticky__btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1rem;
	border-radius: var(--stp-r-btn);
	background: var(--stp-gold);
	color: var(--stp-ink);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.98rem;
}

@media (max-width: 780px) {
	.stp-sticky {
		display: flex;
	}

	body.woocommerce,
	body.woocommerce-page {
		padding-bottom: 72px;
	}
}

@media (max-width: 900px) {
	/* Le récapitulatif passe sous la liste, comme le panier en mobile. */
	.stp-devis-grid {
		grid-template-columns: 1fr;
	}

	.stp-recap {
		position: static;
	}
}

@media (max-width: 600px) {
	.stp-f2 {
		grid-template-columns: 1fr;
	}

	.stp-modal__box {
		padding: 1.4rem 1.1rem 1.2rem;
		border-radius: var(--stp-r);
	}

	.stp-devis-row {
		grid-template-columns: 56px minmax(0, 1fr);
		row-gap: 0.6rem;
	}

	.stp-devis-row__thumb {
		width: 56px;
		height: 56px;
	}

	.stp-devis-row__end {
		grid-column: 2;
		justify-self: start;
	}
}
