/* MW Pre-Book — Frontend Styles */

/* Login prompt */
.mwp-login-prompt {
	max-width: 480px;
	margin: 60px auto;
	text-align: center;
	padding: 48px 40px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.mwp-login-icon {
	margin-bottom: 20px;
	opacity: 0.7;
}
.mwp-login-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a2744;
	margin: 0 0 10px;
}
.mwp-login-text {
	font-size: 15px;
	color: #666;
	margin: 0 0 28px;
	line-height: 1.5;
}
.mwp-login-btn {
	display: inline-block;
	background: #c0392b;
	color: #fff !important;
	padding: 14px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background 0.2s, box-shadow 0.2s;
}
.mwp-login-btn:hover {
	background: #a93226;
	box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* Campaign listing */
.mwp-campaigns-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}
.mwp-campaigns-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid #e5e7eb;
}
.mwp-campaigns-tag {
	display: inline-block;
	color: #c0392b;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	border: 1px solid #c0392b;
	padding: 5px 14px;
	border-radius: 4px;
	margin-bottom: 12px;
}
.mwp-campaigns-header h2 {
	margin: 0 0 12px;
	font-size: 32px;
	color: #1a2744;
}
.mwp-campaigns-header p {
	color: #666;
	font-size: 15px;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}
.mwp-disclaimer {
	background: #1a2744;
	color: #fff !important;
	font-size: 13px !important;
	font-style: italic;
	text-align: center;
	padding: 10px 20px;
	border-radius: 6px;
	margin-top: 16px !important;
	margin-bottom: 0 !important;
}
.mwp-single-campaign .mwp-disclaimer {
	margin: 0 0 24px !important;
}
.mwp-choose-label {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 24px;
}
.mwp-campaigns-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, 360px);
	justify-content: center;
	gap: 24px;
}
.mwp-campaign-card {
	width: 360px;
	max-width: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: box-shadow 0.25s, transform 0.25s;
}
a.mwp-campaign-card {
	text-decoration: none !important;
	color: inherit !important;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}
.mwp-campaign-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.mwp-campaign-meta {
	margin-top: auto; /* pin deadline + button to bottom so cards stay aligned */
}
.mwp-campaign-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}
.mwp-campaign-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
.mwp-campaign-info {
	padding: 24px;
}
.mwp-campaign-info h3 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.25;
	min-height: calc(24px * 1.25 * 2); /* always 2 lines tall so cards stay aligned */
	color: #c0392b;
	font-weight: 700;
	letter-spacing: -0.005em;
	display: flex;
	align-items: flex-start;
}
.mwp-campaign-desc {
	color: #555;
	font-size: 14px;
	margin-bottom: 16px;
	line-height: 1.5;
}
.mwp-campaign-meta {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: #888;
	margin-bottom: 18px;
	padding-top: 12px;
	border-top: 1px solid #f0f0f0;
}
.mwp-view-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 14px;
}

/* Campaign nav dropdown shortcode */
.mwp-campaign-nav {
	position: relative;
	display: inline-block;
}
.mwp-campaign-nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #1a2744;
	color: #fff !important;
	padding: 10px 20px;
	border-radius: 8px;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.2s, box-shadow 0.2s;
	cursor: pointer;
	line-height: 1;
}
.mwp-campaign-nav:hover .mwp-campaign-nav-btn {
	background: #243352;
	box-shadow: 0 4px 12px rgba(26,39,68,0.3);
}
.mwp-nav-icon {
	flex-shrink: 0;
}
.mwp-nav-chevron {
	flex-shrink: 0;
	transition: transform 0.2s;
}
.mwp-campaign-nav:hover .mwp-nav-chevron {
	transform: rotate(180deg);
}
.mwp-nav-badge {
	background: #c0392b;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 10px;
	padding: 0 5px;
}
.mwp-campaign-dropdown {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.14);
	padding: 8px 0;
	margin-top: 8px;
	z-index: 9999;
	transform: translateY(-4px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.mwp-campaign-dropdown::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 24px;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 2px;
	transform: rotate(45deg);
	box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}
.mwp-campaign-nav:hover .mwp-campaign-dropdown {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
.mwp-dropdown-viewall {
	display: block;
	padding: 10px 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #94a3b8 !important;
	text-decoration: none !important;
	border-bottom: 1px solid #f1f5f9;
	transition: color 0.15s;
}
.mwp-dropdown-viewall:hover {
	color: #c0392b !important;
}
.mwp-campaign-dropdown-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 20px;
	text-decoration: none !important;
	transition: background 0.15s;
	border-radius: 6px;
	margin: 4px 8px;
}
.mwp-campaign-dropdown-item:hover {
	background: #f1f5f9;
}
.mwp-dropdown-name {
	font-size: 14px;
	font-weight: 600;
	color: #1a2744 !important;
}
.mwp-campaign-dropdown-item:hover .mwp-dropdown-name {
	color: #c0392b !important;
}
.mwp-dropdown-deadline {
	font-size: 12px;
	color: #94a3b8 !important;
	font-weight: 400;
}

/* View switcher */
.mwp-view-switcher {
	display: inline-flex;
	gap: 4px;
	margin-right: 12px;
	background: rgba(255,255,255,0.15);
	border-radius: 6px;
	padding: 3px;
}
.mwp-view-btn-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 4px;
	background: transparent;
	color: rgba(255,255,255,0.5);
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	padding: 0;
	line-height: 1;
}
.mwp-view-btn-toggle:hover {
	color: rgba(255,255,255,0.8);
}
.mwp-view-btn-toggle.active {
	background: rgba(255,255,255,0.25);
	color: #fff;
}

/* Grid view */
.mwp-products-form-table.mwp-grid-active thead {
	display: none;
}
.mwp-products-form-table.mwp-grid-active tbody {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	padding: 20px 0;
}
.mwp-products-form-table.mwp-grid-active tbody tr {
	display: flex;
	flex-direction: column;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: box-shadow 0.2s, transform 0.2s;
	border-bottom: none;
}
.mwp-products-form-table.mwp-grid-active tbody tr:last-child {
	border-bottom: 1px solid #e5e7eb;
}
.mwp-products-form-table.mwp-grid-active tbody tr:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}
.mwp-products-form-table.mwp-grid-active .mwp-col-image {
	padding: 0 !important;
	order: -1;
}
.mwp-products-form-table.mwp-grid-active .mwp-product-thumb {
	width: 100% !important;
	height: 200px !important;
	background: #f8fafc;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	box-sizing: border-box;
}
.mwp-products-form-table.mwp-grid-active .mwp-product-thumb img {
	width: auto !important;
	height: 100% !important;
	max-width: 100% !important;
	border-radius: 0 !important;
	object-fit: contain;
	box-shadow: none;
}
.mwp-products-form-table.mwp-grid-active td[data-title="Product"] {
	padding: 14px 16px 6px !important;
	font-size: 14px;
}
.mwp-products-form-table.mwp-grid-active .mwp-product-name {
	font-size: 14px;
}
.mwp-products-form-table.mwp-grid-active td[data-title="SKU"] {
	padding: 0 16px 8px !important;
	font-size: 12px;
	color: #999;
}
.mwp-products-form-table.mwp-grid-active td[data-title="Price"] {
	padding: 0 16px 8px !important;
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
}
.mwp-products-form-table.mwp-grid-active td[data-title="Price"]::before {
	content: '';
}
.mwp-products-form-table.mwp-grid-active td[data-title="Quantity"] {
	padding: 8px 16px 8px !important;
	margin-top: auto;
}
.mwp-products-form-table.mwp-grid-active .mwp-qty-input {
	width: 100% !important;
}
.mwp-products-form-table.mwp-grid-active td[data-title="Line Total"] {
	padding: 0 16px 16px !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #c0392b;
	font-weight: 700;
	border-top: 1px dashed #f1f5f9;
	padding-top: 12px !important;
	margin-top: 4px;
}
.mwp-products-form-table.mwp-grid-active td[data-title="Line Total"]::before {
	content: 'Line Total';
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* =========================================
   Hero banner with image overlay
   ========================================= */
.mwp-hero {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 32px;
	background: #1a2744;
	min-height: 200px;
}
.mwp-hero-has-image {
	min-height: 540px;
}
.mwp-hero-logo {
	position: absolute !important;
	top: 20px;
	right: 24px;
	z-index: 3;
	height: 52px !important;
	width: 52px !important;
	background: rgba(255,255,255,0.95);
	border-radius: 50%;
	padding: 6px;
	pointer-events: none;
	object-fit: contain;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.mwp-hero-bg {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
}
.mwp-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.mwp-hero-bg::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to right, rgba(10, 20, 40, 0.9) 0%, rgba(10, 20, 40, 0.7) 40%, rgba(10, 20, 40, 0.15) 75%, transparent 100%);
}
.mwp-hero-content {
	position: relative;
	z-index: 2;
	padding: 50px 40px 44px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 540px;
	max-width: 60%;
}
.mwp-hero:not(.mwp-hero-has-image) .mwp-hero-content {
	min-height: 200px;
	padding: 40px;
}
.mwp-hero-tag {
	display: inline-block;
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	background: none;
	border: none;
	padding: 0;
	margin-bottom: 8px;
}
.mwp-hero-content h1 {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	color: #fff;
	font-size: 52px;
	font-weight: 700;
	margin: 0 0 14px;
	line-height: 1.1;
	letter-spacing: -0.005em;
	text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.mwp-hero-subtitle {
	color: rgba(255,255,255,0.8);
	font-size: 17px;
	margin: 0 0 18px;
}
.mwp-hero-deadline {
	position: absolute;
	bottom: 40px;
	right: 40px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 10px;
	padding: 14px 22px;
}
.mwp-deadline-label {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}
.mwp-deadline-date {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
}

/* PRE-ORDER FORM title bar */
.mwp-form-title-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #c0392b;
	color: #fff;
	padding: 16px 24px;
	border-radius: 8px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}
.mwp-form-title-tag {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.mwp-form-title-sep {
	font-size: 20px;
	opacity: 0.5;
}
.mwp-form-title-text {
	font-size: 15px;
	font-weight: 400;
	opacity: 0.9;
}
.mwp-form-title-count {
	margin-left: auto;
	font-size: 13px;
	background: rgba(255,255,255,0.2);
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 600;
}

/* Breadcrumb */
.mwp-breadcrumb {
	margin-bottom: 20px;
}
.mwp-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	text-decoration: none;
	transition: color 0.2s;
}
.mwp-breadcrumb a:hover {
	color: #c0392b;
}

/* =========================================
   Single campaign — content area
   ========================================= */
.mwp-single-campaign {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0;
}
.mwp-campaign-description {
	color: #555;
	font-size: 15px;
	margin-bottom: 28px;
	max-width: 800px;
}

/* Filter bar */
.mwp-filter-bar {
	position: relative;
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-top: none;
	border-radius: 0 0 8px 8px;
	margin-bottom: 4px;
}
.mwp-filter-search {
	flex: 1;
}
.mwp-search-input {
	width: 100%;
	height: 44px;
	padding: 0 14px !important;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	transition: border-color 0.2s;
	box-sizing: border-box;
	background: #fff !important;
	background-image: none !important;
}
.mwp-search-input:focus {
	border-color: #2563EB;
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.mwp-filter-brand {
	flex-shrink: 0;
}
.mwp-filter-bar select.mwp-brand-select {
	height: 44px !important;
	min-height: 44px !important;
	max-height: 44px !important;
	line-height: 44px !important;
	padding: 0 32px 0 14px !important;
	border: 2px solid #ddd !important;
	border-radius: 6px !important;
	font-size: 14px !important;
	background-color: #fff !important;
	min-width: 200px;
	cursor: pointer;
	box-sizing: border-box !important;
	overflow: visible !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 12px center !important;
	margin: 0 !important;
}
.mwp-filter-bar select.mwp-brand-select:focus {
	border-color: #2563EB !important;
	outline: none !important;
}
.mwp-filter-bar .mwp-search-input {
	height: 44px !important;
	min-height: 44px !important;
	line-height: 44px !important;
	margin: 0 !important;
}
.mwp-filter-count {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	white-space: nowrap;
	display: none;
	flex-shrink: 0;
}
@media (max-width: 600px) {
	.mwp-filter-bar {
		flex-wrap: wrap;
		padding: 12px 16px;
	}
	.mwp-filter-search {
		width: 100%;
	}
	.mwp-brand-select {
		width: 100%;
	}
}

/* Product table */
.mwp-products-form-table {
	margin-top: 8px;
	width: 100%;
	border-collapse: collapse;
}
.mwp-products-form-table thead th {
	padding: 14px 16px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.8px;
	color: #666;
	border-bottom: 2px solid #ddd;
	text-align: left;
}
.mwp-products-form-table tbody tr {
	border-bottom: 1px solid #eee;
	transition: background 0.15s;
}
.mwp-products-form-table tbody tr:hover {
	background: #f9fafb;
}
.mwp-products-form-table tbody tr:last-child {
	border-bottom: 2px solid #ddd;
}
.mwp-products-form-table tbody td {
	padding: 16px 16px;
	vertical-align: middle;
}
.mwp-products-form-table td[data-title="Product"] {
	font-weight: 500;
	font-size: 15px;
}
.mwp-products-form-table td[data-title="SKU"] {
	color: #888;
	font-size: 13px;
	font-family: monospace;
}
.mwp-products-form-table td[data-title="Price"],
.mwp-products-form-table td[data-title="Line Total"] {
	font-size: 14px;
	font-weight: 600;
	color: #1a2744;
	white-space: nowrap;
}
.mwp-products-form-table td[data-title="Line Total"] {
	color: #c0392b;
}
.mwp-price-na {
	color: #bbb;
	font-weight: 400;
}
.mwp-unit-price,
.mwp-line-total,
.mwp-unit-price .woocommerce-Price-amount,
.mwp-line-total .woocommerce-Price-amount,
.mwp-review-table .mwp-col-price,
.mwp-review-table .mwp-col-line-total,
.mwp-confirmation-table td[data-title="Price"],
.mwp-confirmation-table td[data-title="Line Total"] {
	white-space: nowrap;
	font-weight: 600;
}
.mwp-unit-price .woocommerce-Price-currencySymbol,
.mwp-line-total .woocommerce-Price-currencySymbol,
.mwp-review-table .woocommerce-Price-currencySymbol,
.mwp-confirmation-table .woocommerce-Price-currencySymbol,
.mwp-summary-total-value .woocommerce-Price-currencySymbol,
#mwp-review-total .woocommerce-Price-currencySymbol {
	margin-right: 1px;
}
/* Product thumbnail */
.mwp-product-thumb {
	width: 100px;
	height: 100px;
}
.mwp-product-thumb img {
	border-radius: 8px;
	width: 100px;
	height: 100px;
	object-fit: cover;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	transition: transform 0.2s;
}
.mwp-product-thumb {
	cursor: pointer;
}
.mwp-product-thumb img:hover {
	transform: scale(1.05);
}

/* Image lightbox */
.mwp-lightbox {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.8);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.mwp-lightbox img {
	max-width: 90%;
	max-height: 85vh;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mwp-lightbox-close {
	position: absolute;
	top: 20px;
	right: 24px;
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	cursor: pointer;
	line-height: 1;
	opacity: 0.8;
}
.mwp-lightbox-close:hover {
	opacity: 1;
}

/* Product name + tooltip */
.mwp-product-name-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.mwp-product-brand {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #c0392b;
	margin-bottom: 2px;
}
.mwp-product-name {
	display: block;
	font-weight: 700;
	font-size: 15px;
}
.mwp-product-category {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 2px;
}

/* Quantity input — always show arrows */
.mwp-products-form-table .mwp-qty-input {
	width: 90px;
	text-align: center;
	padding: 10px 8px;
	font-size: 16px;
	font-weight: 600;
	border: 2px solid #ddd;
	border-radius: 6px;
	-moz-appearance: number-input;
	-webkit-appearance: auto;
	appearance: auto;
	transition: border-color 0.2s;
}
.mwp-products-form-table .mwp-qty-input:focus {
	border-color: #2563EB;
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.mwp-qty-input::-webkit-inner-spin-button,
.mwp-qty-input::-webkit-outer-spin-button {
	opacity: 1;
	height: 34px;
}

/* Selection summary (live counter) */
.mwp-selection-summary {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px 24px;
	margin-top: 24px;
}
.mwp-summary-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.mwp-summary-title {
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
}
.mwp-summary-count {
	font-size: 13px;
	font-weight: 600;
	color: #c0392b;
	background: rgba(192,57,43,0.08);
	padding: 4px 12px;
	border-radius: 20px;
}
.mwp-summary-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mwp-summary-list li {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	font-size: 14px;
	color: #444;
	border-bottom: 1px solid #eee;
}
.mwp-summary-list li:last-child {
	border-bottom: none;
}
.mwp-summary-list .mwp-summary-qty {
	font-weight: 700;
	color: #1a2744;
	min-width: 50px;
	text-align: right;
}
.mwp-summary-list .mwp-summary-line-total {
	display: inline-block;
	min-width: 80px;
	text-align: right;
	margin-left: 12px;
	color: #c0392b;
	font-weight: 600;
}
.mwp-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 2px solid #e2e8f0;
}
.mwp-summary-totals {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 2px solid #e2e8f0;
}
.mwp-summary-total-row {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
	padding: 4px 0;
}
.mwp-summary-total-row.mwp-summary-grand {
	margin-top: 6px;
	padding-top: 10px;
	border-top: 2px solid #e2e8f0;
}
.mwp-summary-total-label {
	font-size: 15px;
	font-weight: 700;
	color: #1a2744;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	min-width: 140px;
	text-align: right;
}
.mwp-summary-total-value {
	font-size: 22px;
	font-weight: 800;
	color: #c0392b;
	min-width: 120px;
	text-align: right;
}
.mwp-review-total-row td {
	border-top: 2px solid #ddd;
	font-size: 16px;
	padding-top: 14px !important;
	white-space: nowrap;
}
.mwp-review-total-row td:last-child {
	color: #c0392b;
	font-size: 20px;
	white-space: nowrap;
}
.mwp-review-table {
	table-layout: auto;
	width: 100%;
}
.mwp-review-table th,
.mwp-review-table td {
	white-space: nowrap;
}
.mwp-review-table td:first-child {
	white-space: normal;
}
.mwp-review-actions {
	margin-top: 24px;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}
.mwp-review-actions .button {
	padding: 12px 28px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px !important;
	min-height: 0 !important;
	height: auto !important;
	line-height: 1.2 !important;
	border-radius: 6px !important;
}
#mwp-cancel-review,
#mwp-cancel-review.button {
	background: #f1f5f9 !important;
	color: #475569 !important;
	border: 1px solid #cbd5e1 !important;
	background-image: none !important;
}
#mwp-cancel-review:hover {
	background: #e2e8f0 !important;
	color: #1e293b !important;
}
#mwp-confirm-submit,
#mwp-confirm-submit.button.alt {
	background: #c0392b !important;
	color: #fff !important;
	border: none !important;
	background-image: none !important;
	box-shadow: 0 2px 6px rgba(192, 57, 43, 0.25) !important;
}
#mwp-confirm-submit:hover {
	background: #a93226 !important;
	box-shadow: 0 4px 12px rgba(192, 57, 43, 0.35) !important;
}
#mwp-confirm-submit::before,
#mwp-confirm-submit::after {
	display: none !important;
}

/* Form footer */
.mwp-form-footer {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid #e0e0e0;
}
.mwp-notes-field {
	margin-bottom: 24px;
}
.mwp-notes-field label {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
}
.mwp-notes-field textarea {
	width: 100%;
	max-width: 600px;
	padding: 14px;
	border: 2px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	resize: vertical;
}
.mwp-notes-field textarea:focus {
	border-color: #2563EB;
	outline: none;
}
#mwp-review-btn,
#mwp-review-btn.button,
#mwp-review-btn.button.alt,
button#mwp-review-btn {
	display: inline-block !important;
	font-size: 18px !important;
	padding: 20px 60px !important;
	height: auto !important;
	min-height: 0 !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	border-radius: 6px !important;
	cursor: pointer !important;
	transition: all 0.2s !important;
	margin-top: 8px !important;
	margin-bottom: 40px !important;
	background: #c0392b !important;
	background-image: none !important;
	color: #fff !important;
	border: none !important;
	box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3) !important;
	line-height: 1.2 !important;
}
#mwp-review-btn:hover,
#mwp-review-btn.button:hover,
#mwp-review-btn.button.alt:hover,
button#mwp-review-btn:hover {
	opacity: 0.9 !important;
	transform: translateY(-1px) !important;
	background: #a93226 !important;
	background-image: none !important;
	box-shadow: 0 6px 16px rgba(192, 57, 43, 0.4) !important;
}
#mwp-review-btn::before,
#mwp-review-btn::after {
	display: none !important;
}

/* Product count badge */
.mwp-items-selected {
	display: inline-block;
	margin-left: 16px;
	color: #666;
	font-size: 14px;
}

/* =========================================
   Review overlay
   ========================================= */
#mwp-review-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.6);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mwp-review-modal {
	background: #fff;
	border-radius: 10px;
	padding: 36px;
	max-width: 700px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.mwp-review-modal h2 {
	margin-top: 0;
	margin-bottom: 20px;
}
.mwp-review-table {
	width: 100%;
}
.mwp-review-table thead th {
	text-align: left;
	padding: 10px 12px;
	border-bottom: 2px solid #ddd;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #666;
}
.mwp-review-table tbody td {
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
}
.mwp-review-actions {
	margin-top: 24px;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}
#mwp-submit-status {
	margin-top: 12px;
	text-align: center;
}

/* =========================================
   Notices
   ========================================= */
.mwp-notice {
	padding: 16px 20px;
	background: #fff8e1;
	border-left: 4px solid #ffb300;
	border-radius: 4px;
	margin: 20px 0;
}
.mwp-notice-closed {
	background: #fce4ec;
	border-left-color: #dc3232;
}

/* =========================================
   Submission history on listing page
   ========================================= */
.mwp-submissions-history {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 1px solid #e5e7eb;
}
.mwp-submissions-history h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1a2744;
	margin-bottom: 20px;
}
.mwp-history-table {
	width: 100%;
}
.mwp-history-table thead th {
	text-align: left;
	padding: 12px 14px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #666;
	border-bottom: 2px solid #ddd;
}
.mwp-history-table tbody td {
	padding: 14px 14px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}
.mwp-status-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}
.mwp-status-submitted {
	background: #e8f5e9;
	color: #2e7d32;
}
.mwp-status-cancelled {
	background: #fce4ec;
	color: #c62828;
}
.mwp-history-table .button-small {
	font-size: 12px;
	padding: 4px 12px;
	margin-right: 4px;
}

/* =========================================
   Confirmation page
   ========================================= */
.mwp-confirmation-wrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 30px 0;
}
.mwp-confirmation-table tfoot th {
	border-top: 2px solid #ddd !important;
	padding: 14px 12px !important;
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}
.mwp-confirmation-table tfoot th:last-child {
	color: #c0392b;
	font-size: 18px;
	white-space: nowrap;
}
.mwp-confirmation-header {
	text-align: center;
	margin-bottom: 30px;
}
.mwp-confirmation-meta {
	color: #888;
	font-size: 14px;
	margin-top: 12px;
}
.mwp-confirmation-actions {
	margin-top: 24px;
	display: flex;
	gap: 12px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
	.mwp-nav-label-full {
		display: none;
	}
}
@media (max-width: 768px) {
	.mwp-hero-content {
		min-height: 240px;
		padding: 30px 24px;
	}
	.mwp-hero-content h1 {
		font-size: 26px;
	}
	.mwp-hero-subtitle {
		font-size: 15px;
	}
	.mwp-single-campaign {
		padding: 20px 0;
	}
}
@media (max-width: 600px) {
	.mwp-campaigns-grid {
		grid-template-columns: 1fr;
	}
	.mwp-hero-content {
		min-height: 200px;
		padding: 24px 20px;
	}
	.mwp-hero-content h1 {
		font-size: 22px;
	}
	.mwp-review-modal {
		padding: 20px;
	}
	.mwp-campaign-meta {
		flex-direction: column;
		gap: 4px;
	}
}

/* =====================================================================
   T&C Modal — fades in over a dimmed backdrop on campaign page load.
   Scrollable body, sticky header + footer. Re-openable from review modal.
   Only renders when the campaign has a non-empty terms_html ACF field.
   ===================================================================== */
.mwp-terms-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	background: rgba(20, 24, 40, 0.72);
	padding: 4vh 16px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}
.mwp-terms-overlay.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.22s ease, visibility 0s linear 0s;
}
.mwp-terms-modal {
	position: relative;
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.35);
	display: flex;
	flex-direction: column;
	max-height: 70vh;
	overflow: hidden;
	animation: mwpTermsFadeIn 0.22s ease-out;
}
@keyframes mwpTermsFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
.mwp-terms-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px;
	background: #1a2744;
	color: #fff;
	border-radius: 10px 10px 0 0;
	flex-shrink: 0;
}
.mwp-terms-logo {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	padding: 2px;
	flex-shrink: 0;
}
.mwp-terms-modal .mwp-terms-title {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	flex: 1;
	color: #fff !important;
	letter-spacing: 0;
	text-transform: none;
}
.mwp-terms-close {
	background: transparent;
	border: 0;
	color: rgba(255,255,255,0.85);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 4px 10px;
	border-radius: 6px;
	transition: background 0.15s, color 0.15s;
}
.mwp-terms-close:hover {
	background: rgba(255,255,255,0.12);
	color: #fff;
}
.mwp-terms-body {
	padding: 18px 22px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	color: #2a2f3a;
	font-size: 13px;
	line-height: 1.55;
}
.mwp-terms-modal .mwp-terms-body h1,
.mwp-terms-modal .mwp-terms-body h2,
.mwp-terms-modal .mwp-terms-body h3,
.mwp-terms-modal .mwp-terms-body h4,
.mwp-terms-modal .mwp-terms-body h5,
.mwp-terms-modal .mwp-terms-body h6 {
	color: #1a2744 !important;
	margin: 14px 0 6px !important;
	padding: 0 !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}
.mwp-terms-modal .mwp-terms-body h1 { font-size: 14px !important; }
.mwp-terms-modal .mwp-terms-body h2 { font-size: 13.5px !important; }
.mwp-terms-modal .mwp-terms-body h3 { font-size: 13px !important; }
.mwp-terms-modal .mwp-terms-body h4 { font-size: 12.5px !important; }
.mwp-terms-modal .mwp-terms-body p {
	margin: 0 0 10px !important;
	font-size: 13px !important;
	line-height: 1.55 !important;
}
.mwp-terms-modal .mwp-terms-body ul,
.mwp-terms-modal .mwp-terms-body ol {
	margin: 0 0 10px 18px !important;
	padding: 0 !important;
	font-size: 13px !important;
}
.mwp-terms-modal .mwp-terms-body li {
	margin-bottom: 5px !important;
	font-size: 13px !important;
}
.mwp-terms-modal .mwp-terms-body strong { color: #1a2744 !important; }
.mwp-terms-modal .mwp-terms-body a {
	color: #c0392b !important;
	text-decoration: underline !important;
}
.mwp-terms-footer {
	padding: 10px 18px;
	border-top: 1px solid #e5e7eb;
	background: #f8fafc;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	border-radius: 0 0 10px 10px;
	position: relative;
	gap: 12px;
}
.mwp-terms-close-btn {
	margin-left: auto;
}

/* Cancel (secondary) + Continue to Review (primary) buttons inside the
   modal footer (May 1 2026 — T&C now opens at checkout, not page load).
   Continue button stays disabled until #mwp-tc-agree is checked. */
.mwp-terms-close-btn-secondary {
	margin-left: auto;
	background: transparent;
	color: #6b7280;
	border: 1.5px solid #d1d5db;
	padding: 8px 18px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}
.mwp-terms-close-btn-secondary:hover {
	border-color: #6b7280;
	color: #1f2937;
}
.mwp-terms-continue-btn {
	background: #c0392b;
	color: #fff;
	border: none;
	padding: 9px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.15s ease;
}
.mwp-terms-continue-btn:hover:not(:disabled) {
	background: #962d22;
	transform: translateY(-1px);
	box-shadow: 0 3px 10px rgba(192, 57, 43, 0.25);
}
.mwp-terms-continue-btn:disabled {
	background: #d1d5db;
	color: #9ca3af;
	cursor: not-allowed;
}

/* In-modal agree row (sits above the footer buttons). */
.mwp-tc-agree-row--modal {
	padding: 12px 18px;
	border-top: 1px solid #e5e7eb;
	background: #fffbeb;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex-shrink: 0;
}
.mwp-tc-agree-row--modal .mwp-tc-agree-label {
	font-size: 14px;
	color: #1f2937;
	display: flex;
	align-items: center;
	gap: 10px;
}
.mwp-tc-agree-row--modal .mwp-tc-agree-check:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}
.mwp-tc-agree-row--modal .mwp-tc-agree-check:disabled + span {
	color: #9ca3af;
	cursor: not-allowed;
}
.mwp-tc-agree-row--modal .mwp-tc-agree-check:not(:disabled),
.mwp-tc-agree-row--modal .mwp-tc-agree-check:not(:disabled) + span {
	cursor: pointer;
}
/* Scroll hint — pending message until customer reaches end of terms,
   then swaps to "you can agree" message via .mwp-tc-can-agree on modal. */
.mwp-tc-scroll-hint {
	font-size: 12px;
	font-style: italic;
	line-height: 1.4;
	margin-left: 26px;
}
.mwp-tc-scroll-hint__pending { color: #b45309; display: inline; }
.mwp-tc-scroll-hint__done    { color: #059669; display: none; }
.mwp-tc-can-agree .mwp-tc-scroll-hint__pending { display: none; }
.mwp-tc-can-agree .mwp-tc-scroll-hint__done    { display: inline; }

/* Scroll button — sits in the footer, left side, opposite the Close button.
   Outlined navy text+chevron with a label. Arrow flips down ↔ up at scroll bounds.
   Hidden via visibility (keeps layout stable so Close stays right-aligned). */
.mwp-terms-scroll-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	color: #1a2744;
	border: 1.5px solid #1a2744;
	padding: 6px 14px;
	border-radius: 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2px;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.22s ease, background 0.15s ease, color 0.15s ease, visibility 0s linear 0.22s;
}
.mwp-terms-modal.is-scrollable .mwp-terms-scroll-btn {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.22s ease, background 0.15s ease, color 0.15s ease, visibility 0s linear 0s;
}
.mwp-terms-scroll-btn:hover {
	background: #1a2744;
	color: #fff;
}
.mwp-terms-scroll-btn:focus {
	outline: 2px solid rgba(26,39,68,0.4);
	outline-offset: 2px;
}
.mwp-terms-scroll-arrow {
	display: block;
	transition: transform 0.25s ease;
	animation: mwpScrollBtnBounce 1.8s ease-in-out infinite;
}
.mwp-terms-modal.is-scrolled-end .mwp-terms-scroll-arrow {
	transform: rotate(180deg);
	animation: mwpScrollBtnBounceUp 1.8s ease-in-out infinite;
}
.mwp-terms-scroll-label {
	display: inline-block;
	line-height: 1;
}
@keyframes mwpScrollBtnBounce {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(2px); }
}
@keyframes mwpScrollBtnBounceUp {
	0%, 100% { transform: rotate(180deg) translateY(0); }
	50%      { transform: rotate(180deg) translateY(2px); }
}
@media (max-width: 600px) {
	.mwp-terms-scroll-btn {
		padding: 5px 11px;
		font-size: 11px;
		gap: 5px;
	}
}
.mwp-terms-close-btn.button.alt {
	background: #1a2744;
	color: #fff;
	border: 0;
	padding: 7px 18px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.15s;
}
.mwp-terms-close-btn.button.alt:hover {
	background: #243056;
}
@media (max-width: 600px) {
	.mwp-terms-overlay {
		padding: 2vh 8px;
	}
	.mwp-terms-modal {
		max-height: 96vh;
		border-radius: 10px;
	}
	.mwp-terms-header {
		padding: 14px 16px;
	}
	.mwp-terms-title {
		font-size: 15px;
	}
	.mwp-terms-body {
		padding: 18px 18px;
		font-size: 14px;
	}
}

/* T&C agree row — sits on the form above Review & Submit. */
.mwp-tc-agree-row {
	background: #fff8e6;
	border: 1px solid #f0d68b;
	border-radius: 8px;
	padding: 12px 14px;
	margin: 16px 0 10px;
	font-size: 14px;
	line-height: 1.45;
}
.mwp-tc-agree-row--form {
	max-width: 560px;
}
/* "Terms & Conditions agreed" line in the review modal (read-only confirmation). */
.mwp-tc-review-confirmed {
	margin: 12px 0 16px;
	padding: 8px 12px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 6px;
	color: #065f46;
	font-size: 13px;
	line-height: 1.4;
}
.mwp-tc-review-check {
	display: inline-block;
	margin-right: 6px;
	color: #059669;
	font-weight: 700;
}
#mwp-tc-view-link-review {
	margin-left: 8px;
	color: #047857;
	font-weight: 600;
	text-decoration: underline;
}
#mwp-tc-view-link-review:hover {
	color: #065f46;
}
.mwp-tc-agree-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	margin: 0;
}
.mwp-tc-agree-check {
	margin-top: 3px;
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	cursor: pointer;
}
.mwp-tc-view-link {
	color: #c0392b;
	font-weight: 600;
	text-decoration: underline;
}
.mwp-tc-view-link:hover {
	color: #962d22;
}
#mwp-confirm-submit:disabled,
#mwp-review-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}


/* Sort dropdown — matches brand-select styling */
.mwp-filter-sort {
	flex: 0 0 auto;
}
.mwp-sort-select {
	height: 42px;
	padding: 0 32px 0 14px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
	color: #1a2744;
	cursor: pointer;
	min-width: 180px;
}
.mwp-sort-select:focus {
	outline: none;
	border-color: #c0392b;
	box-shadow: 0 0 0 2px rgba(192,57,43,0.15);
}

/* ----------------------------------------------------------------------
 * Hide regular WC cart + wishlist icons in the XStore header on pre-book
 * pages only — customers should focus on the pre-book "CHECK OUT" pill,
 * not the regular shop cart. (Account icon stays visible.)
 * Body class `mwp-pre-book-page` is added by MWP_Frontend::add_prebook_body_class().
 * Two markup variants exist depending on the page template:
 *   - Desktop campaign single template: Elementor widgets (etheme_wishlist / etheme_cart)
 *   - Mobile slide-out + some Elementor headers: et_b_mobile-panel-* columns
 * ---------------------------------------------------------------------- */
/* Cart + wishlist: fully removed from layout */
body.mwp-pre-book-page .et_b_mobile-panel-cart,
body.mwp-pre-book-page .et_b_mobile-panel-wishlist,
body.mwp-pre-book-page .elementor-widget-theme-etheme_cart,
body.mwp-pre-book-page .elementor-widget-theme-etheme_wishlist {
	display: none !important;
}
/* Search bar: hidden visually but space PRESERVED so Account + CHECK OUT
   stay anchored to the right edge (the search widget was the flex spacer). */
body.mwp-pre-book-page .elementor-widget-theme-etheme_ajax_search {
	visibility: hidden !important;
	pointer-events: none !important;
}

/* ----------------------------------------------------------------------
 * Header CHECK OUT button — JS-injected next to the account widget on
 * desktop pre-book pages. Replaces the floating right-edge pill on desktop;
 * mobile keeps the floating pill since the desktop header is hidden by
 * XStore at <=1200px and the injected button would be invisible there.
 * ---------------------------------------------------------------------- */
.mwp-header-checkout-wrap {
	display: flex;
	align-items: center;
	margin-left: 12px;
}
.mwp-header-checkout {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: #1a2744;
	color: #F2EBDC !important;
	padding: 11px 18px;
	border-radius: 6px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	text-decoration: none !important;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(26,39,68,0.18);
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
	transition: opacity 0.18s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
body.mwp-pre-book-page .mwp-header-checkout.is-active {
	opacity: 1 !important;
	cursor: pointer;
	pointer-events: auto;
}
body.mwp-pre-book-page .mwp-header-checkout.is-active:hover {
	background: #243352 !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(26,39,68,0.28);
}
.mwp-hc-label {
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #fff;
	font-size: 13px;
}
.mwp-hc-sep {
	opacity: 0.45;
	font-weight: 400;
}
.mwp-hc-count {
	font-weight: 600;
	opacity: 0.85;
	font-size: 12px;
}
.mwp-hc-total {
	color: #fff;
	font-size: 14px;
}
.mwp-hc-arrow {
	margin-left: 2px;
	opacity: 0.85;
	font-weight: 700;
}

/* On desktop, header CHECK OUT replaces the floating pill (avoids dual UI). */
@media (min-width: 1201px) {
	body.mwp-has-header-checkout #mwp-floating-totals {
		display: none !important;
	}
}
