/**
 * FashionPoint Booking App - Component Styles
 *
 * Individual component styles for booking flow.
 *
 * @since 2.5.0
 */

/* ==========================================================================
	Location Selection
	========================================================================== */

.locations-grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

/* Booking step: card wrapper */
.category-selection .booking-card-wrapper {
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
	touch-action: manipulation;
}

/* Mobile service cards - ensure they are clickable */
@media (max-width: 768px) {
	.fashionpoint-service-card,
	.service-card,
	.package-card {
		cursor: pointer !important;
		pointer-events: auto !important;
		-webkit-tap-highlight-color: rgba(201, 150, 58, 0.2);
		touch-action: manipulation;
		position: relative;
		z-index: 1;
	}
	
	.fashionpoint-service-card:hover,
	.service-card:hover,
	.package-card:hover {
		transform: scale(0.98);
		transition: transform 0.1s ease;
	}
	
	.fashionpoint-service-card:active,
	.service-card:active,
	.package-card:active {
		transform: scale(0.96);
		transition: transform 0.1s ease;
	}
}

/* Selected state for booking cards */
.category-selection .booking-card-wrapper.selected .fashionpoint-service-card {
	border-color: var(--fp-primary, #f7c556) !important;
	box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(var(--fp-primary-rgb, 247, 197, 86), 0.25) !important;
	background: linear-gradient(135deg, rgba(247, 197, 86, 0.05) 0%, rgba(247, 197, 86, 0.02) 100%) !important;
}

/* Enhanced selected state for mobile cards */
@media (max-width: 768px) {
	.fashionpoint-service-card.selected,
	.service-card.selected,
	.package-card.selected {
		border-color: var(--fp-primary, #f7c556) !important;
		border-width: 2px !important;
		box-shadow: 0 8px 25px rgba(247, 197, 86, 0.3), 0 0 0 3px rgba(247, 197, 86, 0.15) !important;
		background: linear-gradient(135deg, rgba(247, 197, 86, 0.08) 0%, rgba(247, 197, 86, 0.03) 100%) !important;
		transform: scale(1.02) !important;
		transition: all 0.2s ease !important;
		position: relative;
		z-index: 10;
	}
	
	/* Add selection indicator */
	.fashionpoint-service-card.selected::before,
	.service-card.selected::before,
	.package-card.selected::before {
		content: '✓';
		position: absolute;
		top: 8px;
		right: 8px;
		width: 24px;
		height: 24px;
		background: var(--fp-primary, #f7c556);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		font-weight: bold;
		z-index: 11;
		box-shadow: 0 2px 8px rgba(247, 197, 86, 0.4);
	}
	
	/* Highlight selected card title */
	.fashionpoint-service-card.selected .fp-card-title,
	.service-card.selected .fp-card-title,
	.package-card.selected .fp-card-title {
		color: var(--fp-primary, #f7c556) !important;
		font-weight: 600 !important;
	}
	
	/* Highlight selected card price */
	.fashionpoint-service-card.selected .fp-card-current-price,
	.service-card.selected .fp-card-current-price,
	.package-card.selected .fp-card-current-price {
		color: var(--fp-primary, #f7c556) !important;
		font-weight: 700 !important;
	}
}

@media (min-width: 768px) {
	.locations-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 2rem;
	}
}

@media (min-width: 1024px) {
	.locations-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.location-card {
	display: flex;
	gap: 1rem;
	background: var(--fp-background);
	border: 2px solid var(--fp-border);
	border-radius: var(--fp-radius-lg);
	padding: 1rem;
	cursor: pointer;
	transition: var(--fp-transition);
	position: relative;
}

.location-card.selected {
	border-color: var(--fp-primary);
	background: var(--fp-primary);
	background: linear-gradient(135deg, var(--fp-primary) 0%, var(--fp-primary-light) 100%);
	color: white;
}

.location-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: var(--fp-radius);
	overflow: hidden;
	background: var(--fp-surface);
	display: flex;
	align-items: center;
	justify-content: center;
}

.location-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-placeholder {
	color: var(--fp-text-lighter);
}

.location-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.location-name {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0;
	color: inherit;
}

.location-address,
.location-phone,
.location-hours {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: inherit;
	opacity: 0.8;
}

.location-address svg,
.location-phone svg,
.location-hours svg {
	flex-shrink: 0;
}

.location-select {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.radio-button {
	position: relative;
}

.radio-button input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.radio-button label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 2px solid var(--fp-border);
	border-radius: 50%;
	background: var(--fp-background);
	cursor: pointer;
	transition: var(--fp-transition);
}

.radio-button input[type="radio"]:checked + label {
	border-color: var(--fp-primary);
	background: var(--fp-primary);
}

.radio-button input[type="radio"]:checked + label::after {
	content: '';
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
}

.location-details {
	background: var(--fp-surface);
	border-radius: var(--fp-radius);
	padding: 1rem;
	margin-top: 1rem;
}

.details-content h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--fp-text);
}

.selected-info {
	color: var(--fp-text-light);
}

.selected-name {
	font-weight: 500;
	color: var(--fp-text);
}

/* Hero location cards (gold CTA style) */
.loc-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
}

.loc-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (min-width: 768px) {
	.loc-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 16px;
		width: 100%;
		max-width: none;
	}
}

.loc-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 12px;
	width: 100%;
	position: relative;
	cursor: pointer;
	border-radius: var(--fp-radius-lg);
	transition: var(--fp-transition);
	background: #ffffff;
	border: 2px solid transparent;
}

@media (min-width: 768px) {
	.loc-item {
		flex-direction: row;
		align-items: center;
		gap: 12px;
		padding: 12px 14px;
	}
}

@media (min-width: 1024px) {
	.loc-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		justify-items: center;
		justify-content: center;
		align-items: stretch;
		max-width: 1200px;
		margin: 0 auto;
	}

	/* Desktop: force column layout (image top, text below) with high specificity */
	.fp-booking .loc-step .loc-grid .loc-item,
	.fp-booking .loc-step .loc-grid .loc-item.loc-item {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 12px;
		padding: 14px;
		width: 100%;
		max-width: 320px;
		height: 100%;
	}

	.fp-booking .loc-step .loc-grid .loc-item__img,
	.fp-booking .loc-step .loc-grid .loc-item .loc-item__img {
		flex: 0 0 150px;
		height: 150px;
		width: 150px;
		margin: 0 auto;
	}

	.fp-booking .loc-step .loc-grid .loc-item__name,
	.fp-booking .loc-step .loc-grid .loc-item__addr,
	.fp-booking .loc-step .loc-grid .loc-item .loc-item__name,
	.fp-booking .loc-step .loc-grid .loc-item .loc-item__addr {
		text-align: center;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin: 0 auto;
	}

	.fp-booking .loc-step .loc-grid .loc-item__name {
		margin-top: 6px;
		min-height: 48px;
	}

	.fp-booking .loc-step .loc-grid .loc-item__addr,
	.fp-booking .loc-step .loc-grid .loc-item .loc-item__addr {
		flex-direction: column;
		gap: 6px;
		align-items: center;
		min-height: 44px;
	}

	.fp-booking .loc-step .loc-grid .loc-item__addr span,
	.fp-booking .loc-step .loc-grid .loc-item .loc-item__addr span {
		display: block;
		text-align: center;
		width: 100%;
		white-space: normal;
	}
}

.loc-item__img {
	width: 100%;
	height: 150px;
	background: #f9fafb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
	.loc-item__img {
		flex: 0 0 140px;
		height: 110px;
	}
}

.loc-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.loc-item__name {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--fp-text);
	letter-spacing: -0.01em;
	text-align: center;
}

@media (min-width: 768px) {
	.loc-item__name {
		font-size: 20px;
	}
}

.loc-item__addr {
	font-size: 14px;
	color: var(--fp-text-light);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 4px;
	text-align: center;
	flex-direction: row;
}

@media (min-width: 768px) {
	.loc-item__addr {
		font-size: 15px;
	}
}

.loc-item.is-selected .loc-item__name,
.loc-item.is-selected .loc-item__addr { color: inherit; }

.loc-item.is-selected {
	background: transparent;
	box-shadow: none;
	border: none;
	transform: none;
}

.loc-item input[type="radio"] {
	display: none;
}

.loc-selected {
	display: none;
	padding: 16px;
	background: rgba(214, 174, 71, 0.1);
	border-radius: 12px;
	margin-top: 24px;
	text-align: center;
}

.loc-selected h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 600;
	color: #d6ae47;
	text-transform: uppercase;
}

.loc-selected__name {
	font-weight: 600;
	font-size: 16px;
	color: #333;
	margin-bottom: 4px;
}

.loc-selected__addr {
	font-size: 14px;
	color: #666;
}

.loc-card {
	background: #ffffff;
	border-radius: var(--fp-radius-xl);
	padding: 24px;
	border: 2px solid #e5e7eb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	transition: var(--fp-transition);
	overflow: hidden;
	width: 100%;
	text-align: center;
}

.loc-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--fp-shadow-lg);
	border-color: var(--fp-primary-light);
}

.loc-card.is-selected {
	border-color: var(--fp-primary);
	box-shadow: 0 18px 54px rgba(var(--fp-primary-rgb), 0.26);
}

@media (min-width: 768px) {
	.loc-card {
		padding: 32px;
	}
}

.loc-card__img {
	width: 100%;
	height: 200px;
	background: var(--fp-surface);
	overflow: hidden;
	border-radius: var(--fp-radius-lg);
}

@media (min-width: 768px) {
	.loc-card__img {
		height: 240px;
	}
}

.loc-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 20px;
}

.loc-card__img-placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	color: #d1d5db;
}

.loc-card__body {
	padding: 18px 6px 6px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

.loc-card__city { display: none; }

.loc-card__name {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--fp-text);
	letter-spacing: -0.01em;
}

@media (min-width: 768px) {
	.loc-card__name {
		font-size: 20px;
	}
}

.loc-card__address {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--fp-text-light);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.loc-card__address {
		font-size: 16px;
	}
}

.loc-card__address svg { flex-shrink: 0; color: #c8a491; margin-top: 1px; }

.loc-card__meta { display: none; }
.loc-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 10px; background: #f4f5f7; color: #6b7280; }
.loc-badge svg { color: #c8a491; flex-shrink: 0; }

.loc-card__radio { display: none; }
.loc-card__radio input { display: none; }
.loc-card__radio label {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #d1d5db;
	display: block;
	cursor: pointer;
}

.loc-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	margin-top: 16px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--fp-primary), var(--fp-primary-dark));
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.01em;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(var(--fp-primary-rgb), 0.3);
	transition: var(--fp-transition);
	min-width: 160px;
}

.loc-card__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--fp-primary-rgb), 0.4);
}

.loc-card__cta:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(var(--fp-primary-rgb), 0.3);
}

@media (min-width: 768px) {
	.loc-card__cta {
		padding: 14px 32px;
		font-size: 15px;
	}
}

/* Selected summary */
.loc-selected {
	margin-top: 14px;
	padding: 12px 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px dashed #e5e7eb;
}

.loc-selected h4 {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.loc-selected__name { font-weight: 600; color: #1f2a38; }
.loc-selected__addr { color: #6b7280; font-size: 13px; }

/* Empty state */
.loc-empty {
	text-align: center;
	padding: 40px 20px;
	background: #fff;
	border-radius: 16px;
	border: 1px dashed #e5e7eb;
	color: #6b7280;
}

.loc-empty svg { color: #d1d5db; margin-bottom: 12px; }
.loc-empty h3 { margin: 0 0 4px; color: #1f2a38; font-size: 16px; }
.loc-empty p { margin: 2px 0; font-size: 14px; }

/* ==========================================================================
	Category Selection
	========================================================================== */

/* Category selection container */
.category-selection {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
}

.categories-container {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
}

.categories-scroll-container {
	overflow-x: hidden;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
}

@media (max-width: 767px) {
	.categories-scroll-container {
		margin: 0;
		padding: 0;
	}
}


.categories-track {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-bottom: 0;
	min-width: auto;
	width: 100%;
	min-height: min-content;
}

@media (min-width: 768px) {
	.categories-track {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.categories-track {
		gap: 16px;
	}
}

.categories-track-stack {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-bottom: 0;
	min-width: auto;
	width: 100%;
	min-height: min-content;
}

.fashionpoint-category-section {
	margin-bottom: 0;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	pointer-events: auto;
}

/* Collapse using max-height/opacity for smooth animation (matching all-services-table.css) */
.fashionpoint-category-section.collapsed .category-services,
.fashionpoint-category-section.collapsed .fashionpoint-category-content {
	max-height: 0 !important;
	opacity: 0 !important;
	overflow: hidden !important;
}

.fashionpoint-category-content {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	max-height: none;
	opacity: 1;
	transition: max-height 0.35s ease, opacity 0.25s ease;
}

.fashionpoint-category-section.collapsed .fashionpoint-category-content {
	max-height: 0;
	opacity: 0;
}

.category-card.selected::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px #d6ae47;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231f1f1f" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/12px 12px no-repeat;
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231f1f1f" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/12px 12px no-repeat;
}

.category-card.selected .category-name,
.category-card.selected .category-description,
.category-card.selected .service-count {
	color: #1f1f1f;
}

.category-card.selected .service-count svg {
	color: #1f1f1f;
}

.category-card.selected .category-description { opacity: 0.9; }

.category-card.selected .checkbox label {
	border-color: var(--fp-border);
	background: #fff;
}

.category-card.selected .checkbox input[type="checkbox"]:checked + label {
	border-color: var(--fp-primary);
	background: var(--fp-primary);
}

.category-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	border-radius: var(--fp-radius-lg);
	overflow: hidden;
	background: var(--fp-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

@media (min-width: 768px) {
	.category-icon {
		width: 80px;
		height: 80px;
	}
}

.category-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-content {
	text-align: center;
}

.category-description {
	font-size: 14px;
	color: #6b7280;
	margin: 6px 0 0 0;
	line-height: 1.4;
}

.category-meta {
	display: flex;
	justify-content: center;
}

.service-count {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	opacity: 0.7;
}

.category-select {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
}

.checkbox {
	position: relative;
}

.checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
}

.checkbox label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 2px solid var(--fp-border);
	border-radius: var(--fp-radius);
	background: var(--fp-background);
	cursor: pointer;
	transition: var(--fp-transition);
}

.checkbox input[type="checkbox"]:checked + label {
	border-color: var(--fp-primary);
	background: var(--fp-primary);
}

.checkbox label svg {
	display: none;
	width: 12px;
	height: 12px;
	stroke: white;
	stroke-width: 3;
}

.fashionpoint-category-header {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	padding: 16px 18px;
	margin: 0 0 0 0;
	border: none;
	background: #eadbc3;
	transition: all 0.25s ease;
	justify-content: center;
	position: relative;
	flex-wrap: wrap;
	border-radius: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
	pointer-events: auto;
}

.fashionpoint-category-toggle {
	cursor: pointer;
}

.fashionpoint-category-toggle:hover {
	opacity: 0.85;
}

.fashionpoint-category-header h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	color: #2a2520;
	text-transform: uppercase;
	text-align: center;
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.fashionpoint-category-name-container {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-align: center;
}

.fashionpoint-category-name-container h2,
.fashionpoint-category-name-container h3 {
	margin: 0;
	width: 100%;
	text-align: center;
}

.fashionpoint-category-name-container h2 {
	margin: 0;
	font-size: 18px;
	width: 100%;
	text-align: center;
}

.fashionpoint-category-price {
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
	margin-top: 4px;
}

.fashionpoint-category-promo-badge-container {
	display: flex;
	justify-content: center;
	position: static;
	margin-top: 6px;
	width: 100%;
}

.fashionpoint-category-promo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: #8a620a;
	background: #eadbc3;
	padding: 6px 10px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(212, 175, 55, 0.28);
}

.fashionpoint-category-promo-badge svg {
	color: #ffffff;
}

.fashionpoint-category-chevron-container {
	display: none;
}

.fashionpoint-category-chevron {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: transparent;
	transition: transform 0.25s ease, background 0.2s ease;
}

.fashionpoint-category-chevron svg {
	display: block;
	color: #2a2520;
	width: 16px;
	height: 16px;
	transition: transform 0.25s ease;
}

.fashionpoint-category-section.collapsed .fashionpoint-category-chevron svg {
	transform: rotate(-90deg);
}

/* ── Theme-aware category headers ──────────────────────────── */

/* Premium Gold Theme */
.category-selection.theme-premium-gold .fashionpoint-category-header {
	background: #eadbc3;
}

.category-selection.theme-premium-gold .fashionpoint-category-header h2 {
	color: #2a2520;
	font-weight: 800;
}

.category-selection.theme-premium-gold .fashionpoint-category-section {
	border-radius: 0;
	box-shadow: none;
}

.category-selection.theme-premium-gold .fashionpoint-category-header {
	border-radius: 0;
}

.category-selection.theme-premium-gold .fashionpoint-category-section.collapsed .fashionpoint-category-header {
	border-radius: 0;
}

.category-selection.theme-premium-gold .fashionpoint-category-promo-badge {
	background: #d4af37;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(212, 175, 55, 0.28);
}

.category-selection.theme-premium-gold .fashionpoint-category-promo-badge svg {
	color: #ffffff;
}

.category-selection.theme-premium-gold .fashionpoint-category-chevron {
	background: transparent;
}

.category-selection.theme-premium-gold .fashionpoint-category-chevron svg {
	color: #2a2520;
}

/* Premium Black Theme */
.category-selection.theme-premium-black .fashionpoint-category-header {
	background: #f5f3ed;
	padding: 16px 28px 16px 18px;
}

.category-selection.theme-premium-black .fashionpoint-category-header h2 {
	color: #000000;
	font-weight: 800;
}

.category-selection.theme-premium-black .fashionpoint-category-promo-badge {
	background: linear-gradient(135deg, #c9963a 0%, #b8852e 100%);
	color: #000000;
}

.category-selection.theme-premium-black .fashionpoint-category-promo-badge svg {
	color: #000000;
}

.category-selection.theme-premium-black .fashionpoint-category-chevron {
	background: rgba(0, 0, 0, 0.1);
}

.category-selection.theme-premium-black .fashionpoint-category-chevron svg {
	color: #000000;
}

/* Default Theme */
.category-selection.theme-default .fashionpoint-category-header {
	background: #f9fafb;
}

.category-selection.theme-default .fashionpoint-category-header h2 {
	color: #1f2937;
	font-size: 22px;
	font-weight: 700;
	text-transform: none;
}

.category-selection.theme-default .fashionpoint-category-promo-badge {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: #fff;
}

.category-selection.theme-default .fashionpoint-category-promo-badge svg {
	color: #fff;
}

.category-selection.theme-default .fashionpoint-category-chevron {
	background: #f3f4f6;
}

.category-selection.theme-default .fashionpoint-category-chevron svg {
	color: #6b7280;
}

.promo-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--fp-error);
	color: white;
	font-size: 0.625rem;
	font-weight: 600;
	padding: 0.125rem 0.375rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.scroll-indicators {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 0.5rem;
}

.scroll-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--fp-background);
	border: 1px solid var(--fp-border);
	border-radius: 50%;
	color: var(--fp-text);
	cursor: pointer;
	transition: var(--fp-transition);
	pointer-events: all;
	box-shadow: var(--fp-shadow);
}

.scroll-btn:hover {
	background: var(--fp-primary);
	color: white;
	border-color: var(--fp-primary);
}

.selection-summary {
	background: var(--fp-surface);
	border-radius: var(--fp-radius);
	padding: 1rem;
	margin-top: 1.5rem;
}

.summary-content h3 {
	margin: 0 0 0.5rem 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--fp-text);
}

.selected-count {
	font-size: 0.875rem;
	color: var(--fp-text-light);
	margin-bottom: 0.5rem;
}

.selected-categories-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.selected-category-tag {
	background: var(--fp-primary);
	color: white;
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
}

/* ==========================================================================
	Services Selection
	========================================================================== */

.services-container {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.services-section,
.packages-section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.services-section h3,
.packages-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	color: var(--fp-text);
}

.services-grid,
.packages-grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.services-grid,
	.packages-grid {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.services-grid,
	.packages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

/* Service cards use all-services mobile card styles - no overrides needed */

.package-card.featured {
	border-color: var(--fp-warning);
}

.package-card.featured::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	background: linear-gradient(45deg, var(--fp-warning), var(--fp-primary), var(--fp-warning));
	border-radius: var(--fp-radius-lg);
	z-index: -1;
	opacity: 0.3;
}

.featured-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--fp-warning);
	color: white;
	font-size: 0.625rem;
	font-weight: 600;
	padding: 0.125rem 0.375rem;
	border-radius: 9999px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 1;
}

.service-image,
.package-image {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: var(--fp-radius);
	overflow: hidden;
	background: var(--fp-surface);
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-image img,
.package-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-content,
.package-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.service-name,
.package-name {
	font-size: 0.9375rem;
	font-weight: 600;
	margin: 0;
	color: inherit;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.service-name,
	.package-name {
		font-size: 1rem;
	}
}

.service-description,
.package-description {
	font-size: 0.875rem;
	line-height: 1.4;
	margin: 0;
	opacity: 0.8;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-meta,
.package-meta {
	display: flex;
	gap: 1rem;
}

.duration,
.procedures-count {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	opacity: 0.7;
}

.service-price,
.package-price {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
}

.old-price {
	font-size: 0.875rem;
	text-decoration: line-through;
	opacity: 0.6;
}

.current-price {
	font-size: 1.125rem;
	font-weight: 600;
	color: inherit;
}

.service-select,
.package-select {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

/* ==========================================================================
	Selection Summary
	========================================================================== */

.selection-summary {
	background: var(--fp-surface);
	border-radius: var(--fp-radius);
	padding: 1rem;
	margin-top: 1.5rem;
	border: 2px solid var(--fp-border);
}

.summary-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.selection-details {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.total-items,
.total-duration {
	font-size: 0.875rem;
	color: var(--fp-text-light);
}

.total-duration {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.total-price {
	text-align: right;
}

.price-label {
	display: block;
	font-size: 0.75rem;
	color: var(--fp-text-light);
	margin-bottom: 0.25rem;
}

.price-amount {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--fp-primary);
}

/* ==========================================================================
	Touch Optimizations
	========================================================================== */

@media (hover: none) {
	.location-card:active,
	.category-card:active,
	.service-card:active,
	.package-card:active {
		transform: scale(0.98);
	}

	.back-button:active,
	.next-button:active,
	.skip-button:active {
		transform: scale(0.95);
	}
}

/* ==========================================================================
	Drag Scrolling
	========================================================================== */

.categories-scroll-container.dragging {
	scroll-behavior: auto;
	cursor: grabbing;
}

.categories-scroll-container.dragging .category-card {
	cursor: grabbing;
	pointer-events: none;
}

/* Category type toggle (services / packages) */
.step-intro {
	padding: 0;
	margin-bottom: 24px;
}

@media (max-width: 767px) {
	.step-intro {
		padding: 0;
	}
}

@media (min-width: 768px) {
	.step-intro {
		padding: 0;
	}
}

.category-toggle-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
	margin-top: 0;
	position: relative;
	z-index: 5;
	pointer-events: auto !important;
}

.category-toggle {
	display: inline-flex;
	gap: 16px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	border: none;
	box-shadow: none;
	position: relative;
	z-index: 20;
	pointer-events: auto !important;
	flex-wrap: wrap;
	justify-content: center;
}

.category-toggle::before,
.category-toggle::after {
	content: none !important;
	background: transparent !important;
	display: none !important;
}

.category-toggle .toggle-btn,
.category-toggle .fashionpoint-type-toggle-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	width: 160px;
	height: 160px;
	border-radius: 21px !important;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border: 2px solid #e5e7eb;
	background: #fff;
	color: #374151;
	cursor: pointer;
	transition: all 0.25s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
	pointer-events: auto !important;
	z-index: 10;
}

.category-toggle .toggle-btn svg,
.category-toggle .fashionpoint-type-toggle-btn svg {
	stroke: currentColor;
	width: 52px;
	height: 52px;
	transition: all 0.25s ease;
}

.fashionpoint-type-toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
}

.fashionpoint-type-toggle-label {
	white-space: nowrap;
	font-weight: 700;
	font-size: inherit;
	letter-spacing: inherit;
}

.category-toggle .toggle-btn::before,
.category-toggle .fashionpoint-type-toggle-btn::before {
	content: none !important;
	background: transparent !important;
	display: none !important;
}

.category-toggle .toggle-btn::after,
.category-toggle .fashionpoint-type-toggle-btn::after {
	content: none !important;
	background: transparent !important;
	display: none !important;
}

.category-toggle .toggle-btn:hover:not(.is-active):not(.active),
.category-toggle .fashionpoint-type-toggle-btn:hover:not(.is-active):not(.active) {
	border-color: var(--fp-primary);
	background: #fafafa;
	color: var(--fp-primary);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
	transform: translateY(-2px);
}

/* Default theme uses gradient */
.category-selection {
	--fp-primary: #667eea;
	--fp-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-toggle .toggle-btn.is-active,
.category-toggle .toggle-btn.active,
.category-toggle .fashionpoint-type-toggle-btn.is-active,
.category-toggle .fashionpoint-type-toggle-btn.active {
	background: var(--fp-gradient) !important;
	color: #ffffff !important;
	border-color: var(--fp-primary) !important;
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3) !important;
}

.category-toggle .toggle-btn.is-active svg,
.category-toggle .toggle-btn.active svg,
.category-toggle .fashionpoint-type-toggle-btn.is-active svg,
.category-toggle .fashionpoint-type-toggle-btn.active svg {
	color: #ffffff !important;
	stroke: #ffffff !important;
}

/* ── Theme: Premium Gold ────────────────────────────────── */
.category-selection.theme-premium-gold {
	--fp-primary: #d4af37;
	--fp-secondary: #c19d2e;
	--fp-border: #e8dfc8;
	--fp-gradient: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.category-selection.theme-premium-gold .category-toggle .toggle-btn,
.category-selection.theme-premium-gold .category-toggle .fashionpoint-type-toggle-btn {
	background: #ffffff;
	border: 2px solid var(--fp-border);
	color: #2a2520;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.category-selection.theme-premium-gold .category-toggle .toggle-btn:hover:not(.is-active):not(.active),
.category-selection.theme-premium-gold .category-toggle .fashionpoint-type-toggle-btn:hover:not(.is-active):not(.active) {
	border-color: var(--fp-primary);
	background: #f9f4e7;
	color: #2a2520;
}

.category-selection.theme-premium-gold .category-toggle .toggle-btn.is-active,
.category-selection.theme-premium-gold .category-toggle .toggle-btn.active,
.category-selection.theme-premium-gold .category-toggle .fashionpoint-type-toggle-btn.is-active,
.category-selection.theme-premium-gold .category-toggle .fashionpoint-type-toggle-btn.active {
	background: #d4af37 !important;
	color: #ffffff !important;
	border-color: var(--fp-primary) !important;
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
}

/* Desktop: full-width category sections for Premium Gold */
@media (min-width: 1024px) {
	/* High-specificity: stretch premium gold category sections full width */
	.fp-booking .category-selection.theme-premium-gold .fashionpoint-category-section,
	.category-selection.theme-premium-gold .fashionpoint-category-section {
		width: 100% !important;
		max-width: none !important;
		margin: 0 auto !important;
		box-sizing: border-box;
	}

	.fp-booking .category-selection.theme-premium-gold .fashionpoint-category-header,
	.fp-booking .category-selection.theme-premium-gold .fashionpoint-category-body,
	.category-selection.theme-premium-gold .fashionpoint-category-header,
	.category-selection.theme-premium-gold .fashionpoint-category-body {
		width: 100% !important;
		box-sizing: border-box;
	}
}

/* ── Theme: Premium Black ───────────────────────────────── */
.category-selection.theme-premium-black {
	--fp-primary: #c9963a;
	--fp-secondary: #b97b12;
	--fp-border: #e2d7c0;
	--fp-gradient: #000;
}

.category-selection.theme-premium-black .category-toggle .toggle-btn,
.category-selection.theme-premium-black .category-toggle .fashionpoint-type-toggle-btn {
	background: #faf9f7;
	border: 2px solid var(--fp-border);
	color: #2a2520;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.category-selection.theme-premium-black .category-toggle .toggle-btn:hover:not(.is-active):not(.active),
.category-selection.theme-premium-black .category-toggle .fashionpoint-type-toggle-btn:hover:not(.is-active):not(.active) {
	border-color: var(--fp-primary);
	background: #f5f3ed;
	color: var(--fp-primary);
}

.category-selection.theme-premium-black .category-toggle .toggle-btn.is-active,
.category-selection.theme-premium-black .category-toggle .toggle-btn.active,
.category-selection.theme-premium-black .category-toggle .fashionpoint-type-toggle-btn.is-active,
.category-selection.theme-premium-black .category-toggle .fashionpoint-type-toggle-btn.active {
	background: var(--fp-gradient) !important;
	color: #ffffff !important;
	border-color: var(--fp-primary) !important;
	box-shadow: 0 2px 8px rgba(201, 150, 58, 0.3) !important;
}

/* Category layout polish */
.category-selection {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
}

.category-selection .categories-container {
	max-width: none;
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.category-selection .categories-container {
		max-width: none;
		width: 100%;
		margin: 0 auto;
		padding-left: 24px;
		padding-right: 24px;
		box-sizing: border-box;
	}
}

.category-selection.theme-premium-gold .categories-container {
	max-width: none;
	width: 100%;
}

@media (min-width: 1024px) {
	/* Ensure stacked track fills available width on desktop */
	.fp-booking .category-selection.theme-premium-gold .categories-scroll-container.categories-scroll-stack,
	.category-selection.theme-premium-gold .categories-scroll-container.categories-scroll-stack,
	.fp-booking .category-selection.theme-premium-gold .categories-track.categories-track-stack,
	.category-selection.theme-premium-gold .categories-track.categories-track-stack {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		box-sizing: border-box;
		overflow-y: auto;
		overflow-x: hidden;
	}

	/* Service cards span full width within category body */
	.fp-booking .category-selection.theme-premium-gold .fashionpoint-category-section .fashionpoint-service-card,
	.category-selection.theme-premium-gold .fashionpoint-category-section .fashionpoint-service-card {
		max-width: none;
		width: 100%;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
		box-sizing: border-box;
	}

	/* Ensure all category sections have consistent width */
	.category-selection.theme-premium-gold .fashionpoint-category-section {
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		box-sizing: border-box;
	}

	.category-selection.theme-premium-gold .fashionpoint-category-header {
		width: 100% !important;
		max-width: none !important;
		box-sizing: border-box;
	}
}

/* Neutralize block theme padding wrappers for entire booking container (Premium Gold) */
.entry-content.has-global-padding .fp-booking[data-theme="premium-gold"],
.alignfull .fp-booking[data-theme="premium-gold"],
.wp-site-blocks .fp-booking[data-theme="premium-gold"],
.is-layout-constrained .fp-booking[data-theme="premium-gold"] {
	margin-left: calc(-1 * var(--wp--style--root--padding-left, 0px)) !important;
	margin-right: calc(-1 * var(--wp--style--root--padding-right, 0px)) !important;
	width: calc(100% + var(--wp--style--root--padding-left, 0px) + var(--wp--style--root--padding-right, 0px)) !important;
	max-width: none !important;
}

.has-global-padding .fp-booking .category-selection.theme-premium-gold .categories-scroll-container.categories-scroll-stack,
.alignfull .fp-booking .category-selection.theme-premium-gold .categories-scroll-container.categories-scroll-stack,
.wp-site-blocks .fp-booking .category-selection.theme-premium-gold .categories-scroll-container.categories-scroll-stack,
.is-layout-constrained .fp-booking .category-selection.theme-premium-gold .categories-scroll-container.categories-scroll-stack,
.has-global-padding .fp-booking .category-selection.theme-premium-gold .categories-track.categories-track-stack,
.alignfull .fp-booking .category-selection.theme-premium-gold .categories-track.categories-track-stack,
.wp-site-blocks .fp-booking .category-selection.theme-premium-gold .categories-track.categories-track-stack,
.is-layout-constrained .fp-booking .category-selection.theme-premium-gold .categories-track.categories-track-stack {
	margin-left: auto !important;
	margin-right: auto !important;
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

/* Remove body padding inside block wrappers for gold */
.has-global-padding .fp-booking[data-theme="premium-gold"] .fp-booking__body,
.alignfull .fp-booking[data-theme="premium-gold"] .fp-booking__body,
.wp-site-blocks .fp-booking[data-theme="premium-gold"] .fp-booking__body,
.is-layout-constrained .fp-booking[data-theme="premium-gold"] .fp-booking__body {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.categories-container {
	width: 100%;
}

.categories-scroll-container.categories-hidden {
	display: none !important;
}

.categories-scroll-container {
	padding: 4px 2px;
}

/* Stacked layout for booking category lists (services/packages) */
.categories-scroll-stack {
	overflow-y: visible;
	overflow-x: hidden;
	max-width: none;
	margin: 0 auto;
}

/* Booking step 2: force full-width containers inside booking shell */
.fp-booking .category-selection .categories-scroll-container,
.fp-booking .category-selection .categories-scroll-stack,
.fp-booking .category-selection .categories-track,
.fp-booking .category-selection .categories-track-stack {
	max-width: none !important;
	width: 100% !important;
	margin: 0 auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}

/* Ensure all sections align to full width and gold background under premium gold theme */
.fp-booking .category-selection.theme-premium-gold .fashionpoint-category-section {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	background: #eadbc3 !important;
}

.category-selection.theme-premium-gold .categories-scroll-stack {
	max-width: none;
	width: 100%;
}

.categories-scroll-container.categories-scroll-stack {
	margin: 0 auto !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: none;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	align-self: center;
}

.category-selection.theme-premium-gold .categories-scroll-container.categories-scroll-stack {
	max-width: none;
}

.categories-track-stack {
	display: flex;
	flex-direction: column;
	gap: 0;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	max-width: none;
	margin: 0;
}

.categories-track-stack .category-card,
.categories-track-stack .fashionpoint-category-section {
	width: 100%;
	max-width: none;
}

.empty-state {
	background: #fff;
	border: 1px solid #eceff3;
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 10px 32px rgba(0,0,0,0.04);
}

.empty-state h3 {
	margin: 10px 0 6px;
	font-size: 17px;
	color: #1f2a44;
}

.empty-state p {
	margin: 0;
	color: #5c6475;
	font-size: 14px;
}

/* Category type toggle (services / packages) */
.category-toggle {
	display: inline-flex;
	gap: 8px;
	padding: 6px;
	background: #f5f2ea;
	border-radius: 999px;
	margin-top: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.category-toggle .toggle-btn {
	border: none;
	background: transparent;
	padding: 10px 18px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	color: #6b6b6b;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	cursor: pointer;
	transition: all 160ms ease;
}

.category-toggle .toggle-btn.is-active {
	background: linear-gradient(135deg, #d6ae47 0%, #f2d68b 100%);
	color: #1f1f1f;
	box-shadow: 0 12px 24px rgba(214, 174, 71, 0.28);
}

.category-toggle .toggle-btn:hover {
	transform: translateY(-1px);
}

/* ==========================================================================
	Doctor Selection
	========================================================================== */

.doctor-selection {
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.doctors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@media (min-width: 640px) {
	.doctors-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (min-width: 1024px) {
	.doctors-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		max-width: 100%;
	}
}

.doctor-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 1.5rem;
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: var(--fp-radius-lg);
	cursor: pointer;
	transition: var(--fp-transition);
	position: relative;
	box-sizing: border-box;
	width: 100%;
}

.doctor-item:hover {
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
	border-color: var(--fp-primary-light);
}

.doctor-item.is-selected {
	background: #ffffff;
	border-color: var(--fp-primary);
	box-shadow: 0 10px 28px rgba(var(--fp-primary-rgb), 0.25), 0 0 0 3px rgba(var(--fp-primary-rgb), 0.2);
	transform: translateY(-4px);
}

@media (min-width: 768px) {
	.doctor-item {
		padding: 2rem 1.5rem;
	}
}

.doctor-item__img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--fp-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--fp-shadow);
}

@media (min-width: 768px) {
	.doctor-item__img {
		width: 120px;
		height: 120px;
	}
}

.doctor-item__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctor-placeholder {
	color: #d1d5db;
}

.doctor-item__name {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--fp-text);
	text-align: center;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.doctor-item__name {
		font-size: 1.125rem;
	}
}

.doctor-item__desc,
.doctor-item__spec {
	margin: 0;
	font-size: 0.875rem;
	color: var(--fp-text-light);
	text-align: center;
	line-height: 1.4;
}

.doctor-item input[type="radio"] {
	display: none;
}

.doctor-selected {
	margin-top: 20px;
	padding: 16px;
	background: rgba(214, 174, 71, 0.1);
	border-radius: 12px;
	text-align: center;
	width: 100%;
	max-width: 600px;
}

.doctor-selected h4 {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 600;
	color: #d6ae47;
	text-transform: uppercase;
}

.doctor-selected__name {
	font-weight: 600;
	font-size: 16px;
	color: #333;
}

/* ==========================================================================
	Date & Time Selection
	========================================================================== */

.datetime-selection {
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	box-sizing: border-box;
	overflow: visible;
}

.datetime-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow: visible;
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-sizing: border-box;
}

.calendar-section {
	background: #ffffff;
	border-radius: var(--fp-radius-lg);
	padding: 1rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	width: 100%;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.calendar-section {
		padding: 2rem;
	}
}

.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.datetime-selection .step-intro {
	display: none;
}

.calendar-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	text-align: center;
}

.calendar-nav {
	width: 36px;
	height: 36px;
	border: none;
	background: #f6f6f6;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 160ms ease;
}

.calendar-nav:hover {
	background: #d6ae47;
	color: #fff;
}

.calendar-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

.calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	margin: 0 0 2px;
}

.weekday {
	display: none;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.calendar-grid {
		gap: 12px;
	}
}

.calendar-day {
	height: 52px;
	border: 2px solid #e5e7eb;
	background: #ffffff;
	border-radius: var(--fp-radius);
	font-size: 14px;
	font-weight: 700;
	color: var(--fp-text);
	cursor: pointer;
	transition: var(--fp-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
	width: 100%;
}

@media (min-width: 768px) {
	.calendar-day {
		height: 72px;
		font-size: 16px;
		border-radius: var(--fp-radius-lg);
	}
}

.calendar-day.empty {
	background: transparent;
	pointer-events: none;
}

.calendar-day.past,
.calendar-day.unavailable {
	background: var(--fp-surface);
	color: var(--fp-text-lighter);
	cursor: not-allowed;
	border-color: var(--fp-border);
	opacity: 0.5;
}

.calendar-day.available:hover {
	background: var(--fp-surface);
	border-color: var(--fp-primary-light);
	transform: translateY(-2px);
	box-shadow: var(--fp-shadow);
}

.calendar-day.selected {
	background: linear-gradient(135deg, var(--fp-primary), var(--fp-primary-dark));
	color: #fff;
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(var(--fp-primary-rgb), 0.3);
	transform: translateY(-2px);
}

.calendar-day.strip {
	flex-direction: column;
	gap: 4px;
}

.calendar-day .day-week {
	font-size: 11px;
	font-weight: 600;
	color: #9ca3af;
}

.calendar-day.selected .day-week,
.calendar-day.selected .day-num {
	color: #fff;
}

/* ==========================================================================
   Calendar View Toggle
   ========================================================================== */

.calendar-view-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 16px;
	background: #f3f4f6;
	border-radius: 10px;
	padding: 4px;
}

.calendar-view-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 16px;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #6b7280;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 200ms ease;
	flex: 1;
	white-space: nowrap;
}

.calendar-view-btn:hover {
	color: #374151;
	background: rgba(255, 255, 255, 0.5);
}

.calendar-view-btn.active {
	background: #ffffff;
	color: #0f172a;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.calendar-view-btn svg {
	flex-shrink: 0;
}

/* ==========================================================================
   Month View Styles
   ========================================================================== */

.calendar-weekdays.month-visible {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	margin-bottom: 6px;
}

.calendar-weekdays.month-visible .weekday {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 6px 0;
}

@media (min-width: 768px) {
	.calendar-weekdays.month-visible .weekday {
		font-size: 13px;
		padding: 8px 0;
	}
}

.calendar-grid.month-view {
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

@media (min-width: 768px) {
	.calendar-grid.month-view {
		gap: 6px;
	}
}

.calendar-day.month {
	height: 40px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	border-width: 1.5px;
	box-shadow: none;
	flex-direction: column;
}

@media (min-width: 768px) {
	.calendar-day.month {
		height: 48px;
		font-size: 15px;
		border-radius: 10px;
	}
}

.calendar-day.month.empty {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.calendar-day.month.today:not(.selected) {
	border-color: var(--fp-primary, #d6ae47);
	background: rgba(214, 174, 71, 0.06);
}

.calendar-day.month.available {
	background: #ffffff;
	border-color: #e5e7eb;
	color: #1f2937;
}

.calendar-day.month.available:hover {
	background: rgba(214, 174, 71, 0.08);
	border-color: var(--fp-primary-light, #e8ca6e);
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.calendar-day.month.unavailable {
	background: #f9fafb;
	border-color: transparent;
	color: #d1d5db;
	opacity: 0.6;
}

.calendar-day.month.selected {
	background: linear-gradient(135deg, var(--fp-primary, #d6ae47), var(--fp-primary-dark, #b8922f));
	color: #fff;
	border-color: transparent;
	box-shadow: 0 3px 10px rgba(var(--fp-primary-rgb, 214, 174, 71), 0.35);
	transform: translateY(-1px);
}

/* Calendar Promo Indicators */
.calendar-day.promo-indicator {
	position: relative;
}

.calendar-day.promo-indicator::before {
	content: '%';
	position: absolute;
	top: -9px;
	right: 4px;
	width: 18px;
	height: 18px;
	background: linear-gradient(135deg, #c9963a 0%, #b8852e 100%);
	color: #000000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	z-index: 2;
	box-shadow: 0 2px 4px rgba(201, 150, 58, 0.3);
}

/* Week view promo indicator */
.calendar-day.strip.promo-indicator::before {
	top: -8px;
	right: 2px;
	width: 16px;
	height: 16px;
	font-size: 9px;
}

/* Month view promo indicator */
.calendar-day.month.promo-indicator::before {
	top: -8px;
	right: 3px;
	width: 17px;
	height: 17px;
	font-size: 9px;
}

/* Selected state - keep same colors as normal state */
.calendar-day.selected.promo-indicator::before {
	background: linear-gradient(135deg, #c9963a 0%, #b8852e 100%);
	color: #000000;
	box-shadow: 0 2px 4px rgba(201, 150, 58, 0.3);
}

/* Ensure calendar day text remains centered */
.calendar-day.promo-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.calendar-day.strip.promo-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.calendar-day.month.promo-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* Theme-specific promo indicator colors */
.theme-premium-black .calendar-day.promo-indicator::before {
	background: linear-gradient(135deg, #c9963a 0%, #b8852e 100%);
	color: #000000;
	box-shadow: 0 2px 4px rgba(201, 150, 58, 0.3);
}

.theme-premium-gold .calendar-day.promo-indicator::before {
	background: #d4af37;
	color: #ffffff;
	box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.theme-default .calendar-day.promo-indicator::before {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: #ffffff;
	box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.calendar-loading,
.timeslots-loading {
	text-align: center;
	padding: 40px 20px;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 3px solid #f3f4f6;
	border-top-color: #d6ae47;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin: 0 auto 12px;
}

/* Smaller spinner for buttons */
.btn-send-code .spinner,
.btn-verify .spinner {
	width: 20px;
	height: 20px;
	border: 2px solid #f3f4f6;
	border-top-color: #ffffff;
	margin: 0 auto 0;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.timeslots-section {
	background: transparent;
	padding: 20px 0 0 0;
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	overflow: visible;
}

@media (min-width: 768px) {
	.timeslots-section {
		padding: 0;
		width: 100%;
		overflow: visible;
	}
}

.timeslots-title {
	margin: 0 0 16px 0;
	font-size: 18px;
	font-weight: 700;
	color: #101827;
	text-align: center;
}

.timeslots-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	box-sizing: border-box;
	overflow: visible;
	padding: 15px 5px 5px 5px;
}

/* Wrapper for time slots with promo badges */
.timeslots-grid > div {
	flex: 0 0 calc(50% - 5px);
	min-width: 0;
	position: relative;
	overflow: visible;
}

.timeslot-button {
	width: 100%;
	overflow: visible;
	position: relative;
}

/* Remove all old pseudo-element promo indicators */
.timeslot-button.promo-indicator::before,
.timeslot-button.promo-indicator::after {
	display: none !important;
	content: none !important;
}

@media (min-width: 768px) {
	.timeslots-grid {
		max-width: 600px;
		margin: 0 auto;
	}
	
	.timeslots-grid > div {
		flex: 0 0 calc(33.333% - 7px);
	}
}

@media (min-width: 1024px) {
	.timeslots-grid > div {
		flex: 0 0 calc(25% - 8px);
	}
}

.timeslot {
	padding: 12px 10px;
	border: 2px solid #e5e7eb;
	border-radius: var(--fp-radius-lg);
	background: #ffffff;
	box-sizing: border-box;
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	color: var(--fp-text);
	cursor: pointer;
	transition: var(--fp-transition);
	text-align: center;
	width: 100%;
	min-height: 56px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	.timeslot {
		padding: 16px 14px;
		font-size: 16px;
	}
}

.timeslot-button {
	padding: 10px 12px;
	border: none;
	border-radius: 6px;
	background: transparent;
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
	width: 100%;
	min-height: auto;
	text-align: center;
	cursor: pointer;
	transition: all 160ms ease;
	box-shadow: none;
}

.timeslot-button:hover {
	background: rgba(214, 174, 71, 0.1);
	color: #d6ae47;
}

.timeslot-button.selected {
	background: #d6ae47 !important;
	color: #fff !important;
	font-weight: 700 !important;
}

.timeslot:hover {
	background: var(--fp-surface);
	border-color: var(--fp-primary-light);
	box-shadow: var(--fp-shadow);
	transform: translateY(-2px);
}

.timeslot.selected {
	background: linear-gradient(135deg, var(--fp-primary), var(--fp-primary-dark));
	color: #fff;
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(var(--fp-primary-rgb), 0.3);
	transform: translateY(-2px);
}

.timeslots-empty {
	text-align: center;
	padding: 40px 20px;
	color: #6b7280;
}

.timeslots-empty svg {
	color: #d1d5db;
	margin-bottom: 12px;
}

.datetime-summary {
	margin: 16px 0;
	padding: 12px 16px;
	background: rgba(214, 174, 71, 0.1);
	border-radius: 8px;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
}

.datetime-summary h4 {
	margin: 0 0 6px 0;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
}

.datetime-summary__content {
	font-weight: 700;
	font-size: 16px;
	color: #1f2937;
}

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

.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;
}

.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) {
	.phone-container {
		padding: 0;
		max-width: 480px;
	}
}

.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) {
	.phone-hero {
		padding: 2rem;
	}
}

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

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

.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;
}

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

.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;
}

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

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

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

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

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

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

.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;
}

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

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

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

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

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

.btn-send-code,
.btn-verify,
.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;
}

.btn-send-code,
.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);
}

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

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

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

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

.verification-icon,
.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) {
	.verification-icon,
	.success-icon {
		width: 100px;
		height: 100px;
	}
}

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



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

.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);
}

.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) {
	.code-digit {
		width: 56px;
		height: 56px;
		font-size: 20px;
	}
}

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

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

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

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

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

/* ==========================================================================
	Registration & Summary
	========================================================================== */

.registration-summary {
	padding: 8px 12px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.booking-summary-card,
.registration-form {
	background: var(--fp-background);
	border-radius: var(--fp-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--fp-shadow-md);
	width: 100%;
	max-width: none;
	margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
	.booking-summary-card,
	.registration-form {
		padding: 2rem;
	}
}

.booking-summary-card h3,
.registration-form h3 {
	margin: 0 0 20px 0;
	font-size: 18px;
	font-weight: 700;
	color: #101827;
}

.summary-section {
	padding: 16px 0;
	border-bottom: 1px solid #eceff3;
}

.summary-section:last-of-type {
	border-bottom: none;
}

.summary-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.summary-value {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
}

.summary-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	font-size: 14px;
}

.item-price {
	font-weight: 600;
	color: #d6ae47;
}

.summary-total {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #eceff3;
}

.total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	font-size: 14px;
	color: #6b7280;
}

.total-price-row {
	font-size: 18px;
	font-weight: 700;
	color: #101827;
	margin-top: 8px;
}

.total-price {
	color: #d6ae47;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid var(--fp-border);
	border-radius: var(--fp-radius);
	font-size: 15px;
	outline: none;
	transition: var(--fp-transition);
	background: var(--fp-background);
	color: var(--fp-text);
}

.form-group input:focus,
.form-group select:focus {
	border-color: var(--fp-primary);
	box-shadow: 0 0 0 3px rgba(var(--fp-primary-rgb), 0.1);
}

@media (min-width: 768px) {
	.form-group input[type="text"],
	.form-group input[type="email"],
	.form-group input[type="tel"],
	.form-group input[type="date"],
	.form-group select {
		padding: 14px 16px;
		font-size: 16px;
	}
}

.required {
	color: #ef4444;
}

.checkbox-group {
	margin-top: 20px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	margin-top: 2px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.confirmation-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: #eff6ff;
	border-radius: 12px;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.confirmation-note svg {
	flex-shrink: 0;
	color: #3b82f6;
}

.confirmation-note p {
	margin: 0;
	font-size: 14px;
	color: #1e40af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	/* Category Selection Mobile */
	.category-card {
		padding: 14px !important;
		min-height: auto !important;
	}

	.category-name {
		font-size: 15px !important;
		line-height: 1.3;
	}

	.category-description {
		font-size: 12px !important;
		line-height: 1.4;
		display: -webkit-box;
		line-clamp: 2;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.category-count {
		font-size: 11px !important;
	}

	/* Services Grid Mobile - Override flex with grid */
	.services-grid,
	.packages-grid {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	.service-card,
	.package-card {
		display: grid !important;
		grid-template-columns: 85px 1fr 35px !important;
		grid-template-areas: "image content select" !important;
		gap: 8px !important;
		padding: 8px !important;
		align-items: start !important;
		width: 90% !important;
		min-width: 260px !important;
		max-width: 380px !important;
		margin: 0 auto 12px auto !important;
	}

	.service-image,
	.package-image {
		grid-area: image !important;
		width: 85px !important;
		height: 85px !important;
		min-width: 85px !important;
		margin: 0 !important;
		border-radius: 8px !important;
	}

	.service-content,
	.package-content {
		grid-area: content !important;
		text-align: left !important;
		padding: 0 !important;
		min-width: 0 !important;
	}

	.service-select,
	.package-select {
		grid-area: select !important;
		align-self: start !important;
		margin-top: 0 !important;
	}

	.service-name,
	.package-name {
		font-size: 14px !important;
		margin-bottom: 4px !important;
		line-height: 1.3;
	}

	.service-description,
	.package-description {
		font-size: 11px !important;
		line-height: 1.4;
		display: -webkit-box;
		line-clamp: 2;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		margin-bottom: 6px !important;
	}

	.service-meta,
	.package-meta {
		flex-wrap: wrap !important;
		gap: 4px !important;
		font-size: 10px !important;
	}

	.service-meta .duration,
	.service-meta .price,
	.package-meta .duration,
	.package-meta .procedures {
		font-size: 10px !important;
	}

	.service-price,
	.package-price {
		font-size: 13px !important;
		margin-top: 4px !important;
	}

	.service-old-price,
	.package-old-price {
		font-size: 11px !important;
	}

	.promo-badge,
	.featured-badge {
		font-size: 9px !important;
		padding: 2px 6px !important;
	}

	/* Selection Summary Mobile */
	.selection-summary {
		margin-top: 16px !important;
		padding: 10px 12px !important;
	}

	.summary-items {
		font-size: 11px !important;
	}

	.summary-total {
		font-size: 13px !important;
	}

	/* Step Headers Mobile */
	.services-section h3,
	.packages-section h3 {
		font-size: 16px !important;
		margin-bottom: 8px !important;
	}
}

@media (max-width: 640px) {
	.form-row {
		grid-template-columns: 1fr;
	}

	.timeslots-grid {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	}

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

	/* Extra small mobile adjustments */
	.service-card,
	.package-card {
		grid-template-columns: 75px 1fr 30px !important;
		padding: 6px !important;
		min-width: 240px !important;
		max-width: 320px !important;
		margin: 0 auto 8px auto !important;
		width: 90% !important;
	}

	.service-image,
	.package-image {
		width: 75px !important;
		height: 75px !important;
		min-width: 75px !important;
	}

	.service-name,
	.package-name {
		font-size: 13px !important;
	}

	.service-description,
	.package-description {
		font-size: 10px !important;
	}

	.category-card {
		padding: 10px !important;
	}

	.category-name {
		font-size: 14px !important;
	}
}

/* ==========================================================================
	Cart Button & Modal
	========================================================================== */

/* Footer Cart Button */
.fp-booking__footer {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
}

.fp-booking__cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	background: white;
	border: 2px solid var(--fp-primary);
	border-radius: 999px;
	color: var(--fp-primary);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
	min-width: 140px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1;
}

.fp-booking__cart:hover {
	background: var(--fp-primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(var(--fp-primary-rgb), 0.3);
}

.fp-booking__cart svg {
	width: 20px;
	height: 20px;
}

.fp-booking__cart-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	background: var(--fp-primary);
	color: white;
	font-size: 13px;
	font-weight: 700;
	border-radius: 12px;
	line-height: 1;
}

.fp-booking__cart:hover .fp-booking__cart-badge {
	background: white;
	color: var(--fp-primary);
}

/* Ensure both buttons have identical sizing */
.fp-booking__cart,
.fp-booking__next {
	flex: 1 1 45%;
	min-width: 140px;
}

@media (max-width: 767px) {
	.fp-booking__cart {
		padding: 12px 28px;
		font-size: 14px;
		min-width: 120px;
	}
	
	.fp-booking__cart,
	.fp-booking__next {
		flex: 1 1 45%;
		min-width: 120px;
	}
}

/* ==========================================================================
	Booking Success Screen – Clean & Modern
	========================================================================== */

.booking-success-container {
	max-width: 480px;
	margin: 0 auto;
	padding: 2.5rem 1.25rem 2rem;
	text-align: center;
}

/* ── Header ── */
.success-header {
	margin-bottom: 1.75rem;
}

.success-icon-circle {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.success-icon-circle svg {
	width: 32px;
	height: 32px;
}

.success-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--fp-text, #1a1a1a);
	margin: 0 0 0.375rem;
	letter-spacing: -0.01em;
}

.success-subtitle {
	font-size: 0.875rem;
	color: var(--fp-text-light, #6b7280);
	margin: 0;
	line-height: 1.5;
}

/* ── Summary card ── */
.success-content {
	text-align: left;
	margin-bottom: 1.5rem;
	background: transparent;
	padding: 0;
	border: none;
}

.ss-card {
	background: #fff;
	border: 1px solid var(--fp-border, #e5e7eb);
	border-radius: var(--fp-radius, 12px);
	overflow: hidden;
}

/* Info rows */
.ss-info-row {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.875rem 1.25rem;
	border-bottom: 1px solid #f3f4f6;
}

.ss-info-row:last-child {
	border-bottom: none;
}

.ss-info-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	color: var(--fp-text-light, #6b7280);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ss-info-icon svg {
	width: 16px;
	height: 16px;
}

.ss-info-body {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.ss-info-label {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--fp-text-light, #9ca3af);
}

.ss-info-value {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--fp-text, #1a1a1a);
	line-height: 1.4;
}

/* Services section */
.ss-services-section {
	padding: 0.875rem 1.25rem;
	border-bottom: 1px solid #f3f4f6;
}

.ss-services-label {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--fp-text-light, #9ca3af);
	margin-bottom: 0.625rem;
}

.ss-service-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.5rem 0;
}

.ss-service-row + .ss-service-row {
	border-top: 1px solid #f9fafb;
}

.ss-service-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.ss-service-name {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--fp-text, #1a1a1a);
	line-height: 1.3;
}

.ss-service-dur {
	font-size: 0.8125rem;
	color: var(--fp-text-light, #6b7280);
}

.ss-service-price {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--fp-text, #1a1a1a);
	white-space: nowrap;
	flex-shrink: 0;
}

/* Total row */
.ss-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 0.75rem;
	margin-top: 0.5rem;
	border-top: 1px solid var(--fp-border, #e5e7eb);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--fp-text, #1a1a1a);
}

.ss-total-price {
	font-size: 1.0625rem;
	font-weight: 700;
}

/* Pay online button */
.ss-pay-btn {
	display: block;
	text-align: center;
	margin-top: 0.75rem;
	padding: 0.875rem;
	background: var(--fp-accent, #d4af37);
	color: #fff;
	font-weight: 600;
	font-size: 0.9375rem;
	border-radius: var(--fp-radius, 12px);
	text-decoration: none;
	transition: background 0.2s, box-shadow 0.2s;
}

.ss-pay-btn:hover {
	background: #c49f2f;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ── Actions ── */
.success-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
}

.success-gcal-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 320px;
	padding: 0.8125rem 1.25rem;
	background: #fff;
	border: 1px solid var(--fp-border, #e5e7eb);
	border-radius: var(--fp-radius, 12px);
	color: var(--fp-text, #1a1a1a);
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: all 0.15s ease;
}

.success-gcal-btn:hover {
	border-color: #4285f4;
	color: #4285f4;
	background: #f0f4ff;
}

.success-gcal-btn svg {
	flex-shrink: 0;
}

.success-done-btn {
	width: 100%;
	max-width: 320px;
	padding: 0.875rem 1.25rem;
	background: var(--fp-accent, #d4af37);
	color: #fff;
	border: none;
	border-radius: var(--fp-radius, 12px);
	font-weight: 600;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: background 0.2s, box-shadow 0.2s;
}

.success-done-btn:hover {
	background: #c49f2f;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* ── Mobile ── */
@media (max-width: 640px) {
	.booking-success-container {
		padding: 1.5rem 1rem;
	}

	.success-icon-circle {
		width: 56px;
		height: 56px;
	}

	.success-icon-circle svg {
		width: 28px;
		height: 28px;
	}

	.success-title {
		font-size: 1.25rem;
	}

	.ss-info-row {
		padding: 0.75rem 1rem;
	}

	.ss-services-section {
		padding: 0.75rem 1rem;
	}

	.success-gcal-btn,
	.success-done-btn {
		max-width: none;
	}
}

/* ==========================================================================
	Cart Modal - Modern Clean Design
	========================================================================== */

.fp-cart-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2147483647;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.fp-cart-modal.is-visible {
	display: flex;
}

.fp-cart-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	cursor: pointer;
}

.fp-cart-modal__content {
	position: relative;
	width: 100%;
	max-width: 540px;
	max-height: 85vh;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.fp-cart-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 1.5rem 1rem;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-bottom: 1px solid #f1f3f4;
	gap: 1rem;
}

.fp-cart-modal__header h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -0.02em;
}

.fp-cart-modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #f8f9fa;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #6b7280;
}

.fp-cart-modal__close:hover {
	background: #e5e7eb;
	color: #374151;
	transform: scale(1.05);
}

.fp-cart-modal__close:active {
	transform: scale(0.95);
}

.fp-cart-modal__body {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	background: #fafbfc;
}

.fp-cart-modal__body::-webkit-scrollbar {
	width: 6px;
}

.fp-cart-modal__body::-webkit-scrollbar-track {
	background: transparent;
}

.fp-cart-modal__body::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 3px;
}

.fp-cart-modal__body::-webkit-scrollbar-thumb:hover {
	background: #9ca3af;
}

.fp-cart-section {
	margin: 0 0 1rem 0;
	padding: 1.25rem;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #f1f3f4;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fp-cart-section--clickable {
	cursor: pointer;
}

.fp-cart-section--clickable:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
	border-color: rgba(247, 197, 86, 0.3);
	background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
}

.fp-cart-section--clickable:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.fp-cart-section:last-child {
	margin-bottom: 0;
}

.fp-cart-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.fp-cart-section h4 {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.fp-cart-section h4::before {
	content: '';
	width: 3px;
	height: 16px;
	background: linear-gradient(135deg, #f7c556 0%, #f4b400 100%);
	border-radius: 2px;
}

.fp-cart-edit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: transparent;
	border: 1px solid var(--fp-border);
	border-radius: 6px;
	cursor: pointer;
	transition: var(--fp-transition);
	color: var(--fp-text-light);
	padding: 0;
}

.fp-cart-edit-btn:hover {
	background: var(--fp-primary);
	border-color: var(--fp-primary);
	color: white;
	transform: translateY(-1px);
}

.fp-cart-edit-btn svg {
	width: 14px;
	height: 14px;
}

.fp-cart-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem;
	margin-bottom: 0.5rem;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid #f1f3f4;
	transition: all 0.2s ease;
}

.fp-cart-item:hover {
	background: #f1f3f4;
}

.fp-cart-item:last-child {
	margin-bottom: 0;
}

.fp-cart-item > svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: #f7c556;
	background: rgba(247, 197, 86, 0.1);
	padding: 4px;
	border-radius: 8px;
}

/* ── Service/Package item with icon | body | remove ── */
.fp-cart-item--service {
	align-items: center;
	gap: 0.625rem;
	padding: 0.625rem 0.75rem;
}

.fp-cart-item__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: rgba(247, 197, 86, 0.1);
	color: #f7c556;
}

.fp-cart-item__icon svg {
	width: 14px;
	height: 14px;
}

.fp-cart-item__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.fp-cart-item__name {
	font-size: 0.9rem;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.3;
	letter-spacing: -0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fp-cart-item__meta {
	display: flex;
	align-items: center;
	gap: 0;
	font-size: 0.8rem;
	color: #6b7280;
	font-weight: 500;
	line-height: 1;
}

.fp-cart-item__dur {
	color: #6b7280;
}

.fp-cart-item__dur + .fp-cart-item__price::before {
	content: '·';
	margin: 0 0.4rem;
	color: #d1d5db;
	font-weight: 700;
}

.fp-cart-item__price {
	color: #374151;
	font-weight: 600;
}

/* Remove button */
.fp-cart-item__remove {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: none;
	background: transparent;
	border-radius: 6px;
	cursor: pointer;
	color: #9ca3af;
	transition: all 0.15s ease;
	padding: 0;
}

.fp-cart-item__remove:hover {
	background: #fee2e2;
	color: #dc2626;
}

.fp-cart-item__remove:active {
	transform: scale(0.9);
}

/* ── Totals row ── */
.fp-cart-totals {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem;
	margin-top: 0.25rem;
	border-top: 1px solid #e5e7eb;
}

.fp-cart-totals__label {
	font-size: 0.85rem;
	font-weight: 700;
	color: #374151;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.fp-cart-totals__values {
	display: flex;
	align-items: center;
	gap: 0;
	font-size: 0.85rem;
}

.fp-cart-totals__dur {
	color: #6b7280;
	font-weight: 500;
}

.fp-cart-totals__dur + .fp-cart-totals__price::before {
	content: '·';
	margin: 0 0.4rem;
	color: #d1d5db;
	font-weight: 700;
}

.fp-cart-totals__price {
	color: #1a1a1a;
	font-weight: 700;
}

.fp-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 3rem 2rem;
	text-align: center;
	color: #6b7280;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 16px;
	border: 2px dashed #e2e8f0;
}

.fp-cart-empty svg {
	width: 64px;
	height: 64px;
	color: #cbd5e1;
	margin-bottom: 1.5rem;
	background: #f8fafc;
	padding: 1rem;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fp-cart-empty p {
	margin: 0 0 0.75rem 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: #374151;
	letter-spacing: -0.01em;
}

.fp-cart-empty small {
	font-size: 0.925rem;
	color: #6b7280;
	line-height: 1.5;
}

.fp-cart-modal__footer {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
	background: #ffffff;
	border-top: 1px solid #f1f3f4;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.02);
}

/* Clear cart confirmation overlay inside modal */
.fp-cart-confirm {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.fp-cart-confirm__content {
	background: white;
	border-radius: 14px;
	padding: 1.25rem 1.5rem;
	max-width: 360px;
	width: 90%;
	box-shadow: 0 12px 30px rgba(0,0,0,0.18);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: center;
}

.fp-cart-confirm__content h4 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
}

.fp-cart-confirm__content p {
	margin: 0;
	color: var(--fp-text-light);
	font-size: 0.95rem;
}

.fp-cart-confirm__actions {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.fp-cart-confirm__cancel,
.fp-cart-confirm__confirm {
	flex: 1;
	padding: 0.85rem 1rem;
	border-radius: var(--fp-radius-lg);
	border: 1px solid transparent;
	font-weight: 700;
	cursor: pointer;
	transition: var(--fp-transition);
}

.fp-cart-confirm__cancel {
	background: var(--fp-surface);
	color: var(--fp-text);
	border-color: var(--fp-border);
}

.fp-cart-confirm__cancel:hover {
	background: var(--fp-border);
}

.fp-cart-confirm__confirm {
	background: var(--fp-error);
	color: white;
}

.fp-cart-confirm__confirm:hover {
	background: #d92b2b;
}

.fp-cart-modal__clear,
.fp-cart-modal__continue {
	flex: 1;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 12px;
	font-size: 0.925rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	letter-spacing: 0.01em;
}

.fp-cart-modal__clear::before,
.fp-cart-modal__continue::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.fp-cart-modal__clear:hover::before,
.fp-cart-modal__continue:hover::before {
	left: 100%;
}

.fp-cart-modal__clear {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	color: #475569;
	border: 1px solid #e2e8f0;
}

.fp-cart-modal__clear:hover {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #dc2626;
	border-color: #fca5a5;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.fp-cart-modal__continue {
	background: linear-gradient(135deg, #f7c556 0%, #f4b400 100%);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(247, 197, 86, 0.3);
}

.fp-cart-modal__continue:hover {
	background: linear-gradient(135deg, #f4b400 0%, #f59e0b 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(247, 197, 86, 0.4);
}

.fp-cart-modal__clear:active,
.fp-cart-modal__continue:active {
	transform: translateY(0);
}

@media (max-width: 640px) {
	.fp-cart-modal {
		padding: 0;
		background: rgba(0, 0, 0, 0.7);
	}

	.fp-cart-modal__content {
		max-width: 100%;
		max-height: 100vh;
		border-radius: 20px 20px 0 0;
		margin-top: auto;
		animation: slideUpMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	}

	@keyframes slideUpMobile {
		from {
			opacity: 0;
			transform: translateY(100%);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.fp-cart-modal__header {
		padding: 1.25rem 1.25rem 1rem;
	}

	.fp-cart-modal__header h3 {
		font-size: 1.125rem;
	}

	.fp-cart-modal__close {
		width: 36px;
		height: 36px;
	}

	.fp-cart-modal__body {
		padding: 1.25rem;
	}

	.fp-cart-section {
		padding: 1rem;
		margin-bottom: 0.875rem;
	}

	.fp-cart-item {
		padding: 0.625rem;
		gap: 0.625rem;
	}

	.fp-cart-item > svg {
		width: 16px;
		height: 16px;
		padding: 3px;
	}

	.fp-cart-item--service {
		padding: 0.5rem 0.625rem;
	}

	.fp-cart-item__icon {
		width: 24px;
		height: 24px;
	}

	.fp-cart-item__name {
		font-size: 0.85rem;
	}

	.fp-cart-item__meta {
		font-size: 0.75rem;
	}

	.fp-cart-totals {
		padding: 0.625rem;
		font-size: 0.8rem;
	}

	.fp-cart-modal__footer {
		padding: 1.25rem;
		gap: 0.875rem;
	}

	.fp-cart-modal__clear,
	.fp-cart-modal__continue {
		padding: 0.875rem 1.25rem;
		font-size: 0.9rem;
	}
}

/* ==========================================================================
	Service Selection - Table Row Styles
	========================================================================== */

/* Selected state for table rows in category selection */
.category-selection tbody tr.selected {
	background-color: var(--fp-primary, #f7c556) !important;
	background-color: color-mix(in srgb, var(--fp-primary, #f7c556) 10%, transparent 90%) !important;
	position: relative;
}

.category-selection tbody tr.selected::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--fp-primary, #f7c556);
}

/* Theme-specific selected row styles */
.category-selection.theme-premium-black tbody tr.selected {
	background-color: color-mix(in srgb, #c9963a 15%, transparent 85%) !important;
}

.category-selection.theme-premium-black tbody tr.selected::before {
	background: #c9963a;
}

/* Prevent buttons within selected rows from getting selected styling in premium-black */
.category-selection.theme-premium-black tbody tr.selected .fashionpoint-booking-btn,
.category-selection.theme-premium-black tbody tr.selected .fashionpoint-book-btn-mobile,
.category-selection.theme-premium-black tbody tr.selected .fashionpoint-booking-trigger,
.category-selection.theme-premium-black tbody tr.selected .fashionpoint-internal-booking-trigger,
.category-selection.theme-premium-black tbody tr.selected .fashionpoint-external-booking {
	background: var(--btn-bg, #1a1a1a) !important;
	color: var(--btn-text, #ffffff) !important;
	border-color: var(--btn-border, #333333) !important;
	box-shadow: none !important;
	transform: none !important;
}

.category-selection.theme-premium-gold tbody tr.selected {
	background-color: color-mix(in srgb, #d4af37 12%, transparent 88%) !important;
}

.category-selection.theme-premium-gold tbody tr.selected::before {
	background: #d4af37;
}

/* Hover effects for table rows */
.category-selection tbody tr {
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.category-selection tbody tr:hover {
	background-color: color-mix(in srgb, var(--fp-text, #1f1f1f) 5%, transparent 95%) !important;
}

.category-selection.theme-premium-black tbody tr:hover {
	background-color: color-mix(in srgb, #c9963a 8%, transparent 92%) !important;
}

.category-selection.theme-premium-gold tbody tr:hover {
	background-color: color-mix(in srgb, #d4af37 6%, transparent 94%) !important;
}


