.wcse-portal-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.05);
	font-family: inherit;
}

.wcse-step {
	animation: wcseFadeIn 0.3s ease;
}

@keyframes wcseFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.wcse-form-group {
	margin-bottom: 20px;
}

.wcse-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.wcse-form-group input[type="text"],
.wcse-form-group select,
.wcse-form-group textarea {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.wcse-form-group input[type="text"]:focus,
.wcse-form-group select:focus,
.wcse-form-group textarea:focus {
	border-color: #000;
	outline: none;
}

.wcse-error-message {
	margin-top: 15px;
	padding: 12px;
	background: #fee;
	color: #c00;
	border-left: 4px solid #c00;
	border-radius: 4px;
}

.wcse-order-info {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
}

.wcse-order-info p {
	margin: 0;
}

.wcse-products-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wcse-product-card {
	display: flex;
	gap: 20px;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 8px;
	background: #fff;
}

.wcse-product-image {
	flex: 0 0 100px;
}

.wcse-product-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.wcse-product-details {
	flex: 1;
}

.wcse-product-details h4 {
	margin: 0 0 10px;
	font-size: 18px;
}

.wcse-meta {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
}

.wcse-notice {
	font-size: 14px;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 15px;
}

.wcse-notice.wcse-warning {
	background: #fff8e5;
	color: #8a6d3b;
	border: 1px solid #faebcc;
}

.wcse-notice.wcse-error {
	background: #f2dede;
	color: #a94442;
	border: 1px solid #ebccd1;
}

.wcse-exchange-form {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dashed #eee;
}

.wcse-summary-box {
	background: #f0f8ff;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 15px;
	font-size: 14px;
	border: 1px solid #bce8f1;
}

.wcse-policy-group {
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.wcse-policy-group input[type="checkbox"] {
	margin-top: 4px;
}

.wcse-policy-group label {
	font-weight: normal;
	color: #555;
	margin: 0;
}

.wcse-actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

/* Loader animation */
.wcse-btn-loader {
	display: inline-block;
}

@media (max-width: 600px) {
	.wcse-product-card {
		flex-direction: column;
	}
	
	.wcse-product-image {
		flex: 0 0 auto;
		max-width: 150px;
	}
	
	.wcse-actions {
		flex-direction: column;
	}
	
	.wcse-actions button {
		width: 100%;
	}
}
