/* Frontend: reuse contact-us-form input styling outside two-column contact layout */
.contact-us-form.site-form-centered {
	margin-left: 0;
}

.page-checkout .checkout-form-wrap.contact-us-form {
	margin-left: 0;
}

.contact-us-form select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	padding-right: 44px;
}

/* Frontend: mobile header quick actions (user + cart next to the menu toggle) */
.mobile-header-actions {
	display: none;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	margin-right: 10px;
}

.mobile-header-actions .mobile-header-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.mobile-header-actions .mobile-header-btn:hover,
.mobile-header-actions .mobile-header-btn:focus {
	background: var(--accent-color);
	color: var(--white-color);
	opacity: 0.85;
}

.mobile-header-actions .mobile-header-btn i {
	color: inherit;
}

.mobile-header-actions .cart-count-badge {
	top: -6px;
	right: -6px;
}

@media only screen and (max-width: 991px) {
	.mobile-header-actions {
		display: flex;
	}
}

@media only screen and (max-width: 400px) {
	.mobile-header-actions {
		gap: 8px;
		margin-right: 8px;
	}

	.mobile-header-actions .mobile-header-btn {
		width: 34px;
		height: 34px;
		font-size: 15px;
	}
}
