#virtual-try-on-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.vto-upload-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.vto-upload-group h3 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 18px;
	font-weight: 600;
}

.vto-upload-area {
	border: 2px dashed #ddd;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vto-upload-area:hover {
	border-color: #4F46E5;
	background-color: #f8fafc;
}

.vto-upload-placeholder p {
	margin: 0;
	color: #666;
	font-size: 16px;
}

.vto-image-preview {
	text-align: center;
}

.vto-image-preview img {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
}

.vto-image-preview p {
	margin: 10px 0;
	color: #666;
	font-size: 14px;
}

.vto-remove-btn {
	background: #ef4444;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: background-color 0.2s;
}

.vto-remove-btn:hover {
	background: #dc2626;
}

.vto-settings {
	background: #f8fafc;
	padding: 25px;
	border-radius: 12px;
	margin-bottom: 30px;
}

.vto-settings h3 {
	margin: 0 0 20px 0;
	color: #333;
	font-size: 18px;
	font-weight: 600;
}

.vto-settings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.vto-setting {
	display: flex;
	flex-direction: column;
}

.vto-setting label {
	margin-bottom: 8px;
	color: #555;
	font-weight: 500;
	font-size: 14px;
}

.vto-setting input,
.vto-setting select {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	transition: border-color 0.2s;
}

.vto-setting input:focus,
.vto-setting select:focus {
	outline: none;
	border-color: #4F46E5;
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.vto-setting input[type="checkbox"] {
	width: auto;
	margin-right: 8px;
}

.vto-generate {
	text-align: center;
	margin-bottom: 30px;
}

.vto-button {
	background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 200px;
}

.vto-button:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.vto-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

#vto-loading {
	text-align: center;
	padding: 20px;
	color: #666;
}

#vto-loading p {
	margin: 0;
	font-size: 16px;
}

#vto-results {
	margin-top: 30px;
}

#vto-results h3 {
	margin: 0 0 20px 0;
	color: #333;
	font-size: 20px;
	font-weight: 600;
}

#vto-results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.vto-result-item {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.vto-result-item:hover {
	transform: translateY(-5px);
}

.vto-result-item img {
	width: 100%;
	height: auto;
	display: block;
}

.vto-result-actions {
	padding: 15px;
}

.vto-download-btn {
	background: #10b981;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.2s;
}

.vto-download-btn:hover {
	background: #059669;
}

.vto-error-message {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #dc2626;
	padding: 15px;
	border-radius: 8px;
	margin: 20px 0;
}

/* Responsive design */
@media (max-width: 768px) {
	.vto-upload-section {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.vto-settings-grid {
		grid-template-columns: 1fr;
	}
	
	#virtual-try-on-container {
		padding: 15px;
	}
	
	.vto-upload-area {
		padding: 20px;
		min-height: 150px;
	}
	
	#vto-results-grid {
		grid-template-columns: 1fr;
	}
}