/**
 * Seamar City Shipping — checkout layout styles
 *
 * Handles: Email/Téléphone inline pairing (matching the native
 * Prénom/Nom pairing), the Ville (30%) + Adresse de Livraison (70%)
 * row, and responsive stacking on narrow phone screens.
 */

/* Email + Téléphone paired, full width on phones */
@media (max-width: 480px) {
	.woocommerce-checkout .form-row-first,
	.woocommerce-checkout .form-row-last {
		width: 100% !important;
		float: none !important;
	}
}

/* Ville (30%) + Adresse de Livraison (70%) on one row */
.woocommerce-checkout .seamar-row-city,
.woocommerce-checkout .seamar-row-address {
	display: inline-block;
	vertical-align: top;
	float: none;
}

.woocommerce-checkout .seamar-row-city {
	width: 30%;
	padding-right: 2%;
}

.woocommerce-checkout .seamar-row-address {
	width: 68%;
}

@media (max-width: 480px) {
	.woocommerce-checkout .seamar-row-city,
	.woocommerce-checkout .seamar-row-address {
		width: 100% !important;
		padding-right: 0 !important;
		display: block;
	}
}

/* "Select a city first" prompt shown in the Expédition area before
   any city has been chosen. */
.seamar-select-city-prompt {
	margin: 0;
	font-size: 0.9em;
	color: #555;
}
