.plt-page-notice {
	max-width: 700px;
	margin: 15px auto 10px;
	padding: 12px 20px;
	background: #e7f3ff;
	border: 1px solid #b8daff;
	border-radius: 6px;
	text-align: center;
	font-size: 14px;
	color: #004085;
}

.plt-page-notice i {
	margin-right: 8px;
	color: #0066cc;
}

.plt-page-notice a {
	color: #0056b3;
	font-weight: 600;
	text-decoration: underline;
}

.plt-page-notice a:hover {
	color: #003d80;
}

.plt-flow-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 20px;
}

.plt-flow-intro {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 20px 25px;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.plt-flow-intro-header {
	flex: 0 0 100%;
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: -5px;
}

.plt-step {
	flex: 1 1 calc(33.333% - 15px);
	min-width: 200px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 15px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.plt-step-number {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 2px 6px rgba(0,123,255,0.3);
}

.plt-step-text {
	font-size: 14px;
	color: #495057;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.plt-flow-intro {
		flex-direction: column;
	}

	.plt-step {
		flex: 1 1 100%;
	}
}

.plt-license-selection {
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 30px;
}

.plt-license-selection h3 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
	font-size: 20px;
}

.plt-license-selection .loading-message {
	color: #666;
	font-style: italic;
}

.license-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 15px;
}

.license-checkbox-item {
	border: 2px solid #dee2e6;
	border-radius: 6px;
	padding: 12px 15px;
	cursor: pointer;
	transition: all 0.2s ease;
	background: #fff;
}

.license-checkbox-item:hover {
	border-color: #007bff;
	box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}

.license-checkbox-item.selected {
	border-color: #007bff;
	background: #e7f3ff;
}

.license-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.license-checkbox-item input[type="checkbox"] {
	margin-right: 10px;
	width: 18px;
	height: 18px;
	vertical-align: middle;
}

.license-checkbox-item label {
	display: flex;
	align-items: center;
	margin: 0;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
}

.license-expand-btn {
	font-size: 12px;
	color: #007bff;
	cursor: pointer;
	padding: 4px 10px;
	border-radius: 4px;
	transition: all 0.2s ease;
	user-select: none;
}

.license-expand-btn:hover {
	background: #e7f3ff;
}

.license-expand-btn i {
	margin-right: 4px;
	transition: transform 0.3s ease;
}

.license-checkbox-item.expanded .license-expand-btn i {
	transform: rotate(180deg);
}

.license-description {
	font-size: 13px;
	color: #666;
	padding-left: 28px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
	margin-top: 0;
	padding-top: 0;
}

.license-checkbox-item.expanded .license-description {
	max-height: 200px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #eee;
}

.view-products-link {
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 4px;
	transition: all 0.2s ease;
	white-space: nowrap;
	background: #28a745;
	box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.view-products-link:hover {
	background: #218838;
	color: #fff;
	box-shadow: 0 3px 6px rgba(40, 167, 69, 0.4);
	transform: translateY(-1px);
}

.view-products-link i {
	margin-right: 6px;
	font-size: 11px;
}

@keyframes fadeHighlight {
	0% { color: #333; }
	50% { color: #007bff; }
	100% { color: #333; }
}

@keyframes yellowTextPulse {
	0% { color: #fff; }
	25% { color: #ffc107; }
	55% { color: #ffc107; }
	100% { color: #fff; }
}

.pulse-highlight {
	animation: fadeHighlight 1.2s ease-in-out;
}

.license-group-header.pulse-highlight .license-header-left {
	animation: yellowTextPulse 2.5s ease-in-out;
}

.plt-product-area {
	margin-bottom: 100px;
}

.plt-product-area h3 {
	margin-bottom: 20px;
	color: #333;
	font-size: 22px;
}

.plt-inline-cart {
	margin-top: 25px;
	background: linear-gradient(135deg, #f0f7ff 0%, #e7f3ff 100%);
	border: 2px solid #007bff;
	border-radius: 8px;
	padding: 20px;
}

.selected-products-header {
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 12px 15px;
	background: linear-gradient(135deg, #fff8e6 0%, #fff3cd 100%);
	border-left: 4px solid #ffc107;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	color: #856404;
}

.selected-products-header i {
	margin-right: 8px;
	color: #856404;
}

.selected-products-table {
	border-color: #ffc107;
}

.selected-products-table tbody tr {
	background: #fffcf5;
}

.inline-cart-content {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.inline-cart-summary {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.inline-cart-summary span {
	color: #007bff;
	font-size: 22px;
}

.cart-existing-items {
	font-size: 16px;
	color: #666;
}

.cart-existing-items .cart-link {
	color: #28a745;
	text-decoration: none;
	font-weight: 500;
}

.cart-existing-items .cart-link:hover {
	text-decoration: underline;
	color: #218838;
}

.cart-existing-items .existing-cart-count {
	font-size: 18px;
	color: #28a745;
}

#inline-go-to-cart-btn {
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
}

@media (max-width: 576px) {
	.inline-cart-content {
		flex-direction: column-reverse;
		text-align: center;
	}

	#inline-go-to-cart-btn {
		width: 100%;
	}
}

.product-grid {
	width: 100%;
}

.product-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	overflow: hidden;
}

.product-table thead {
	background: #f8f9fa;
	border-bottom: 2px solid #dee2e6;
}

.product-table th {
	padding: 12px 15px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	color: #333;
	border-bottom: 2px solid #dee2e6;
}

.product-table tbody tr {
	border-bottom: 1px solid #dee2e6;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.product-table tbody tr:hover {
	background: #f8f9fa;
}

.product-table tbody tr.selected {
	background: #e7f3ff;
}

.product-table tbody tr.row-odd {
	background: #e5ebf1;
}

.product-table tbody tr.row-even {
	background: #fff;
}

.product-table tbody tr.row-odd:hover,
.product-table tbody tr.row-even:hover {
	background: #f0f0f0;
}

.product-table tbody tr.selected.row-odd,
.product-table tbody tr.selected.row-even {
	background: #e7f3ff;
}

.product-table td {
	padding: 15px;
	vertical-align: top;
}

.product-type-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-table td:first-child {
	text-align: center;
}

.product-type-plt {
	background: #007bff;
	color: #fff;
}

.product-type-sh {
	background: #6f42c1;
	color: #fff;
}

.product-type-vc {
	background: #fd7e14;
	color: #fff;
}

.product-type-book {
	background: #28a745;
	color: #fff;
}

.product-type-ce {
	background: #17a2b8;
	color: #fff;
}

.product-type-ce_individual {
	background: #17a2b8;
	color: #fff;
}

.product-name {
	font-weight: 600;
	font-size: 15px;
	color: #333;
	margin-bottom: 5px;
}

.product-description {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
	margin-top: 5px;
}

.product-access {
	font-size: 13px;
	color: #666;
	margin-top: 8px;
}

.product-access .product-type-badge {
	font-size: 11px;
	padding: 2px 6px;
	margin-left: 4px;
	vertical-align: baseline;
}

.product-extend-message {
	color: #6c757d;
	font-style: italic;
}

.product-price {
	font-size: 18px;
	font-weight: 700;
	color: #28a745;
}

.product-checkbox {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.product-card {
	border: 2px solid #dee2e6;
	border-radius: 6px;
	padding: 15px;
	background: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.product-card:hover {
	border-color: #007bff;
	box-shadow: 0 4px 12px rgba(0,123,255,0.15);
}

.product-card.selected {
	border-color: #007bff;
	background: #e7f3ff;
}

.product-card-checkbox {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 20px;
	height: 20px;
}

.product-card-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
}

.product-card-name {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 8px;
	color: #333;
}

.product-card-description {
	font-size: 13px;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.4;
}

.product-card-price {
	font-size: 20px;
	font-weight: 700;
	color: #28a745;
	margin-top: 10px;
}

.product-type-section {
	margin-bottom: 40px;
}

.product-type-header {
	background: #f8f9fa;
	padding: 12px 15px;
	border-left: 4px solid #007bff;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

/* License Type Grouping */
.license-group {
	margin-bottom: 30px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.license-group:last-child {
	margin-bottom: 0;
}

.license-group-header {
	background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
	color: #fff;
	padding: 14px 20px;
	font-size: 17px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.license-group-header i {
	font-size: 16px;
	color: #ffc107;
}

.license-header-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.license-header-right {
	display: flex;
	align-items: center;
}

.license-rating {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.license-rating:hover {
	color: #ffc107;
}

.license-rating .rating-stars {
	color: #ffc107;
	font-size: 12px;
}

.license-rating .rating-stars i {
	margin-right: 1px;
}

.license-rating .rating-count {
	font-weight: normal;
}

.license-group .product-table {
	border: none;
	border-radius: 0;
	margin-bottom: 0;
}

.license-group .product-table thead {
	background: #f1f5f9;
}

.license-group .product-table th {
	border-bottom: 1px solid #e2e8f0;
	font-size: 13px;
	color: #64748b;
}

@media (max-width: 768px) {
	.license-group-header {
		padding: 12px 15px;
		font-size: 15px;
		flex-wrap: wrap;
	}

	.license-group-header i {
		font-size: 14px;
	}

	.license-header-left {
		flex: 1;
		min-width: 0;
	}

	.license-header-right {
		flex-shrink: 0;
	}

	.license-rating {
		font-size: 12px;
		gap: 5px;
	}

	.license-rating .rating-stars {
		font-size: 10px;
	}
}

.plt-empty-state {
	text-align: center;
	padding: 60px 20px;
	color: #999;
}

.empty-state-content > i {
	color: #dee2e6;
	margin-bottom: 20px;
}

.empty-state-content h4 {
	color: #666;
	margin-bottom: 10px;
	font-size: 22px;
}

.empty-state-content p {
	color: #999;
	font-size: 15px;
	margin-bottom: 10px;
}

.empty-state-content .empty-state-subtext {
	font-size: 14px;
	color: #aaa;
	max-width: 500px;
	margin: 15px auto;
	line-height: 1.5;
}

.empty-state-content .empty-state-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	line-height: 1.4;
}

.empty-state-content .empty-state-btn i {
	margin-right: 6px;
}

.plt-sticky-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 2px solid #007bff;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
	z-index: 9999;
	padding: 15px 0;
}

/* Push Brevo chat widget up when sticky footer is visible */
body.plt-footer-visible #brevo-conversations {
	bottom: 90px !important;
	transition: bottom 0.3s ease;
}

.plt-sticky-footer .footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

.plt-sticky-footer .selection-summary {
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.plt-sticky-footer .selection-summary span {
	color: #007bff;
	font-size: 20px;
}

.plt-sticky-footer #go-to-cart-btn {
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
}

.plt-sticky-footer #go-to-cart-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.plt-notice {
	padding: 12px 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 14px;
}

.plt-notice.info {
	background: #d1ecf1;
	border: 1px solid #bee5eb;
	color: #0c5460;
}

.plt-notice.warning {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	color: #856404;
}

.plt-notice.error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.plt-notice.success {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

@media (max-width: 768px) {
	.product-table {
		font-size: 13px;
	}

	.product-table th,
	.product-table td {
		padding: 10px 8px;
	}

	.product-type-badge {
		font-size: 10px;
		padding: 3px 6px;
	}

	.product-name {
		font-size: 14px;
	}

	.product-description {
		font-size: 12px;
	}

	.product-price {
		font-size: 16px;
	}

	.plt-sticky-footer .footer-content {
		flex-direction: column-reverse;
		gap: 10px;
	}

	.plt-sticky-footer #go-to-cart-btn {
		width: 100%;
	}
}

/* ========================================
   AJAX Checkout Styles
   ======================================== */

.checkout-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

/* Sandbox Banner */
.sandbox-banner {
	background: #ff9800;
	border: 2px solid #e65100;
	color: #000;
	padding: 12px 20px;
	border-radius: 4px;
	margin-bottom: 15px;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}

.sandbox-banner i {
	margin-right: 8px;
	color: #000;
}

/* Progress Bar */
.checkout-progress {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	position: relative;
}

.checkout-progress::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 40px;
	right: 40px;
	height: 2px;
	background: #dee2e6;
	z-index: 0;
}

.progress-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

.progress-step .step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #dee2e6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	color: #999;
	transition: all 0.3s ease;
}

.progress-step .step-label {
	margin-top: 8px;
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.progress-step.active .step-number {
	background: #007bff;
	border-color: #007bff;
	color: #fff;
}

.progress-step.active .step-label {
	color: #007bff;
	font-weight: 600;
}

.progress-step.completed .step-number {
	background: #28a745;
	border-color: #28a745;
	color: #fff;
	font-size: 0; /* Hide the number text */
}

.progress-step.completed .step-number::after {
	content: '\2713';
	font-size: 18px;
	font-weight: bold;
}

.progress-step.completed .step-label {
	color: #28a745;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 3px;
}

/* Step Panels */
.checkout-panels {
	position: relative;
	overflow: hidden;
	min-height: 400px;
}

.checkout-panel {
	display: none;
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	padding: 30px;
	animation-duration: 0.3s;
	animation-fill-mode: forwards;
}

.checkout-panel.active {
	display: block;
}

.checkout-panel h2 {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 24px;
	color: #333;
}

.checkout-panel h3 {
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

/* Slide Animations */
@keyframes slideOutLeft {
	from { transform: translateX(0); opacity: 1; }
	to { transform: translateX(-100%); opacity: 0; }
}

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

@keyframes slideInLeft {
	from { transform: translateX(-100%); opacity: 0; }
	to { transform: translateX(0); opacity: 1; }
}

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

.checkout-panel.slide-out-left {
	animation-name: slideOutLeft;
}

.checkout-panel.slide-out-right {
	animation-name: slideOutRight;
}

.checkout-panel.slide-in-left {
	animation-name: slideInLeft;
}

.checkout-panel.slide-in-right {
	animation-name: slideInRight;
}

/* Form Styles */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

.form-group .required {
	color: #dc3545;
}

.form-control {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #ced4da;
	border-radius: 4px;
	transition: border-color 0.2s;
}

.form-control:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-control.error {
	border-color: #dc3545;
}

.form-row {
	display: flex;
	gap: 15px;
}

.form-group.half {
	flex: 1;
}

.form-group.quarter {
	flex: 0 0 25%;
}

.form-hint {
	display: block;
	margin-top: 5px;
	font-size: 12px;
	color: #6c757d;
}

.form-feedback {
	margin-top: 5px;
	font-size: 13px;
}

.form-feedback .error {
	color: #dc3545;
}

.form-feedback .success {
	color: #28a745;
}

.form-feedback .checking {
	color: #6c757d;
	font-style: italic;
}

.checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
	margin-right: 8px;
	width: 16px;
	height: 16px;
}

/* Checkout Actions */
.checkout-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.checkout-actions .btn {
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
}

/* Cart Table */
.cart-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.cart-table th {
	font-weight: 600;
	color: #666;
	font-size: 13px;
	text-transform: uppercase;
}

.cart-item-name {
	font-weight: 600;
	color: #333;
}

.cart-state-badge {
	display: inline-block;
	background: #007bff;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 3px;
	margin-left: 8px;
	vertical-align: middle;
}

.cart-item-desc {
	font-size: 13px;
	color: #666;
	margin-top: 4px;
}

.cart-item-access {
	font-size: 13px;
	color: #666;
	margin-top: 6px;
}

.cart-item-access svg {
	margin-right: 4px;
	color: #888;
}

.cart-access-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 4px;
	background: #e8f4fc;
	color: #1a73e8;
}

.cart-access-plt { background: #e3f2fd; color: #1565c0; }
.cart-access-sh { background: #fce4ec; color: #c2185b; }
.cart-access-vc { background: #f3e5f5; color: #7b1fa2; }
.cart-access-ce { background: #e8f5e9; color: #2e7d32; }
.cart-access-book { background: #fff3e0; color: #e65100; }

.cart-item-price {
	font-weight: 600;
	color: #28a745;
}

.cart-item-remove {
	width: 40px;
	text-align: center;
}

.btn-remove-item {
	background: none;
	border: none;
	color: #dc3545;
	cursor: pointer;
	font-size: 16px;
	padding: 5px;
}

.btn-remove-item:hover {
	color: #a71d2a;
}

/* Fee rows */
.cart-fee-row {
	background-color: #f8f9fa;
}

.cart-fee-name {
	font-size: 13px;
	color: #666;
	padding-left: 15px;
}

.cart-fee-price {
	font-size: 13px;
	color: #666;
}

.fee-marketing-price {
	color: #999;
	margin-right: 8px;
}

.fee-free {
	color: #28a745;
	font-weight: 600;
}

/* Email Step */
.email-step-intro {
	color: #6c757d;
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.5;
}

.account-exists-notice,
.new-account-info {
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.account-exists-notice {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
}

.account-exists-notice p {
	margin: 0;
	color: #856404;
}

.new-account-info {
	background: #d4edda;
	border: 1px solid #c3e6cb;
}

.new-account-info p {
	margin: 0;
	color: #155724;
}

.logged-in-notice {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.logged-in-notice p {
	margin: 0;
	color: #155724;
	font-size: 16px;
}

.logged-in-notice strong {
	color: #0d4620;
}

#logout-btn {
	color: #6c757d;
	padding: 0;
	font-size: 14px;
}

#logout-btn:hover {
	color: #343a40;
}

.account-locked-notice {
	background: #e7f3ff;
	border: 1px solid #b8daff;
	padding: 20px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.account-locked-notice p {
	margin: 0;
	color: #004085;
	font-size: 16px;
}

.account-locked-notice strong {
	color: #002752;
}

#change-account-btn {
	color: #6c757d;
	padding: 0;
	font-size: 14px;
}

#change-account-btn:hover {
	color: #343a40;
}

.checkout-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.checkout-modal-overlay.hidden {
	display: none;
}

.checkout-modal {
	background: #fff;
	border-radius: 8px;
	max-width: 450px;
	width: 90%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.checkout-modal-header {
	padding: 20px;
	border-bottom: 1px solid #e9ecef;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.checkout-modal-header h3 {
	margin: 0;
	font-size: 18px;
	color: #333;
}

.checkout-modal-body {
	padding: 20px;
}

.checkout-modal-body p {
	margin: 0 0 10px;
	color: #555;
}

.checkout-modal-body p:last-child {
	margin-bottom: 0;
}

.checkout-modal-footer {
	padding: 15px 20px;
	border-top: 1px solid #e9ecef;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

/* Large modal for terms */
.checkout-modal-large {
	max-width: 700px;
	max-height: 80vh;
}

.checkout-modal-large .checkout-modal-body {
	max-height: 60vh;
	overflow-y: auto;
}

.terms-scroll {
	padding: 20px;
	font-size: 14px;
	line-height: 1.6;
}

.terms-scroll ol {
	padding-left: 20px;
}

.terms-scroll li {
	margin-bottom: 15px;
}

.modal-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	color: #666;
}

.modal-close:hover {
	color: #333;
}

/* Terms Agreement Section */
.terms-agreement-section {
	margin: 20px 0;
	padding: 15px;
	background: #f8f9fa;
	border-radius: 6px;
	border: 1px solid #dee2e6;
}

.terms-agreement-section .form-group {
	margin-bottom: 0;
}

.terms-agreement-section .checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	margin: 0;
}

.terms-agreement-section input[type="checkbox"] {
	margin-top: 3px;
	flex-shrink: 0;
}

#view-terms-link {
	color: #007bff;
	text-decoration: underline;
}

#view-terms-link:hover {
	color: #0056b3;
}

.forgot-password-link {
	font-size: 13px;
}

.login-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.login-actions .btn {
	margin: 0;
}

/* Address Sections */
.address-section {
	margin-bottom: 30px;
}

.shipping-po-box-warning {
	border: 1px solid #ccc;
	background: #F6FF5B;
	text-align: center;
	font-size: 0.9em;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 4px;
}

/* Payment Section */
.payment-section {
	margin-top: 30px;
}

.order-summary {
	background: #f8f9fa;
	border-radius: 6px;
	padding: 15px;
	margin-bottom: 20px;
}

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

.summary-row.total {
	border-top: 2px solid #dee2e6;
	margin-top: 10px;
	padding-top: 15px;
	font-size: 18px;
	font-weight: 700;
}

.summary-row.discount-row {
	color: #28a745;
}

.summary-row.discount-row .discount-amount {
	color: #28a745;
	font-weight: 600;
}

#braintree-dropin-container {
	margin-top: 20px;
}

#payment-error {
	color: #dc3545;
	padding: 10px;
	background: #f8d7da;
	border-radius: 4px;
	margin-top: 10px;
}

/* Free Order Message */
.free-order-message {
	text-align: center;
	padding: 30px 20px;
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
	border-radius: 8px;
	border: 2px solid #4caf50;
}

.free-order-icon {
	margin-bottom: 15px;
}

.free-order-icon .icon {
	width: 48px;
	height: 48px;
	color: #4caf50;
}

.free-order-message h4 {
	margin: 0 0 10px;
	font-size: 20px;
	color: #2e7d32;
	font-weight: 600;
}

.free-order-message p {
	margin: 0;
	color: #388e3c;
	font-size: 14px;
}

/* Discount Code Section */
.discount-code-section {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e9ecef;
}

.discount-code-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #007bff;
	text-decoration: none;
	font-size: 14px;
}

.discount-code-toggle:hover {
	color: #0056b3;
	text-decoration: underline;
}

.discount-code-toggle.expanded {
	margin-bottom: 12px;
	display: inline-block;
}

.discount-code-form {
	margin-top: 12px;
}

.discount-input-group {
	display: flex;
	gap: 8px;
	max-width: 350px;
}

.discount-input-group input {
	flex: 1;
	text-transform: uppercase;
}

.discount-input-group .btn {
	white-space: nowrap;
	min-width: 70px;
}

.discount-feedback {
	margin-top: 8px;
	font-size: 13px;
	min-height: 20px;
}

.discount-feedback.success {
	color: #28a745;
}

.discount-feedback.error {
	color: #dc3545;
}

.discount-feedback.loading {
	color: #6c757d;
}

.discount-applied {
	display: inline-flex;
	align-items: center;
	background: #d4edda;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 14px;
	border: 1px solid #c3e6cb;
}

/* Add margin-top only when discount-toggle is visible (JS adds via form) */
.discount-code-form + .discount-applied,
.discount-code-toggle:not(.hidden) ~ .discount-applied {
	margin-top: 12px;
}

.discount-success {
	display: inline-flex;
	align-items: center;
	color: #155724;
}

.discount-success .icon,
.discount-success svg,
.discount-success i,
.discount-success > i:first-child {
	margin-right: 8px;
	color: #28a745;
	flex-shrink: 0;
}

.discount-success strong {
	margin-right: 4px;
}

.discount-success .discount-note {
	color: #155724;
	font-weight: normal;
	margin-left: 2px;
}

.discount-remove {
	color: #856404;
	text-decoration: none;
	font-size: 13px;
	margin-left: 15px;
	padding-left: 15px;
	border-left: 1px solid #c3e6cb;
}

.discount-remove:hover {
	color: #721c24;
	text-decoration: underline;
}

.discount-remove .icon {
	margin-right: 3px;
}

/* Processing Step */
.processing-content {
	text-align: center;
	padding: 60px 20px;
}

.processing-spinner {
	width: 60px;
	height: 60px;
	border: 4px solid #dee2e6;
	border-top-color: #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 30px;
}

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

/* Profile Step */
.step-description {
	color: #28a745;
	font-size: 15px;
	margin-bottom: 25px;
}

/* Receipt Step */
.receipt-content {
	text-align: center;
	padding: 40px 20px;
}

.success-icon {
	font-size: 80px;
	color: #28a745;
	margin-bottom: 20px;
}

.receipt-actions {
	margin-top: 30px;
}

/* Upsells */
.upsells-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.upsell-card {
	border: 1px solid #dee2e6;
	border-radius: 6px;
	padding: 20px;
	text-align: center;
	transition: all 0.2s;
}

.upsell-card:hover {
	border-color: #007bff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.upsell-name {
	font-weight: 600;
	margin-bottom: 10px;
}

.upsell-price {
	color: #28a745;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 15px;
}

.no-upsells {
	text-align: center;
	color: #666;
	padding: 30px;
}

/* Hidden */
.hidden {
	display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
	.checkout-progress {
		flex-wrap: wrap;
		gap: 10px;
	}

	.checkout-progress::before {
		display: none;
	}

	.progress-step {
		flex: 0 0 33%;
		margin-bottom: 10px;
	}

	.progress-step .step-number {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.progress-step .step-label {
		font-size: 10px;
	}

	.checkout-panel {
		padding: 20px 15px;
	}

	.form-row {
		flex-direction: column;
		gap: 0;
	}

	.form-group.half,
	.form-group.quarter {
		flex: none;
		width: 100%;
	}

	.checkout-actions {
		flex-direction: column;
		gap: 10px;
	}

	.checkout-actions .btn {
		width: 100%;
	}
}

/* ========================================
   Checkout Steps Indicator (3-Step Visual)
   ======================================== */

.checkout-steps-indicator {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0 30px;
	padding: 0 20px;
}

.checkout-steps-indicator .step {
	display: flex;
	align-items: center;
	color: #999;
	font-size: 14px;
}

.checkout-steps-indicator .step:not(:last-child)::after {
	content: '';
	display: inline-block;
	width: 60px;
	height: 2px;
	background: #dee2e6;
	margin: 0 15px;
}

.checkout-steps-indicator .step.completed:not(:last-child)::after {
	background: #28a745;
}

.checkout-steps-indicator .step .step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #dee2e6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14px;
	margin-right: 8px;
}

.checkout-steps-indicator .step .step-label {
	font-weight: 500;
}

.checkout-steps-indicator .step.active {
	color: #007bff;
}

.checkout-steps-indicator .step.active .step-number {
	background: #007bff;
	border-color: #007bff;
	color: #fff;
}

.checkout-steps-indicator .step.active .step-label {
	font-weight: 600;
}

.checkout-steps-indicator .step.completed {
	color: #28a745;
}

.checkout-steps-indicator .step.completed .step-number {
	background: #28a745;
	border-color: #28a745;
	color: #fff;
}

.checkout-steps-indicator .step.completed .step-number::before {
	content: '\2713';
}

/* V2 Codes Page */
.v2-codes-section {
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	padding: 20px;
	margin-bottom: 20px;
}

.v2-codes-section h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 18px;
	color: #333;
}

.v2-codes-section .discount-note {
	color: #666;
	font-size: 0.9em;
}

.v2-codes-section .discount-amount {
	font-weight: 600;
	color: #28a745;
}

.v2-codes-actions {
	margin-top: 30px;
}

@media (max-width: 768px) {
	.checkout-steps-indicator {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.checkout-steps-indicator .step:not(:last-child)::after {
		display: none;
	}

	.checkout-steps-indicator .step {
		width: 100%;
	}
}

/* ============================================
   CART BADGE (Global)
   ============================================ */
.checkout-cart-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.checkout-cart-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cart-badge-icon {
	position: relative;
	font-size: 24px;
}

.cart-badge-count {
	position: absolute;
	top: -8px;
	right: -10px;
	background: #e53e3e;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-badge-total {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cart-badge-label {
	font-size: 14px;
	opacity: 0.9;
}

.cart-badge-amount {
	font-size: 20px;
	font-weight: bold;
}

.cart-badge-discount {
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(72, 187, 120, 0.2);
	padding: 4px 10px;
	border-radius: 4px;
}

.cart-badge-discount-label {
	font-size: 12px;
}

.cart-badge-discount-amount {
	font-size: 14px;
	font-weight: bold;
	color: #48bb78;
}

/* ============================================
   ADD-ON SLIDER
   ============================================ */
.addon-slider-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.addon-slider-header h2 {
	margin: 0;
}

.addon-progress {
	background: #e2e8f0;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #4a5568;
}

.addon-nav-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.addon-nav-btn {
	padding: 4px 8px;
	color: #4a5568;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

.addon-nav-btn:hover:not(:disabled) {
	color: #2d3748;
}

.addon-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.addon-more-info-btn {
	display: inline-block;
	margin-left: 10px;
	padding: 0;
	font-size: 14px;
	color: #4299e1;
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
}

.addon-more-info-btn:hover {
	color: #2b6cb0;
}

.addon-info-details {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.addon-info-details p {
	margin: 8px 0;
}

/* Hide CE course info links in modal - they're stripped server-side but this is a fallback */
#addon-info-modal .ce_course_info_link {
	display: none;
}

.addon-slider-container {
	min-height: 300px;
}

/* Upsells Loading State */
.upsells-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	font-size: 16px;
	color: #4a5568;
}

.upsells-loading::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #e2e8f0;
	border-top-color: #4299e1;
	border-radius: 50%;
	margin-right: 10px;
	animation: spin 1s linear infinite;
}

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

.addon-card {
	background: #fff;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.addon-card:hover {
	border-color: #4299e1;
	box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
}

.addon-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
	background: #edf2f7;
	color: #4a5568;
}

.addon-badge-plt { background: #bee3f8; color: #2b6cb0; }
.addon-badge-ce { background: #c6f6d5; color: #276749; }
.addon-badge-sh { background: #feebc8; color: #c05621; }
.addon-badge-vc { background: #fed7e2; color: #97266d; }
.addon-badge-book { background: #e9d8fd; color: #6b46c1; }
.addon-badge-pc { background: #fef3c7; color: #92400e; }

.addon-icon {
	margin-bottom: 15px;
}

.addon-icon img {
	max-width: 80px;
	max-height: 80px;
}

.addon-name {
	font-size: 24px;
	font-weight: 600;
	color: #2d3748;
	margin: 0 0 10px 0;
}

.addon-description {
	color: #718096;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.addon-highlight {
	background: #f7fafc;
	border-left: 4px solid #4299e1;
	padding: 12px 15px;
	margin: 15px 0;
	text-align: left;
	font-size: 14px;
	color: #4a5568;
}

.addon-highlight-premium {
	border-left-color: #ecc94b;
	background: #fffff0;
}

.addon-features {
	text-align: left;
	margin: 15px 0;
}

.addon-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.addon-features li {
	padding: 6px 0;
	color: #4a5568;
	font-size: 14px;
}

.addon-features li svg {
	color: #48bb78;
	margin-right: 8px;
}

.addon-shipping-notice {
	background: #e6fffa;
	color: #234e52;
	padding: 8px 15px;
	border-radius: 6px;
	font-size: 13px;
	margin-top: 10px;
}

.addon-pricing {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.addon-price-original .price-strike {
	text-decoration: line-through;
	color: #a0aec0;
	font-size: 16px;
}

.addon-price-discounted {
	margin-top: 5px;
}

.price-current {
	font-size: 32px;
	font-weight: 700;
	color: #2d3748;
}

.price-savings {
	display: inline-block;
	margin-left: 10px;
	background: #c6f6d5;
	color: #276749;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.addon-slider-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #e2e8f0;
}

.addon-slider-actions .btn {
	min-width: 150px;
	padding: 12px 25px;
	font-size: 16px;
}

.addon-nav-actions {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

/* Progress step clickable */
.progress-step.completed {
	cursor: pointer;
}

.progress-step.completed:hover .step-number {
	transform: scale(1.15);
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.progress-step.completed:hover .step-label {
	text-decoration: underline;
	text-decoration-style: solid;
}

/* Mobile adjustments for cart badge */
@media (max-width: 576px) {
	.checkout-cart-badge {
		flex-wrap: wrap;
		gap: 10px;
		padding: 10px 15px;
	}

	.cart-badge-amount {
		font-size: 18px;
	}

	.addon-card {
		padding: 20px;
	}

	.addon-name {
		font-size: 20px;
	}

	.price-current {
		font-size: 26px;
	}

	.addon-slider-actions {
		flex-direction: column;
	}

	.addon-slider-actions .btn {
		width: 100%;
	}
}

/* ============================================
   ADDON UPSELL REDESIGN (New Layout)
   ============================================ */

.addon-upsell-wrapper {
	background: #DCE9F5;
	padding: 40px;
	border-radius: 8px;
	max-width: 900px;
	margin: 0 auto;
}

.addon-upsell-header {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 30px 0;
}

.addon-upsell-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.addon-upsell-image {
	flex: 0 0 40%;
	position: relative;
}

.addon-upsell-image img {
	max-width: 100%;
	height: auto;
}

.addon-upsell-details {
	flex: 1;
}

.addon-upsell-title {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 15px 0;
}

.addon-upsell-description {
	font-size: 18px;
	line-height: 1.5;
	color: #333;
	margin: 0 0 20px 0;
}

.addon-upsell-description p {
	margin: 0 0 12px 0;
}

.addon-upsell-description p:last-of-type {
	margin-bottom: 8px;
}

.addon-features-list {
	margin: 0 0 15px 0;
	padding-left: 20px;
	list-style-type: disc;
}

.addon-features-list li {
	margin-bottom: 6px;
	padding-left: 5px;
}

.addon-features-list li:last-child {
	margin-bottom: 0;
}

.addon-access-info {
	font-size: 16px;
	color: #1a3a5c;
	font-weight: 600;
	margin: 0 0 15px 0;
}

.addon-discount-text {
	font-size: 22px;
	font-weight: 700;
	color: #8B0000;
	margin: 0 0 20px 0;
}

.addon-upsell-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.addon-add-btn {
	background: #1a3a5c;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 35px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.addon-add-btn:hover {
	background: #f0c040;
	color: #1a3a5c;
}

.addon-upsell-pricing .price-strike {
	text-decoration: line-through;
	color: #8B0000;
	font-size: 20px;
	margin-right: 10px;
}

.addon-upsell-pricing .price-current {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
}

.addon-skip-link {
	color: #333;
	font-size: 16px;
	text-decoration: none;
	display: inline-block;
}

.addon-skip-link:hover {
	text-decoration: underline;
}

/* No-image variant (ce, plt, default) - centered content */
.addon-upsell-no-image .addon-upsell-content {
	justify-content: center;
}

.addon-upsell-no-image .addon-upsell-details {
	max-width: 600px;
	text-align: center;
}

.addon-upsell-no-image .addon-upsell-actions {
	justify-content: center;
}

/* Float image variant (personal coach) - image floats left, text wraps */
.addon-upsell-float-image .addon-upsell-content {
	display: block;
}

.addon-upsell-float-image .addon-upsell-details {
}

.addon-upsell-float-image .addon-upsell-image {
	float: left;
	width: 160px;
	margin: 0 25px 10px 0;
}

/* Book overlay styling */
.addon-book-image {
	position: relative;
}

.addon-book-overlay {
	position: absolute;
	top: 6%;
	left: 12%;
	right: 8%;
	pointer-events: none;
}

.addon-book-overlay-header {
	display: flex;
	align-items: flex-start;
}

.addon-book-state-icon {
	width: 52px;
	height: auto;
	margin-right: 8px;
	flex-shrink: 0;
	filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
}

.addon-book-state-name {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
	line-height: 1.1;
	white-space: nowrap;
}

.addon-book-course-name {
	display: block;
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	color: #f0c040;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	margin-top: -22px;
	margin-left: 60px;
	line-height: 1.25;
	max-height: 2.5em;
	overflow: hidden;
}

/* Mobile responsive for addon upsell redesign */
@media (max-width: 768px) {
	.addon-upsell-wrapper {
		padding: 25px 20px;
	}

	.addon-upsell-header {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.addon-upsell-content {
		flex-direction: column;
		text-align: center;
		gap: 25px;
	}

	.addon-upsell-image {
		flex: none;
		max-width: 250px;
	}

	.addon-upsell-title {
		font-size: 22px;
	}

	.addon-upsell-description {
		font-size: 16px;
	}

	.addon-features-list {
		padding-left: 18px;
	}

	/* Float image variant - stack on mobile */
	.addon-upsell-float-image .addon-upsell-image {
		float: none;
		width: 120px;
		margin: 0 auto 20px auto;
	}

	.addon-upsell-float-image .addon-upsell-details {
		text-align: center;
	}

	.addon-upsell-float-image .addon-features-list {
		text-align: left;
		display: inline-block;
	}

	.addon-discount-text {
		font-size: 18px;
	}

	.addon-upsell-actions {
		flex-direction: column;
		gap: 10px;
	}

	.addon-add-btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 16px;
	}

	.addon-book-image {
		margin: 0 auto;
	}

	.addon-book-state-icon {
		width: 42px;
	}

	.addon-book-state-name {
		font-size: 26px;
	}

	.addon-book-course-name {
		font-size: 18px;
		margin-left: 50px;
	}
}

/* ============================================
   PLT FLOW MODAL (License Selection Hooks)
   ============================================ */

.plt-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	animation: pltModalFadeIn 0.2s ease;
}

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

.plt-modal {
	background: #fff;
	border-radius: 12px;
	max-width: 620px;
	width: 90%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: pltModalSlideIn 0.3s ease;
}

@keyframes pltModalSlideIn {
	from { transform: translateY(-30px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.plt-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
	color: #fff;
}

.plt-modal-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.plt-modal-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.plt-modal-close:hover {
	opacity: 1;
}

.plt-modal-body {
	padding: 25px;
	max-height: 60vh;
	overflow-y: auto;
}

.plt-modal-footer {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	padding: 20px 25px;
	background: #f8f9fa;
	border-top: 1px solid #e9ecef;
}

.plt-modal-btn {
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	border: none;
}

.plt-modal-btn-primary {
	background: #1a3a5c;
	color: #fff;
}

.plt-modal-btn-primary:hover {
	background: #0d2840;
}

.plt-modal-btn-secondary {
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
}

.plt-modal-btn-secondary:hover {
	background: #f0f0f0;
	border-color: #999;
}

/* CE12 Attestation Modal Content */
.ce12-attestation {
	text-align: center;
}

.attestation-warning-icon {
	float: left;
	margin-right: 15px;
	margin-bottom: 10px;
}

.attestation-warning-icon i {
	font-size: 48px;
	color: #f0ad4e;
}

.attestation-intro {
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.5;
	text-align: left;
	overflow: hidden;
}

.attestation-statement {
	clear: both;
	background: #fff8e6;
	border: 1px solid #ffeaa7;
	border-radius: 8px;
	padding: 20px;
	text-align: left;
}

.attestation-statement p {
	margin: 0 0 12px 0;
	font-weight: 600;
	color: #856404;
}

.attestation-statement ul {
	margin: 0;
	padding-left: 20px;
}

.attestation-statement li {
	color: #555;
	line-height: 1.2;
}

.attestation-statement li strong {
	color: #d35400;
}

.attestation-offer {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border: 2px solid #28a745;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}

.attestation-offer p {
	margin: 0 0 10px 0;
	color: #155724;
	font-size: 14px;
}

.attestation-offer .offer-text {
	margin-top: 10px;
	font-size: 13px;
}

.discount-code {
	background: #fff;
	border: 2px dashed #28a745;
	border-radius: 6px;
	padding: 12px 20px;
	font-size: 22px;
	font-weight: 700;
	color: #28a745;
	letter-spacing: 1px;
	font-family: monospace;
}

.attestation-signoff {
	color: #666;
	font-size: 14px;
	margin-top: 15px;
}

.attestation-question {
	font-size: 16px;
	font-weight: 600;
	color: #1a3a5c;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.attestation-signoff strong {
	color: #1a3a5c;
}

/* CE12 Required Icon (License Selection) */
.ce12-required-icon {
	color: #f0ad4e;
	font-size: 16px;
}

/* Wider modal for CA required course */
.plt-modal-wide {
	max-width: 720px;
}

/* Compact attestation styles */
.ce12-attestation-compact .attestation-statement-compact {
	padding: 12px 15px;
	margin-bottom: 12px;
}

.ce12-attestation-compact .attestation-statement-compact p {
	margin-bottom: 8px;
}

/* Two column license list */
.license-list-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px 20px;
	margin: 0;
	padding-left: 20px;
}

.ce12-attestation-compact .attestation-question {
	margin-top: 12px;
	padding-top: 12px;
}

/* Wider modal buttons */
.plt-modal-footer .plt-modal-btn {
	min-width: 200px;
	padding: 12px 20px;
}

/* Mobile responsiveness for modal */
@media (max-width: 576px) {
	.plt-modal {
		width: 95%;
		margin: 10px;
	}

	.plt-modal-header {
		padding: 15px 20px;
	}

	.plt-modal-title {
		font-size: 18px;
	}

	.plt-modal-body {
		padding: 15px;
	}

	.plt-modal-footer {
		flex-direction: column;
		gap: 10px;
		padding: 15px 20px;
	}

	.plt-modal-btn {
		width: 100%;
		text-align: center;
	}

	.attestation-warning-icon {
		float: none;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.attestation-warning-icon i {
		font-size: 48px;
	}

	.attestation-intro {
		text-align: center;
	}

	.discount-code {
		font-size: 18px;
		padding: 10px 15px;
	}

	/* Single column license list on mobile */
	.license-list-columns {
		grid-template-columns: 1fr;
	}
}

/* CE Package Info Badges */
.ce_package_info {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #ddd;
}

.ce_info_badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.85em;
	font-weight: 500;
}

.ce_access {
	background: #fff3e0;
	color: #e65100;
}

.ce_hours {
	background: #e3f2fd;
	color: #1565c0;
}

.ce_ext {
	background: #e8f5e9;
	color: #2e7d32;
}

/* CE Modal Table Styles */
.ce_modal_table {
	width: 100%;
	border-collapse: collapse;
}

.ce_modal_table th,
.ce_modal_table td {
	padding: 8px 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
}

.ce_modal_table th {
	background: #f5f5f5;
	font-weight: 600;
}

.ce_modal_table .text-center {
	text-align: center;
}

.ce_modal_footer {
	margin: 15px 0 5px;
	padding: 10px;
	background: #e8f5e9;
	border-radius: 4px;
	color: #2e7d32;
	font-weight: 500;
	text-align: center;
}

/* CE Category Badges */
.ce_category_badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 0.8em;
	font-weight: 500;
	white-space: nowrap;
	background: #f5f5f5;
	color: #555;
}

/* CE View Courses Link */
.ce_course_info_link {
	display: inline-block;
	margin-top: 8px;
	padding: 6px 12px;
	background: #f5f5f5;
	border: none;
	border-radius: 4px;
	color: #0066cc;
	font-size: 0.9em;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s;
}

.ce_course_info_link:hover {
	background: #e3f2fd;
	text-decoration: none;
}

.ce_course_info_link i {
	margin-right: 5px;
}

/* CE Package Action Buttons */
.ce-action-buttons {
	vertical-align: middle;
	min-width: 160px;
}

.ce-add-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.9em;
	color: #333;
	margin-bottom: 8px;
}

.ce-add-label:hover {
	color: #0066cc;
}

.ce-add-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.ce-select-courses-link {
	display: block;
	font-size: 0.8em;
	color: #666;
	text-align: center;
	text-decoration: none;
}

.ce-select-courses-link:hover {
	color: #0066cc;
}
