/* Box tư vấn báo giá shortcode [quote_box] */
.pp-quote-box {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	min-height: 98px;
	padding: 18px 24px;
	border: 1px solid #ffd1ae;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 2px 3px rgba(67, 35, 15, 0.1);
	box-sizing: border-box;
}
.pp-quote-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #ffeadb;
	color: #ff5100;
}
.pp-quote-icon svg {
	width: 25px;
	height: 25px;
}
.pp-quote-copy {
	min-width: 0;
	flex: 1;
}
.pp-quote-title {
	color: #24160e;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}
.pp-quote-subtitle {
	margin-top: 3px;
	color: #756b65;
	font-size: 14px;
	line-height: 1.5;
}
.pp-quote-button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 24px;
	border-radius: 9px;
	background: #f45108;
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 3px 5px rgba(245, 81, 8, 0.22);
	transition:
		background 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
}
.pp-quote-button:hover {
	background: #d94100;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(245, 81, 8, 0.26);
}
@media (max-width: 600px) {
	.pp-quote-box {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 12px;
		padding: 16px;
	}
	.pp-quote-icon {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
	}
	.pp-quote-icon svg {
		width: 22px;
		height: 22px;
	}
	.pp-quote-copy {
		flex: 1;
	}
	.pp-quote-title {
		font-size: 16px;
	}
	.pp-quote-subtitle {
		font-size: 13px;
	}
	.pp-quote-button {
		width: 100%;
		min-height: 42px;
	}
}
.margin-top-48 {
	margin-top: 48px;
}