/**
 * FashionPoint Booking - Phone Verification Styles
 *
 * @since 2.5.0
 */

/* ==========================================================================
	Phone Verification
	========================================================================== */

.fp-booking .phone-verification {
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	gap: 16px;
	min-height: auto;
	justify-content: flex-start;
}

.fp-booking .phone-container {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.fp-booking .phone-container {
		padding: 0;
		max-width: 480px;
	}
}

.fp-booking .phone-hero {
	width: 100%;
	max-width: 520px;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #e2e8f0;
	border-radius: var(--fp-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--fp-shadow-lg);
}

@media (min-width: 768px) {
	.fp-booking .phone-hero {
		padding: 2rem;
	}
}

.fp-booking .phone-hero h2 {
	margin: 8px 0 6px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
}

.fp-booking .hero-copy {
	margin: 0;
	color: #cbd5e1;
	font-size: 15px;
}

.fp-booking .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(255,255,255,0.1);
	color: #f8fafc;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.fp-booking .hero-meta {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fp-booking .meta-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 10px;
	background: rgba(255,255,255,0.12);
	color: #e2e8f0;
	font-size: 13px;
}

.fp-booking .meta-secure svg {
	color: #22c55e;
}

.fp-booking .phone-input-section,
.fp-booking .verification-section,
.fp-booking .verification-success {
	background: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	text-align: center;
}

.fp-booking .phone-input-section .card-head {
	text-align: left;
	margin-bottom: 18px;
}

.fp-booking .phone-input-section .card-head h2 {
	margin: 8px 0 6px;
	font-size: 20px;
	line-height: 1.35;
	color: #0f172a;
}

.fp-booking .phone-input-section .card-head .hero-copy {
	margin: 0;
	color: #4b5563;
	font-size: 14px;
}

.fp-booking .phone-input-section .hero-meta {
	margin-top: 12px;
	gap: 6px;
}

.fp-booking .phone-input-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	border: none;
	border-bottom: 2px solid #ede6d6;
	border-radius: 0;
	padding: 6px 0 10px 0;
	transition: border-color 160ms ease, background 160ms ease;
	background: transparent;
}

.fp-booking .phone-input-wrapper:focus-within {
	border-color: #d6ae47;
	background: transparent;
}

.fp-booking .phone-prefix {
	font-weight: 600;
	color: #6b7280;
}

.fp-booking .phone-input-wrapper input {
	flex: 1;
	border: none;
	padding: 14px 0;
	font-size: 16px;
	outline: none;
}

.fp-booking .label-strong {
	font-weight: 700;
	font-size: 14px;
	color: #0f172a;
}

.fp-booking .form-hint {
	margin: 8px 0 0 0;
	font-size: 12px;
	color: #6b7280;
}

.fp-booking .btn-send-code,
.fp-booking .btn-verify,
.fp-booking .btn-resend {
	width: 100%;
	padding: 12px 18px;
	border: none;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all 160ms ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.fp-booking .btn-send-code,
.fp-booking .btn-verify {
	background: linear-gradient(135deg, var(--fp-primary), var(--fp-primary-dark));
	color: #fff;
	box-shadow: 0 4px 12px rgba(var(--fp-primary-rgb), 0.3);
}

.fp-booking .btn-send-code:hover,
.fp-booking .btn-verify:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--fp-primary-rgb), 0.4);
}

.fp-booking .btn-send-code:disabled,
.fp-booking .btn-verify:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.fp-booking .btn-resend {
	background: transparent;
	color: #c69a2e;
	margin-top: 10px;
	box-shadow: none;
}

.fp-booking .btn-resend:hover {
	background: #fef3c7;
}

.fp-booking .verification-icon,
.fp-booking .success-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, var(--fp-primary), var(--fp-primary-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 12px rgba(var(--fp-primary-rgb), 0.3);
}

@media (min-width: 768px) {
	.fp-booking .verification-icon,
	.fp-booking .success-icon {
		width: 100px;
		height: 100px;
	}
}

/* (Old success screen styles removed — see "Booking Success Screen – Clean & Modern" section below) */



.fp-booking .code-input-group {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: 6px 0 10px;
}

.fp-booking .code-digit {
	width: 48px;
	height: 48px;
	border: 2px solid var(--fp-border);
	border-radius: var(--fp-radius);
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	outline: none;
	transition: var(--fp-transition);
	background: var(--fp-surface);
}

.fp-booking .code-digit:focus {
	border-color: var(--fp-primary);
	box-shadow: 0 0 0 3px rgba(var(--fp-primary-rgb), 0.2);
}

@media (min-width: 768px) {
	.fp-booking .code-digit {
		width: 56px;
		height: 56px;
		font-size: 20px;
	}
}

.fp-booking .verification-error {
	margin-top: 16px;
	padding: 12px;
	background: #fee2e2;
	border-radius: 8px;
	color: #991b1b;
	font-size: 14px;
}

@media (max-width: 540px) {
	.fp-booking .datetime-container,
	.fp-booking .calendar-section,
	.fp-booking .phone-container,
	.fp-booking .phone-hero {
		width: 100%;
		max-width: none;
		border-radius: 0;
		box-shadow: none;
	}
	.fp-booking .verification-success {
		border-radius: 14px;
	}

	.fp-booking .phone-hero h2 {
		font-size: 20px;
	}

	.fp-booking .meta-chip {
		font-size: 12px;
	}

	.fp-booking .code-digit {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}
}
