.angie-checkout-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	font-family: system-ui, -apple-system, sans-serif;
}
.angie-order-form {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.angie-form-main {
	flex: 1 1 60%;
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.angie-form-sidebar {
	flex: 1 1 30%;
}
.angie-order-summary {
	background: #f9fafb;
	padding: 30px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	position: sticky;
	top: 20px;
}
.angie-form-group {
	margin-bottom: 20px;
}
.angie-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #374151;
}
.angie-form-group input, .angie-form-group select, .angie-form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
}
.angie-summary-line {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	color: #4b5563;
}
.angie-total-line {
	font-size: 1.2em;
	font-weight: bold;
	color: #111827;
}
.angie-place-order-btn {
	width: 100%;
	padding: 15px;
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1.1em;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
	transition: background 0.3s;
}
.angie-place-order-btn:hover {
	background: #1d4ed8;
}
.angie-form-messages {
	margin-top: 15px;
	padding: 10px;
	border-radius: 4px;
	display: none;
}
.angie-form-messages.success {
	background: #d1fae5;
	color: #065f46;
	display: block;
}
.angie-form-messages.error {
	background: #fee2e2;
	color: #991b1b;
	display: block;
}

@media (max-width: 768px) {
	.angie-order-form {
		flex-direction: column;
	}
}