/* --- How To Order Section --- */

#how-to-order {
	background-color: #f2f2f2;
	padding-top: 64px;
	padding-bottom: 64px;
}

#how-to-order h2 {
	font-family: 'Playfair Display', serif;
	font-size: 36px;
	font-weight: 800;
	color: #1a1a1a;
}

#how-to-order .space-y-6 > * + * {
	margin-top: 24px;
}

#how-to-order .space-y-2 > * + * {
	margin-top: 8px;
}

#how-to-order .space-y-2 p {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
}

#how-to-order .text-gray-600 {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	max-width: 280px;
}

/* 步骤圆形容器 */
#how-to-order .flex {
	display: flex;
}

#how-to-order .flex-col {
	flex-direction: column;
}

#how-to-order .items-center {
	align-items: center;
}

#how-to-order .justify-center {
	justify-content: center;
}

#how-to-order .gap-4 {
	gap: 16px;
}

#how-to-order .gap-8 {
	gap: 32px;
}

#how-to-order .space-y-2 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* 圆形图片 */
.how-to-order-circle {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background-color: #eaddcf;
	overflow: hidden;
	border: 4px solid white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
}

.how-to-order-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.how-to-order-circle.step-3 {
	width: 112px;
	height: 112px;
	margin-top: -16px;
	z-index: 10;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.how-to-order-number {
	font-size: 24px;
	font-weight: 900;
	color: #1a1a1a;
}

/* 响应式设计 */
@media (max-width: 768px) {
	#how-to-order {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	#how-to-order h2 {
		font-size: 28px;
	}

	.how-to-order-circle {
		width: 80px;
		height: 80px;
		border-width: 3px;
	}

	.how-to-order-circle.step-3 {
		width: 96px;
		height: 96px;
		margin-top: -12px;
	}

	#how-to-order .gap-4 {
		gap: 12px;
	}
}

@media (max-width: 640px) {
	#how-to-order {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	#how-to-order h2 {
		font-size: 24px;
	}

	#how-to-order .space-y-2 p {
		font-size: 14px;
	}

	.how-to-order-circle {
		width: 72px;
		height: 72px;
		border-width: 3px;
	}

	.how-to-order-circle.step-3 {
		width: 84px;
		height: 84px;
		margin-top: -12px;
	}

	.how-to-order-number {
		font-size: 20px;
	}

	#how-to-order .gap-4 {
		gap: 8px;
	}
}
