 .checkout-wrapper {
	max-width: 1200px;
	margin: 30px auto;
	padding: 0 20px;
}
.checkout-title {
	text-align: center;
	font-size: 28px;
	color: #333;
	margin-bottom: 30px;
	font-weight: bold;
}
.checkout-title::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #ff69b4, #ff1493);
	margin: 10px auto 0;
	border-radius: 2px;
}
.checkout-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 30px;
	align-items: start;
}
@media (max-width: 900px) {
	.checkout-grid {
	grid-template-columns: 1fr;
	}
}
/* Form Section */
.checkout-form-section {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 1px solid #f0f0f0;
}
.section-heading {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #ffe4ec;
	display: flex;
	align-items: center;
	gap: 8px;
}
.section-heading .icon {
	font-size: 22px;
}
.form-group {
	margin-bottom: 18px;
}
.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #444;
	margin-bottom: 6px;
}
.form-group .required {
	color: #ff4444;
}
.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	font-size: 14px;
	font-family: Arial, sans-serif;
	transition: all 0.3s ease;
	box-sizing: border-box;
	outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #ff69b4;
	box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
@media (max-width: 500px) {
.form-row {
	grid-template-columns: 1fr;
	}
}
/* Payment Methods */
.payment-methods {
	margin-top: 15px;
}
.payment-method {
	display: flex;
	align-items: center;
	padding: 14px 16px;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fafafa;
}

.payment-method:hover {
	border-color: #ff69b4;
	background: #fff0f5;
}
.payment-method input[type="radio"] {
	width: 18px;
	height: 18px;
	margin-right: 12px;
	accent-color: #ff69b4;
	cursor: pointer;
}
.payment-method .payment-icon {
	font-size: 24px;
	margin-right: 10px;
}
.payment-method label {
	font-size: 14px;
	color: #444;
	cursor: pointer;
	font-weight: 500;
	flex: 1;
}
.payment-method input[type="radio"]:checked + .payment-icon + label,
.payment-method:has(input:checked) {
	border-color: #ff69b4;
	background: #fff0f5;
}
/* Order Summary */
.order-summary-section {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 1px solid #f0f0f0;
	position: sticky;
	top: 20px;
}
.order-items-list {
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 20px;
}
.order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px dashed #eee;
}
.order-item:last-child {
	border-bottom: none;
}
.order-item-info {
	flex: 1;
}
.order-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
}
.order-item-qty {
	font-size: 13px;
	color: #888;
}
.order-item-price {
	font-size: 14px;
	font-weight: bold;
	color: #ff4444;
	white-space: nowrap;
}
.summary-divider {
	height: 2px;
	background: linear-gradient(90deg, #ff69b4, #ff1493);
	border-radius: 1px;
	margin: 15px 0;
}
.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	font-size: 14px;
	color: #555;
}
.summary-row.summary-total {
	font-size: 18px;
	font-weight: bold;
	color: #ff4444;
	padding-top: 12px;
	border-top: 2px dashed #eee;
	margin-top: 5px;
}
.summary-row .value {
	font-weight: 600;
}
.summary-row.summary-total .value {
	font-size: 20px;
}
/* Buttons */
.place-order-btn {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #ff69b4, #ff1493);
	color: white;
	border: none;
	border-radius: 15px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.place-order-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}
.back-to-cart {
	display: block;
	text-align: center;
	margin-top: 15px;
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}
.back-to-cart:hover {
	color: #ff69b4;
}
.modal-overlay {
	display: none;
	position: fixed;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(4px);
}
.modal-content {
	background: white;
	border-radius: 25px;
	padding: 50px 40px;
	text-align: center;
	max-width: 420px;
	width: 90%;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
	animation: modalPop 0.4s ease;
}
@keyframes modalPop {
	0% { transform: scale(0.8); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
.success-icon {
	font-size: 60px;
	margin-bottom: 15px;
}
.modal-content h2 {
	color: #333;
	margin-bottom: 10px;
	font-size: 22px;
}
.modal-content p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 8px;
}
.modal-btn {
	margin-top: 20px;
	padding: 14px 35px;
	background: linear-gradient(135deg, #ff69b4, #ff1493);
	color: white;
	border: none;
	border-radius: 25px;
	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}
.modal-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}
.empty-cart-msg {
	text-align: center;
	color: #888;
	padding: 30px;
	font-size: 14px;
}
