/**
 * Frontend styles for Hepsijet tracking
 */

.hepsijet-tracking-card {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin: 20px 0;
	overflow: hidden;
}

.hepsijet-tracking-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
	color: #ffffff;
}

.hepsijet-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 18px;
}

.hepsijet-logo svg {
	flex-shrink: 0;
}

.hepsijet-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.hepsijet-status-icon {
	font-size: 16px;
}

.hepsijet-tracking-body {
	padding: 20px;
}

.hepsijet-tracking-number-section {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e0e0e0;
}

.hepsijet-tracking-number-section label {
	display: block;
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	font-weight: 600;
}

.hepsijet-tracking-number-value {
	font-size: 24px;
	font-weight: 700;
	color: #0073aa;
	letter-spacing: 1px;
	font-family: 'Courier New', monospace;
}

.hepsijet-info-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f5f5f5;
}

.hepsijet-info-row:last-child {
	border-bottom: none;
}

.hepsijet-info-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.hepsijet-info-value {
	font-size: 14px;
	color: #333;
	font-weight: 600;
	text-align: right;
}

.hepsijet-shipped-notice {
	margin-top: 20px;
	padding: 15px;
	background: #e8f4f8;
	border-left: 4px solid #0073aa;
	border-radius: 4px;
}

.hepsijet-shipped-notice strong {
	display: block;
	color: #0073aa;
	font-size: 16px;
	margin-bottom: 8px;
}

.hepsijet-shipped-notice p {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
	.hepsijet-tracking-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.hepsijet-tracking-number-value {
		font-size: 20px;
	}
	
	.hepsijet-info-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.hepsijet-info-value {
		text-align: left;
	}
}

