/* =========================================
   LILYEE ORDER TRACKING
========================================= */

.lilyee-order-tracking {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 20px 80px;
	box-sizing: border-box;
}


/* INTRO */

.lilyee-tracking-intro {
	text-align: center;
	margin-bottom: 35px;
}

.lilyee-tracking-intro h1 {
	margin: 0 0 12px;
	font-size: 48px;
	line-height: 1.15;
	font-weight: 500;
	color: #33245c;
}

.lilyee-tracking-intro p {
	margin: 0;
	font-size: 17px;
	color: #504e4a;
}

.lilyee-tracking-divider {
	width: 70px;
	height: 3px;
	margin: 18px auto 0;
	background: #b99ccb;
}


/* FORM CARD */

.lilyee-tracking-form-card {
	background: #ffffff;
	border: 1px solid #e7deeb;
	border-radius: 10px;
	padding: 35px;
	box-shadow: 0 8px 25px rgba(80, 78, 74, 0.06);
	margin-bottom: 45px;
}

.lilyee-tracking-form {
	display: grid;
	grid-template-columns: 1fr 1fr 0.7fr;
	gap: 24px;
	align-items: end;
}

.lilyee-tracking-field label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	color: #504e4a;
}

.lilyee-tracking-field input {
	width: 100%;
	height: 60px;
	padding: 0 18px;
	box-sizing: border-box;
	border: 1px solid #d8c8df;
	border-radius: 6px;
	background: #ffffff;
	color: #504e4a;
	font-size: 16px;
	outline: none;
}

.lilyee-tracking-field input:focus {
	border-color: #b99ccb;
	box-shadow: 0 0 0 3px rgba(185, 156, 203, 0.12);
}

.lilyee-tracking-field input::placeholder {
	color: #9c9aa0;
}

.lilyee-tracking-submit button {
	width: 100%;
	height: 60px;
	border: 0;
	border-radius: 6px;
	background: #b99ccb;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.lilyee-tracking-submit button:hover {
	background: #a987bd;
	transform: translateY(-1px);
}

.lilyee-tracking-help {
	grid-column: 1 / -1;
	margin: -5px 0 0;
	font-size: 14px;
	color: #77737c;
}


/* ERROR */

.lilyee-tracking-error {
	margin: 20px 0 30px;
	padding: 16px 20px;
	border-radius: 6px;
	background: #fff5f5;
	border: 1px solid #f0d2d2;
	color: #9b4a4a;
}


/* TRACKING INFORMATION */

.lilyee-tracking-information {
	margin-top: 10px;
}

.lilyee-tracking-information h2 {
	margin: 0;
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	color: #33245c;
}

.lilyee-tracking-information > .lilyee-tracking-divider {
	margin-bottom: 25px;
}


/* SHIPMENT CARD */

.lilyee-shipment-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 20px 30px;
	background: #ffffff;
	border: 1px solid #dedede;
	border-radius: 6px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
}


/* LEFT SIDE */

.lilyee-shipment-main {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.lilyee-shipment-icon {
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	border-radius: 8px;
	background: #25a9d6;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 3px;
	padding: 8px;
	box-sizing: border-box;
}

.lilyee-shipment-icon span {
	display: block;
	border-radius: 50%;
	background: #ffffff;
	opacity: 0.95;
}

.lilyee-shipment-icon span:nth-child(1),
.lilyee-shipment-icon span:nth-child(2),
.lilyee-shipment-icon span:nth-child(3) {
	background: #686868;
}


/* DETAILS */

.lilyee-shipment-title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 4px;
}

.lilyee-shipment-title strong {
	font-size: 22px;
	color: #30254c;
}

.lilyee-awb-number {
	font-size: 21px;
	color: #009fe3;
	text-decoration: none;
	font-weight: 500;
}

.lilyee-awb-number:hover {
	text-decoration: underline;
}

.lilyee-shipped-date {
	font-size: 16px;
	color: #504e4a;
}

.lilyee-shipped-date strong {
	color: #30254c;
}


/* BUTTON */

.lilyee-track-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 210px;
	height: 72px;
	padding: 0 25px;
	box-sizing: border-box;
	border-radius: 5px;
	background: #0665a3;
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 18px;
	font-weight: 700;
	transition: all 0.2s ease;
}

.lilyee-track-button:hover {
	background: #045687;
	transform: translateY(-1px);
}


/* NO TRACKING */

.lilyee-no-tracking {
	margin-top: 30px;
	padding: 25px;
	text-align: center;
	border: 1px solid #e7deeb;
	border-radius: 8px;
	background: #faf8fb;
}

.lilyee-no-tracking h3 {
	margin: 0 0 8px;
	color: #33245c;
}

.lilyee-no-tracking p {
	margin: 5px 0;
	color: #504e4a;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

	.lilyee-order-tracking {
		padding: 25px 15px 60px;
	}

	.lilyee-tracking-intro h1 {
		font-size: 34px;
	}

	.lilyee-tracking-intro p {
		font-size: 15px;
	}

	.lilyee-tracking-form-card {
		padding: 22px;
	}

	.lilyee-tracking-form {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.lilyee-tracking-help {
		grid-column: auto;
	}

	.lilyee-shipment-card {
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		gap: 20px;
	}

	.lilyee-shipment-main {
		align-items: flex-start;
	}

	.lilyee-shipment-title strong {
		font-size: 20px;
	}

	.lilyee-awb-number {
		font-size: 18px;
		word-break: break-all;
	}

	.lilyee-track-button {
		width: 100%;
		min-width: 0;
		height: 58px;
	}

}