.my-account-user-avatar {
	background: var(--e-global-color-primary);
	color: #fff;
	font-weight: bold;
	height: 100px;
	width: 100px;
	border-radius: 50px;
	font-size: 3rem;
}

/* Removed default styles - now controlled by Elementor widget */
/* .my-account-buttons .nav-link */
/* .my-account-buttons .nav-link:hover */
/* .my-account-buttons .nav-link.active */
/* .logout-link */
/* .logout-link:hover */

.my-account-form label,
.my-account-form input,
.my-account-form select,
.my-account-form option {
	font-family: var(--e-global-typography-text-font-family);
	font-size: 0.8rem;
}

#signature {
	font-size: 1.2rem;
}

#signature-help-block {
	font-size: 0.8rem;
}

.loyalty-agreement {
	font-size: 0.7rem;
}

.tab-content {
	width: 100%;
}

/* Order Card Styles - Enhanced UX/UI */
.order-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.order-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	flex-wrap: wrap;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-date-location {
	font-weight: 600;
	flex: 1;
	font-size: 1.125rem;
	color: var(--e-global-color-text, #333);
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.order-status {
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--e-global-color-primary);
	color: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.order-card-body {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	font-size: 0.9375rem;
	color: var(--e-global-color-secondary, #666);
	padding: 0.5rem 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.order-card-body strong {
	color: var(--e-global-color-text, #333);
	font-weight: 600;
}

.order-separator {
	margin: 0 0.375rem;
	color: rgba(0, 0, 0, 0.3);
	font-weight: 300;
}

/* Order Items List - Enhanced */
.order-items-list {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	margin-top: 0.5rem;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 0;
}

.order-item-name {
	flex: 1;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--e-global-color-text, #333);
	line-height: 1.5;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.order-item-details {
	white-space: nowrap;
	font-size: 0.875rem;
	color: var(--e-global-color-secondary, #666);
	font-weight: 500;
	background: #fff;
	padding: 0.375rem 0.875rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Orders Container */
.orders {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Responsive enhancements */
@media (max-width: 768px) {
	.order-card {
		padding: 1.25rem;
	}

	.order-date-location {
		font-size: 1rem;
	}

	.order-status {
		padding: 0.375rem 0.875rem;
		font-size: 0.75rem;
	}

	.order-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		padding: 0.75rem;
	}

	.order-item-details {
		align-self: flex-end;
	}
}

.my-account-spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(0, 0, 0, 0.08);
	border-radius: 50%;
	border-top: 5px solid var(--e-global-color-primary);
	animation: spin 0.8s linear infinite;
	margin: 3rem auto;
	display: block;
}

.my-account-spinner.d-none {
	display: none !important;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Removed default styles - now controlled by Elementor widget */
/* .profile-pic */

#id-photo-img {
	height: 200px;
}

.alert {
	font-size: 0.8rem;
	padding: 5px 10px;
}

#profile-form textarea {
	font-size: 0.8rem;
}

/* Pagination Styles - Enhanced */
.orders-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 2.5rem;
	padding: 1.5rem;
}

.orders-pagination:not(:empty) {
	border-top: 2px solid rgba(0, 0, 0, 0.06);
	background: rgba(0, 0, 0, 0.02);
}

.pagination-info {
	text-align: center;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--e-global-color-text, #333);
	letter-spacing: 0.2px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pagination-button {
	cursor: pointer;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	border: 2px solid rgba(0, 0, 0, 0.1);
	color: var(--e-global-color-primary, #000);
	font-size: 1.25rem;
}

.pagination-button:not(.disabled):hover {
	background: var(--e-global-color-primary);
	color: #fff;
	border-color: var(--e-global-color-primary);
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pagination-button.disabled {
	pointer-events: none;
	opacity: 0.3;
	background: #f5f5f5;
	border-color: rgba(0, 0, 0, 0.05);
}

.nav-tabs {
	border-bottom: 0;
}

@media (max-width: 991px) {
	.nav-pills {
		flex-direction: row !important;
		/* Change to horizontal on small screens */
		flex-wrap: wrap;
		/* Allow tabs to wrap if the screen is too narrow */
		gap: 10px;
		margin-bottom: 20px;
	}

	.nav-pills .nav-link {
		flex: 1 1 auto;
		/* Ensure each link takes up equal width */
		text-align: center;
		/* Center the text inside each link */
		margin-bottom: 0;
	}
}

#v-pills-orders .orders .alert {
	font-size: 0.8rem;
	padding: 10px;
}

.user-profile-photo {
	width: 42px;
	height: 42px;
	border-radius: 21px !important;
	border: 2px solid white !important;
}

.user-initials {
	background-color: #fff;
	color: var(--e-global-color-primary);
	height: 42px;
	width: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 600;
}

.user-initials:hover {
	background-color: var(--e-global-color-fab3e36);
	color: #fff;
}

/* Removed default styles - now controlled by Elementor widget */
/* .my-account-user-initials */
.my-account-user-initials {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* No Orders Message - Enhanced */
.no-orders-message {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 4rem 2rem;
	min-height: 450px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
	border: 2px dashed rgba(0, 0, 0, 0.08);
}

.no-orders-icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary, #666) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.no-orders-icon i {
	font-size: 3rem;
	color: #fff;
}

.no-orders-title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--e-global-color-text, #333);
	letter-spacing: -0.5px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.no-orders-text {
	font-size: 1.0625rem;
	color: var(--e-global-color-secondary, #666);
	margin-bottom: 2.5rem;
	max-width: 450px;
	line-height: 1.7;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.no-orders-button {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 2.25rem;
	text-decoration: none;
	transition: all 0.3s ease;
	background: var(--e-global-color-primary);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.no-orders-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	color: #fff;
}

@media (max-width: 576px) {
	.no-orders-message {
		padding: 3rem 1.5rem;
	}

	.no-orders-icon {
		width: 80px;
		height: 80px;
	}

	.no-orders-icon i {
		font-size: 2.5rem;
	}

	.no-orders-title {
		font-size: 1.5rem;
	}

	.no-orders-text {
		font-size: 1rem;
	}
}

/* Sign Up Success Modal Styles */
#signUpSuccessModal {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#signUpSuccessModal .modal-dialog {
	max-width: 500px;
}

#signUpSuccessModal .modal-content {
	border-radius: 0;
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#signUpSuccessModal .modal-header {
	padding: 1.5rem 1.5rem 0 1.5rem;
}

#signUpSuccessModal .btn-close {
	background: none;
	border: none;
	font-size: 1.25rem;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

#signUpSuccessModal .btn-close:hover {
	opacity: 1;
}

#signUpSuccessModal .modal-body {
	padding: 2rem 3rem 3rem 3rem;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#signUpSuccessModal .success-icon {
	animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

#signUpSuccessModal h2 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	color: #333;
	font-size: 1.75rem;
}

#signUpSuccessModal .text-muted {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}

/* Button container adjustments */
#signUpSuccessModal .row.g-3 {
	margin-left: 0;
	margin-right: 0;
}

#signUpSuccessModal .col-auto {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

#signUpSuccessModal button[type="submit"] {
	margin: 0 0.25rem;
	min-width: 140px;
}

/* Responsive Design */
@media (max-width: 576px) {
	#signUpSuccessModal .modal-body {
		padding: 1.5rem;
	}

	#signUpSuccessModal h2 {
		font-size: 1.5rem;
	}

	#signUpSuccessModal .success-icon i {
		font-size: 3rem !important;
	}

	#signUpSuccessModal .row.g-3 {
		flex-direction: column;
		align-items: center;
	}

	#signUpSuccessModal .col-auto {
		width: 100%;
		max-width: 200px;
	}

	#signUpSuccessModal button[type="submit"] {
		width: 100%;
		margin: 0.25rem 0;
	}
}