/**
 * Radika Hotel Booking General Form Styles
 */
.radika-booking-container {
	position: relative;
	width: 100%;
	display: block;

	text-align: left;
	max-width: 1200px;
	margin: 40px auto;

	padding: 0 20px;
	font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.radika-step {
	display: none;
	animation: fadeIn 0.5s ease-in;
}

.radika-step.active {
	display: block;
}

@keyframes fadeIn {
	from { 
		opacity: 0; 
		transform: translateY(20px); 
	}
	to { 
		opacity: 1; 
		transform: translateY(0); 
	}
}

.radika-step-header {
	text-align: center;
	margin-bottom: 40px;
}

.radika-step-header h2 {
	font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 32px;
	color: #2c2c2c;
	margin-bottom: 10px;
	font-weight: 500;
}

.radika-step-header p {
	font-size: 16px;
	color: #666;
}

.radika-form {
	position: relative;
	background: #fff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.radika-form-inline{
	container-type: inline-size;
}
.required {
	color: #e74c3c;
}

.radika-form-row-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.radika-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.radika-form-group {
	display: flex;
	flex-direction: column;
}

.radika-form-group label {
	/* font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px; */

	
	color: #2c3e50;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	

}
.radika-form-group input,
.radika-form-group select {
	height: 50px;
}

.radika-form-group input,
.radika-form-group select,
.radika-form-group textarea {
	padding: 14px 16px;
	border: 1px solid #ddd;
	background: #ffffff;
	color: #2c3e50;
	border-radius: 4px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.radika-form-group input:focus,
.radika-form-group select:focus,
.radika-form-group textarea:focus {
	outline: none;
	border-color: #8B7355;
	box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}


.radika-error-msg {
	color: #d54444;
	font-size: 13px;
	margin-top: 4px;
	display: block;
}


.radika-form-group input.error,
.radika-form-group textarea.error {
	border-color: #d54444 !important;

}

.radika-checkbox-group.error .radika-checkbox-label {
	border: 1px solid #d54444;
	padding: 8px;
	border-radius: 4px;
}

/* Number Spinner Styles */
.radika-number-spinner {
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	height: 50px;
}

.radika-number-spinner:focus-within {
	border-color: #8B7355; /* your color */
}

.radika-number-spinner input {
	pointer-events: none;
	outline: none;
	box-shadow: none;
	border: none;
	text-align: center;
	border-radius: 0px; 
	flex: 1;
	padding: 12px 0px;
	padding-left: 15px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	height: 100%;
}

.radika-number-spinner input:focus {
	box-shadow: none;
	outline: none;
}

.radika-spinner-btn {
	background: #f8f9fa;
	border: none;
	width: 45px;
	height: 100%;
	font-size: 20px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.radika-spinner-btn:focus {
	box-shadow: none;
	outline: none;

	background: #8B7355;
	color: #fff;
}

.radika-spinner-btn:hover {
	background: #8B7355;
	color: #fff;
}

.radika-spinner-btn:active {
	transform: scale(0.95);
}

.radika-spinner-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.radika-spinner-btn:disabled:hover {
	background: #f5f5f5;
	color: #666;
}

/* Button Styles */
.radika-btn {
	padding: 14px 32px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	height: 52px;
}

.radika-btn-primary {
	background: #8B7355;
	color: #fff;
	/* width: 100%; */
	margin-top: 20px;
}

/* .radika-btn-primary:hover {
	background: #6d5840;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
} */

.radika-btn-primary:hover{
	/* background: #d5b990; */
	/* background: #9b6303; */
	background: #493724;
	color: #f2be64;
	/* transform: translateX(5px); */
	transform: translateY(-2px);
	/* box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3); */
}

.radika-btn-full{
	width: 100%;	
}

.radika-btn-secondary {
	background: #f5f5f5;
	color: #333;
}

.radika-btn-secondary:hover {
	background: #e0e0e0;
	transform: translateY(-2px);
}

/* Room List Styles */
.radika-rooms-list {
	display: grid;
	gap: 30px;
	margin-bottom: 30px;
}

.radika-room-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
	display: grid;
	grid-template-columns: 400px 1fr;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	grid-template-rows: auto auto;
}

.radika-room-card:hover {
	/* transform: translateY(-4px); */
	box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.radika-room-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.radika-room-content {
	padding: 0px 30px;
	padding-top: 20px;
	/* display: flex;
	flex-direction: column; */
	grid-column: 2;
}

.radika-room-bottom {
	grid-column: 1 / -1; /* Full width under image + text */
	padding: 0px 30px;
	padding-bottom: 20px;
	/* border-top: 1px solid #eee; */
	margin-top: 20px;
}

.radika-room-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 15px;
}

.radika-room-header h3 {
	font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 24px;
	color: #2c2c2c;
	margin: 0;
}

.radika-room-price {
	text-align: right;
}

.radika-room-price .price {
	font-size: 32px;
	font-weight: 700;
	color: #8B7355;
}

.radika-room-price .orgprice {
	visibility: hidden;
}

.radika-room-price .period {
	font-size: 14px;
	color: #666;
}

.radika-room-price .nights {
	font-size: 14px;
	color: #666;
}

.radika-room-description {
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

.radika-room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.radika-amenity-tag {
	background: #f5f5f5;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 13px;
	color: #555;
}

.radika-room-capacity{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 6px;
	margin-bottom: 20px;
	font-size: 13px;

	/* background: #1976d2;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 6px 16px;
	border-radius: 26px;
	font-size: 13px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	
	background: #ef6c00;
	color: #fff;
	padding: 6px 12px;
	border-radius: 30px;
	font-size: 13px;
	display: inline-block;
	margin-top: 5px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
}

.capacity-label {
	font-weight: 600;
	color: #333;
}

.capacity-snack {
	background: #694c37;        /* blue snack color */
	color: #fff;
	padding: 2px 11px;
	border-radius: 11px;
	font-size: 12px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	white-space: nowrap;
}

.radika-room-footer {
	margin-top: auto;
}


/* Booking Summary Styles */

.radika-selected-rooms-summary{
	color: #2c3e50;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}



.radika-booking-summary {
	background: #f9f9f9;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 30px;
	border: 1px solid #e5e5e5;
	border-left: 4px solid #8B7355;
}

.radika-booking-summary h3 {
	margin-top: 0;
	color: #2c2c2c;
	font-size: 20px;
}

.radika-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #e0e0e0;
}

.radika-summary-row:last-child {
	border-bottom: none;
	font-weight: 600;
	font-size: 18px;
	color: #8B7355;
	padding-top: 15px;
}

/* Checkbox Styles */
.radika-checkbox-group {
	margin: 25px 0;
}

.radika-checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.radika-checkbox-label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	cursor: pointer;
}

.radika-checkbox-label a {
	color: #8B7355;
	text-decoration: none;
}

.radika-checkbox-label a:hover {
	text-decoration: underline;
}

/* Form Actions */
.radika-form-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.radika-form-actions .radika-btn {
	flex: 1;
	margin-top: 0;
}

/* Success Page Styles */
.radika-success-content {
	text-align: center;
	padding: 80px 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.radika-thankyou-content {
	text-align: center;
	padding: 60px 20px;
}

.radika-thankyou-icon {
	width: 80px;
	height: 80px;
	background: #4CAF50;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	margin: 0 auto 30px;
	animation: scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}

.radika-thankyou-title {
	font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 32px;
	color: #2c3e50;
	margin-bottom: 15px;
	font-weight: 700;
	
}

.radika-thankyou-message {
	font-size: 16px;
	color: #7f8c8d;
	line-height: 1.6;
	margin-bottom: 30px;
}

.radika-thankyou-details {
	border-radius: 8px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e5e5;

	background: #f9f9f9;
	padding: 20px;
	/* border-radius: 6px; */
	margin-bottom: 30px;
	border-left: 4px solid #8B7355;
}

.radika-thankyou-details p {
	margin: 10px 0;
	color: #7f8c8d;
}

.radika-thankyou-details strong {
	color: #2c3e50;
}




/* .radika-success-icon {
	width: 80px;
	height: 80px;
	background: #4CAF50;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	margin: 0 auto 30px;
}

.radika-success-content h2 {
	font-size: 32px;
	color: #2c2c2c;
	margin-bottom: 15px;
}

.radika-success-content p {
	font-size: 16px;
	color: #666;
	margin-bottom: 30px;
} */

/* Loading Spinner */
.radika-loading {
	/* position: fixed; */
	position: absolute;
	inset: 0;
	/* top: 0;
	left: 0;
	right: 0;
	bottom: 0; */
	/* background: rgba(0,0,0,0.5); */
	background: rgba(0,0,0,0.25);

	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.radika-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #8B7355;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Responsive Design */


@media (max-width: 768px) {
	

	.radika-room-card {
		grid-template-columns: 1fr;
	}
	
	.radika-room-image {
		height: 250px;
	}
	
	.radika-form-actions {
	flex-direction: column;
	}
	
	.radika-step-header h2 {
		font-size: 28px;
	}
	
	.radika-form {
		padding: 20px;
	}
	
	.radika-room-content {
		padding: 20px;
	}
}

button:disabled,
button[disabled] {
	opacity: .5 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
	filter: grayscale(1) !important;
}


.radika-room-slider {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.radika-room-slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.35s ease-in-out;
}

.radika-room-slide {
	min-width: 100%;
	height: 100%;
}

.radika-room-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.radika-room-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0,0,0,0.35);
	color: #fff;
	border: none;
	padding: 8px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 22px;
	z-index: 5;
}
.radika-room-slider-btn.prev { left: 10px; }
.radika-room-slider-btn.next { right: 10px; }

.sform-radika-guest-form {
	position: relative;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid #e5e5e5;
	margin-bottom: 1.6em;
}


.radika-summary-heading {
	font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	color: #2c3e50;
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 15px 0;
}

.radika-payment-methods {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 10px;
}

.radika-payment-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	border-radius: 6px;
	transition: 0.3s ease;
	border: 1px solid #ddd;
	padding: 20px 14px;
	background: #fff;
}

.radika-payment-option.selected {
	border-color: #8B7355;
	box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.15);
	background: #fdf9f4;
}

.radika-payment-option:hover {
	border-color: #8B7355;
	box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.radika-payment-option input[type="radio"] {
	margin-right: 15px;
	transform: scale(1.3);
	accent-color: #8B7355;
	appearance: auto;
}

.radika-payment-option input[type="radio"]:before {
	background-color: unset;
}

.radika-payment-option input[type="radio"]:focus {
	outline: none !important;
	box-shadow: none !important;
}

.radika-payment-box {
	display: flex;
	flex-direction: column;
}

.radika-pay-title {
	font-size: 15px;
	font-weight: 600;
	color: #2c3e50;
	line-height: 1.2em;
}

.radika-pay-desc {
	font-size: 13px;
	color: #7f8c8d;
	margin-top: 3px;
	line-height: 1.2em;
}



.radika-thankyou-title {
	font-family: "Source Sans Pro", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 32px;
	color: #2c3e50;
	margin-bottom: 15px;
	font-weight: 700;
	
}