/* ==========================================================================
   EVOX — Consulta de Envío (popup)
   ========================================================================== */

.evox-ship__title {
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: var(--evox-tinta);
	margin-bottom: 8px;
}

.evox-ship__subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: var(--evox-cuerpo);
	margin-bottom: 24px;
}

.evox-ship__row {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.evox-ship__selects,
.evox-ship__result {
	flex: 1 1 50%;
	min-width: 0;
}

/* -------- Selects -------- */
.evox-ship__label {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--evox-cuerpo);
	margin-bottom: 6px;
}
.evox-ship__label:not(:first-child) {
	margin-top: 16px;
}

.evox-ship__select {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	border: 1px solid var(--evox-borde-fuerte);
	border-radius: 8px;
	background: #fff;
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	color: var(--evox-tinta);
	transition: border-color 0.2s ease;
}
.evox-ship__select:focus {
	outline: none;
	border: 2px solid var(--evox-verde);
}
.evox-ship__select:disabled {
	background: var(--evox-fondo);
	color: var(--evox-suave);
	cursor: not-allowed;
}

/* -------- Panel de resultado -------- */
.evox-ship__placeholder {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: var(--evox-suave);
	line-height: 1.5;
}

.evox-ship__box {
	border: 1px solid var(--evox-borde);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
}

.evox-ship__box-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: var(--evox-tinta);
	margin-bottom: 6px;
}

.evox-ship__price {
	color: var(--evox-verde);
	font-weight: 700;
}
.evox-ship__price--free {
	color: var(--evox-azul);
}

.evox-ship__box-text {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: var(--evox-cuerpo);
	line-height: 1.5;
}

/* -------- Aviso de envío a agencia (provincia) -------- */
.evox-ship__notice {
	background: #fff8e6;
	border: 1px solid #f4a521;
	border-radius: 8px;
	padding: 12px 14px;
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: var(--evox-tinta);
	margin-bottom: 16px;
}

/* -------- Fuera de cobertura -------- */
.evox-ship__unavailable {
	background: #f8d7da;
	border-radius: 8px;
	padding: 16px;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	color: #721c24;
	line-height: 1.6;
}
.evox-ship__unavailable strong {
	display: block;
	font-size: 15px;
	margin-bottom: 4px;
}

/* -------- Responsive -------- */
@media (max-width: 600px) {
	.evox-ship__row {
		flex-direction: column;
		gap: 24px;
	}

	.evox-ship__title {
	font-size: 16px;
}

.evox-ship__subtitle {
	font-size: 13px;
	margin-bottom: 20px;
}
}

/* -------- Puntos de retiro (una o varias tiendas) -------- */
.evox-ship__store {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 0 0;
}
.evox-ship__store + .evox-ship__store {
	margin-top: 8px;
	border-top: 1px solid var(--evox-borde);
}
.evox-ship__store-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--evox-tinta);
}
.evox-ship__store-addr {
	font-size: 13px;
	line-height: 1.45;
	color: var(--evox-cuerpo);
}
.evox-ship__store-ref,
.evox-ship__store-time {
	font-size: 12px;
	line-height: 1.45;
	color: var(--evox-suave);
}
