body, html 
{
	margin: 0;
	padding: 0;
	background: linear-gradient(to bottom, #2C0F0F 0%, #F5F0F0 100%);
	font-family: 'Montserrat', 'Segoe UI', sans-serif;
	min-height: 100vh;
}
.invite-wrapper 
{
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}
.invite-box 
{
	display: flex;
	width: 100%;
	max-width: 1100px;
	height: auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
	background: #fff;
}
.invite-left 
{
	background: linear-gradient(135deg, #4D1010 0%, #6B1A1A 100%);
	color: #fff;
	flex: 1;
	padding: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.invite-left::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAwIDI1YzQxLjQyMSAwIDc1IDMzLjU3OSA3NSA3NXMtMzMuNTc5IDc1LTc1IDc1LTc1LTMzLjU3OS03NS03NSAzMy41NzktNzUgNzUtNzV6IiBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
	opacity: 0.1;
}
.logo-container 
{
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 320px;
	margin-bottom: 40px;
}
.logo-container img 
{
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.invite-text 
{
	position: relative;
	z-index: 1;
	text-align: center;
}
.invite-text h1 
{
	font-size: 34px;
	margin-bottom: 30px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.5px;
	position: relative;
	padding-bottom: 15px;
}
.invite-text h1::after 
{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: #fff;
	opacity: 0.4;
}
.invite-text p 
{
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,0.85);
	margin-bottom: 22px;
	font-weight: 300;
}
.invite-text strong 
{
	font-weight: 600;
	color: #fff;
}
.seating-info 
{
	position: relative;
	z-index: 1;
	background: rgba(255,255,255,0.1);
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
	border-left: 4px solid rgba(255,255,255,0.3);
}
.seating-info.hidden 
{
	display: none;
}			
.seating-info h3 
{
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 600;
	color: #fff;
}
.seating-info p 
{
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255,255,255,0.9);
	margin: 0;
	font-weight: 300;
}
.invite-right 
{
	background: #FEFCFC;
	flex: 1;
	padding: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.invite-form 
{
	width: 100%;
	max-width: 400px;
}
.form-field 
{
	margin-bottom: 20px;
}
.form-label 
{
	display: block;
	margin-bottom: 7px;
	font-weight: 500;
	color: #4D1010;
	font-size: 14px;
}
.form-input 
{
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #E0CCCC;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	font-family: 'Montserrat', sans-serif;
}
.form-input:focus 
{
	border-color: #4D1010;
	box-shadow: 0 0 0 2px rgba(77, 16, 16, 0.1);
	outline: none;
}
.form-select 
{
	width: 100%;
	height: 48px;
	padding: 0 16px;
	border: 1px solid #E0CCCC;
	border-radius: 8px;
	font-size: 15px;
	background-color: #fff;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}
.required:after 
{
	content: " *";
	color: #B8452B;
}
.submit-btn 
{
	background-color: #4D1010;
	color: #fff;
	padding: 16px 30px;
	border-radius: 8px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	margin-top: 0;
	font-family: 'Montserrat', sans-serif;
	flex: 1;
	text-align: center;
}
.submit-btn:hover 
{
	background-color: #6B1A1A;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(77, 16, 16, 0.2);
}
.submit-btn:disabled 
{
	background-color: #CCC;
	cursor: not-allowed;
	transform: none;
}
.form-success 
{
	display: none;
	text-align: center;
	padding: 40px 20px;
}
.success-icon 
{
	width: 80px;
	height: 80px;
	background: #4D1010;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.success-icon svg 
{
	width: 40px;
	height: 40px;
}
.form-success h3 
{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #4D1010;
}
.form-success p 
{
	font-size: 16px;
	color: #555;
	margin-bottom: 30px;
	line-height: 1.6;
}
.form-success .thank-you-box 
{
	background: #F5F0F0;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	margin-top: 20px;
	position: relative;
}
.form-success .thank-you-box::before,
.form-success .thank-you-box::after 
{
	content: '';
	position: absolute;
	width: 40px;
	height: 1px;
	background: #E0CCCC;
	top: 50%;
}
.form-success .thank-you-box::before 
{
	left: 30px;
}
.form-success .thank-you-box::after 
{
	right: 30px;
}
.form-success .thank-you-text 
{
	font-style: italic;
	color: #555;
	font-size: 15px;
}
.form-error 
{
	background-color: rgba(184, 69, 43, 0.1);
	border: 1px solid rgba(184, 69, 43, 0.3);
	color: #B8452B;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	text-align: center;
	display: none;
}
.loading 
{
	display: none;
	text-align: center;
	margin: 15px 0;
}
.loading img 
{
	width: 40px;
	height: 40px;
}
.experience-option 
{
	background: rgba(255,255,255,0.07);
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	border: none;
	background-image: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}
.experience-option::after 
{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(90deg, transparent 0%, transparent 50%, white 50%, transparent 51%, transparent 100%),
		linear-gradient(90deg, transparent 0%, transparent 50%, white 50%, transparent 51%, transparent 100%),
		linear-gradient(0deg, transparent 0%, transparent 50%, white 50%, transparent 51%, transparent 100%),
		linear-gradient(0deg, transparent 0%, transparent 50%, white 50%, transparent 51%, transparent 100%);
	background-size: 20px 2px, 20px 2px, 2px 20px, 2px 20px;
	background-position: 0 0, 0 100%, 0 0, 100% 0;
	background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
	border-radius: 12px;
	opacity: 0.2;
	pointer-events: none;
}
.experience-option:hover 
{
	background: rgba(255,255,255,0.12);
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}
.experience-option:hover::after 
{
	opacity: 0.4;
}
.experience-option h3 
{
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 10px;
}
.experience-option p 
{
	margin-bottom: 20px;
}
.experience-option .option-btn 
{
	display: inline-block;
	background: #ffffff;
	color: #4D1010;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.experience-option .option-btn:hover 
{
	background: #F5F0F0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.confirmation-box 
{
	background: #F5F0F0;
	border-radius: 12px;
	padding: 35px;
	border-left: 4px solid #4D1010;
}
.confirmation-box h3 
{
	color: #4D1010;
	font-size: 22px;
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 600;
}
.confirmation-box p 
{
	color: #555;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}
.confirmation-features 
{
	margin: 20px 0;
}
.confirmation-features div 
{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: #4D1010;
	font-weight: 500;
}
.confirmation-features div::before 
{
	content: '—';
	margin-right: 10px;
	font-weight: bold;
}
.age-warning 
{
	background: rgba(255, 232, 178, 0.5);
	border: 1px solid #ffc107;
	border-radius: 8px;
	padding: 15px;
	margin: 20px 0;
	color: #856404;
	font-weight: 500;
}
.calendar-grid 
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 25px;
}
.date-option 
{
	background: #FEFCFC;
	border: 2px solid #E0CCCC;
	border-radius: 8px;
	padding: 15px 10px;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
}
.date-option:hover 
{
	border-color: #B8452B;
	background: #F8F4F4;
}
.date-option.selected 
{
	border-color: #4D1010;
	background: #F5F0F0;
}
.date-option.fully-booked 
{
	opacity: 0.5;
	background: #F0F0F0;
	border-color: #DDD;
	cursor: pointer;
}
.date-option.fully-booked:hover 
{
	border-color: #B8452B;
	background: #F8F4F4;
}
.date-option .day 
{
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}
.date-option .date 
{
	font-size: 16px;
	font-weight: 600;
	color: #4D1010;
	margin-bottom: 5px;
}
.date-option .status 
{
	font-size: 11px;
	color: #B8452B;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.time-slot 
{
	background: #FEFCFC;
	border: 2px solid #E0CCCC;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
}
.time-slot:hover 
{
	border-color: #B8452B;
	background: #F8F4F4;
}
.time-slot.selected 
{
	border-color: #4D1010;
	background: #F5F0F0;
}
.time-slot.disabled 
{
	opacity: 0.5;
	cursor: not-allowed;
	background: #F0F0F0;
}
.time-slot span 
{
	font-size: 18px;
	font-weight: 600;
	color: #4D1010;
}
.step-header 
{
	margin-bottom: 30px;
}
.step-header h2 
{
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 10px;
	color: #4D1010;
}
.step-header p 
{
	margin: 0;
	color: #666;
}
.reservation-details 
{
	background: #F5F0F0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
}
.reservation-details p 
{
	margin: 0 0 5px 0;
	font-size: 15px;
}
.reservation-details strong 
{
	color: #4D1010;
}
.important-notes 
{
	background: rgba(255, 232, 178, 0.3);
	border-left: 4px solid #ffc107;
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 25px;
}
.important-notes h3 
{
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 16px;
	color: #856404;
}
.important-notes ul 
{
	margin: 0;
	padding-left: 20px;
}
.important-notes li 
{
	margin-bottom: 8px;
	font-size: 14px;
	color: #555;
}
.step 
{
	display: none;
}
.step.active 
{
	display: block;
}
.step-buttons 
{
	display: flex;
	margin-top: 20px;
	gap: 10px;
}
.back-btn 
{
	background: none;
	border: 1px solid #E0CCCC;
	color: #666;
	padding: 14px 24px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Montserrat', sans-serif;
	flex: 1;
	text-align: center;
}
.back-btn:hover 
{
	background: #F5F0F0;
	color: #333;
	border-color: #B8452B;
}
.time-slots-container 
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
.next-step-btn 
{
	background-color: #4D1010;
	color: #fff;
}
.no-dates-message 
{
	text-align: center;
	padding: 40px 20px;
	background: #F5F0F0;
	border-radius: 8px;
	color: #666;
}
.iti 
{
	width: 100%;
}
.iti__country-list 
{
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	border: 1px solid #E0CCCC;
	max-height: 200px;
}
.iti__country 
{
	padding: 8px 12px;
	border-bottom: 1px solid #f0f0f0;
}
.iti__country:hover 
{
	background-color: #F5F0F0;
}
.iti__country.iti__highlight 
{
	background-color: #4D1010;
	color: white;
}
.iti__flag-container 
{
	padding: 0 8px;
}
.verification-code-container 
{
	background: #F5F0F0;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 25px;
	text-align: center;
}
.verification-code-container h3 
{
	color: #4D1010;
	margin-top: 0;
	margin-bottom: 15px;
}
.verification-code-container p 
{
	color: #666;
	margin-bottom: 20px;
}
.verification-input 
{
	width: 150px;
	text-align: center;
	font-size: 24px;
	letter-spacing: 5px;
	padding: 15px;
	border: 2px solid #E0CCCC;
	border-radius: 8px;
	margin-bottom: 15px;
}
.verification-input:focus 
{
	border-color: #4D1010;
	box-shadow: 0 0 0 2px rgba(77, 16, 16, 0.1);
	outline: none;
}
.resend-code 
{
	color: #4D1010;
	text-decoration: underline;
	cursor: pointer;
	font-size: 14px;
	margin-top: 10px;
}
.resend-code:hover 
{
	color: #6B1A1A;
}
.resend-code.disabled 
{
	color: #999;
	cursor: not-allowed;
	text-decoration: none;
}
.countdown 
{
	color: #666;
	font-size: 14px;
	margin-top: 10px;
}
@media (max-width: 900px) 
{
	.invite-box 
	{
		flex-direction: column;
	}
	.invite-left, .invite-right 
	{
		padding: 40px;
	}
	.invite-text h1 
	{
		font-size: 28px;
	}
	.calendar-grid 
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 500px) 
{
	.invite-left, .invite-right 
	{
		padding: 30px;
	}
	.invite-text h1 
	{
		font-size: 24px;
	}
	.form-success h3 
	{
		font-size: 20px;
	}
	.time-slots-container 
	{
		grid-template-columns: 1fr;
	}
	.calendar-grid 
	{
		grid-template-columns: 1fr;
	}
	.confirmation-box 
	{
		padding: 15px 10px;
	}
	.invite-form 
	{
		max-width: 100%;
	}
}
.toast-error 
{
	background-color: #B8452B !important;
}
.toast-success 
{
	background-color: #4D1010 !important;
}
.toast-warning 
{
	background-color: #D4850C !important;
}
.date-option.experience-unavailable 
{
	opacity: 0.5;
	background: #F0F0F0;
	border-color: #DDD;
	cursor: pointer;
}
.date-option.experience-unavailable:hover 
{
	border-color: #B8452B;
	background: #F8F4F4;
}

.reservation-time-info 
{
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 25px;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.menu-info 
{
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
}

.menu-info h3 
{
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
}

.menu-info p 
{
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-weight: 300;
}

.menu-button 
{
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #4D1010;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin: 10px 0 15px 0;
}

.menu-button:hover 
{
    background: #F5F0F0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.menu-icon 
{
    font-size: 20px;
    margin-right: 10px;
}

.menu-note 
{
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
}

@media (max-width: 500px) 
{
    .menu-info 
    {
        padding: 20px 15px;
    }
    
    .menu-button 
    {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .reservation-time-info 
    {
        font-size: 14px;
        padding: 12px 15px;
    }
}