/* Floating Trigger */
.sw-73-trigger {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #E02B20;
	color: white;
	border-radius: 50%;
	display: none; /* Flex when active */
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	z-index: 9998;
	transition: transform 0.3s;
	animation: sw-73-bounce 2s infinite;
}

.sw-73-trigger:hover {
	transform: scale(1.1);
	animation: none;
}

@keyframes sw-73-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
	40% { transform: translateY(-15px); }
	60% { transform: translateY(-7px); }
}

/* Overlay */
.sw-73-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

/* Popup */
.sw-73-popup {
	background: #fff;
	border-radius: 12px;
	max-width: 800px;
	width: 100%;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
	overflow: hidden;
	animation: sw-73-fadeIn 0.3s ease-out;
}

@keyframes sw-73-fadeIn {
	from { opacity: 0; transform: translateY(20px) scale(0.95); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.sw-73-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 30px;
	color: #aaa;
	cursor: pointer;
	z-index: 10;
	line-height: 1;
	transition: color 0.2s;
}

.sw-73-close:hover {
	color: #333;
}

/* Layout */
.sw-73-content-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.sw-73-wheel-container {
	flex: 1;
	min-width: 320px;
	padding: 40px;
	background: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sw-73-pointer {
	position: absolute;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 30px solid #333;
	z-index: 5;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

#sw-73-canvas {
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.sw-73-form-container {
	flex: 1;
	min-width: 300px;
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.sw-73-title {
	margin-top: 0;
	font-size: 2.2rem;
	color: #222;
	margin-bottom: 10px;
}

.sw-73-subtitle {
	color: #666;
	margin-bottom: 30px;
	font-size: 1.1rem;
}

.sw-73-form input {
	width: 100%;
	padding: 15px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	box-sizing: border-box;
}

.sw-73-btn {
	width: 100%;
	padding: 15px;
	background: #E02B20;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.2s;
}

.sw-73-btn:hover {
	background: #c0241b;
}

.sw-73-btn:disabled {
	background: #aaa;
	cursor: not-allowed;
}

.sw-73-btn-outline {
	background: transparent;
	color: #333;
	border: 2px solid #ddd;
	margin-top: 15px;
}

.sw-73-btn-outline:hover {
	background: #f5f5f5;
}

.sw-73-terms {
	margin-top: 15px;
	font-size: 0.8rem;
	color: #999;
}

/* Results */
#sw-73-step-result h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: #E02B20;
}

.sw-73-code-box {
	background: #f5f5f5;
	border: 2px dashed #ccc;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#sw-73-code-text {
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 2px;
	color: #333;
}

.sw-73-copy-btn {
	background: #333;
	color: #fff;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.2s;
}

.sw-73-copy-btn:hover {
	background: #555;
}

@media (max-width: 768px) {
	.sw-73-content-wrapper {
		flex-direction: column;
	}
	.sw-73-wheel-container {
		padding: 20px;
	}
	.sw-73-form-container {
		padding: 30px 20px;
	}
	.sw-73-pointer {
		top: 5px;
	}
}
