/* ================= ZARO THANK YOU PAGE ================= */

.zaro-ty-wrap {
	max-width: 950px;
	margin: 40px auto;
	padding: 0 20px;
}

/* ---------- Hero ---------- */
.zaro-ty-hero {
	text-align: center;
	position: relative;
	padding: 20px 0 10px;
}
.zaro-ty-confetti {
	position: relative;
	height: 24px;
	margin-bottom: -10px;
}
.zaro-ty-star {
	position: absolute;
	color: #f5a623;
	font-size: 14px;
}
.zaro-ty-star.s1 { left: 20%; top: 0; font-size: 12px; }
.zaro-ty-star.s2 { left: 32%; top: 14px; font-size: 8px; }
.zaro-ty-star.s3 { left: 46%; top: -4px; font-size: 16px; }
.zaro-ty-star.s4 { left: 58%; top: 10px; font-size: 8px; }
.zaro-ty-star.s5 { left: 68%; top: 0; font-size: 12px; }
.zaro-ty-star.s6 { left: 78%; top: 14px; font-size: 10px; }

.zaro-ty-check {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #eafcf0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.zaro-ty-title {
	font-size: 22px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 8px;
}
.zaro-ty-woohoo {
	color: #1fae4d;
}
.zaro-ty-subtitle {
	color: #666;
	font-size: 14px;
	margin: 0 0 24px;
}

/* ---------- Progress tracker ---------- */
.zaro-ty-tracker {
	max-width: 700px;
	margin: 0 auto 32px;
}
.zaro-ty-tracker-line {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.zaro-ty-tracker-line::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	height: 2px;
	background: #ddd;
	z-index: 0;
}
.zaro-ty-tracker-step {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
}
.zaro-ty-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}
.zaro-ty-tracker-step.done .zaro-ty-dot {
	background: #1fae4d;
	border-color: #1fae4d;
}
.zaro-ty-tracker-step strong {
	font-size: 13px;
	color: #1a1a1a;
	font-weight: 700;
}
.zaro-ty-tracker-step span {
	font-size: 11px;
	color: #999;
}

/* ---------- What happens next ---------- */
.zaro-ty-next {
	text-align: center;
	margin-bottom: 24px;
}
.zaro-ty-next h2 {
	font-size: 18px;
	font-weight: 800;
	color: #1fae4d;
	margin: 0 0 20px;
}
.zaro-ty-next-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.zaro-ty-next-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.zaro-ty-next-icon {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #1fae4d;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.zaro-ty-next-num {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #0a5c36;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}
.zaro-ty-next-step strong {
	font-size: 13px;
	color: #1a1a1a;
	margin-bottom: 4px;
}
.zaro-ty-next-step p {
	font-size: 12px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 700px) {
	.zaro-ty-next-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* ---------- View order button ---------- */
.zaro-ty-view-btn {
	display: block;
	max-width: 260px;
	margin: 0 auto 12px;
	background: #0D0D0D;
	color: #fff !important;
	text-align: center;
	padding: 14px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none !important;
}
.zaro-ty-view-btn:hover {
	background: #1fae4d;
}
.zaro-ty-note {
	text-align: center;
	font-size: 12.5px;
	color: #888;
	margin: 0 0 32px;
}
.zaro-ty-note a {
	color: #1fae4d;
	font-weight: 700;
}

/* ---------- Generic card ---------- */
.zaro-ty-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* ---------- Order details ---------- */
.zaro-ty-order-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 16px;
}
.zaro-ty-order-header h2 {
	font-size: 17px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0;
}
.zaro-ty-order-header span {
	font-size: 12.5px;
	color: #888;
}

.zaro-ty-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}
.zaro-ty-item-img img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 8px;
}
.zaro-ty-item-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.zaro-ty-item-info strong {
	font-size: 14px;
	color: #1a1a1a;
}
.zaro-ty-item-info span {
	font-size: 12px;
	color: #888;
}
.zaro-ty-item-price {
	font-weight: 700;
	color: #1a1a1a;
	font-size: 14px;
}

.zaro-ty-order-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 16px;
}
.zaro-ty-address h3,
.zaro-ty-payment h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
	padding-bottom: 6px;
	border-bottom: 2px solid #eafcf0;
}
.zaro-ty-address p {
	font-size: 13px;
	color: #444;
	line-height: 1.7;
	margin: 0;
}
.zaro-ty-payment p {
	font-size: 13px;
	color: #444;
	margin: 0 0 12px;
}
.zaro-ty-payment h4 {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
}
.zaro-ty-price-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: #555;
	padding: 4px 0;
}
.zaro-ty-price-row.zaro-ty-price-total {
	font-weight: 800;
	color: #1a1a1a;
	font-size: 15px;
	border-top: 1px solid #eee;
	margin-top: 6px;
	padding-top: 10px;
}
.zaro-ty-free {
	color: #1fae4d;
	font-weight: 700;
}

@media (max-width: 600px) {
	.zaro-ty-order-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Need help ---------- */
.zaro-ty-help {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	background: #f7fdf9;
	border-color: #d9f2e3;
}
.zaro-ty-help-left {
	display: flex;
	align-items: center;
	gap: 12px;
}
.zaro-ty-help-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #eafcf0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.zaro-ty-help-left strong {
	display: block;
	font-size: 14px;
	color: #1a1a1a;
	margin-bottom: 2px;
}
.zaro-ty-help-left p {
	font-size: 12.5px;
	color: #666;
	margin: 0;
}
.zaro-ty-help-right {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.zaro-ty-help-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a !important;
	text-decoration: none !important;
}
.zaro-ty-help-btn span {
	font-weight: 400;
	color: #999;
	font-size: 11px;
}

/* ---------- Facebook follow ---------- */
.zaro-ty-fb {
	display: flex;
	align-items: center;
	gap: 14px;
}
.zaro-ty-fb-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #1877F2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.zaro-ty-fb-info {
	flex: 1;
}
.zaro-ty-fb-info strong {
	display: block;
	font-size: 14px;
	color: #1a1a1a;
}
.zaro-ty-fb-info p {
	font-size: 12.5px;
	color: #666;
	margin: 4px 0 0;
	line-height: 1.5;
}
.zaro-ty-fb-btn {
	background: #1877F2;
	color: #fff !important;
	border-radius: 8px;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	flex-shrink: 0;
}

/* ---------- Trust badges ---------- */
.zaro-ty-trust {
	display: flex;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
	padding: 16px 0 30px;
}
.zaro-ty-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.zaro-ty-trust-item strong {
	display: block;
	font-size: 12.5px;
	color: #1a1a1a;
}
.zaro-ty-trust-item span {
	font-size: 11px;
	color: #888;
}

@media (max-width: 480px) {
	.zaro-ty-title {
		font-size: 18px;
	}
	.zaro-ty-help {
		flex-direction: column;
		align-items: flex-start;
	}
	.zaro-ty-trust {
		gap: 16px;
	}
}
.woocommerce-order-received .entry-header, .woocommerce-order-received .page-header, .woocommerce-order-received .ast-container > .ast-woocommerce-container > .page-title, .woocommerce-order-received h1.entry-title { display:none !important; }
.zaro-ty-wrap { margin: 5px auto 40px; }
.zaro-ty-hero { padding: 0 0 10px; }