/* Do or Drink Paywall — Paywall & Progress Styles */

.dodp-progress-wrap {
	margin-bottom: 18px;
}

.dodp-progress-count {
	font-size: 13px;
	color: var(--dodp-muted, #9a9aa2);
	text-align: center;
	margin-bottom: 8px;
	letter-spacing: 0.04em;
}

.dodp-progress-track {
	width: 100%;
	height: 8px;
	border-radius: 999px;
	background: #232326;
	overflow: hidden;
}

.dodp-progress-fill {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #ff2e63, #ff5f8f);
	transition: width 0.35s ease;
}

.dodp-paywall-card {
	text-align: center;
}

.dodp-lock-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	display: block;
}

.dodp-paywall-heading {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 10px;
}

.dodp-paywall-copy {
	color: var(--dodp-muted, #9a9aa2);
	font-size: 14px;
	margin: 0 0 22px;
}

.dodp-price-tag {
	display: inline-block;
	font-size: 34px;
	font-weight: 800;
	margin: 0 0 24px;
	background: linear-gradient(135deg, #ff2e63, #ff5f8f);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.dodp-paypal-container {
	margin-top: 8px;
	min-height: 45px;
}

.dodp-paywall-error {
	color: #ff6b6b;
	font-size: 13px;
	margin-top: 14px;
	display: none;
}

.dodp-paywall-error.is-visible {
	display: block;
}

.dodp-success-icon,
.dodp-complete-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	display: block;
}

.dodp-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

.dodp-modal-overlay.is-visible {
	display: flex;
}

.dodp-modal-box {
	background: var(--dodp-card-bg, #141416);
	border: 1px solid var(--dodp-card-border, #232326);
	border-radius: 18px;
	padding: 26px;
	max-width: 360px;
	width: 100%;
	text-align: center;
	color: var(--dodp-text, #f5f5f7);
}

.dodp-modal-box p {
	font-size: 14px;
	color: var(--dodp-muted, #9a9aa2);
	margin: 10px 0 20px;
}

.dodp-loading-screen {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
}

.dodp-loading-screen.is-visible {
	display: flex;
}

.dodp-spinner {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 3px solid #232326;
	border-top-color: #ff2e63;
	animation: dodp-spin 0.8s linear infinite;
}
