.total-price {
    color: #0066cc;
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-continue {
    background-color: #ffc107;
    border: none;
    font-weight: 600;
    padding: 12px;
}

.btn-continue:hover {
    background-color: #e0a800;
}

.header-tab {
    background-color: #f8f9fa;
    border-bottom: 3px solid #0066cc;
    padding: 15px 0;
}

.product-row {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.product-row:last-child {
    border-bottom: none;
}

.coupon-input {
    border: 2px solid #ddd;
}


.stepper {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 110px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step.active .step-icon {
    background-color: #0066cc;
    color: white;
}

.step.completed .step-icon {
    background-color: #0066cc;
    color: white;
}

.step.inactive .step-icon {
    background-color: #e9ecef;
    color: #6c757d;
}

.step-label {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: #0066cc;
    font-weight: 600;
}

.step.completed .step-label {
    color: #0066cc;
}

.step.inactive .step-label {
    color: #6c757d;
}

.step-connector {
    position: absolute;
    top: 25px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
}

.step.completed .step-connector {
    background-color: #0066cc;
}

.step:last-child .step-connector {
    display: none;
}


.payment-card {
		border: 2px solid #e9ecef;
		border-radius: 8px;
		margin-bottom: 15px;
		overflow: hidden;
	}

	.payment-card.active {
		border-color: #007bff;
	}

	.payment-header {
		background-color: #f8f9fa;
		padding: 15px 20px;
		border-bottom: 1px solid #e9ecef;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.payment-header:hover {
		background-color: #e9ecef;
	}

	.payment-header.active {
		background-color: #e3f2fd;
	}

	.payment-radio {
		margin-right: 15px;
	}

	.payment-title {
		font-weight: 600;
		margin: 0;
		flex-grow: 1;
	}

	.payment-content {
		padding: 20px;
		background-color: white;
	}

	.form-control {
		border-radius: 4px;
		border: 1px solid #ced4da;
	}


	.card {
							margin: 0 auto;
							background: white;
							border: 2px solid #e0e0e0;
							border-radius: 8px;
							padding: 30px;
							box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
						}

						.header {
							color: #4285f4;
							font-size: 24px;
							font-weight: bold;
							margin-bottom: 30px;
							letter-spacing: 0.5px;
						}

						.order-number {
							color: #4285f4;
							font-size: 18px;
							font-weight: bold;
							margin-bottom: 25px;
						}

						.payment-info {
							margin-bottom: 25px;
						}

						.payment-info div {
							color: #666;
							font-size: 16px;
							line-height: 1.6;
							margin-bottom: 8px;
						}

						.total {
							color: #333;
							font-weight: bold;
						}

						.status-container {
							margin-bottom: 30px;
						}

						.status {
							display: inline-flex;
							align-items: center;
							background-color: #e8f5e8;
							color: #4caf50;
							padding: 8px 12px;
							border-radius: 20px;
							font-weight: bold;
							font-size: 14px;
						}

						.status::before {
							content: "✓";
							background-color: #4caf50;
							color: white;
							border-radius: 50%;
							width: 18px;
							height: 18px;
							display: flex;
							align-items: center;
							justify-content: center;
							margin-right: 8px;
							font-size: 12px;
							font-weight: bold;
						}

						.divider {
							border: none;
							border-top: 1px solid #e0e0e0;
							margin: 25px 0;
						}

						.shipping-section {
							margin-bottom: 25px;
						}

						.shipping-title {
							color: #666;
							font-size: 16px;
							margin-bottom: 15px;
							font-weight: normal;
						}

						.shipping-info {
							color: #333;
							font-size: 16px;
							line-height: 1.6;
						}

						.shipping-info div {
							margin-bottom: 4px;
						}

						.contact-info {
							background-color: #f8f9fa;
							padding: 15px;
							border-radius: 5px;
							color: #666;
							font-size: 12px;
							line-height: 1.4;
							text-align: center;
						}

						.contact-info strong {
							color: #333;
						}