.ak-ot-wrap {
	max-width: 640px;
	margin: 0 auto;
	font-family: var(--ak-ot-font, inherit);
	color: var(--ak-ot-text, #1d2327);
	direction: rtl;
	text-align: right;
}

.ak-ot-card {
	background: var(--ak-ot-bg, #fff);
	border: 1px solid var(--ak-ot-secondary, #f0f4f8);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.ak-ot-card h3 {
	margin-top: 0;
	font-size: 1.25em;
}

.ak-ot-form p {
	margin-bottom: 14px;
}

.ak-ot-form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

.ak-ot-form input[type="text"],
.ak-ot-form input[type="tel"] {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 1em;
	border: 1px solid #ccd0d4;
	border-radius: 8px;
	background: var(--ak-ot-secondary, #f7f7f7);
	color: var(--ak-ot-text, #1d2327);
}

.ak-ot-btn {
	display: inline-block;
	padding: 12px 24px;
	background: var(--ak-ot-btn, #2271b1);
	color: var(--ak-ot-btn-text, #fff);
	border: none;
	border-radius: 8px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
}

.ak-ot-btn:hover {
	filter: brightness(0.92);
	color: var(--ak-ot-btn-text, #fff);
}

.ak-ot-error {
	background: #fdecea;
	color: #7a1f1a;
	border: 1px solid #f3c7c3;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 16px;
}

.ak-ot-help {
	margin-top: 14px;
	font-size: 0.95em;
}

.ak-ot-order-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ak-ot-order-list li {
	border-bottom: 1px solid var(--ak-ot-secondary, #eee);
}

.ak-ot-order-list li:last-child {
	border-bottom: none;
}

.ak-ot-order-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 12px 4px;
	text-decoration: none;
	color: inherit;
	flex-wrap: wrap;
}

.ak-ot-badge,
.ak-ot-status-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--ak-ot-secondary, #eef2f6);
	color: var(--ak-ot-primary, #2271b1);
	font-size: 0.85em;
	font-weight: 600;
}

.ak-ot-status-badge {
	margin-bottom: 16px;
	font-size: 0.95em;
}

.ak-ot-info-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

.ak-ot-info-table th,
.ak-ot-info-table td {
	text-align: right;
	padding: 8px 6px;
	border-bottom: 1px solid var(--ak-ot-secondary, #f0f0f0);
	vertical-align: top;
}

.ak-ot-info-table th {
	width: 35%;
	color: #666;
	font-weight: 600;
}

.ak-ot-items {
	margin: 0 0 16px;
	padding-right: 20px;
}

.ak-ot-tracking-box {
	background: var(--ak-ot-secondary, #f0f6fb);
	border-radius: 10px;
	padding: 18px;
	text-align: center;
}

.ak-ot-tracking-pending p {
	margin: 0;
}

.ak-ot-track-btn {
	margin-top: 10px;
}

.ak-ot-timeline {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 22px;
	position: relative;
}

.ak-ot-timeline::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 12%;
	left: 12%;
	height: 3px;
	background: var(--ak-ot-secondary, #e5e9ee);
	z-index: 0;
}

.ak-ot-tl-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 1;
	text-align: center;
}

.ak-ot-tl-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ak-ot-secondary, #eef2f6);
	color: #a9b2bc;
	border: 2px solid var(--ak-ot-secondary, #e5e9ee);
}

.ak-ot-tl-label {
	font-size: 0.8em;
	color: #8a8f98;
}

.ak-ot-tl-done .ak-ot-tl-icon {
	background: var(--ak-ot-primary, #2271b1);
	color: #fff;
	border-color: var(--ak-ot-primary, #2271b1);
}

.ak-ot-tl-done .ak-ot-tl-label {
	color: var(--ak-ot-text, #1d2327);
}

.ak-ot-tl-active .ak-ot-tl-icon {
	background: var(--ak-ot-bg, #fff);
	color: var(--ak-ot-primary, #2271b1);
	border-color: var(--ak-ot-primary, #2271b1);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--ak-ot-primary, #2271b1) 15%, transparent);
}

.ak-ot-tl-active .ak-ot-tl-label {
	color: var(--ak-ot-primary, #2271b1);
	font-weight: 700;
}

@media (max-width: 480px) {
	.ak-ot-tl-label {
		font-size: 0.7em;
	}
	.ak-ot-tl-icon {
		width: 32px;
		height: 32px;
	}
	.ak-ot-timeline::before {
		top: 16px;
	}
}

.ak-ot-hero-card {
	text-align: center;
}

.ak-ot-hero-icon {
	color: var(--ak-ot-primary, #2271b1);
	margin-bottom: 8px;
	display: flex;
	justify-content: center;
}

.ak-ot-hero-sub {
	color: #8a8f98;
	font-size: 0.9em;
	margin-top: -6px;
	margin-bottom: 20px;
}

.ak-ot-hero-card .ak-ot-form {
	text-align: right;
}

.ak-ot-btn-wide {
	width: 100%;
	text-align: center;
}

.ak-ot-message-banner {
	background: var(--ak-ot-primary, #2271b1);
	color: #fff;
	border-radius: 10px;
	padding: 14px 18px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 20px;
}

.ak-ot-back {
	text-align: center;
}

@media (max-width: 480px) {
	.ak-ot-card {
		padding: 16px;
	}
}
