/* Checkout Page */
.checkout-page {
	background: linear-gradient(135deg, #f7f9fc, #eef3f9);
	min-height: 100vh;
	padding: 40px 20px;
}
/* Inner Wrapper */
.checkout-page-inner {
	background: rgba(255, 255, 255, 0.9);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(6px);
}
/* Header */
.main-header {
	margin-bottom: 40px;
}
.main-logo-title img {
	max-width: 180px;
}
/* Main Content */
.main-content-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
/* Form Styles */
.checkout-content-step,
.checkout-content-steps {
	margin-bottom: 15px;
}
.checkout-section-header h2,
.checkout-header h3 {
	font-size: 24px;
	font-weight: 500;
	color: #222;
	font-family: "Jost", sans-serif;
	text-transform: capitalize;
	letter-spacing: 1px;
}
.layout-flex-item {
	font-size: 15px;
	color: #555;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.checkout-shipping-address-content{
	margin-top: 20px;
}
.checkout-input--list label {
	display: block;
	font-weight: 400;
	margin-bottom: 6px;
	color: #333;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.checkout-input--list span {
	color: red;
}
.customer-information input,
.checkout-input--list input,
.checkout-input--list textarea,
.checkout-input--list select {
	width: 100%;
	padding: 12px 16px;
	margin-top: 6px;
	border: 1px solid #d0d7de;
	border-radius: 10px;
	background: #fcfcfd;
	font-size: 15px;
	font-family: "Jost", sans-serif;
	transition: border 0.3s, box-shadow 0.3s;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.customer-information input:focus,
.checkout-input--list input:focus,
.checkout-input--list textarea:focus,
.checkout-input--list select:focus {
	border-color: #4099ff;
	box-shadow: 0 0 0 3px rgba(64, 153, 255, 0.2);
}
.checkout-input--list textarea {
	resize: vertical;
	height: 100px;
}
.checkout-input--list select {
	appearance: none;
}
.checkout-button {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s ease-in-out;
}
.checkout-button .btn-solid {
	background-color: #81ba2d;
	color: #fff;
	border: none;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	width: 100%;
	font-weight: 400;
	margin-top: 0;
	cursor: grab;
}
.checkout-button .btn-solid:hover {
	background-color: #218838;
}
/* Checkbox Styles */
.checkout-checkbox--label{
	font-family: "Jost", sans-serif;	
	letter-spacing: 1px;	
	margin-bottom: 0;
}
.checkout-checkbox,
.checkout-checkbox--input {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.checkout-checkbox input[type="checkbox"],
.checkout-checkbox--input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-right: 12px;
	accent-color: #28a745;
}
.checkout-checkbox-label {
	font-size: 14px;
	color: #444;
}
/* Footer Buttons */
.checkout-content--step-footer {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	align-items: center;
}
.continue-shipping--btn {
	padding: 14px 30px;
	background-color: #81ba2d;
	color: #fff;
	font-weight: 400;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.continue-shipping--btn:hover {
	background-color: #494947;
	color: #fff;
	text-decoration: none;
}
.previous-link--content {
	font-size: 18px;
	color: #494947;
	font-weight: 500;
	text-decoration: underline;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
/* Sidebar Cart */
.checkout-sidebar {
	background: rgba(255, 255, 255, 0.95);
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
	position: sticky;
    top: 0;
}
/* ========== Order Summary Section ========== */
.cart-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.order-summery-box {
	padding: 10px 0;
}
.cart-title {
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 15px;
	border-bottom: 2px solid #eee;
	padding-bottom: 8px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
/* ========== Order Summary List ========== */
.order-summery {
	list-style: none;
    margin-bottom: 15px;
    padding-left: 0;
}
.order-summery li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	padding: 6px 0;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	border-bottom: 1px dashed #ddd;
}
.order-summery li:last-child {
	border-bottom: none;
}
.order-summery h6 {
	font-size: 16px;
	font-weight: 500;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
/* Highlight colors */
.theme-color {
	color: #d9534f;
	font-weight: 600;
}
/* ========== Buttons ========== */
.checkout-btn {
	margin-top: 15px;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s ease-in-out;
}
.btn-solid {
	background-color: #81ba2d;
	color: #fff;
	border: none;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	width: 100%;
	font-weight: 400;
	margin-top: 0;
}
.btn-solid:hover {
	background-color: #218838;
}
.btn-outline {
	background-color: transparent;
	border: 2px solid #81ba2d;
	color: #81ba2d;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
}
.btn-outline:hover {
	background-color: #28a745;
	color: #fff;
}

/* Totals Table */
.checkout-total--table {
	width: 100%;
	margin-top: 20px;
}
.checkout-total--items,
.checkout-total--footer__items {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.checkout-total--title,
.checkout-total--footer__title {
	font-weight: 500;
	color: #333;
}
.checkout-total--amount,
.checkout-total--footer__amount {
	font-weight: 700;
	color: #111;
}
.checkout-total--calculated__text {
	font-size: 14px;
	color: #888;
}
/* Footer */
.main-footer {
	margin-top: 50px;
	text-align: center;
	font-size: 16px;
	color: #999;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.copyright-content--link {
	color: #0077cc;
}
.no-records {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: linear-gradient(135deg, #f3f4f6, #ffffff);
	border: 2px dashed #ddd;
	padding: 40px 20px;
	margin: 30px auto;
	max-width: 400px;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	color: #555;
	font-size: 1.2rem;
	font-family: 'Segoe UI', sans-serif;
	animation: fadeIn 0.6s ease;
	text-align: center;
}
.no-records::before {
	content: "🛒";
	font-size: 3rem;
	margin-bottom: 10px;
	animation: bounce 1s infinite alternate;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
	from { transform: translateY(0); }
	to { transform: translateY(-8px); }
}
.payment-mode-section {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.section-label {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    color: #333;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.payment-options {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}
.payment-options .option {
    background: #fff;
    border: 2px solid #ddd;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.payment-options .option:hover {
    border-color: #3b82f6;
    background: #f0f8ff;
}
.payment-info {
    background: #eef4ff;
    border-left: 4px solid #81ba2d;
    padding: 15px;
    border-radius: 6px;
    color: #333;
    font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.payment-info ul {
    margin: 10px 0;
    padding-left: 20px;
}
.hidden {
    display: none;
}
@media (max-width: 480px) {
  .no-records {
    font-size: 1rem;
    padding: 30px 15px;
  }

  .no-records::before {
    font-size: 2.5rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
	.main-content-wrapper {
		flex-direction: column;
	}
	.checkout-content--step-footer {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
	.continue-shipping--btn{
		width: 100%;
        text-align: center;
	}
	.previous-link--content{
		width: 100%;
        text-align: center;
		margin-bottom: 20px;
	}
}
