/**
 * Order Tracking Widget - Estilos base
 *
 * @package ElChePizza_Delivery
 */

.elchepizza-tracking {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	min-height: 200px;
	border-radius: 12px;
	overflow: hidden;
}

.elchepizza-tracking__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	max-width: 480px;
	gap: 16px;
}

.elchepizza-tracking__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.elchepizza-tracking__card-header {
	text-align: center;
}

.elchepizza-tracking__title {
	margin: 0 0 8px;
	font-size: 1.5rem;
	line-height: 1.3;
}

.elchepizza-tracking__order-number {
	margin: 0 0 4px;
	font-size: 0.95rem;
	opacity: 0.9;
}

.elchepizza-tracking__eta {
	margin: 0;
	font-size: 0.9rem;
}

/* Pasos de progreso */
.elchepizza-tracking__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}

.elchepizza-tracking__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.elchepizza-tracking__step-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #e5e7eb;
	overflow: hidden;
	background: #f9fafb;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.elchepizza-tracking__step.is-active .elchepizza-tracking__step-circle {
	border-color: #2563EB;
	box-shadow: 0 0 0 3px #2563EB;
}

.elchepizza-tracking__step-circle img {
	display: block;
	object-fit: cover;
}

.elchepizza-tracking__step-label {
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
}

/* Mapa y botón */
.elchepizza-tracking__card-map {
	position: relative;
	overflow: hidden;
}

.elchepizza-tracking__map {
	width: 100%;
	min-height: 180px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 8px;
	margin-bottom: 12px;
}

.elchepizza-tracking__track-btn {
	display: inline-block;
	width: 100%;
	padding: 12px 20px;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	background: #2563EB;
	color: #fff;
	border: 2px solid #2563EB;
	border-radius: 8px;
	cursor: pointer;
	transition: opacity 0.2s;
	box-sizing: border-box;
}

.elchepizza-tracking__track-btn:hover {
	opacity: 0.9;
	color: #fff;
}

.elchepizza-tracking__track-btn--disabled {
	cursor: default;
	opacity: 0.6;
}

/* Footer */
.elchepizza-tracking__footer {
	text-align: center;
	font-size: 0.875rem;
}

.elchepizza-tracking__footer a {
	text-decoration: none;
}

.elchepizza-tracking__footer a:hover {
	text-decoration: underline;
}
