* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
}



@media (max-width: 768px) {
	.simmer_faq,
	[class*="faq"],
	.row:has(.simmer_faq) {
		padding: 0 15px;
		margin-top: 0;
	}
	
	/* Remove excessive gaps on mobile */
	.container > .row:last-child {
		padding-left: 15px;
		padding-right: 15px;
		margin-top: 0 !important;
	}
	
	/* Remove bottom padding from sections above FAQ */
	.step:last-of-type,
	.pricing-summary,
	.order-summary,
	[class*="summary"]:last-of-type {
		margin-bottom: 20px !important;
		padding-bottom: 10px !important;
	}
	
	/* Specific fix for gap between total section and FAQ */
	.container > div:has(+ .row),
	.container > .step:has(+ .row),
	.container > *:has(+ [class*="faq"]) {
		margin-bottom: 0 !important;
		padding-bottom: 20px !important;
	}
	
	/* Remove any default margins from rows */
	.row {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}

/* Floating Menu Styles */
.floating-menu-container {
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 10001;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	transition: all 0.3s ease;
}

.floating-menu-container[x-show] {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.floating-main-btn {
	position: relative;
	width: 75px;
	height: 75px;
	background: linear-gradient(135deg, #E7BA06, #9D0156);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(157, 1, 86, 0.4);
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	pointer-events: all;
	color: #ffffff;
	border: 2px solid #ffffff;
	outline: none;
	z-index: 10;
}

.floating-main-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(157, 1, 86, 0.5);
	background: linear-gradient(135deg, #9D0156, #E7BA06);
}

.floating-main-btn.active {
	background: linear-gradient(135deg, #171717, #9D0156);
	color: #E7BA06;
	border-color: #E7BA06;
	transform: rotate(45deg) scale(1.1);
}

.floating-main-btn .food-icon {
	transition: all 0.3s ease;
}

.floating-main-btn.active .food-icon {
	transform: rotate(-45deg);
}

.floating-menu-items {
	position: absolute;
	bottom: 70px;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: none;
	min-width: 140px;
}

.floating-menu-items.active {
	pointer-events: all;
}

.menu-item {
	display: flex;
	align-items: center;
	background: #171717;
	border-radius: 25px;
	padding: 8px 15px;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	color: #E7BA06;
	text-decoration: none;
	transform: translateX(150px) scale(0);
	opacity: 0;
	border: 2px solid #E7BA06;
	position: relative;
}

.floating-menu-items.active .menu-item {
	transform: translateX(0) scale(1);
	opacity: 1;
}

.menu-item:hover {
	transform: translateX(-5px) scale(1.05);
	box-shadow: 0 8px 25px rgba(228, 169, 0, 0.4);
	background: #E7BA06;
	color: #171717;
	border-color: #171717;
}

.menu-icon {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	flex-shrink: 0;
}

.menu-text {
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	flex: 1;
}

/* Connection Lines */
.menu-item::before {
	content: '';
	position: absolute;
	width: 25px;
	height: 2px;
	background: #E7BA06;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: all 0.4s ease;
}

.floating-menu-items.active .menu-item::before {
	opacity: 1;
}

/* Item specific styling */
.home-item {
	transition-delay: 0.1s;
}

.home-item .menu-icon {
	background: #E7BA06;
	color: #171717;
}

.reset-item {
	transition-delay: 0.2s;
}

.reset-item .menu-icon {
	background: #E7BA06;
	color: #171717;
}

.account-item {
	transition-delay: 0.3s;
}

.account-item .menu-icon {
	background: #E7BA06;
	color: #171717;
}

.logout-item {
	transition-delay: 0.4s;
}

.logout-item .menu-icon {
	background: #E7BA06;
	color: #171717;
}


/* Responsive adjustments */
@media (max-width: 768px) {
	.floating-menu-container {
		bottom: 30px;
		right: 30px;
	}
	
	.floating-main-btn {
		width: 70px;
		height: 70px;
	}
	
	.floating-menu-items {
		min-width: 120px;
	}
	
	.menu-item {
		padding: 6px 12px;
	}
	
	.menu-icon {
		width: 30px;
		height: 30px;
		margin-right: 8px;
	}
	
	.menu-text {
		font-size: 13px;
	}
}

/* Animation keyframes for extra effects */
@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.floating-main-btn:not(.active):hover {
	animation: pulse 1.5s infinite;
}

/* Smooth icon transitions */
.food-icon, .close-icon {
	transition: all 0.3s ease;
}

/* Reset Plan Modal Styles */
.reset-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10002;
	animation: fadeIn 0.3s ease;
}

.reset-modal {
	background: #171717;
	border: 3px solid #E7BA06;
	border-radius: 15px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	animation: slideIn 0.3s ease;
}

.reset-modal-header {
	background: #E7BA06;
	color: #171717;
	padding: 20px;
	border-radius: 12px 12px 0 0;
}

.reset-modal-header h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.reset-modal-body {
	padding: 25px;
	color: #E7BA06;
}

.reset-modal-body p {
	margin: 0 0 15px 0;
	font-size: 16px;
	line-height: 1.5;
}

.reset-modal-body ul {
	margin: 15px 0;
	padding-left: 25px;
	color: #E7BA06;
}

.reset-modal-body li {
	margin: 8px 0;
	font-size: 15px;
}

.reset-modal-body strong {
	color: #E7BA06;
	font-weight: bold;
}

.reset-modal-actions {
	padding: 20px 25px;
	display: flex;
	gap: 15px;
	justify-content: center;
}

.reset-cancel-btn,
.reset-confirm-btn {
	padding: 12px 25px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 120px;
}

.reset-cancel-btn {
	background: #171717;
	color: #E7BA06;
	border: 2px solid #E7BA06;
}

.reset-cancel-btn:hover {
	background: #E7BA06;
	color: #171717;
}

.reset-confirm-btn {
	background: #E7BA06;
	color: #171717;
	border: 2px solid #E7BA06;
}

.reset-confirm-btn:hover {
	background: #171717;
	color: #E7BA06;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(231, 186, 6, 0.4);
}

/* Success Modal */
.success-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10002;
	animation: fadeIn 0.3s ease;
}

.success-modal {
	background: #171717;
	border: 3px solid #E7BA06;
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	animation: slideIn 0.3s ease;
}

.success-icon {
	width: 60px;
	height: 60px;
	background: #E7BA06;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: white;
	margin: 0 auto 20px;
	font-weight: bold;
}

.success-modal h3 {
	color: #E7BA06;
	margin: 0 0 15px 0;
	font-size: 1.5rem;
}

.success-modal p {
	color: #E7BA06;
	margin: 0;
	font-size: 16px;
}

/* Error Modal */
.error-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10002;
	animation: fadeIn 0.3s ease;
}

.error-modal {
	background: #171717;
	border: 3px solid #E7BA06;
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	animation: slideIn 0.3s ease;
}

.error-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #E7BA06, #9D0156);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: white;
	margin: 0 auto 20px;
	font-weight: bold;
}

.error-modal h3 {
	color: #E7BA06;
	margin: 0 0 15px 0;
	font-size: 1.5rem;
}

.error-modal p {
	color: #E7BA06;
	margin: 0 0 20px 0;
	font-size: 16px;
}

.error-ok-btn {
	background: linear-gradient(135deg, #E7BA06, #9D0156);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 12px 25px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.error-ok-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Modal Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

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

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
	.reset-modal {
		width: 95%;
		margin: 20px;
	}
	
	.reset-modal-body {
		padding: 20px;
	}
	
	.reset-modal-actions {
		flex-direction: column;
	}
	
	.reset-cancel-btn,
	.reset-confirm-btn {
		width: 100%;
	}
	
	.success-modal,
	.error-modal {
		width: 95%;
		padding: 30px 20px;
	}
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: linear-gradient(135deg, #171717 0%, #9D0156 50%, #E7BA06 100%);
	min-height: 100vh;
}
.container {
	margin: 0 auto;
	padding: 20px;
	padding-top: 130px; /* Account for header and discount section */
	padding-bottom: 20px; /* Account for fixed SELECT PLAN button */
}
.header {
	text-align: center;
	color: white;
	margin-bottom: 40px;
}
.header h1 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0;
}
.header p {
	font-size: 14px;
	opacity: 0.9;
	margin-bottom: 0;
}
.step {
	background: white;
	border-radius: 15px;
	padding: 10px 20px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(157,1,86,0.15);
	border: 1px solid rgba(231,186,6,0.2);
}
.step-title {
	color: #171717;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.step-description {
	color: #666;
	margin-bottom: 5px;
	line-height: 1.5;
	font-size: 13px;
}
.options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}
.option {
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.option:hover {
	border-color: #9D0156;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(157,1,86,0.2);
}
.option.selected {
	border-color: #9D0156;
	background: linear-gradient(135deg, rgba(157,1,86,0.05), rgba(231,186,6,0.05));
}
.option.selected::before {
	content: "✓";
	position: absolute;
	top: 10px;
	right: 10px;
	background: #171717;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}
.option-title {
	font-weight: bold;
	color: #171717;
	margin-bottom: 0;
	font-size: 14px;
}
.option-subtitle {
	color: #666;
	font-size: 12px;
}
.option-price {
	font-size: 0.85rem;
	color: #171717;
	font-weight: bold;
}
.meals-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}
.meal-option {
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding:6px 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}
.meal-option:hover {
	border-color: #171717;
	transform: translateY(-2px);
}
.meal-option.selected {
	border-color: #171717;
	background: #fff5f2;
}
.meal-option.recommended {
	border-color: #171717;
	background: linear-gradient(135deg, #171717, #E7BA06);
	color: white;
}
.meal-option.recommended .meal-number {
	color: white;
}
.meal-option.recommended .meal-price {
	color: white;
}
.meal-option.recommended::before {
	content: "❤️";
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 16px;
}
.meal-number {
	font-size: 2rem;
	font-weight: bold;
	color: #171717;
	margin-bottom:0;
}
.meal-price {
	font-size: 0.9rem;
	color: #666;
}
.pricing-summary {
	background: #f0f8f0;
	border-radius: 10px;
	padding: 20px;
	
}
.pricing-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.pricing-row.total {
	font-weight: bold;
	border-top: 2px solid #ddd;
	padding-top: 10px;
	margin-top: 10px;
}
.discount {
	color: #E7BA06;
	font-weight: bold;
}
.select-button {
	background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
	color: white;
	border: none;
	padding: 18px 40px;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.select-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.select-button:active {
	transform: translateY(0);
}
/* Header with Progress Bar */
.header-progress-bar {
	background: #171717;
	padding: 15px 20px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-progress-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.header-logo {
	flex-shrink: 0;
	margin-right: 40px;
}

.header-logo a {
	display: block;
}


/* Discount Code Section */
.discount-section {
	background: linear-gradient(135deg, #F4D03F 0%, #E6B800 100%);
	color: #fff;
	text-align: center;
	padding: 8px 15px;
	position: relative; /* Default for mobile */
	width: 100%;
	margin: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Desktop: Fixed positioning - AGGRESSIVE */
/* @media (min-width: 769px) {
	.discount-section,
	div.discount-section,
	.discount-section[class] {
		position: fixed !important;
		top: 83px !important;
		left: 0px !important;
		width: 100% !important;
		z-index: 9998 !important;
	}
} */


.discount-content {
	max-width: 1200px;
	margin: 0 auto;
}

.discount-title {
	font-size: 0.9rem;
	font-weight: 700;
	margin: 0 0 3px 0;
	color: #8B008B;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.discount-description {
	font-size: 0.75rem;
	margin: 0 0 3px 0;
	color: #fff;
	font-weight: 600;
	line-height: 1.2;
}

.discount-timer {
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.discount-section.expired {
	background: #666;
	color: #ccc;
}


/* Content Header - CREATE YOUR FIRST BOX */
.content-header {
	text-align: center;
	color: white;
	margin-top: 6vh;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #E7BA06 0%, #45122e 100%);
	padding: 20px 15px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-header h1 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.content-header p {
	font-size: 0.9rem;
	color: #e0e0e0;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 1.3;
	opacity: 0.9;
}

/* Responsive Design - CREATE YOUR FIRST BOX Section */
@media (max-width: 480px) {
	/* Mobile Small Screens */
	.container {
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 80px; /* Reduced padding for fixed button */
		padding-top: 110px; /* Reduced top padding */
	}
	
	.content-header {
		margin-top: 12vh;
		padding: 15px 20px;
		border-radius: 0;
		margin-bottom: 20px;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}
	
	.content-header h1 {
		font-size: 1.1rem;
		letter-spacing: 0.8px;
		margin-bottom: 8px;
		line-height: 1.2;
	}
	
	.content-header p {
		font-size: 0.75rem;
		line-height: 1.3;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	/* Mobile Large Screens */
	.container {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 20px; /* Account for fixed SELECT PLAN button */
	}
	
	.content-header {
		margin-top: 12vh;
		padding: 18px 20px;
		border-radius: 0;
		margin-bottom: 25px;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}
	
	.content-header h1 {
		font-size: 1.3rem;
		letter-spacing: 1px;
		margin-bottom: 8px;
		line-height: 1.2;
	}
	
	.content-header p {
		font-size: 0.85rem;
		line-height: 1.3;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	/* Tablet */
	.content-header {
		margin-top: 5vh;
		padding: 22px 20px;
		border-radius: 12px;
		margin-bottom: 30px;
		max-width: 700px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.content-header h1 {
		font-size: 1.5rem;
		letter-spacing: 1px;
		margin-bottom: 10px;
		line-height: 1.1;
	}
	
	.content-header p {
		font-size: 0.9rem;
		line-height: 1.3;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (min-width: 1025px) and (max-width: 1440px) {
	/* Desktop */
	.content-header {
		margin-top: 6vh;
		padding: 20px 15px;
		border-radius: 12px;
		margin-bottom: 25px;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.content-header h1 {
		font-size: 1.6rem;
		letter-spacing: 1px;
		margin-bottom: 10px;
	}
	
	.content-header p {
		font-size: 0.9rem;
		max-width: 600px;
		margin: 0 auto;
	}
}

@media (min-width: 1441px) {
	/* Large Desktop */
	.content-header {
		margin-top: 6vh;
		padding: 25px 20px;
		border-radius: 12px;
		margin-bottom: 30px;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.content-header h1 {
		font-size: 1.8rem;
		letter-spacing: 1px;
		margin-bottom: 12px;
	}
	
	.content-header p {
		font-size: 1rem;
		max-width: 700px;
		margin: 0 auto;
	}
}

#confirmLogout {
    background: linear-gradient(135deg, #e4a902, #e4a902) !important;

}

/* Static Select Plan Button */
.static-select-plan-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 15px 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
}

.progress-steps {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
	max-width: 600px;
	margin: 0;
	padding: 0;
	position: relative;
}
.progress-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 3px;
	background: #51505f;
	z-index: 1;
	transform: translateY(-50%);
	width: 100%;
}
.progress-line-active {
	position: absolute;
	top: 50%;
	left: 0;
	height: 3px;
	background: #E7BA06;
	background-color: #E7BA06;
	z-index: 2;
	transition: width 0.3s ease;
	transform: translateY(-50%);
}

/* Fix for 4-step progress bar - line stops at last step center */
.progress-steps:has(.step-item:nth-child(4):last-child) .progress-line,
.progress-steps.four-steps .progress-line {
	width: calc(100% - 40px);
	right: auto;
	margin-right: 20px;
}

/* Fix for 5-step progress bar - line extends full width */
.progress-steps:has(.step-item:nth-child(5):last-child) .progress-line,
.progress-steps.five-steps .progress-line {
	width: 100%;
	right: 0;
	margin-right: 0;
}

/* AGGRESSIVE MODE - Force progress-line-active color globally */
.progress-steps .progress-line-active,
.header-progress-content .progress-line-active,
div.progress-line-active,
.progress-line-active[style*="width"] {
	background: #E7BA06 !important;
	background-color: #E7BA06 !important;
}
.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 3;
	position: relative;
}
.step-circle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #E7BA06;
	margin-bottom: 8px;
	border: 2px solid #E7BA06;
	display: block;
	position: relative;
}
.step-circle.inactive {
	background: transparent;
	border-color: #666;
}
.step-label {
	color: #E7BA06;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	margin-top: 8px;
}
.step-label.inactive {
	color: #fff;
}

/* Mobile Progress Steps */
@media (max-width: 768px) {
	.progress-steps {
		padding: 0 5px !important;
		overflow: visible !important;
		justify-content: flex-start !important;
		width: 100% !important;
		display: flex !important;
		transform: translateX(calc(-10% - 15px)) !important;
		margin-left: 0 !important;
		gap: 3% !important;
		position: relative !important;
	}
	
	.step-item {
		flex: none !important;
		min-width: 40px !important;
		max-width: 42px !important;
		position: relative !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}
	
	.step-circle {
		width: 18px !important;
		height: 18px !important;
		margin: 0 auto !important;
	}
	
	.step-label {
		font-size: 9px !important;
		margin-top: 4px !important;
		transform: rotate(-15deg) !important;
		transform-origin: center center !important;
		width: 45px !important;
		line-height: 1.0 !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.3px !important;
		white-space: nowrap !important;
		overflow: visible !important;
	}
	
	.step-label.inactive {
		color: #999 !important;
		font-weight: 500 !important;
	}
	
	/* Progress lines - stop before Payment step */
	.progress-line {
		height: 3px !important;
		top: 8px !important;
		left: 29px !important;
		right: 15% !important; /* Increased by 10% (was 25%, now 15%) */
		width: auto !important;
		background: #51505f !important;
		position: absolute !important;
		z-index: 1 !important;
	}
	
	.progress-line-active {
		height: 4px !important;
		top: 8px !important;
		left: 29px !important;
		background: #E7BA06 !important;
		background-color: #E7BA06 !important;
		position: absolute !important;
		z-index: 3 !important;
		transform: none !important;
		transition: width 0.3s ease !important;
		/* Hard limit to never cross Payment */
		max-width: calc(75% - 29px) !important;
	}
	
	/* Hide line before first step */
	.step-item:first-child::before {
		display: none !important;
	}
	
	/* Hide line after last step (Payment) */
	.step-item:last-child::after {
		display: none !important;
	}
	
	/* 4 steps layout */
	.progress-steps.four-steps .step-item {
		min-width: 48px !important;
		max-width: 50px !important;
	}
	
	.progress-steps.four-steps {
		gap: 6.5% !important;
	}
	
	.progress-steps.four-steps .step-label {
		width: 54px !important;
	}
	
	/* 4 steps - lines stop at Payment (last step) */
	.progress-steps.four-steps .progress-line {
		right: 10% !important; /* Increased by 10% (was 20%, now 10%) */
	}
	
	.progress-steps.four-steps .progress-line-active {
		max-width: calc(80% - 29px) !important;
	}
	
	/* 5 steps - lines stop at Payment (4th step) */
	.progress-steps.five-steps .progress-line {
		right: 30% !important; /* Increased by 10% (was 40%, now 30%) */
	}
	
	.progress-steps.five-steps .progress-line-active {
		max-width: calc(60% - 29px) !important;
	}
}

/* ADDITIONAL MEDIA QUERIES FOR LARGE MOBILE DEVICES (iPhone 12 Pro Max etc.) */
@media (max-width: 768px) and (min-width: 390px) {
	/* Large mobile devices - Force the 10% increase */
	.progress-steps .progress-line {
		right: 15% !important;
		width: auto !important;
	}
	
	.progress-steps.four-steps .progress-line {
		right: 10% !important;
	}
	
	.progress-steps.five-steps .progress-line {
		right: 30% !important;
	}
}

/* SPECIFIC FOR iPHONE 12 PRO MAX AND SIMILAR */
@media (max-width: 428px) and (min-width: 390px) {
	.progress-steps .progress-line {
		right: 15% !important;
		left: 29px !important;
		width: auto !important;
		background: #51505f !important;
		position: absolute !important;
		z-index: 1 !important;
		height: 3px !important;
		top: 8px !important;
	}
	
	.progress-steps.four-steps .progress-line {
		right: 10% !important;
	}
	
	.progress-steps.five-steps .progress-line {
		right: 30% !important;
	}
}
.promo-bar {
	background: #E7BA06;
	color: white;
	text-align: center;
	padding: 12px;
	font-weight: bold;
	font-size: 0.95rem;
}
.get-started-form {
	background: white;
	border-radius: 15px;
	padding: 40px;
	margin: 20px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.get-started-title {
	color: #171717;
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: left;
}
.form-group {
	margin-bottom: 30px;
}
.form-label {
	display: block;
	color: #171717;
	font-weight: bold;
	font-size: 0.9rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.form-input {
	width: 100%;
	padding: 15px 0;
	border: none;
	border-bottom: 3px solid #171717;
	background: transparent;
	font-size: 1.1rem;
	color: #171717;
	outline: none;
	transition: border-color 0.3s ease;
}
.form-input::placeholder {
	color: #171717;
	opacity: 0.7;
}
.form-input:focus {
	border-bottom-color: #E7BA06;
}
.continue-button {
	background: linear-gradient(135deg, #E7BA06, #d4990a);
	color: white;
	border: none;
	padding: 18px 30px;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s ease;
	text-transform: uppercase;
	margin: 0 auto;
}
.continue-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(231, 186, 6, 0.4);
	background: linear-gradient(135deg, #d4990a, #E7BA06);
}

/* Totals Page - Login and Continue buttons styled like SELECT PLAN */
.totals-page .continue-button,
.totals-page .login-button,
.checkout-totals .continue-button,
.checkout-totals .login-button {
	background: #171717 !important;
	color: white !important;
	border: none !important;
	padding: 18px 40px !important;
	border-radius: 50px !important;
	font-size: 1.1rem !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	width: 100% !important;
	transition: all 0.3s ease !important;
	text-transform: uppercase !important;
	margin: 10px auto !important;
	display: block !important;
	text-align: center !important;
	letter-spacing: 1px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.totals-page .continue-button:hover,
.totals-page .login-button:hover,
.checkout-totals .continue-button:hover,
.checkout-totals .login-button:hover {
	background: #1a1a1a !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.totals-page .continue-button:active,
.totals-page .login-button:active,
.checkout-totals .continue-button:active,
.checkout-totals .login-button:active {
	transform: translateY(0) !important;
}
.login-section {
	margin: 30px 0;
}
.already-account {
	color: #171717;
	font-weight: bold;
	font-size: 0.9rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.login-link {
	color: #171717;
	text-decoration: underline;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}
.login-link:hover {
	color: #E7BA06;
}

.terms-section {
	margin-top: 40px;
}
.terms-text {
	color: #171717;
	font-size: 0.9rem;
	line-height: 1.5;
}
.terms-link {
	color: #4a90e2;
	text-decoration: underline;
}
.terms-link:hover {
	color: #357abd;
}
/* Meals Step Styles - Match CREATE YOUR FIRST BOX Design */
.meals-header {
	text-align: center;
	color: white;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #E7BA06 0%, #45122e 100%);
	padding: 20px 15px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.meals-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.meals-subtitle {
	font-size: 0.9rem;
	color: #e0e0e0;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 1.3;
	opacity: 0.9;
}

/* Mobile Responsive for Meals Header */
@media (max-width: 480px) {
	.meals-header {
		padding: 15px 20px;
		border-radius: 0;
		margin-bottom: 20px;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
		margin-top: -17px;
	}
	
	.meals-title {
		font-size: 1.1rem;
		letter-spacing: 0.8px;
		margin-bottom: 8px;
		line-height: 1.2;
	}
	
	.meals-subtitle {
		font-size: 0.75rem;
		line-height: 1.3;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.meals-header {
		padding: 18px 20px;
		border-radius: 0;
		margin-bottom: 25px;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
		margin-top: -17px;
	}
	
	.meals-title {
		font-size: 1.3rem;
		letter-spacing: 1px;
		margin-bottom: 8px;
		line-height: 1.2;
	}
	
	.meals-subtitle {
		font-size: 0.85rem;
		line-height: 1.3;
	}
}
.meal-preferences {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 30px;
}
.preference-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}
.preference-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
	min-width: 200px;
}
.preference-label {
	color: #fff;
	font-weight: 500;
	font-size: 0.9rem;
	display: block;
	margin-bottom: 0;
}
.preference-select {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 5px;
	padding: 8px 12px;
	color: #171717;
	font-weight: bold;
	cursor: pointer;
}
.meals-grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}
@media (max-width: 1200px) {
	.meals-grid-container {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 900px) {
	.meals-grid-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.meals-grid-container {
		grid-template-columns: 1fr;
	}
}
.meal-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}
.meal-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.meal-card.selected {
	border: 3px solid #171717;
	transform: translateY(-3px);
}
.meal-image-container {
	position: relative;
	height: 200px;
	overflow: hidden;
	cursor: pointer;
}
.meal-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.meal-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.badge {
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: bold;
	text-transform: uppercase;
}
.badge.popular {
	background: #8b5cf6;
	color: white;
}
.badge.new {
	background: #10b981;
	color: white;
}
.badge.gf, .badge.df {
	background: #3b82f6;
	color: white;
}
.meal-info {
	padding: 20px;
	background: #f8f9fa;
}
.meal-name {
	font-size: 0.9rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #171717;
	margin-bottom: 10px;
	line-height: 1.3;
	min-height: 40px;
}
.meal-stats {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	font-size: 0.8rem;
	color: #666;
}
.meal-counter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 15px;
}
.counter-btn {
	background: #171717;
	color: white;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 1.2rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	line-height: 27px;
	justify-content: center;
	transition: background 0.3s ease;
}
.counter-btn:hover {
	background: #E7BA06;
}
.counter-value {
	font-size: 1.5rem;
	font-weight: bold;
	color: #171717;
	min-width: 30px;
	text-align: center;
}
.more-info-link {
	display: none !important;
}
.selected-summary {
	background: white;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.summary-text {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
}
.continue-button:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}
.continue-button:disabled:hover {
	transform: none;
	box-shadow: none;
}
/* OLD Breakfast Quantity Selection - REPLACED BELOW */
/* OLD .breakfast-quantity-grid - REPLACED BELOW 
.breakfast-quantity-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
} */
/* OLD breakfast-quantity-option styles - REPLACED BELOW 
.breakfast-quantity-option {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding: 20px 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}
.breakfast-quantity-option:hover {
	border-color: #171717;
	transform: translateY(-2px);
}
.breakfast-quantity-option.selected {
	border-color: #171717;
	background: #fff5f2;
}
.breakfast-quantity-option.recommended {
	border-color: #171717;
	background: linear-gradient(135deg, #171717, #E7BA06);
	color: white;
}
.breakfast-quantity-option.recommended .quantity-number {
	color: white;
}
.breakfast-quantity-option.recommended .quantity-price {
	color: white;
}
.breakfast-quantity-option.recommended::before {
	content: "❤️";
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 12px;
}
.quantity-number {
	font-size: 1.8rem;
	font-weight: bold;
	color: #171717;
	margin-bottom: 5px;
}
.quantity-price {
	font-size: 0.8rem;
	color: #666;
	line-height: 1.2;
} */
.skip-option {
	margin-top: 20px;
}
.skip-link {
	color: #171717;
	text-decoration: underline;
	font-size: 1.1rem;
	font-weight: 500;
}
.skip-link:hover {
	color: #E7BA06;
}
/* Breakfast Divider */
.breakfast-divider {
	text-align: center;
	color: white;
	margin: 50px 0 30px 0;
	padding-top: 30px;
	border-top: 2px solid rgba(255, 255, 255, 0.3);
}
/* Address Form Styles */
.address-form {
	background: white;
	border-radius: 15px;
	padding: 30px;
	margin: 15px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Alpine.js Cloak - Prevent flash of hidden content */
[x-cloak] { 
	display: none !important; 
}

/* Force hide static-select-plan-container when x-cloak is present */
.static-select-plan-container[x-cloak] {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

/* Skip Button Styles */
.skip-button-container {
	text-align: center;
	margin-bottom: 20px;
	width: 100%;
}

/* Desktop Skip Button - Full Width Nice Design */
@media (min-width: 769px) {
	.skip-button-container {
		max-width: 100%;
		margin: 30px auto;
		padding: 0 40px;
	}
	
	.skip-breakfast-btn {
		background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
		color: #666;
		border: 3px dashed #E7BA06;
		font-weight: 700;
		padding: 22px 50px;
		width: 100%;
		border-radius: 15px;
		font-size: 1.1rem;
		text-transform: uppercase;
		letter-spacing: 2px;
		cursor: pointer;
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
		position: relative;
		display: inline-block;
	}
	
	.skip-breakfast-btn:hover {
		background: linear-gradient(135deg, #E7BA06 0%, #d4990a 100%);
		color: white;
		border-style: solid;
		transform: translateY(-3px);
		box-shadow: 0 8px 25px rgba(231, 186, 6, 0.35);
	}
	
	.skip-breakfast-btn:active {
		transform: translateY(-1px);
		box-shadow: 0 4px 15px rgba(231, 186, 6, 0.25);
	}
}

/* Mobile Skip Button Default */
.skip-breakfast-btn {
	background: #e6e6e6;
	color: #c00;
	border: 1px solid #ccc;
	font-weight: bold;
	padding: 12px 24px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.skip-breakfast-btn:hover {
	background: #d6d6d6;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Mobile Skip Button - Fixed Position */
@media (max-width: 768px) {
	.skip-button-container {
		position: static !important;
		text-align: center !important;
		margin: 20px 0 !important;
		padding: 0 15px !important;
		display: block !important;
		visibility: visible !important;
		bottom: auto !important;
		right: auto !important;
		z-index: auto !important;
		width: 100% !important;
	}
	
	.skip-breakfast-btn {
		background: #e6e6e6 !important;
		color: #c00 !important;
		border: 2px solid #c00 !important;
		box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
		font-size: 14px !important;
		padding: 10px 20px !important;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		position: static !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		width: 100% !important;
		z-index: auto !important;
		text-align: center !important;
	}
	
	
	
	/* Auth buttons - work with existing global CSS rule */
	.registration-form .continue-button,
	.login-form .continue-button {
		/* The global CSS rule already handles positioning and z-index (10000) */
		/* Just ensure SELECT PLAN button has lower z-index */
	}
	
	/* Modern Auth Forms Design */
	.auth-form-container {
		margin-bottom: 20px !important;
		padding-bottom: 100px !important; /* Account for fixed button */
		background: none !important;
		border-radius: 0 !important;
		box-shadow: none !important;
		border: none !important;
		padding: 15px 20px !important;
		max-width: none !important;
	}
	
	/* SELECT PLAN button - MUCH lower z-index so auth buttons (z-index 10000) cover it */
	.static-select-plan-container {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		background: white !important;
		padding: 15px 20px !important;
		box-shadow: 0 -2px 10px rgba(0,0,0,0.1) !important;
		z-index: 1 !important;
	}
	
	/* Additional safety - hide SELECT PLAN button content when covered */
	.static-select-plan-container .select-button {
		z-index: 1 !important;
		position: relative !important;
	}
	
}

/* Static Auth Button Container - Same styling as SELECT PLAN container */
.static-auth-button-container {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	border-radius: 0;
	box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
	z-index: 10000;
	padding: 20px;
	text-align: center;
}

/* Auth buttons inside static container should look exactly like SELECT PLAN button */
.static-auth-button-container .select-button {
	/* Inherit all the styling from .select-button class already defined elsewhere */
	/* This will match SELECT PLAN button exactly */
}

/* Remove the old button styling that was making them individually fixed */
.registration-form button[type="submit"],
.registration-form .continue-button,
.login-form button[type="submit"],
.login-form .continue-button,
.login-form .login-button {
	/* Reset to normal button styling */
	position: relative !important;
	background: transparent !important;
	border: 1px solid #ddd !important;
	padding: 10px 20px !important;
	border-radius: 5px !important;
	font-weight: normal !important;
	text-transform: none !important;
	font-size: 0.9rem !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	display: inline-block !important;
	text-align: center !important;
	z-index: auto !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
	max-width: none !important;
	margin: 10px auto !important;
	box-shadow: none !important;
	color: #171717 !important;
}


/* Mobile Protein Preference Styles */
@media (max-width: 768px) {
	/* Override desktop styles for mobile */
	.registration-form button[type="submit"],
	.registration-form .continue-button,
	.login-form button[type="submit"],
	.login-form .continue-button,
	.login-form .login-button {
		left: 0 !important;
		transform: none !important;
		width: 100% !important;
		max-width: none !important;
		border-radius: 30px !important;
		padding: 13px 30px !important;
	}
	
	/* Remove outer container styling on mobile for compact design */
	.step {
		background: transparent !important;
		border-radius: 0 !important;
		padding: 0 !important;
		margin-bottom: 20px !important;
		box-shadow: none !important;
		border: none !important;
	}
	
	.options {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		margin: 0 15px;
	}
	
	.option {
		padding: 15px 10px;
		min-height: 100px;
		border-radius: 8px;
		border: 1px solid #e0e0e0;
	}
	
	.option-icon {
		font-size: 1.5rem;
		margin-bottom: 8px;
	}
	
	.option-title {
		font-size: 13px;
		margin-bottom: 5px;
	}
	
	.option-subtitle {
		font-size: 11px;
		line-height: 1.3;
	}
}

@media (max-width: 480px) {
	.options {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		margin: 10px;
	}
	
	.option {
		padding: 12px 8px;
		min-height: 95px;
	}
	
	.preference-row {
		background: rgba(255, 255, 255, 0.15);
		border: none !important;
		border-radius: 15px;
		padding: 0 !important;
		margin-bottom: 15px;
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
}


/* Mobile Address Form Styles */
@media (max-width: 768px) {
	.address-form {
		background: white;
		border-radius: 12px;
		padding: 15px 10px;
		margin: 15px 8px;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-bottom: 10px; /* Further reduced padding */
	}
	
	/* Compact form elements on mobile */
	.address-form .form-group {
		margin-bottom: 12px !important;
	}
	
	.address-form .form-label {
		font-size: 0.85rem !important;
		margin-bottom: 4px !important;
		font-weight: 600 !important;
	}
	
	.address-form .form-input,
	.address-form input[type="text"],
	.address-form input[type="email"],
	.address-form input[type="tel"],
	.address-form select {
		padding: 10px 12px !important;
		font-size: 0.9rem !important;
		border-radius: 8px !important;
	}
	
	.address-form .form-row {
		gap: 10px !important;
	}
	
	.address-form h2,
	.address-form .form-title {
		font-size: 1.2rem !important;
		margin-bottom: 15px !important;
		text-align: center !important;
	}
	
	/* Reduce registration form top margin on mobile */
	.registration-form {
		margin-top: 20px !important;
	}
	
	/* Static container for button with white background - separate containers */
	.static-button-container {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		background: white !important;
		padding: 15px 20px !important;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
		z-index: 9999 !important;
		border-top: 1px solid #f0f0f0 !important;
		display: block !important;
	}
	
	.static-select-plan-container {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		background: white !important;
		padding: 15px 20px !important;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
		z-index: 9999 !important;
		border-top: 1px solid #f0f0f0 !important;
		/* Let Alpine.js x-show control display - no display: block !important */
	}

	/* Let Alpine.js x-show control display for static-select-plan-container */

	.selected-summary {
		/* Let Alpine.js x-show control display */
		visibility: visible !important;
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 9999 !important;
	}
	
	/* Ensure both summaries have proper styling when shown by Alpine */
	.selected-summary.meals-summary,
	.selected-summary.breakfast-summary {
		/* Alpine.js will handle display with x-show */
		background: white !important;
		padding: 15px 20px !important;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	
	/* Make continue button inside container */
	.static-select-plan-container .continue-button,
	.static-button-container .continue-button,
	.static-button-container .create-account-button,
	.static-button-container button[type="submit"] {
		position: relative !important;
		bottom: auto !important;
		left: auto !important;
		transform: none !important;
		z-index: 10000 !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		background: #171717 !important;
		color: white !important;
		padding: 14px 30px !important;
		border-radius: 30px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		font-size: 1rem !important;
		border: none !important;
		cursor: pointer !important;
		display: block !important;
		text-align: center !important;
	}
	
	.static-select-plan-container .continue-button:hover,
	.static-button-container .continue-button:hover,
	.static-button-container .create-account-button:hover,
	.static-button-container button[type="submit"]:hover {
		transform: translateY(-2px) !important;
		background: #1a1a1a !important;
	}
	
	/* Make CREATE ACCOUNT & CONTINUE, LOGIN, ADDRESS, and CART buttons static on mobile */
	.registration-form button[type="submit"],
	.registration-form .continue-button,
	.login-form button[type="submit"],
	.login-form .continue-button,
	.login-form .login-button,
	.create-account-form button[type="submit"],
	.login-section button,
	button.login-button,
	button[onclick*="login"],
	button[onclick*="Login"],
	.address-form .continue-button,
	.address-section .continue-button,
	button[onclick*="Payment"],
	button[onclick*="payment"],
	.continue-button,
	.wc-proceed-to-checkout .checkout-button,
	.checkout-button.button.alt.wc-forward,
	a.checkout-button,
	.wc-proceed-to-checkout a {
		position: fixed !important;
		bottom: 8px !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		z-index: 10000 !important;
		background: #171717 !important;
		color: white !important;
		padding: 13px 30px !important;
		border-radius: 30px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		margin: 0 !important;
		text-align: center !important;
		border: none !important;
		cursor: pointer !important;
		display: block !important;
		text-align: center !important;
		font-size: 1rem !important;
		text-decoration: none !important;
		line-height: normal !important;
	}
	
	/* Add white background container behind form buttons */
	.registration-form::after,
	.login-form::after,
	.create-account-form::after,
	.login-section::after,
	.address-form::after,
	.address-section::after,
	.wc-proceed-to-checkout::after,
	.woocommerce-cart::after,
	.cart::after,
	body.woocommerce-cart::after,
	body::after {
		content: "" !important;
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100% !important;
		height: 80px !important;
		background: white !important;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
		z-index: 9998 !important;
		border-top: 1px solid #f0f0f0 !important;
	}
}


.form-row {
	display: flex;
	gap: 20px;
}
.form-group.half {
	flex: 1;
}
.form-select {
	width: 100%;
	padding: 15px 0;
	border: none;
	border-bottom: 3px solid #171717;
	background: transparent;
	font-size: 1.1rem;
	color: #171717;
	outline: none;
	transition: border-color 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23ff6b35' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 0px center;
	background-size: 20px;
	padding-right: 30px;
}
.form-select:focus {
	border-bottom-color: #E7BA06;
}
.manual-entry {
	margin-top: 10px;
	text-align: center;
	color: #171717;
	font-size: 0.9rem;
}
.manual-link {
	color: #171717;
	text-decoration: underline;
}
.manual-link:hover {
	color: #E7BA06;
}
.manual-address {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}
.delivery-info {
	background: #fff5f2;
	border: 2px solid #171717;
	border-radius: 10px;
	padding: 20px;
	margin: 30px 0;
}
.info-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.info-item:last-child {
	margin-bottom: 0;
}
.info-icon {
	font-size: 1.5rem;
	margin-right: 15px;
}
.info-text {
	color: #171717;
	font-size: 0.95rem;
	line-height: 1.4;
}
/* Meal/Breakfast Popup Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	padding: 20px;
}
.modal-content {
	background: #f4e76e;
	border-radius: 20px;
	width: 80%;
	max-width: none;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	padding: 30px;
}
.modal-header {
	padding: 30px 30px 20px 30px;
	text-align: center;
	position: relative;
}
.modal-close {
    position: absolute;
    top: 0px;
    right: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}
.modal-close:hover {
	background: white;
}
.modal-title {
	font-size: 1.4rem;
	font-weight: bold;
	color:#E7BA06;
	margin-bottom: 15px;
	line-height: 1.3;
	text-transform: uppercase;
}
.modal-dietary-badge {
	background:#E7BA06;
	color: white;
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: bold;
	display: inline-block;
}
.modal-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin: 20px 0;
	border-radius: 10px;
}
.modal-nutrition {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 20px 0;
	text-align: center;
}
.nutrition-item {
	background: #E7BA06;
	padding: 15px 10px;
	border-radius: 10px;
}
.nutrition-value {
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	display: block;
}
.nutrition-label {
	font-size: 0.9rem;
	color: #fff;
	font-weight: 500;
	margin-top: 5px;
}
.modal-body {
	padding: 0 30px 30px 30px;
}
.modal-section {
	margin-bottom: 25px;
}
.modal-section-title {
	font-size: 1.1rem;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}
.modal-description {
	color: #fff;
	line-height: 1.5;
	margin-bottom: 15px;
}
.modal-ingredients {
	color: #fff;
	line-height: 1.4;
	font-size: 0.9rem;
}
.inner-page input[type="text"], .inner-page input[type="email"], .inner-page input[type="password"] {

	font-size: 12px;
}
.registration-form {
	margin-top: 20px;
}

@media (max-width: 768px) {
	.registration-form {
		margin-top: 20px;
	}
}

.login-form {
	margin-top: 20px;
}

.meals-step {
	margin-top: 10%;
}

/* Desktop Meal Preferences Design - Desktop Only */
@media (min-width: 769px) {
	.meals-step {
		background: linear-gradient(135deg, #2f2e28 0%, #423f35 100%);
		padding: 40px;
		margin: 0;
		border-radius: 0;
		margin-top: 40px;
	}
	
	/* Fix meal card display on desktop */
	.meals-grid-container {
		display: grid !important;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
		gap: 20px !important;
		opacity: 1 !important;
		visibility: visible !important;
	}
	
	.meal-card {
		display: flex !important;
		opacity: 1 !important;
		visibility: visible !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
	}
}


.meals-title {
	/* Will be controlled by media queries */
}

.meals-subtitle {
	font-size: 1.3rem;
	color: white;
	line-height: 1.4;
	max-width: none;
	margin: 0;
	font-weight: 400;
}

.meal-preferences {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin-bottom: 20px;
	box-shadow: none;
	border: none;
}

.preference-row {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	align-items: stretch;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	overflow: visible;
}

.preference-row:last-child {
	margin-bottom: 0;
}

.preference-row.preference-sec {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

.preference-item {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 18px 25px;
	gap: 15px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	position: relative;
	background: transparent;
}

/* For the first row with 3 items */
.preference-row:first-child .preference-item {
	flex: 1;
}

/* For delivery date row - full width */
.preference-row.preference-sec .preference-item {
	flex: 1;
	width: 100%;
}

.preference-label {
	font-size: 1rem;
	font-weight: 600;
	color: white;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.preference-select {
	padding: 0;
	border: none;
	border-radius: 0;
	font-size: 1rem;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	color: #FFE082;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFE082' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0 center;
	background-size: 20px;
	padding-right: 30px;
	min-width: auto;
	text-align: right;
}

.preference-select:hover {
	border: none;
	box-shadow: none;
	color: white;
}

.preference-select:focus {
	border: none;
	outline: none;
	box-shadow: none;
	color: white;
}

.preference-select option {
	background: #E7BA06;
	color: white;
	padding: 10px;
}

/* Info tooltip styling */
.info-tip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: white;
	font-size: 11px;
	cursor: help;
	transition: all 0.2s;
	margin-left: 5px;
}

.info-tip:hover {
	background: rgba(255, 255, 255, 0.5);
	color: white;
}

.info-tip svg,
.info-tip__icon {
	fill: white;
	color: white;
	width: 12px;
	height: 12px;
}

.info-tip:hover svg,
.info-tip:hover .info-tip__icon {
	fill: white;
	color: white;
}

/* Order Summary Styling */
.order-summary {
	background: rgba(23, 23, 23, 0.95);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	color: white;
	font-size: 1.1rem;
}

.summary-row.final-total {
	border-bottom: 2px solid #E7BA06;
	margin-bottom: 8px;
	padding-bottom: 12px;
	font-weight: bold;
	font-size: 1.3rem;
}

.summary-row.subtotal {
	opacity: 0.8;
	font-size: 1rem;
}

/* Desktop meals container styling */
.meals-container {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
}

/* Desktop continue button */
.meals-step .continue-button {
	background: white;
	color: #E7BA06;
	font-weight: 700;
	padding: 16px 50px;
	border-radius: 50px;
	font-size: 1.1rem;
	text-transform: uppercase;
	border: 2px solid white;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 30px;
	min-width: 250px;
}

.meals-step .continue-button:hover {
	background: #FFE082;
	border-color: #FFE082;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.meals-step .continue-button:active {
	transform: translateY(0);
}

/* Desktop specific - show title with proper styling */
@media (min-width: 769px) {
	.meals-title {
		display: block;
		font-size: 2rem;
		font-weight: 700;
		margin-bottom: 15px;
		letter-spacing: 1.2px;
	}
}

/* Meal items grid for desktop */
.meals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

/* Compact Meal Card Design */
.meals-grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.meal-card {
	display: flex;
	flex-direction: column;
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	height: auto;
	position: relative;
	border: 2px solid transparent;
}

.meal-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
	border-color: rgba(231, 186, 6, 0.3);
}

.meal-card.selected {
	border: 2px solid #9D0156;
	box-shadow: 0 0 0 4px rgba(157, 1, 86, 0.1), 0 4px 12px rgba(157, 1, 86, 0.15);
	background: linear-gradient(to bottom, rgba(157, 1, 86, 0.02), white);
}

/* Single checkmark in left top corner */
.meal-card.selected .meal-image-container::after {
	content: '✓';
	position: absolute;
	top: 10px;
	left: 10px;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #9D0156, #E7BA06);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	z-index: 10;
	animation: checkmarkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	border: 2px solid white;
}

/* Info icon for meal cards */
.meal-info-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 28px;
	height: 28px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	z-index: 15;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.meal-info-icon:hover {
	background: rgba(157, 1, 86, 0.9);
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Tooltip */
.meal-info-icon::before {
	content: 'More info';
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
}

.meal-info-icon:hover::before {
	opacity: 1;
	visibility: visible;
}

/* Arrow for tooltip */
.meal-info-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid rgba(0, 0, 0, 0.9);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.meal-info-icon:hover::after {
	opacity: 1;
	visibility: visible;
}

@keyframes checkmarkPop {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Toast notification */
.toast-notification {
	position: fixed;
	top: 20%;
	right: 20px;
	background: linear-gradient(135deg, #9D0156, #E7BA06);
	color: white;
	padding: 12px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	animation: toastSlideIn 0.3s ease-out;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	max-width: 300px;
}

.toast-notification.hide {
	animation: toastSlideOut 0.3s ease-in;
}

.toast-notification::before {
	content: '✓';
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}

@keyframes toastSlideIn {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes toastSlideOut {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	100% {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* Meal Image Section */
.meal-image-container {
	width: 100%;
	height: 200px;
	position: relative;
	flex-shrink: 0;
}

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

.meal-badges {
	position: absolute;
	top: 5px;
	right: 5px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	align-items: flex-end;
}

.badge {
	padding: 2px 6px;
	border-radius: 0 8px 8px 0;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	right: -5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge.popular {
	background: #FF6B35;
	color: white;
	border-left: 3px solid #E7BA06;
}

.badge.new {
	background: #4CAF50;
	color: white;
	border-left: 3px solid #388E3C;
}

.badge.gf {
	background: #2196F3;
	color: white;
	border-left: 3px solid #1976D2;
}

.badge.df {
	background: #9C27B0;
	color: white;
	border-left: 3px solid #7B1FA2;
}

/* Meal Info Section - Vertical Layout */
.meal-info {
	flex: 1;
	padding: 15px;
	background: #FFFDE7;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	min-height: 150px;
}

/* Desktop: Protein info and quantity controls in one line */
@media (min-width: 769px) {
	.meal-info {
		position: relative;
	}
	
	
	.meal-bottom-controls {
		position: absolute;
		bottom: 15px;
		left: 15px;
		right: 15px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.meal-stats {
		display: flex;
		align-items: center;
		gap: 6px;
		font-weight: 600;
		color: #171717;
		font-size: 0.95rem;
		background: rgba(231, 186, 6, 0.1);
		padding: 6px 12px;
		border-radius: 15px;
		border: 1px solid #E7BA06;
	}
	
	.meal-stats::before {
		content: "💪";
		font-size: 1.1rem;
	}
	
	.quantity-selector {
		display: flex;
		align-items: center;
		gap: 3px;
		background: linear-gradient(135deg, #ffffff, #f8f8f8);
		padding: 3px;
		border-radius: 25px;
		border: 2px solid transparent;
		background-clip: padding-box;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.05);
		position: relative;
		overflow: hidden;
		transition: all 0.3s ease;
	}
	
	.quantity-selector:hover {
		box-shadow: 0 4px 12px rgba(157, 1, 86, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.05);
		transform: translateY(-1px);
	}
	
	.quantity-selector::before {
		content: '';
		position: absolute;
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
		background: linear-gradient(135deg, #E7BA06, #9D0156);
		border-radius: 25px;
		z-index: -1;
		opacity: 0.9;
		transition: opacity 0.3s ease;
	}
	
	.quantity-selector:hover::before {
		opacity: 1;
	}
	
	.quantity-selector button {
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: linear-gradient(135deg, #E7BA06, #9D0156);
		color: white;
		border: none;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 20px;
		font-weight: 500;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		position: relative;
		overflow: hidden;
	}
	
	.quantity-selector button::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.3);
		transform: translate(-50%, -50%);
		transition: width 0.3s, height 0.3s;
	}
	
	.quantity-selector button:hover {
		background: linear-gradient(135deg, #9D0156, #E7BA06);
		transform: scale(1.15);
		box-shadow: 0 4px 8px rgba(157, 1, 86, 0.3);
	}
	
	.quantity-selector button:hover::after {
		width: 100%;
		height: 100%;
	}
	
	.quantity-selector button:active {
		transform: scale(1.05);
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	}
	
	.quantity-selector button:first-child {
		font-size: 22px;
	}
	
	.quantity-selector button:last-child {
		font-size: 20px;
	}
	
	.quantity-selector .quantity-display {
		min-width: 40px;
		text-align: center;
		font-weight: 700;
		color: #171717;
		font-size: 1.15rem;
		background: white;
		padding: 5px 8px;
		border-radius: 15px;
		margin: 0 2px;
		box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
		font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
		letter-spacing: 0.5px;
		transition: all 0.2s ease;
		position: relative;
	}
	
	.quantity-selector .quantity-display:after {
		content: attr(data-value);
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 0;
		animation: fadeNumber 0.3s ease;
	}
	
	@keyframes fadeNumber {
		0% {
			opacity: 0;
			transform: translate(-50%, -50%) scale(1.5);
		}
		50% {
			opacity: 1;
		}
		100% {
			opacity: 0;
			transform: translate(-50%, -50%) scale(1);
		}
	}
	
	.more-info-link {
		display: none;
	}
	
	.meal-name {
		margin-bottom: 10px;
		max-width: 100%;
		font-size: 1.05rem;
	}
}

.meal-name {
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: color 0.3s ease;
}

.meal-name:hover {
	color: #9D0156;
}
	color: #8B6E3E;
	margin: 0 0 8px 0;
	line-height: 1.3;
	text-transform: uppercase;
	text-align: center;
}

.meal-stats {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 15px;
	text-align: center;
}

.meal-stats span {
	margin-right: 10px;
}

/* Meal Counter - Vertical Layout */
.meal-counter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 10px 0;
}

.counter-btn {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid #8B6E3E;
	background: transparent;
	color: #8B6E3E;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.counter-btn:hover {
	background: #8B6E3E;
	color: white;
}

.counter-value {
	font-size: 1.2rem;
	font-weight: 700;
	color: #8B6E3E;
	min-width: 30px;
	text-align: center;
}

/* More info link removed - hidden globally */

/* Static Bottom Summary Section */
.selected-summary {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	padding: 8px 20px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	border-top: 1px solid #f0f0f0;
	height: 60px;
}

/* Desktop Override for Selected Summary */
@media (min-width: 769px) {
	.selected-summary {
		left: 50%;
		transform: translateX(-50%);
		max-width: 1200px;
		width: calc(100% - 40px);
		justify-content: center;
		gap: 56%;
	}
}

.summary-text {
	font-size: 0.95rem;
	color: #171717;
	margin: 0;
	font-weight: 600;
}

.summary-text span {
	color: #FF6B35;
	font-weight: 700;
}

.total-display {
	display: none !important; /* Hide total display completely */
}

.total-display strong {
	display: none !important;
}

.coupon-code-small {
	display: none !important; /* Hide coupon code */
}

/* Compact Continue Button */
.selected-summary .continue-button {
	background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
	max-width: 306px;
	margin-bottom: 20px;
}

.selected-summary .continue-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.selected-summary .continue-button:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Add padding to bottom of meals container to avoid overlap */
.meals-grid-container {
	padding-bottom: 70px;
}

/* Summary section styling */
.meal-summary {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	margin-top: 20px;
	border-left: 4px solid #FF6B35;
}

.meal-summary h3 {
	color: #2c3e50;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.meal-summary .price {
	font-size: 1.8rem;
	color: #FF6B35;
	font-weight: 700;
}

/* Breakfast/Authentic Section Styling - Header + Cards */
.breakfast-quantity-section {
	background: white;
	border-radius: 12px;
	padding: 0;
	margin: 15px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.quantity-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: white;
	text-align: center;
	margin: 0;
	padding: 20px;
	text-transform: uppercase;
	background: linear-gradient(135deg, #E7BA06 0%, #E7BA06 100%);
}

.breakfast-quantity-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	gap: 20px;
	padding: 20px;
	background: #F5F5F0;
}

.quantity-option-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.breakfast-quantity-option {
	background: white;
	border: 2px solid #D0D0D0;
	border-radius: 12px;
	padding: 15px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	width: 100%;
	min-height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.breakfast-quantity-option:hover {
	border-color: #E7BA06;
	transform: translateY(-2px);
	box-shadow: 0 3px 10px rgba(232, 93, 59, 0.15);
}

.breakfast-quantity-option.selected {
	border-color: #171717;
	border-width: 4px;
	background: white;
	position: relative;
}

.breakfast-quantity-option.selected::after {
	content: '✓';
	position: absolute;
	top: -15px;
	right: -15px;
	background: #171717;
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
}

.quantity-number {
	font-size: 3rem;
	font-weight: 600;
	color: #171717;
	margin-bottom: 8px;
}

.quantity-price {
	font-size: 0.95rem;
	color: #666;
	font-weight: 400;
	line-height: 1.3;
}

.quantity-price span:first-child {
	text-decoration: line-through;
	color: #999;
	display: block;
	margin-bottom: 2px;
}

.recommended-badge {
	display: none; /* Hide for cleaner look */
}

.plan-label {
	margin-top: 10px;
	font-size: 0.9rem;
	color: #8B4513;
	font-weight: 600;
	background: #F4E6A1;
	padding: 6px 16px;
	border-radius: 20px;
	border: 2px solid #DEB887;
}

/* Mobile Responsive for Compact Design */
@media (max-width: 768px) {
	/* Mobile meal card width increase and position */
	.meal-card {
		width: 115% !important;
		max-width: 115% !important;
		margin-left: -8% !important;
	}
	
	/* Mobile meal-preferences width increase and position */
	.meal-preferences {
		width: 110% !important;
		max-width: 110% !important;
		margin-left: -5% !important;
	}
	
	/* Mobile meal-counter position */
	.meal-counter {
		position: absolute;
		bottom: 24%;
		left: 53%;
		gap: 0px;
		margin: 0;
	}
	
	/* Mobile info icon positioning */
	.meal-info-icon {
		position: absolute;
		bottom: 3px;
		right: 6px;
		width: 22px;
		height: 20px;
		background: rgba(0, 0, 0, 0.7);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 14px;
		font-weight: bold;
		z-index: 15;
		transition: all 0.3s ease;
		backdrop-filter: blur(5px);
		border: 2px solid rgba(255, 255, 255, 0.3);
	}
	
	/* Hide tooltips on mobile */
	.meal-info-icon::before,
	.meal-info-icon::after {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
	}
	
	
	/* Mobile selected indicator */
	.meal-card.selected {
		border: 2px solid #9D0156;
		background: linear-gradient(to bottom, rgba(157, 1, 86, 0.03), white);
	}
	
	.meal-card.selected .meal-image-container::after {
		content: '✓';
		position: absolute;
		top: 5px;
		left: 5px;
		width: 28px;
		height: 28px;
		background: linear-gradient(135deg, #9D0156, #E7BA06);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
		font-weight: bold;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
		z-index: 10;
		border: 2px solid white;
	}
	
	.meal-bottom-controls {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 15px;
		padding-top: 10px;
		border-top: 1px solid rgba(231, 186, 6, 0.3);
	}
	
	.meal-stats {
		display: flex;
		align-items: center;
		gap: 4px;
		font-size: 0.85rem;
		color: #171717;
		font-weight: 600;
		background: rgba(231, 186, 6, 0.1);
		padding: 5px 10px;
		border-radius: 12px;
	}
	
	.meal-stats::before {
		content: "💪";
		font-size: 1rem;
	}
	
	.quantity-selector {
		display: flex;
		align-items: center;
		gap: 10px;
		background: white;
		padding: 3px;
		border-radius: 20px;
		border: 2px solid #E7BA06;
	}
	
	.quantity-selector button {
		width: 32px;
		height: 32px;
		background: #E7BA06;
		color: white;
		border: none;
		border-radius: 50%;
		font-size: 18px;
		font-weight: bold;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.quantity-selector .quantity-display {
		min-width: 30px;
		text-align: center;
		font-weight: bold;
		font-size: 1rem;
		color: #171717;
	}
	
	.meal-counter {
		position: absolute;
		bottom: 24%;
		left: 46%;
		gap: 10px;
		margin: 0;
	}
	.meals-step {
		background: linear-gradient(135deg, #2f2e28 0%, #423f35 100%);
		margin: 0;
		margin-top: 10vh;
		padding: 30px 20px;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
		width: 100vw;
	}
	
	
	.meal-preferences {
		background: transparent;
		padding: 0;
		margin-bottom: 20px;
	}
	
	.preference-row {
		background: rgba(255, 255, 255, 0.15);
		border:0 !important;
		border-radius: 15px;
		padding: 0!important;
		margin-bottom: 15px;
		display: flex;
		flex-direction: column;
		gap: 15px;
		width: 92% !important;
        margin-left: 17px
	}
	
	.preference-row.preference-sec {
		margin-bottom: 0;
	}
	
	.preference-item {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
	}
	
	.preference-label {
		font-size: 1.1rem;
		font-weight: 600;
		color: white;
		margin-bottom: 0;
		flex: 1;
	}
	
	.preference-select {
		background: transparent;
		border: none;
		color: #FFE082;
		font-size: 1.1rem;
		font-weight: 600;
		padding: 5px 30px 5px 10px;
		text-align: right;
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFE082' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 5px center;
		background-size: 20px;
		min-width: 150px;
		flex-shrink: 0;
	}
	
	.preference-select:focus {
		outline: 2px solid #FFE082;
		outline-offset: 2px;
		border-radius: 5px;
	}
	
	.preference-select option {
		background: #E7BA06 !important;
		color: white !important;
	}
	
	.preference-select {
		background: transparent !important;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFE082' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E") !important;
		background-repeat: no-repeat !important;
		background-position: right 5px center !important;
		background-size: 20px !important;
	}
	
	/* Hide info tooltip on mobile for cleaner look */
	.info-tip {
		display: none;
	}
	
	/* Style meal selection area on mobile */
	.meals-step .meals-container {
		background: white;
		border-radius: 15px;
		padding: 15px;
		margin-top: 20px;
	}
	
	/* Continue button styling for mobile */
	.meals-step .continue-button {
		background: #FFE082;
		color: #E7BA06;
		font-weight: 700;
		padding: 15px 30px;
		border-radius: 30px;
		width: 100%;
		margin-top: 20px;
		font-size: 1.1rem;
		text-transform: uppercase;
		border: none;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	}
	
	.meals-step .continue-button:active {
		transform: scale(0.98);
	}
	
	/* Mobile Meal Card Styles - Restore original horizontal layout */
	.meals-grid-container {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 0 15px;
	}
	
	.meal-card {
		height: 120px;
		flex-direction: row;
	}
	
	.meal-image-container {
		width: 120px;
		height: 120px;
	}
	
	.meal-info {
		padding: 10px 12px;
		min-height: auto;
	}
	
	.meal-name {
		font-size: 0.85rem;
		margin-bottom: 3px;
		text-align: left;
	}
	
	.meal-stats {
		font-size: 0.75rem;
		text-align: left;
	}
	
	.counter-btn {
		width: 25px;
		height: 25px;
		font-size: 1rem;
		touch-action: manipulation;
		pointer-events: auto;
	}
	
	.counter-value {
		font-size: 1rem;
	}
	
	.more-info-link {
		font-size: 0.75rem;
		position: absolute;
		bottom: 10px;
		right: 12px;
		text-align: right;
	}
	
	.meal-counter {
	    position: absolute;
       bottom: 24%;
      left: 55%;
        gap: 0px;
        margin: 0;
	}
	
	.meal-badges {
		top: 3px;
		right: 3px;
		gap: 2px;
	}
	
	.badge {
		font-size: 0.55rem;
		padding: 1px 4px;
		right: -3px;
		border-radius: 0 6px 6px 0;
	}
	
	/* Mobile Static Summary */
	.selected-summary {
		/* Let Alpine.js control display with x-show */
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		background: white !important;
		padding: 15px 20px !important;
		gap: 12px !important;
		height: auto !important;
		min-height: 80px !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		z-index: 9999 !important;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
		border-top: 1px solid #f0f0f0 !important;
		visibility: visible !important;
	}

	/* Mobile Static Containers - Let Alpine.js control display for static-select-plan-container */
	.static-button-container {
		display: block !important;
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		background: white !important;
		z-index: 9999 !important;
		visibility: visible !important;
		padding: 15px 15px 20px 15px !important;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
		border-top: 1px solid #f0f0f0 !important;
	}
	
	.static-select-plan-container {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		background: white !important;
		z-index: 9999 !important;
		padding: 15px 15px 20px 15px !important;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
		border-top: 1px solid #f0f0f0 !important;
		/* Removed display and visibility - let Alpine.js x-show control this */
	}

	/* Mobile - Force summary text to show above button */
	.selected-summary .summary-text {
		display: block !important;
		visibility: visible !important;
		font-size: 0.9rem !important;
		color: #171717 !important;
		font-weight: 600 !important;
		text-align: center !important;
		margin-bottom: 12px !important;
		margin-top: 0 !important;
		padding: 0 !important;
		order: 1 !important;
		width: 100% !important;
		flex-shrink: 0 !important;
	}

	.selected-summary .continue-button {
		order: 2 !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 12px 20px !important;
		font-size: 0.9rem !important;
		flex-shrink: 0 !important;
	}

	/* Force summary text visibility */
	.summary-text {
		display: block !important;
		visibility: visible !important;
	}

	.summary-text span {
		color: #FF6B35 !important;
		font-weight: 700 !important;
	}
	
	.summary-text {
		font-size: 0.85rem;
		text-align: center;
		width: 100%;
		margin-bottom: 4px;
	}
	
	.total-display {
		display: none !important; /* Hide total on mobile for more compact design */
	}

	/* MOBILE ONLY - Force visibility of summary text with highest specificity */
	@media (max-width: 768px) {
		.selected-summary {
			padding: 15px 20px 25px 20px !important;
			min-height: 90px !important;
			gap: 12px !important;
		}
		
		.selected-summary .summary-text {
			display: block !important;
			visibility: visible !important;
			opacity: 1 !important;
			height: auto !important;
			overflow: visible !important;
			position: relative !important;
			font-size: 0.9rem !important;
			margin-bottom: 12px !important;
			margin-top: 0 !important;
			order: 1 !important;
		}
		
		.selected-summary .continue-button {
			order: 2 !important;
			margin: 0 !important;
			padding: 12px 20px !important;
		}
		
		.summary-text {
			display: block !important;
			visibility: visible !important;
			opacity: 1 !important;
		}

		/* MOBILE - Ensure correct summaries show based on section */
		/* Meals summary - shows on main meals section */
		.meals-summary {
			/* Alpine x-show controls display */
			position: fixed !important;
			bottom: 0 !important;
			left: 0 !important;
			right: 0 !important;
			z-index: 9999 !important;
			background: white !important;
			padding: 15px 20px !important;
			box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
			border-top: 1px solid #f0f0f0 !important;
		}
		
		/* Breakfast summary - shows on authentic section */
		.breakfast-summary {
			/* Alpine x-show controls display */
			position: fixed !important;
			bottom: 0 !important;
			left: 0 !important;
			right: 0 !important;
			z-index: 9999 !important;
			background: white !important;
			padding: 15px 20px !important;
			box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1) !important;
			border-top: 1px solid #f0f0f0 !important;
		}
	}
	
	.total-display strong {
		font-size: 0.95rem;
	}
	
	.selected-summary .continue-button {
		padding: 8px 20px;
		font-size: 0.8rem;
		border-radius: 20px;
		width: auto;
		max-width: 90% !important;
		margin: 0 auto !important;
		
	}
	
	.meals-grid-container {
		padding-bottom: 80px;
	}
	
	/* OLD Mobile Breakfast/Authentic Section - REMOVED - See final override at end of file */
	
	/* breakfast-quantity-grid mobile styles moved to final override section */
	}
	
	.breakfast-quantity-section .breakfast-quantity-option,
	.meal-option {
		padding: 8px !important;
		min-height: 83px !important;
		height: 70px !important;
		width: 80% !important;
		max-width: 80% !important;
		margin: 0 auto !important;
		border-radius: 8px !important;
		background: white !important;
		border: 2px solid #D0D0D0 !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		position: relative !important;
	}
	
	.breakfast-quantity-option.selected {
		border-width: 3px !important;
		border-color: #171717 !important;
	}
	
	.breakfast-quantity-option.selected::after {
		width: 24px !important;
		height: 24px !important;
		top: -12px !important;
		right: -12px !important;
		font-size: 14px !important;
		background: #171717 !important;
		color: white !important;
		content: '✓' !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		border-radius: 50% !important;
		position: absolute !important;
	}
	
	.breakfast-quantity-section .quantity-number {
		font-size: 1.5rem !important;
		margin-bottom: 2px !important;
		color: #171717 !important;
		font-weight: 600 !important;
		line-height: 1 !important;
	}
	
	.breakfast-quantity-section .quantity-price {
		font-size: 0.7rem !important;
		color: #666 !important;
		line-height: 1.1 !important;
		text-align: center !important;
	}
	
	.quantity-price span:first-child {
		text-decoration: line-through !important;
		color: #999 !important;
		display: block !important;
		margin-bottom: 2px !important;
	}
	
	.breakfast-quantity-section .plan-label {
		font-size: 0.65rem !important;
		margin-top: 4px !important;
		padding: 2px 8px !important;
		background: #F4E6A1 !important;
		color: #8B4513 !important;
		border-radius: 15px !important;
		border: 1px solid #DEB887 !important;
		font-weight: 600 !important;
		position: absolute !important;
		bottom: -12px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
	}
}

/* Modern Form Styling */
.auth-form-container h2,
.registration-form h2,
.login-form h2 {
	color: #171717 !important;
	font-size: 1.5rem !important;
	font-weight: 700 !important;
	text-align: center !important;
	margin-bottom: 25px !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
}

.registration-form .form-label,
.login-form .form-label {
	color: #555 !important;
	font-size: 0.9rem !important;
	font-weight: 600 !important;
	margin-bottom: 8px !important;
	display: block !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
}

.registration-form .form-input,
.login-form .form-input {
	font-size: 1rem !important;
	padding: 15px 20px !important;
	border: 2px solid #e0e0e0 !important;
	border-radius: 12px !important;
	background: #ffffff !important;
	transition: all 0.3s ease !important;
	width: 100% !important;
	box-sizing: border-box !important;
	margin-bottom: 20px !important;
}

.registration-form .form-input:focus,
.login-form .form-input:focus {
	border-color: #E7BA06 !important;
	box-shadow: 0 0 0 3px rgba(228, 169, 0, 0.1) !important;
	outline: none !important;
	background: #fffef7 !important;
}

.registration-form .form-input::placeholder,
.login-form .form-input::placeholder {
	color: #aaa !important;
	font-style: italic !important;
}

/* Modern Auth Form Buttons - Commented out as buttons are now static/fixed position 
   The buttons are now styled in the "Make CREATE ACCOUNT & CONTINUE and LOGIN & CONTINUE buttons static" section above */
/*
.registration-form button[type="submit"]:not(.select-button),
.registration-form .continue-button:not(.select-button),
.login-form button[type="submit"]:not(.select-button),
.login-form .continue-button:not(.select-button),
.login-form .login-button:not(.select-button) {
	background: #171717 !important;
	color: white !important;
	border: none !important;
	padding: 15px 40px !important;
	border-radius: 50px !important;
	font-size: 0.9rem !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	width: 80% !important;
	margin: 0 auto !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.registration-form button[type="submit"]:not(.select-button):hover,
.registration-form .continue-button:not(.select-button):hover,
.login-form button[type="submit"]:not(.select-button):hover,
.login-form .continue-button:not(.select-button):hover,
.login-form .login-button:not(.select-button):hover {
	background: #171717 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}
*/

/* Form Toggle Links */
.auth-form-container a,
.registration-form a,
.login-form a {
	color: #E7BA06 !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	transition: color 0.3s ease !important;
}

.auth-form-container a:hover,
.registration-form a:hover,
.login-form a:hover {
	color: #d4990a !important;
	text-decoration: underline !important;
}

/* Form Groups */
.registration-form .form-group,
.login-form .form-group {
	margin-bottom: 20px !important;
}

.registration-form .form-group.half {
	width: calc(50% - 10px) !important;
	display: inline-block !important;
	margin-right: 10px !important;
}

/* Center form content */
.auth-form-container,
.registration-form,
.login-form {
	text-align: left !important;
	margin-top: 75px !important
}

/* Mobile Auth Forms Styling */
@media (max-width: 768px) {
	.auth-form-container {
		margin: 0 !important;
		padding: 15px 20px !important;
		border-radius: 0 !important;
		max-width: none !important;
		width: 100% !important;
		background: none !important;
		box-shadow: none !important;
		border: none !important;
	}
	
	.auth-form-container h2,
	.registration-form h2,
	.login-form h2 {
		font-size: 1.3rem !important;
		margin-bottom: 20px !important;
	}
	
	.registration-form .form-label,
	.login-form .form-label {
		font-size: 0.8rem !important;
		margin-bottom: 6px !important;
	}
	
	.registration-form .form-input,
	.login-form .form-input {
		font-size: 1rem !important;
		padding: 14px 18px !important;
		margin-bottom: 18px !important;
		border-radius: 10px !important;
	}
	
	.registration-form button[type="submit"],
	.registration-form .continue-button,
	.login-form button[type="submit"],
	.login-form .continue-button,
	.login-form .login-button {
		padding: 15px 40px !important;
		font-size: 0.9rem !important;
		border-radius: 50px !important;
		width: 80% !important;
		margin: 0 auto !important;
		letter-spacing: 0.5px !important;
	}
	
	.registration-form .form-group.half {
		width: 100% !important;
		display: block !important;
		margin-right: 0 !important;
	}
}
.modal-allergens {
	color: #fff;
	font-size: 0.9rem;
	font-style: italic;
}
.registration-form .form-group.half {
	margin-right: 10px;
}
.registration-form .form-label {
	font-size: 12px;
}
.registration-form .form-input {
	font-size: 12px;
}

/* FINAL MOBILE OVERRIDE - Breakfast/Authentic Section */
@media (max-width: 768px) {
	.breakfast-quantity-section {
		background: white !important;
		border-radius: 12px !important;
		padding: 0 !important;
		margin: 20px 25px !important;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
		overflow: hidden !important;
		max-width: 100% !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	
	.breakfast-quantity-section .quantity-title {
		background: linear-gradient(135deg, #E7BA06 0%, #E7BA06 100%) !important;
		color: white !important;
		font-size: 1rem !important;
		padding: 15px 10px !important;
		margin: 0 !important;
		text-align: center !important;
		text-transform: uppercase !important;
		font-weight: 700 !important;
		line-height: 1.1 !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}
	
	.breakfast-quantity-section .breakfast-quantity-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 6px !important;
        background: white !important;
        max-width: 95% !important;
        margin: 0 auto !important;
        padding: 10px !important;
	}
}