:root {
	--adz-blue: #077FFF;
	--adz-blue-dark: #0566d1;
}

/* Carte "Livraison & retours" affichée directement dans la fiche produit. */
.adz-card {
	margin: 18px 0;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	max-width: 480px;
}

/* Sur desktop, on aligne le bloc à droite (comme une info complémentaire à
   côté du prix/bouton d'achat) plutôt qu'à gauche par défaut. Sur mobile, il
   reste en pleine largeur, dans l'ordre naturel de la page.
   `width: fit-content` + `!important` : de nombreux thèmes appliquent leurs
   propres règles de centrage (margin: 0 auto, texte centré, largeur 100%...)
   aux blocs de la colonne récap produit, ce qui neutralise un simple
   `margin-left: auto`. On force donc explicitement la largeur du bloc à son
   contenu (sinon il occupe toute la largeur du conteneur et aucune marge ne
   peut le pousser où que ce soit) et on verrouille l'alignement à droite. */
@media (min-width: 782px) {
	.adz-card {
		display: block !important;
		width: fit-content !important;
		max-width: 480px;
		margin-left: auto !important;
		margin-right: 0 !important;
		align-self: flex-end !important;
		text-align: left;
	}
}

.adz-card-header {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: var(--adz-blue);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.adz-truck-icon {
	font-size: 16px;
	line-height: 1;
}

.adz-card-body {
	padding: 16px;
}

.adz-select-row {
	margin-bottom: 10px;
}

.adz-select-row label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 6px;
}

.adz-select-row select {
	width: 100%;
	padding: 9px 10px;
	border: 1px solid #d6d6d6;
	border-radius: 6px;
	font-size: 14px;
	background: #fff;
	color: #111827;
}

.adz-select-row select:focus {
	outline: none;
	border-color: var(--adz-blue);
	box-shadow: 0 0 0 3px rgba(7, 127, 255, 0.15);
}

.adz-results {
	margin-top: 14px;
}

.adz-no-option {
	margin: 0;
	font-size: 13px;
	color: #6b7280;
	font-style: italic;
	background: #f8fafc;
	border-radius: 6px;
	padding: 12px;
}

.adz-zone-table-wrap {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.adz-zone-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.adz-zone-table th {
	text-align: left;
	background: #eaf3ff;
	padding: 8px 10px;
	border-bottom: 1px solid #e5e7eb;
	color: var(--adz-blue-dark);
	font-weight: 700;
}

.adz-zone-table td {
	padding: 8px 10px;
	border-bottom: 1px solid #f2f2f2;
	color: #333;
	vertical-align: top;
}

.adz-zone-table tr:last-child td {
	border-bottom: none;
}

.adz-zone-table td:first-child strong {
	color: var(--adz-blue-dark);
}

@media (max-width: 480px) {
	.adz-card {
		max-width: 100%;
	}
	.adz-zone-table {
		font-size: 12px;
	}
}
