#checkout {
	margin: 20px auto 50px auto;
	background: #fff;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	font-family: Arial, sans-serif;
}
#checkout h2 {
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}


.checkout-heading {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;      
    border-bottom: 1px solid #eee; 
    padding-bottom: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;               
}



.checkout-heading i {
    color: #1565B2;         /* Icon color */
    font-size: 20px;
}

#carttotal td, th {
    padding: 6px 0;
	font-weight:600;
}


.shipping-methods .fa{
	color:#1565B2;
}
.checkout-section {
	margin-bottom: 30px;
}

.form-control {
	border-radius: 3px;
}
.payment-methods label,
.shipping-methods label {
	display: block;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 5px 5px 0px 0px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: 0.3s;
}
.payment-methods input[type="radio"],
.shipping-methods input[type="radio"] {
	margin-right: 10px;
}
.payment-methods label:hover,
.shipping-methods label:hover,
.payment-methods input[type="radio"]:checked + span,
.shipping-methods input[type="radio"]:checked + span {
	background: #f7f7f7;
	border-color: #1565B2;
}
.border-0{
	border:0!important;
}
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
	border:0;
	border-bottom:1px solid #ddd;
	
}
#coupon-section {
	margin: 15px 0;
}
#coupon-section input {
	display: inline-block;
	width: 65%;
}
#coupon-section button {
	width: 33%;
}

#reward-section {
	margin: 15px 0;
}
#reward-section input {
	display: inline-block;
	width: 65%;
}
#reward-section button {
	width: 33%;
}
.btn-checkout {
	width: 100%;
	background: #5cb85c;
	border: none;
	color: #fff;
	font-size: 18px;
	padding: 12px;
	border-radius: 3px;
}
.order-summary {
	background:#f9f9f9; 
	padding:20px; 
	border-radius:5px;
}