/**
 * Track Order page – track-order.html design
 *
 * @package skinfinity
 */

body.track-order-page {
	background-color: #fdf4f7;
}

.track-order-page .page-banner {
	height: 320px;
	background-size: cover;
	background-position: center center;
	display: table;
	width: 100%;
	position: relative;
}

.track-order-page .page-banner .container {
	display: table;
	height: 100%;
}

.track-order-page .page-banner-entry {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	position: relative;
	z-index: 2;
	color: #1f1f1f;
}

.track-order-page .page-banner-entry h1 {
	font-size: 60px;
	line-height: 1.3;
	margin-bottom: 10px;
	font-weight: 500;
	color: #1f1f1f;
}

@media (max-width: 991.98px) {
	.track-order-page .page-banner-entry h1 {
		font-size: 42px;
	}
}

@media (max-width: 767.98px) {
	.track-order-page .page-banner {
		height: 300px;
	}
	.track-order-page .page-banner-entry h1 {
		font-size: 32px;
	}
}

@media (max-width: 576px) {
	.track-order-page .page-banner {
		height: 200px;
	}
	.track-order-page .page-banner-entry h1 {
		font-size: 28px;
		margin-bottom: 5px;
	}
}

.track-order-page .breadcrumb-row {
	margin-top: 8px;
}

.track-order-page .breadcrumb-row .list-inline {
	margin: 0;
	display: inline-block;
	background: rgb(255, 255, 255);
	padding: 5px 15px;
	border-radius: 30px;
	border: 1px solid #fff;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.02);
	list-style: none;
}

.track-order-page .breadcrumb-row .list-inline li {
	padding: 0;
	margin-right: 3px;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
}

.track-order-page .breadcrumb-row .list-inline li i {
	font-size: 13px;
	margin-right: 5px;
	color: #b6554f;
}

.track-order-page .breadcrumb-row .list-inline li a {
	text-decoration: none;
	color: #b6554f;
	font-weight: 600;
}

.track-order-page .breadcrumb-row .list-inline li:last-child {
	color: #5a564d;
}

.track-order-page .breadcrumb-row .list-inline li:after {
	content: "\f105";
	margin-left: 7px;
	font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", "fontawesome";
	font-weight: 900;
	opacity: 0.5;
	color: #999;
}

.track-order-page .breadcrumb-row .list-inline li:last-child:after {
	display: none;
}

.track-order-container {
	padding: 60px 0 100px;
}

.track-order-container .container {
	background: #ffffff;
	border-radius: 28px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.06);
	padding: 60px 90px 90px;
	max-width: 1000px;
}

@media (max-width: 991.98px) {
	.track-order-container .container {
		padding: 40px 24px 50px;
		border-radius: 24px;
	}
}

.track-order-form {
	max-width: 600px;
	margin: 0 auto;
}

.track-order-form .form-group {
	margin-bottom: 25px;
}

.track-order-form label {
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
	color: #1f1f1f;
	font-size: 16px;
}

.track-order-form .form-control {
	width: 100%;
	padding: 15px 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 16px;
	transition: all 0.3s;
	font-family: 'DM Sans', sans-serif;
}

.track-order-form .form-control:focus {
	outline: none;
	border-color: #b6554f;
	box-shadow: 0 0 0 3px rgba(182, 85, 79, 0.1);
}

.track-order-form .btn-submit {
	width: 100%;
	padding: 15px;
	background: #f17298;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s;
	cursor: pointer;
	margin-top: 10px;
}

.track-order-form .btn-submit:hover {
	background: #b6554f;
	color: #fff;
}

.track-order-form .btn-submit:disabled {
	background: #ccc;
	cursor: not-allowed;
}

/* +91 prefix before mobile input */
.track-order-form .mobile-input-wrap {
	display: flex;
	align-items: stretch;
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
}

.track-order-form .mobile-input-wrap:focus-within {
	border-color: #b6554f;
	box-shadow: 0 0 0 3px rgba(182, 85, 79, 0.1);
}

.track-order-form .mobile-country-code {
	display: flex;
	align-items: center;
	padding: 15px 16px;
	background: #f5f5f5;
	color: #5a564d;
	font-size: 16px;
	font-weight: 600;
	border-right: 1px solid #ddd;
}

.track-order-form .mobile-input-wrap .form-control {
	border: none;
	border-radius: 0;
	flex: 1;
}

.track-order-form .required-asterisk {
	color: #b6554f;
}

.track-order-form .step-title {
	text-align: center;
	margin-bottom: 30px;
	font-size: 28px;
	color: #1f1f1f;
}

.otp-input-group {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 20px;
}

.otp-input-group input {
	width: 50px;
	height: 60px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	border: 2px solid #ddd;
	border-radius: 10px;
	transition: all 0.3s;
}

.otp-input-group input:focus {
	border-color: #b6554f;
	outline: none;
	box-shadow: 0 0 0 3px rgba(182, 85, 79, 0.1);
}

.otp-resend {
	text-align: center;
	margin-top: 20px;
}

.otp-resend a {
	color: #b6554f;
	text-decoration: none;
	font-weight: 500;
}

.otp-resend a:hover {
	text-decoration: underline;
}

.tracking-info {
	background: #f8f9fa;
	border-radius: 20px;
	padding: 40px;
	margin-top: 30px;
	text-align: center;
}

.tracking-info-icon {
	width: 80px;
	height: 80px;
	background: #0b9f92;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: #ffffff;
	font-size: 36px;
}

.tracking-info h3 {
	font-size: 28px;
	font-weight: 600;
	color: #1f1f1f;
	margin-bottom: 20px;
}

.tracking-info p {
	font-size: 18px;
	color: #5a564d;
	line-height: 1.6;
	margin-bottom: 15px;
}

.tracking-info .courier-name {
	font-size: 22px;
	font-weight: 600;
	color: #b6554f;
	margin: 20px 0;
}

.tracking-info .tracking-number {
	font-size: 20px;
	font-weight: 600;
	color: #1f1f1f;
	background: #fff;
	padding: 15px 25px;
	border-radius: 10px;
	display: inline-block;
	margin: 15px 0;
	border: 2px solid #0b9f92;
}

.tracking-info .tracking-link {
	display: inline-block;
	margin-top: 25px;
	padding: 15px 30px;
	background: #0b9f92;
	color: #fff;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s;
}

.tracking-info .tracking-link:hover {
	background: #0a8a7e;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(11, 159, 146, 0.3);
}

.tracking-info.tracking-not-available {
	background: #fff8f8;
	border: 2px solid #f17298;
}

.tracking-info.tracking-not-available .tracking-not-available-message {
	font-size: 18px;
	color: #5a564d;
	line-height: 1.6;
	margin: 0;
}

.step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	gap: 20px;
}

.step-indicator .step {
	display: flex;
	align-items: center;
	gap: 10px;
}

.step-indicator .step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ddd;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
}

.step-indicator .step.active .step-number {
	background: #f17298;
	color: #fff;
}

.step-indicator .step.completed .step-number {
	background: #0b9f92;
	color: #fff;
}

.step-indicator .step-label {
	font-size: 14px;
	color: #999;
	font-weight: 500;
}

.step-indicator .step.active .step-label {
	color: #b6554f;
}

.step-indicator .step.completed .step-label {
	color: #0b9f92;
}

@media (max-width: 767.98px) {
	.step-indicator {
		flex-direction: column;
		gap: 15px;
	}
	.step-indicator .step-label {
		display: none;
	}
}

.track-step {
	display: none;
}

.track-step.active {
	display: block;
}

.success-message {
	background: #f0fdf4;
	border: 2px solid #22c55e;
	border-radius: 10px;
	padding: 15px 20px;
	margin-bottom: 20px;
	color: #166534;
	font-size: 14px;
}

.success-message i {
	margin-right: 8px;
	color: #22c55e;
}

.track-order-form .otp-label {
	text-align: center;
	display: block;
}
