/**
 * Rental Wizard Frontend Styles
 * 
 * AISLAMIENTO COMPLETO DE ELEMENTOR GLOBAL STYLES
 * Este CSS está completamente aislado y protegido contra estilos globales de Elementor
 *
 * @package Rental_Wizard
 */

/* ============================================
   RESET COMPLETO Y SEGURO DENTRO DEL WIZARD
   ============================================ */

.msp-wizard {
	/* Reset completo de todos los estilos heredados */
	all: initial;
	
	/* Restablecer propiedades esenciales */
	display: block;
	box-sizing: border-box;
	
	/* Tipografía base aislada */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #2D2D2A;
	
	/* Layout y espaciado */
	width: 100%;
	max-width: none;
	margin: 40px auto;
	padding: 0 20px;
}

@media (min-width: 769px) {
	.msp-wizard {
		width: 1200px;
		max-width: 1200px;
		margin: 20px auto;
		padding: 0;
	}
	
	/* Asegurar que el contenedor no herede estilos */
	position: relative;
	z-index: 1;
}

/* Desactivar el scroll de la página cuando el wizard está activo */

/* Reset de todos los elementos dentro del wizard */
.msp-wizard *,
.msp-wizard *::before,
.msp-wizard *::after {
	box-sizing: border-box;
}

/* Reset de elementos HTML básicos dentro del wizard */
.msp-wizard h1,
.msp-wizard h2,
.msp-wizard h3,
.msp-wizard h4,
.msp-wizard h5,
.msp-wizard h6 {
	all: initial;
	display: block;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	margin: 0;
	padding: 0;
	font-weight: 700;
	line-height: 1.2;
}

.msp-wizard p {
	all: initial;
	display: block;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

.msp-wizard button,
.msp-wizard input,
.msp-wizard select,
.msp-wizard textarea {
	all: initial;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.msp-wizard a {
	all: initial;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	cursor: pointer;
	color: inherit;
	text-decoration: none;
}

.msp-wizard ul,
.msp-wizard ol,
.msp-wizard li {
	all: initial;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.msp-wizard table,
.msp-wizard thead,
.msp-wizard tbody,
.msp-wizard tr,
.msp-wizard th,
.msp-wizard td {
	all: initial;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.msp-wizard img {
	all: initial;
	box-sizing: border-box;
	display: block;
	max-width: 100%;
	height: auto;
}

.msp-wizard svg {
	all: initial;
	box-sizing: border-box;
	display: block;
}

.msp-wizard label {
	all: initial;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	display: block;
	cursor: pointer;
}

.msp-wizard span {
	all: initial;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	display: inline;
}

/* ============================================
   ESTILOS BASE REDEFINIDOS
   ============================================ */

/* Intro Screen */
.msp-wizard .msp-intro-screen {
	background-color: #EFF1F3;
	border-radius: 16px;
	padding: 60px 40px;
	margin-bottom: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
	display: block;
}

.msp-wizard .msp-intro-screen.hidden {
	opacity: 0;
	transform: translateY(-20px);
	pointer-events: none;
	display: none !important;
}

.msp-wizard .msp-intro-content {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	display: block;
}

.msp-wizard .msp-intro-heading {
	font-size: 36px;
	font-weight: 700;
	color: #2D2D2A;
	margin: 0 0 20px 0;
	line-height: 1.2;
	display: block;
}

.msp-wizard .msp-intro-subtitle {
	font-size: 18px;
	color: #2D2D2A;
	margin: 0 0 50px 0;
	line-height: 1.6;
	display: block;
}

.msp-wizard .msp-intro-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.msp-wizard .msp-intro-card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: block;
}

.msp-wizard .msp-intro-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.msp-wizard .msp-intro-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	background: #FFF0E4;
	border-radius: 12px;
	margin-left: auto;
	margin-right: auto;
}

.msp-wizard .msp-intro-card-title {
	font-size: 22px;
	font-weight: 700;
	color: #2D2D2A;
	margin: 0 0 15px 0;
	display: block;
}

.msp-wizard .msp-intro-card-text {
	font-size: 16px;
	color: #2D2D2A;
	line-height: 1.6;
	margin: 0;
	display: block;
}

.msp-wizard .msp-intro-button-wrapper {
	margin-top: 40px;
	display: block;
}

.msp-wizard .msp-intro-button {
	background-color: #ED701D;
	color: #FFFFFF;
	border: none;
	border-radius: 50px;
	padding: 18px 50px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	display: inline-block;
	text-align: center;
	line-height: 1.5;
}

.msp-wizard .msp-intro-button:hover {
	background-color: #d86318;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(237, 112, 29, 0.3);
}

.msp-wizard .msp-intro-button:active {
	transform: translateY(0);
}

/* Wizard Fade In Animation */
.msp-wizard .msp-wizard-wrapper {
	display: flex;
	gap: 30px;
	background: transparent;
	border-radius: 16px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	padding: 30px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	position: relative;
}

@media (min-width: 769px) {
	.msp-wizard .msp-wizard-wrapper {
		height: calc(100vh - 40px);
		max-height: calc(100vh - 40px);
		overflow: hidden;
	}
}

/* Desktop compact mode (fit wizard in 800px height with NO scrolling) */
@media (min-width: 769px) {
	.msp-wizard {
		margin: 20px auto;
		padding: 0 10px;
	}

	.msp-wizard .msp-wizard-wrapper {
		padding: 16px;
		gap: 20px;
	}

	.msp-wizard .msp-step-indicators {
		margin-bottom: 12px;
		padding-bottom: 10px;
	}

	.msp-wizard .msp-step-indicator {
		padding: 10px 8px;
		border-radius: 10px;
	}

	.msp-wizard .msp-step-number {
		width: 32px;
		height: 32px;
		font-size: 16px;
		margin-bottom: 6px;
	}

	.msp-wizard .msp-step-label {
		font-size: 12px;
	}

	.msp-wizard .msp-step h2 {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.msp-wizard .msp-products-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 12px;
		margin-bottom: 12px;
	}

	.msp-wizard .msp-product-card {
		padding: 10px;
		border-radius: 10px;
	}

	.msp-wizard .msp-product-image {
		height: 90px;
		margin-bottom: 6px;
		border-radius: 8px;
	}

	.msp-wizard .msp-product-name {
		font-size: 14px;
		margin-bottom: 4px;
	}

	.msp-wizard .msp-product-price {
		font-size: 12px;
	}

	.msp-wizard .msp-product-size-select {
		font-size: 12px;
		padding: 8px 10px;
		margin: 8px 0 4px 0;
	}

	.msp-wizard .msp-size-guide-link {
		font-size: 11px;
		margin-top: 2px;
	}

	.msp-wizard .msp-price-table-container {
		padding: 12px;
		margin-bottom: 12px;
	}

	.msp-wizard .msp-price-table-header {
		margin-bottom: 0;
	}

	.msp-wizard .msp-price-table-title {
		font-size: 16px;
	}

	.msp-wizard .msp-step-actions {
		margin-top: 12px;
		padding-top: 12px;
	}

	.msp-wizard .msp-btn {
		padding: 10px 18px;
		font-size: 14px;
		border-radius: 10px;
	}

	.msp-wizard .msp-dates-form,
	.msp-wizard .msp-contact-form {
		gap: 12px;
		margin-bottom: 12px;
	}

	.msp-wizard .msp-form-control {
		padding: 10px 12px;
		font-size: 14px;
	}

	.msp-wizard .msp-wizard-summary {
		padding: 16px;
		top: 12px;
	}

	.msp-wizard .msp-wizard-summary h3 {
		font-size: 18px;
		padding-bottom: 10px;
		margin-bottom: 12px;
	}

	.msp-wizard .msp-wizard-summary h4 {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.msp-wizard .msp-total-amount {
		font-size: 22px;
	}
}

.msp-wizard .msp-wizard-wrapper.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Informational banner above step indicators */
.msp-wizard .msp-info-banner {
	width: 100%;
	max-width: 100%;
	padding: 14px 18px;
	margin-bottom: 16px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(237, 112, 29, 0.2);
	flex-shrink: 0;
	display: block;
	box-sizing: border-box;
}

.msp-wizard .msp-info-banner-text {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 15px;
	line-height: 1.5;
	color: #2D2D2A;
	font-weight: 500;
	display: block;
}

@media (min-width: 769px) {
	.msp-wizard .msp-info-banner {
		padding: 12px 20px;
		margin-bottom: 12px;
		border-radius: 10px;
	}

	.msp-wizard .msp-info-banner-text {
		font-size: 14px;
		line-height: 1.5;
	}
}

@media (max-width: 768px) {
	.msp-wizard .msp-info-banner {
		padding: 12px 16px;
		margin-bottom: 14px;
	}

	.msp-wizard .msp-info-banner-text {
		font-size: 14px;
	}
}

/* Step Indicators */
.msp-wizard .msp-step-indicators {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 0;
	gap: 0;
	background: transparent;
	border-bottom: 2px solid #E0E0E0;
	padding-bottom: 12px;
	list-style: none;
	flex-shrink: 0;
}

@media (min-width: 769px) {
	.msp-wizard .msp-step-indicators {
		margin-bottom: 15px;
		padding-bottom: 10px;
	}
}

.msp-wizard .msp-step-indicator {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 15px 10px;
	border-radius: 12px;
	background: #2D2D2A;
	margin: 0 5px;
	list-style: none;
}

.msp-wizard .msp-step-indicator:first-child {
	margin-left: 0;
}

.msp-wizard .msp-step-indicator:last-child {
	margin-right: 0;
}

.msp-wizard .msp-step-indicator:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -10px;
	width: 20px;
	height: 2px;
	background: #E0E0E0;
	z-index: 10;
	transform: translateY(-50%);
}

.msp-wizard .msp-step-indicator.active:not(:last-child)::after,
.msp-wizard .msp-step-indicator.completed:not(:last-child)::after {
	background: #E0E0E0;
}

.msp-wizard .msp-step-number {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.msp-wizard .msp-step-indicator.active .msp-step-number {
	color: #FFFFFF;
}

.msp-wizard .msp-step-indicator.completed .msp-step-number {
	color: #FFFFFF;
}

.msp-wizard .msp-step-indicator.active {
	background: #ED701D;
}

.msp-wizard .msp-step-indicator.completed {
	background: #ED701D;
}

.msp-wizard .msp-step-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
	transition: all 0.3s ease;
	display: block;
}

.msp-wizard .msp-step-indicator.active .msp-step-label {
	color: #FFFFFF;
	font-weight: 600;
	opacity: 1;
}

.msp-wizard .msp-step-indicator.completed .msp-step-label {
	color: #FFFFFF;
	opacity: 1;
}

/* Steps */
.msp-wizard .msp-wizard-main {
	flex: 2;
	min-width: 0;
	display: flex;
	flex-direction: column;
	position: relative;
}

@media (min-width: 769px) {
	.msp-wizard .msp-wizard-main {
		height: 100%;
		overflow: hidden;
	}
}

/* Step content wrapper */
.msp-wizard .msp-wizard-main > .msp-step-indicators {
	flex-shrink: 0;
}

.msp-wizard .msp-step {
	display: none;
	animation: fadeIn 0.3s ease;
	flex: 1;
	overflow: visible;
	min-height: 0;
	padding-right: 0;
}

.msp-wizard .msp-step.active {
	display: flex;
	flex-direction: column;
}

/* Step content area (scrollable) */
.msp-wizard .msp-step > h2,
.msp-wizard .msp-step > .msp-products-grid,
.msp-wizard .msp-step > .msp-price-table-container,
.msp-wizard .msp-step > .msp-dates-form,
.msp-wizard .msp-step > .msp-contact-form {
	flex-shrink: 0;
}

/* Step actions (always visible at bottom) */
.msp-wizard .msp-step-actions {
	flex-shrink: 0;
	margin-top: auto;
	padding-top: 20px;
}

/* No internal step scrollbars: steps must fit within the fixed-height wizard */

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.msp-wizard .msp-step h2 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 700;
	display: block;
	flex-shrink: 0;
}

@media (min-width: 769px) {
	.msp-wizard .msp-step h2 {
		margin-bottom: 12px;
		font-size: 22px;
	}
}

/* Products Grid */
.msp-wizard .msp-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
	flex-shrink: 0;
}

@media (min-width: 769px) {
	.msp-wizard .msp-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 15px;
		margin-bottom: 15px;
	}
}

/* Price Table */
.msp-wizard .msp-price-table-container {
	background-color: transparent;
	border-radius: 14px;
	padding: 15px;
	margin-bottom: 0;
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	flex-shrink: 0;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-container {
		padding: 12px;
		margin-bottom: 0;
	}
}

.msp-wizard .msp-price-table-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-header {
		margin-bottom: 10px;
	}
}

.msp-wizard .msp-price-table-icon {
	flex-shrink: 0;
	display: block;
	width: 24px;
	height: 24px;
}

.msp-wizard .msp-price-table-icon svg {
	width: 100%;
	height: 100%;
}

.msp-wizard .msp-price-table-icon svg path {
	fill: #FFFFFF;
}

.msp-wizard .msp-price-table-title {
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
	display: block;
	letter-spacing: 0.3px;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-title {
		font-size: 16px;
	}
}

.msp-wizard .msp-price-table-wrapper {
	overflow-x: auto;
	display: block;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	width: 100%;
	box-sizing: border-box;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-wrapper {
		overflow-x: visible;
		width: 100%;
	}
}

.msp-wizard .msp-price-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #FFF8F0;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid #ED701D;
	display: table;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table {
		table-layout: fixed;
	}
}

.msp-wizard .msp-price-table thead {
	background-color: #ED701D;
	display: table-header-group;
	position: relative;
	width: 100%;
}

.msp-wizard .msp-price-table thead tr {
	display: table-row;
	width: 100%;
}

.msp-wizard .msp-price-table thead th {
	padding: 14px 12px;
	text-align: left;
	font-weight: 700;
	font-size: 14px;
	color: #FFFFFF;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
	display: table-cell;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
	letter-spacing: 0.2px;
	line-height: 1.4;
	vertical-align: middle;
	background-color: #ED701D;
	text-shadow: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table thead th {
		padding: 12px 10px;
		font-size: 13px;
		white-space: nowrap;
		overflow: visible;
		text-overflow: clip;
	}
}

.msp-wizard .msp-price-table thead th:first-child {
	padding-left: 16px;
	text-align: left;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table thead th:first-child {
		padding-left: 12px;
		text-align: left;
	}
}

.msp-wizard .msp-price-table thead th:last-child {
	border-right: none;
	padding-right: 16px;
	text-align: center;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table thead th:last-child {
		padding-right: 12px;
		text-align: center;
	}
}

.msp-wizard .msp-price-table thead th:not(:first-child) {
	text-align: center;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table thead th:not(:first-child) {
		text-align: center;
		padding-left: 10px;
		padding-right: 10px;
	}
}

.msp-wizard .msp-price-table-col-equipment {
	min-width: 220px;
	width: auto;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-col-equipment {
		min-width: 0;
		width: 28%;
		text-align: left !important;
	}
	
	.msp-wizard .msp-price-table thead th:not(.msp-price-table-col-equipment) {
		width: 18%;
		text-align: center !important;
		min-width: 0;
	}
	
	.msp-wizard .msp-price-table tbody td:not(:first-child) {
		white-space: nowrap;
	}
	
	/* Ensure header text is fully visible and readable */
	.msp-wizard .msp-price-table thead th {
		overflow: visible !important;
		text-overflow: clip !important;
		max-width: none !important;
		word-break: normal;
		hyphens: none;
	}
	
	/* Ensure consistent background across all header cells */
	.msp-wizard .msp-price-table thead th {
		background-color: #ED701D !important;
		background-image: none !important;
	}
}

.msp-wizard .msp-price-table tbody {
	display: table-row-group;
	background: #FFF8F0;
}

.msp-wizard .msp-price-table tbody tr {
	border-bottom: 1px solid rgba(237, 112, 29, 0.2);
	transition: background-color 0.2s ease;
	background: #FFF8F0;
	display: table-row;
}

.msp-wizard .msp-price-table tbody tr:hover {
	background-color: rgba(237, 112, 29, 0.08);
}

.msp-wizard .msp-price-table tbody tr:last-child {
	border-bottom: none;
}

.msp-wizard .msp-price-table-bundle {
	background-color: rgba(237, 112, 29, 0.05);
	border-top: 2px solid rgba(237, 112, 29, 0.3);
	border-bottom: none;
	font-weight: 600;
}

.msp-wizard .msp-price-table-bundle:hover {
	background-color: rgba(237, 112, 29, 0.1);
}

.msp-wizard .msp-price-table-bundle .msp-price-table-product {
	gap: 10px;
}

.msp-wizard .msp-price-table-bundle-icon {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(237, 112, 29, 0.1);
	border-radius: 6px;
	flex-shrink: 0;
	border: 1px solid rgba(237, 112, 29, 0.3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-bundle-icon {
		width: 35px;
		height: 35px;
	}
}

.msp-wizard .msp-price-table-bundle-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

.msp-wizard .msp-price-table-bundle-name {
	font-weight: 700;
	color: #ED701D;
}

.msp-wizard .msp-price-table tbody td {
	padding: 14px 12px;
	font-size: 15px;
	color: #2D2D2A;
	vertical-align: middle;
	border-right: 1px solid rgba(237, 112, 29, 0.2);
	display: table-cell;
	font-weight: 500;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table tbody td {
		padding: 10px 8px;
		font-size: 14px;
	}
}

.msp-wizard .msp-price-table tbody td:first-child {
	padding-left: 16px;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table tbody td:first-child {
		padding-left: 10px;
	}
}

.msp-wizard .msp-price-table tbody td:last-child {
	border-right: none;
	padding-right: 16px;
	text-align: center;
	font-weight: 600;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table tbody td:last-child {
		padding-right: 10px;
	}
}

.msp-wizard .msp-price-table tbody td:not(:first-child) {
	text-align: center;
	font-weight: 600;
}

.msp-wizard .msp-price-table-product {
	display: flex;
	align-items: center;
	gap: 12px;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-product {
		gap: 8px;
	}
}

.msp-wizard .msp-price-table-image {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 10px;
	flex-shrink: 0;
	border: 2px solid rgba(237, 112, 29, 0.3);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	background: #FFFFFF;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-image {
		width: 35px;
		height: 35px;
		border-radius: 6px;
	}
}

.msp-wizard .msp-price-table-placeholder {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(237, 112, 29, 0.2);
	border-radius: 10px;
	flex-shrink: 0;
	border: 2px solid rgba(237, 112, 29, 0.3);
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-placeholder {
		width: 35px;
		height: 35px;
		border-radius: 6px;
	}
}

.msp-wizard .msp-price-table-placeholder svg {
	width: 24px;
	height: 24px;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-placeholder svg {
		width: 20px;
		height: 20px;
	}
}

.msp-wizard .msp-price-table-name {
	font-weight: 600;
	color: #2D2D2A;
	display: inline;
	font-size: 16px;
	letter-spacing: 0.2px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

@media (min-width: 769px) {
	.msp-wizard .msp-price-table-name {
		font-size: 13px;
		line-height: 1.3;
		font-weight: 600;
	}
}

.msp-wizard .msp-product-card {
	border: 2px solid #EFF1F3;
	border-radius: 12px;
	padding: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #FFFFFF;
	text-align: center;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	display: block;
	position: relative;
}

.msp-wizard .msp-product-card:hover {
	border-color: #ED701D;
	box-shadow: 0 4px 12px rgba(237, 112, 29, 0.2);
	transform: translateY(-2px);
	background: #FFF3E6;
}

.msp-wizard .msp-product-card.selected {
	border-color: #ED701D;
	background: #FFF3E6;
	box-shadow: 0 4px 12px rgba(237, 112, 29, 0.3);
}

.msp-wizard .msp-product-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 10px;
	background: #EFF1F3;
}

.msp-wizard .msp-product-name {
	font-weight: 700;
	color: #2D2D2A;
	margin-bottom: 8px;
	font-size: 16px;
	display: block;
}

.msp-wizard .msp-product-price {
	font-size: 14px;
	color: #2D2D2A;
	display: block;
}

.msp-wizard .msp-product-checkbox {
	display: none;
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* Product Size Selector */
.msp-wizard .msp-product-size-wrapper {
	margin: 10px 0;
	text-align: left;
	display: block;
}

.msp-wizard .msp-product-size-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #2D2D2A;
	margin-bottom: 5px;
}

.msp-wizard .msp-product-size-select {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ED701D;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.3s ease;
	color: #2D2D2A;
	display: block;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.msp-wizard .msp-product-size-select:disabled {
	background: #EFF1F3;
	cursor: not-allowed;
	opacity: 0.6;
	border-color: #EFF1F3;
}

.msp-wizard .msp-product-size-select:not(:disabled):hover {
	border-color: #ED701D;
}

.msp-wizard .msp-product-size-select:not(:disabled):focus {
	outline: none;
	border: 2px solid #ED701D;
	box-shadow: 0 0 0 3px rgba(237, 112, 29, 0.1);
}

.msp-wizard .msp-product-card.selected .msp-product-size-select:not(:disabled) {
	border-color: #ED701D;
}

/* Size Guide Link */
.msp-wizard .msp-size-guide-link {
	color: #ED701D;
	text-decoration: none;
	font-size: 12px;
	margin-top: 5px;
	display: inline-block;
	transition: text-decoration 0.2s ease;
	cursor: pointer;
}

.msp-wizard .msp-size-guide-link:hover {
	text-decoration: underline;
}

/* Size Selection Modal (Mobile) */
.msp-wizard .msp-size-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.msp-wizard .msp-size-modal.active {
	display: block;
	opacity: 1;
	pointer-events: all;
}

.msp-wizard .msp-size-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.msp-wizard .msp-size-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	border-radius: 20px;
	width: 90%;
	max-width: 400px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.msp-wizard .msp-size-modal-header {
	background: #ED701D;
	border-radius: 20px 20px 0 0;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.msp-wizard .msp-size-modal-title {
	font-size: 20px;
	font-weight: 700;
	color: #2D2D2A;
	margin: 0;
	display: block;
}

.msp-wizard .msp-size-modal-close {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
}

.msp-wizard .msp-size-modal-close:hover {
	opacity: 0.7;
}

.msp-wizard .msp-size-modal-body {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
	max-height: calc(90vh - 140px);
	display: block;
}

.msp-wizard .msp-size-option {
	display: block;
	width: 100%;
	padding: 15px;
	margin-bottom: 10px;
	background: #FFFFFF;
	border: 1px solid #EFF1F3;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.msp-wizard .msp-size-option:hover {
	border-color: #ED701D;
	background: #FFF3E6;
}

.msp-wizard .msp-size-option.selected {
	border-color: #ED701D;
	background: #FFF3E6;
}

.msp-wizard .msp-size-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.msp-wizard .msp-size-option-text {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #2D2D2A;
	text-align: center;
}

.msp-wizard .msp-size-modal-footer {
	padding: 20px;
	border-top: 1px solid #EFF1F3;
	display: flex;
	justify-content: flex-end;
}

.msp-wizard .msp-size-modal-confirm {
	background: #ED701D;
	color: #FFFFFF;
	border: none;
	border-radius: 10px;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	display: inline-block;
	text-align: center;
	line-height: 1.5;
}

.msp-wizard .msp-size-modal-confirm:hover:not(:disabled) {
	background: #d86318;
	transform: translateY(-1px);
}

.msp-wizard .msp-size-modal-confirm:active:not(:disabled) {
	transform: translateY(0);
}

.msp-wizard .msp-size-modal-confirm:disabled {
	background: #ccc;
	cursor: not-allowed;
	opacity: 0.6;
}

.msp-wizard .msp-product-card.selected .msp-size-guide-link {
	display: inline-block;
}

.msp-wizard .msp-product-card:not(.selected) .msp-size-guide-link {
	display: none;
}

/* Bundle Card (Informational Only) - Hidden in products grid, only visible in price table */
.msp-wizard #msp-products-grid .msp-product-card-bundle {
	display: none !important;
}

.msp-wizard .msp-product-card-bundle:hover {
	transform: none !important;
	border-color: rgba(237, 112, 29, 0.3) !important;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08) !important;
	background: rgba(255, 255, 255, 0.9) !important;
}

.msp-wizard .msp-product-card-bundle::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.3);
	z-index: 1;
	pointer-events: none;
	border-radius: 12px;
}

.msp-wizard .msp-product-bundle-label {
	font-size: 10px;
	color: #ED701D;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 4px 0;
	display: block;
	position: relative;
	z-index: 2;
}

.msp-wizard .msp-product-card-bundle .msp-product-checkbox {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	opacity: 0.5;
	cursor: not-allowed !important;
	pointer-events: none;
}

.msp-wizard .msp-product-card-bundle .msp-product-name,
.msp-wizard .msp-product-card-bundle .msp-product-price,
.msp-wizard .msp-product-card-bundle .msp-product-image {
	position: relative;
	z-index: 2;
}

/* Size Guide Modal */
.msp-wizard .msp-size-guide-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.msp-wizard .msp-size-guide-modal.active {
	display: block;
	opacity: 1;
	pointer-events: all;
}

.msp-wizard .msp-size-guide-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.msp-wizard .msp-size-guide-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	border-radius: 20px;
	width: 90%;
	max-width: 900px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.msp-wizard .msp-size-guide-modal-header {
	background: #ED701D;
	border-radius: 20px 20px 0 0;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}

.msp-wizard .msp-size-guide-modal-title {
	font-size: 20px;
	font-weight: 700;
	color: #2D2D2A;
	margin: 0;
	display: block;
}

.msp-wizard .msp-size-guide-modal-close {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.msp-wizard .msp-size-guide-modal-close:hover {
	opacity: 0.7;
}

.msp-wizard .msp-size-guide-modal-body {
	padding: 30px;
	flex: 1;
	overflow-y: auto;
	max-height: calc(90vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
}

.msp-wizard .msp-size-guide-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.msp-modal-open {
	overflow: hidden !important;
}

/* Price table open button (compact header) */
.msp-wizard .msp-price-table-open {
	display: none !important;
}

/* Price Table Modal */
.msp-wizard .msp-price-table-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.msp-wizard .msp-price-table-modal.active {
	display: block;
	opacity: 1;
	pointer-events: all;
}

.msp-wizard .msp-price-table-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.msp-wizard .msp-price-table-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	border-radius: 20px;
	width: 94%;
	max-width: 1000px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.msp-wizard .msp-price-table-modal-header {
	background: #ED701D;
	border-radius: 20px 20px 0 0;
	padding: 18px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	gap: 12px;
}

.msp-wizard .msp-price-table-modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
	display: block;
}

.msp-wizard .msp-price-table-modal-close {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.msp-wizard .msp-price-table-modal-close:hover {
	opacity: 0.75;
}

.msp-wizard .msp-price-table-modal-body {
	padding: 16px;
	flex: 1;
	overflow-y: auto;
	background: #FFFFFF;
}

/* Dates Form */
.msp-wizard .msp-dates-form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 25px;
	flex-shrink: 0;
}

/* Step 2 descriptive note (below date fields only) */
.msp-wizard .msp-step-2 .msp-step-2-note {
	margin: 0 0 20px 0;
	padding: 0;
	font-size: 25px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 400;
	display: block;
	flex-shrink: 0;
}

@media (min-width: 769px) {
	.msp-wizard .msp-step-2 .msp-step-2-note {
		margin-bottom: 16px;
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.msp-wizard .msp-step-2 .msp-step-2-note {
		margin-bottom: 18px;
		font-size: 12px;
	}
}

/* Contact Form */
.msp-wizard .msp-contact-form {
	display: grid;
	gap: 20px;
	margin-bottom: 25px;
	flex-shrink: 0;
}

/* Form Controls */
.msp-wizard .msp-form-group {
	display: flex;
	flex-direction: column;
}

.msp-wizard .msp-form-group label {
	margin-bottom: 8px;
	font-weight: 600;
	color: #FFFFFF;
	font-size: 14px;
	display: block;
}

.msp-wizard .msp-required {
	color: #ED701D;
	display: inline;
}

.msp-wizard .msp-form-control {
	padding: 12px 15px;
	border: 2px solid #EFF1F3;
	border-radius: 10px;
	font-size: 16px;
	transition: border-color 0.3s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #2D2D2A;
	background: #FFFFFF;
	display: block;
	width: 100%;
	line-height: 1.5;
}

.msp-wizard .msp-form-control:focus {
	outline: none;
	border-color: #ED701D;
	box-shadow: 0 0 0 3px rgba(237, 112, 29, 0.1);
}

.msp-wizard .msp-form-control:invalid {
	border-color: #ED701D;
}

/* Privacy consent (Step 3) */
.msp-wizard .msp-privacy-consent-group {
	margin-top: 4px;
}

.msp-wizard .msp-privacy-consent-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	margin-bottom: 0;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 14px;
	line-height: 1.5;
}

.msp-wizard .msp-privacy-consent-checkbox {
	/* Custom visible checkbox (global reset strips default input appearance) */
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
	margin: 0;
	margin-top: 2px;
	padding: 0;
	flex-shrink: 0;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, 0.9);
	background-color: #2D2D2A;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.msp-wizard .msp-privacy-consent-checkbox:checked {
	background-color: #ED701D;
	border-color: #ED701D;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: 14px 14px;
	background-position: center;
	background-repeat: no-repeat;
}

.msp-wizard .msp-privacy-consent-text {
	display: inline;
}

.msp-wizard .msp-privacy-link {
	color: #ED701D;
	text-decoration: underline;
	cursor: pointer;
}

.msp-wizard .msp-privacy-link:hover {
	color: #ff8533;
}

.msp-wizard .msp-privacy-error {
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 13px;
	color: #f44336;
	font-weight: 500;
	display: block;
}

/* Privacy Policy Modal (dark theme, rounded, scrollable) */
.msp-wizard .msp-privacy-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.msp-wizard .msp-privacy-modal.active {
	display: block;
	opacity: 1;
	pointer-events: all;
}

.msp-wizard .msp-privacy-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
}

.msp-wizard .msp-privacy-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	border-radius: 16px;
	width: 90%;
	max-width: 640px;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.msp-wizard .msp-privacy-modal-header {
	background: #2D2D2A;
	border-radius: 16px 16px 0 0;
	padding: 18px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
	gap: 12px;
}

.msp-wizard .msp-privacy-modal-title {
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0;
	display: block;
}

.msp-wizard .msp-privacy-modal-close {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
	color: #FFFFFF;
}

.msp-wizard .msp-privacy-modal-close:hover {
	opacity: 0.8;
}

.msp-wizard .msp-privacy-modal-body {
	padding: 24px;
	flex: 1;
	overflow-y: auto;
	max-height: calc(85vh - 60px);
	background: #FFFFFF;
}

.msp-wizard .msp-privacy-modal-inner {
	font-size: 14px;
	line-height: 1.6;
	color: #2D2D2A;
}

.msp-wizard .msp-privacy-modal-inner p {
	margin: 0 0 12px 0;
}

.msp-wizard .msp-privacy-modal-inner p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.msp-wizard .msp-privacy-modal-content {
		width: 95%;
		max-height: 90vh;
	}

	.msp-wizard .msp-privacy-modal-body {
		padding: 16px;
		max-height: calc(90vh - 56px);
	}

	.msp-wizard .msp-privacy-modal-title {
		font-size: 16px;
	}
}

.msp-wizard .msp-form-control[type="date"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.msp-wizard .msp-form-control[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
}

/* Buttons */
.msp-wizard .msp-step-actions {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #EFF1F3;
}

.msp-wizard .msp-btn {
	padding: 12px 30px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.5;
	text-align: center;
}

.msp-wizard .msp-btn-primary {
	background: #ED701D;
	color: #FFFFFF;
}

.msp-wizard .msp-btn-primary:hover:not(:disabled) {
	background: #d86318;
	box-shadow: 0 4px 12px rgba(237, 112, 29, 0.3);
	transform: translateY(-2px);
}

.msp-wizard .msp-btn-primary:disabled {
	background: #EFF1F3;
	color: #999;
	cursor: not-allowed;
	opacity: 0.6;
}

.msp-wizard .msp-btn-secondary {
	background: #EFF1F3;
	color: #2D2D2A;
	border: 2px solid #EFF1F3;
}

.msp-wizard .msp-btn-secondary:hover {
	background: #E5E5E5;
	border-color: #E5E5E5;
}

/* Summary Sidebar */
.msp-wizard .msp-wizard-summary {
	flex: 1;
	background: #FFFFFF;
	border: 2px solid #EFF1F3;
	border-radius: 12px;
	padding: 25px;
	height: fit-content;
	position: sticky;
	top: 20px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	display: block;
}

@media (min-width: 769px) {
	.msp-wizard .msp-wizard-summary {
		max-height: none;
		overflow: visible;
	}
}

/* No summary scrollbar in no-scroll desktop mode */

.msp-wizard .msp-wizard-summary h3 {
	margin-top: 0;
	color: #2D2D2A;
	font-size: 22px;
	border-bottom: 2px solid #EFF1F3;
	padding-bottom: 15px;
	margin-bottom: 20px;
	display: block;
	font-weight: 700;
}

.msp-wizard .msp-summary-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* Summary Actions (Continue button below summary) */
.msp-wizard .msp-summary-actions {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #EFF1F3;
	display: flex;
	justify-content: center;
}

.msp-wizard .msp-summary-actions .msp-btn {
	width: 100%;
}

@media (min-width: 769px) {
	.msp-wizard .msp-summary-actions {
		margin-top: 15px;
		padding-top: 15px;
	}
}

.msp-wizard .msp-summary-products h4,
.msp-wizard .msp-summary-dates h4,
.msp-wizard .msp-summary-total h4 {
	margin: 0 0 10px 0;
	color: #2D2D2A;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	display: block;
}

.msp-wizard .msp-summary-products ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
}

.msp-wizard .msp-summary-products li {
	padding: 8px 0;
	border-bottom: 1px solid #EFF1F3;
	color: #2D2D2A;
	display: list-item;
}

.msp-wizard .msp-summary-products li:last-child {
	border-bottom: none;
}

.msp-wizard .msp-summary-empty {
	color: #999;
	font-style: italic;
}

.msp-wizard .msp-summary-dates p {
	margin: 5px 0;
	color: #2D2D2A;
	display: block;
}

.msp-wizard .msp-summary-days {
	font-size: 14px;
	color: #2D2D2A;
	display: block;
}

/* Daily breakdown section */
.msp-wizard .msp-summary-breakdown h4 {
	margin: 0 0 10px 0;
	color: #2D2D2A;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	display: block;
}

.msp-wizard .msp-summary-daily-breakdown-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 200px;
	overflow-y: auto;
}

.msp-wizard .msp-summary-day-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	background: #F5F5F5;
	border-radius: 10px;
	border: 1px solid #EFF1F3;
	font-size: 14px;
	color: #2D2D2A;
	flex-wrap: wrap;
}

.msp-wizard .msp-summary-day-label {
	font-weight: 600;
	color: #2D2D2A;
	flex-shrink: 0;
}

.msp-wizard .msp-summary-day-products {
	flex: 1;
	min-width: 0;
	color: #555;
	font-size: 13px;
}

.msp-wizard .msp-summary-day-price {
	font-weight: 600;
	color: #2D2D2A;
	flex-shrink: 0;
}

.msp-wizard .msp-summary-total {
	border-top: 2px solid #EFF1F3;
	padding-top: 20px;
	display: block;
}

.msp-wizard .msp-total-amount {
	font-size: 32px;
	font-weight: bold;
	color: #ED701D;
	margin: 10px 0 0 0;
	display: block;
}

/* Loading Overlay */
.msp-wizard .msp-loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	z-index: 1000;
}

.msp-wizard .msp-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #EFF1F3;
	border-top-color: #ED701D;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 15px;
	display: block;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.msp-wizard .msp-loading-overlay p {
	color: #2D2D2A;
	font-size: 16px;
	display: block;
	margin: 0;
}

/* Messages */
.msp-wizard .msp-message {
	padding: 15px 20px;
	border-radius: 10px;
	margin: 20px 0;
	animation: slideDown 0.3s ease;
	display: block;
}

.msp-wizard .msp-message.success {
	background: #E8F5E9;
	color: #2E7D32;
	border: 1px solid #4CAF50;
}

.msp-wizard .msp-message.error {
	background: #FFEBEE;
	color: #C62828;
	border: 1px solid #F44336;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.msp-wizard {
		padding: 0 15px;
		margin: 20px auto;
	}

	.msp-wizard .msp-wizard-wrapper {
		flex-direction: column;
		padding: 20px;
	}

	.msp-wizard .msp-intro-screen {
		padding: 40px 20px;
	}

	.msp-wizard .msp-intro-heading {
		font-size: 28px;
	}

	.msp-wizard .msp-intro-subtitle {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.msp-wizard .msp-intro-cards {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}

	.msp-wizard .msp-intro-card {
		padding: 30px 20px;
	}

	.msp-wizard .msp-intro-card-title {
		font-size: 20px;
	}

	.msp-wizard .msp-intro-card-text {
		font-size: 15px;
	}

	.msp-wizard .msp-intro-button {
		padding: 16px 40px;
		font-size: 16px;
		width: 100%;
		max-width: 300px;
	}

	.msp-wizard .msp-wizard-wrapper {
		flex-direction: column;
		padding: 20px;
	}

	.msp-wizard .msp-wizard-summary {
		position: static;
	}

	/* Step 1 mobile only: show Tabla de precios before product cards (flex order) */
	.msp-wizard .msp-step-1 .msp-price-table-container {
		order: 1;
	}
	.msp-wizard .msp-step-1 .msp-products-grid {
		order: 2;
	}

	.msp-wizard .msp-price-table-container {
		padding: 15px;
		margin-bottom: 20px;
	}

	.msp-wizard .msp-price-table-header {
		margin-bottom: 18px;
	}

	.msp-wizard .msp-price-table-title {
		font-size: 18px;
	}

	.msp-wizard .msp-price-table-icon {
		width: 20px;
		height: 20px;
	}

	.msp-wizard .msp-price-table-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		border-radius: 10px;
	}

	.msp-wizard .msp-price-table {
		min-width: 600px;
		border-radius: 10px;
		table-layout: auto;
	}

	.msp-wizard .msp-price-table thead th {
		padding: 12px 10px;
		font-size: 13px;
		white-space: nowrap;
		overflow: visible;
		text-overflow: clip;
		background-color: #ED701D;
	}

	.msp-wizard .msp-price-table thead th:first-child {
		padding-left: 15px;
	}

	.msp-wizard .msp-price-table thead th:last-child {
		padding-right: 15px;
	}

	.msp-wizard .msp-price-table tbody td {
		padding: 14px 10px;
		font-size: 14px;
	}

	.msp-wizard .msp-price-table tbody td:first-child {
		padding-left: 15px;
	}

	.msp-wizard .msp-price-table tbody td:last-child {
		padding-right: 15px;
	}

	.msp-wizard .msp-price-table-col-equipment {
		min-width: 180px;
	}

	.msp-wizard .msp-price-table-image,
	.msp-wizard .msp-price-table-placeholder {
		width: 45px;
		height: 45px;
	}

	.msp-wizard .msp-price-table-name {
		font-size: 15px;
	}

	.msp-wizard .msp-product-size-wrapper {
		display: none;
	}

	/* Mobile only: always show "Guía de tallas" link (even before size selected) */
	.msp-wizard .msp-product-card .msp-size-guide-link {
		display: inline-block !important;
	}

	.msp-wizard .msp-size-modal-content {
		width: 95%;
		max-width: none;
	}

	.msp-wizard .msp-size-guide-modal-content {
		width: 95%;
		max-width: none;
		max-height: 95vh;
	}

	.msp-wizard .msp-size-guide-modal-body {
		padding: 15px;
		max-height: calc(95vh - 70px);
	}

	.msp-wizard .msp-step-indicators {
		flex-direction: column;
		gap: 15px;
	}

	.msp-wizard .msp-step-indicator:not(:last-child)::after {
		display: none;
	}

	.msp-wizard .msp-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 15px;
	}

	.msp-wizard .msp-dates-form {
		grid-template-columns: 1fr;
	}

	.msp-wizard .msp-step-actions {
		flex-direction: column-reverse;
	}

	.msp-wizard .msp-btn {
		width: 100%;
		text-align: center;
	}
}

}
