/* WooCommerce Order Tracker - Dark Premium Theme */
.ot-a7d2a54c-wrapper {
	background-color: #1a1a1a;
	border: 1px solid #c9a96e;
	border-radius: 12px;
	padding: 40px;
	color: #e0e0e0;
	font-family: inherit;
	max-width: 800px;
	margin: 0 auto;
}

.ot-a7d2a54c-heading {
	color: #c9a96e;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 8px 0;
	text-align: center;
	letter-spacing: 0.5px;
}

.ot-a7d2a54c-subheading {
	color: #b0b0b0;
	font-size: 15px;
	text-align: center;
	margin: 0 0 30px 0;
	line-height: 1.5;
}

.ot-a7d2a54c-section-title {
	color: #c9a96e;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 16px 0;
}

/* Form */
.ot-a7d2a54c-form-section {
	margin-top: 10px;
}

.ot-a7d2a54c-form-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.ot-a7d2a54c-input {
	flex: 1;
	min-width: 180px;
	padding: 14px 18px;
	background: #252525;
	border: 1px solid #3a3a3a;
	border-radius: 8px;
	color: #e0e0e0;
	font-size: 14px;
	transition: border-color 0.3s ease;
	outline: none;
}

.ot-a7d2a54c-input:focus {
	border-color: #c9a96e;
}

.ot-a7d2a54c-input::placeholder {
	color: #666;
}

.ot-a7d2a54c-btn {
	padding: 14px 32px;
	background-color: #c9a96e;
	color: #1a1a1a;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.15s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
}

.ot-a7d2a54c-btn:hover {
	background-color: #b8944f;
	transform: translateY(-1px);
}

.ot-a7d2a54c-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* Error */
.ot-a7d2a54c-error {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 12px;
	display: none;
}

/* Loader */
.ot-a7d2a54c-loader {
	display: none;
	width: 32px;
	height: 32px;
	border: 3px solid #3a3a3a;
	border-top-color: #c9a96e;
	border-radius: 50%;
	margin: 20px auto;
	animation: ot-a7d2a54c-spin 0.8s linear infinite;
}

@keyframes ot-a7d2a54c-spin {
	to { transform: rotate(360deg); }
}

/* Result */
.ot-a7d2a54c-result {
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid #2a2a2a;
}

.ot-a7d2a54c-result-info {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin-bottom: 24px;
}

.ot-a7d2a54c-result-order {
	font-size: 20px;
	font-weight: 700;
	color: #c9a96e;
}

.ot-a7d2a54c-result-date,
.ot-a7d2a54c-result-total {
	font-size: 14px;
	color: #b0b0b0;
}

.ot-a7d2a54c-result-status {
	padding: 4px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Status badges */
.ot-a7d2a54c-status-pending { background: #3d3520; color: #f0c040; }
.ot-a7d2a54c-status-processing { background: #1e3a5f; color: #5dade2; }
.ot-a7d2a54c-status-on-hold { background: #3d3520; color: #f0c040; }
.ot-a7d2a54c-status-completed { background: #1e3d20; color: #58d68d; }
.ot-a7d2a54c-status-cancelled { background: #3d1e1e; color: #e74c3c; }
.ot-a7d2a54c-status-refunded { background: #2d2d2d; color: #aaa; }
.ot-a7d2a54c-status-failed { background: #3d1e1e; color: #e74c3c; }
.ot-a7d2a54c-status-shipped { background: #1e3a5f; color: #5dade2; }

.ot-a7d2a54c-status-badge {
	padding: 4px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-block;
}

/* Progress Bar */
.ot-a7d2a54c-progress {
	margin: 10px 0 30px;
}

.ot-a7d2a54c-progress-bar-editor {
	margin: 10px 0 0;
}

.ot-a7d2a54c-steps-row {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 12px;
}

.ot-a7d2a54c-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative;
	z-index: 2;
}

.ot-a7d2a54c-step-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #3a3a3a;
	background-color: #3a3a3a;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.4s ease;
	margin-bottom: 8px;
}

.ot-a7d2a54c-step.is-active .ot-a7d2a54c-step-circle {
	background-color: #c9a96e;
	border-color: #c9a96e;
	color: #1a1a1a;
	box-shadow: 0 0 16px rgba(201, 169, 110, 0.4);
}

.ot-a7d2a54c-step.is-complete .ot-a7d2a54c-step-circle {
	background-color: #c9a96e;
	border-color: #c9a96e;
	color: #1a1a1a;
}

.ot-a7d2a54c-step-label {
	font-size: 12px;
	color: #b0b0b0;
	text-align: center;
	font-weight: 500;
	transition: color 0.3s ease;
}

.ot-a7d2a54c-step.is-active .ot-a7d2a54c-step-label,
.ot-a7d2a54c-step.is-complete .ot-a7d2a54c-step-label {
	color: #c9a96e;
	font-weight: 700;
}

.ot-a7d2a54c-progress-track {
	height: 4px;
	background-color: #3a3a3a;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

.ot-a7d2a54c-progress-fill {
	height: 100%;
	background-color: #c9a96e;
	border-radius: 4px;
	transition: width 0.6s ease;
}

/* Table */
.ot-a7d2a54c-orders-section {
	margin-bottom: 30px;
}

.ot-a7d2a54c-table-wrap {
	overflow-x: auto;
}

.ot-a7d2a54c-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 8px;
}

.ot-a7d2a54c-table th {
	background-color: #252525;
	color: #c9a96e;
	padding: 12px 16px;
	text-align: left;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #333;
}

.ot-a7d2a54c-table td {
	padding: 12px 16px;
	background-color: #1e1e1e;
	font-size: 14px;
	border-bottom: 1px solid #333;
}

.ot-a7d2a54c-table tr:nth-child(even) td {
	background-color: #242424;
}

.ot-a7d2a54c-items-title {
	color: #c9a96e;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 8px 0;
}

.ot-a7d2a54c-no-orders {
	color: #888;
	font-style: italic;
	text-align: center;
	padding: 20px 0;
}

/* Responsive */
@media (max-width: 600px) {
	.ot-a7d2a54c-wrapper {
		padding: 24px 16px;
	}

	.ot-a7d2a54c-form-row {
		flex-direction: column;
	}

	.ot-a7d2a54c-input {
		min-width: 100%;
	}

	.ot-a7d2a54c-btn {
		width: 100%;
	}

	.ot-a7d2a54c-step-circle {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}

	.ot-a7d2a54c-step-label {
		font-size: 10px;
	}

	.ot-a7d2a54c-heading {
		font-size: 22px;
	}

	.ot-a7d2a54c-result-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}
