/* Tooto Process Steps */

.tooto-process-steps {
	position: relative;
	padding: 0;
	max-width: 900px;
}

.tooto-step-item {
	position: relative;
	padding: 0 0 60px 0;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.tooto-step-item.animate-in {
	opacity: 1;
	transform: translateY(0);
}

/* 连接线容器 */
.tooto-step-connector {
	position: absolute;
	left: 28px;
	top: 70px;
	width: 2px;
	height: 0;
	background: #D8D8D8;
	transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.tooto-step-item.line-drawn .tooto-step-connector {
	height: calc(100% - 70px);
}

.tooto-step-item:last-child .tooto-step-connector {
	display: none;
}

/* Step Header */
.tooto-step-header {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 16px;
}

/* Step Number */
.tooto-step-number {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: #644831;
	font-size: 32px;
	font-weight: 400;
	position: relative;
	z-index: 2;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tooto-step-item.number-shown .tooto-step-number {
	opacity: 1;
	transform: scale(1);
}

/* Step Title */
.tooto-step-header .tooto-step-title {
	flex: 1;
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.5s ease;
	transition-delay: 0.2s;
}

.tooto-step-item.number-shown .tooto-step-title {
	opacity: 1;
	transform: translateX(0);
}

/* Step Body */
.tooto-step-body {
	padding-left: 80px;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.5s ease;
	transition-delay: 0.3s;
}

.tooto-step-item.number-shown .tooto-step-body {
	opacity: 1;
	transform: translateY(0);
}

/* Step Content */
.tooto-step-content {
	margin-bottom: 20px;
	color: #666;
	font-size: 16px;
	line-height: 1.7;
}

.tooto-step-content p {
	margin: 0 0 12px 0;
}

.tooto-step-content ul {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.tooto-step-content li {
	position: relative;
	padding-left: 16px;
}

.tooto-step-content li::before {
	content: '•';
	position: absolute;
	left: 0;
	font-weight: bold;
}

/* Step Button */
.tooto-step-button {
	display: inline-block;
	padding: 14px 36px;
	background: #D4AF7A;
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(10px);
	transition-delay: 0.5s;
}

.tooto-step-item.number-shown .tooto-step-button {
	opacity: 1;
	transform: translateY(0);
	transition: all 300ms;
}

.tooto-step-button:hover {
	background: #C9A56A;
	box-shadow: 0 4px 15px rgba(212, 175, 122, 0.3);
	transform: translateY(-2px);
}

/* 响应式 */
@media (max-width: 768px) {
	.tooto-process-steps {
		padding: 20px 0;
	}

	.tooto-step-item {
		padding: 0 0 32px 0;
	}

	.tooto-step-header {
		gap: 16px;
		margin-bottom: 6px;
		align-items: start;
	}

	.tooto-step-number {
		width: 32px;
		height: 32px;
		font-size: 28px;
	}

	.tooto-step-connector {
		left: 16px;
		top: 40px;
		width: 1px;
	}

	.tooto-step-item.line-drawn .tooto-step-connector {
		height: calc(100% - 60px);
	}

	.tooto-step-header .tooto-step-title {
		font-size: 24px;
		padding-top: 4px;
	}

	.tooto-step-body {
		padding-left: 50px;
	}

	.tooto-step-content {
		font-size: 15px;
	}

	.tooto-step-button {
		padding: 12px 28px;
		font-size: 14px;
	}
}
