/**
 * Aridoro account & auth pages
 */

/* Auth layout */
.aridoro-account .woocommerce > h2,
.aridoro-account .entry-title,
.aridoro-account .page-title,
.aridoro-account-auth .entry-header,
.aridoro-account-auth .woocommerce-breadcrumb {
	display: none;
}

.aridoro-auth {
	position: relative;
	padding: clamp(2rem, 5vw, 4rem) 0;
	min-height: calc(100vh - 220px);
	background: var(--mkt-cream);
}

.aridoro-auth__backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(245, 242, 237, 0.94) 0%, rgba(245, 242, 237, 0.88) 42%, rgba(245, 242, 237, 0.72) 100%),
		url("https://images.unsplash.com/photo-1617032217624-41e880d8066a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
	z-index: 0;
}

.aridoro-auth__shell {
	position: relative;
	z-index: 1;
}

.aridoro-auth__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--aridoro-gray-light);
	box-shadow: 0 24px 60px rgba(74, 55, 40, 0.08);
	overflow: hidden;
}

.aridoro-auth__grid--single-panel {
	grid-template-columns: minmax(0, 1fr);
	margin-inline: auto;
}

.aridoro-auth__grid--login-only {
	max-width: 520px;
}

.aridoro-auth__grid--register-only {
	max-width: 880px;
}

.aridoro-auth__panel {
	padding: clamp(1.75rem, 3vw, 2.5rem);
}

.aridoro-auth__panel--login {
	border-right: 1px solid var(--aridoro-gray-light);
}

.aridoro-auth__grid--single-panel .aridoro-auth__panel--login {
	border-right: 0;
}

.aridoro-auth__panel-head {
	text-align: center;
	margin-bottom: 1.75rem;
}

.aridoro-auth__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin-bottom: 0.75rem;
	font-size: 1rem;
	color: var(--aridoro-gold);
	border: 1px solid rgba(197, 160, 89, 0.35);
	border-radius: 50%;
}

.aridoro-auth__title {
	font-family: var(--aridoro-font-serif);
	font-size: clamp(1.5rem, 2.5vw, 1.85rem);
	font-weight: 500;
	margin: 0 0 0.35rem;
	color: var(--aridoro-brown-dark);
}

.aridoro-auth__subtitle {
	margin: 0;
	font-size: 14px;
	color: var(--aridoro-gray);
}

.aridoro-auth__form .form-row {
	margin: 0 0 1rem;
}

.aridoro-auth__field label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--aridoro-brown);
}

.aridoro-auth__field .required {
	color: var(--aridoro-gold);
}

.aridoro-auth__field .input-text,
.aridoro-auth__field input[type="email"],
.aridoro-auth__field input[type="password"],
.aridoro-auth__field input[type="text"] {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--aridoro-gray-light);
	border-radius: 4px;
	background: var(--aridoro-white);
	font-family: var(--aridoro-font-sans);
	font-size: 14px;
	color: var(--aridoro-brown);
}

.aridoro-auth__field .input-text:focus {
	outline: none;
	border-color: var(--aridoro-gold);
	box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.25);
}

.aridoro-auth__password-wrap {
	position: relative;
	display: block;
}

.aridoro-auth__password-wrap .input-text {
	padding-right: 2.75rem;
}

.aridoro-auth__password-toggle {
	position: absolute;
	top: 50%;
	right: 0.65rem;
	transform: translateY(-50%);
	border: 0;
	background: none;
	padding: 0.25rem;
	color: var(--aridoro-gray);
	cursor: pointer;
	line-height: 1;
}

.aridoro-auth__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0.25rem 0 1.25rem;
	font-size: 13px;
}

.aridoro-auth__remember {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	color: var(--aridoro-brown);
}

.aridoro-auth__lost {
	font-size: 12px;
	font-weight: 600;
	color: var(--aridoro-gold);
	text-transform: none;
	letter-spacing: 0;
}

.aridoro-auth__submit {
	width: 100%;
	margin-top: 0.25rem;
}

.aridoro-auth__hint,
.aridoro-auth__privacy {
	font-size: 13px;
	line-height: 1.6;
	color: var(--aridoro-gray);
	margin: 0 0 1rem;
}

.aridoro-auth__privacy a {
	color: var(--aridoro-gold);
	text-decoration: underline;
}

.aridoro-auth__social {
	margin-top: 1.5rem;
}

.aridoro-auth__social-label {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 1rem;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--aridoro-gray);
}

.aridoro-auth__social-label::before,
.aridoro-auth__social-label::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--aridoro-gray-light);
}

.aridoro-auth__social-buttons {
	display: grid;
	gap: 0.75rem;
}

.aridoro-auth__social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--aridoro-gray-light);
	border-radius: 4px;
	background: var(--aridoro-white);
	font-family: var(--aridoro-font-sans);
	font-size: 13px;
	font-weight: 500;
	color: var(--aridoro-brown);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.aridoro-auth__social-btn:hover {
	border-color: var(--aridoro-gold);
}

.aridoro-auth__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	font-size: 12px;
	font-weight: 700;
}

.aridoro-auth__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 1.25rem 0 0;
	font-size: 12px;
	color: var(--aridoro-gray);
	text-align: center;
}

/* Dokan customer / vendor role cards */
.aridoro-account-register .vendor-customer-registration {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0 0 1rem !important;
	padding: 0;
	border: 0;
}

.aridoro-account-register .vendor-customer-registration br {
	display: none;
}

.aridoro-account-register .vendor-customer-registration label.radio {
	position: relative;
	display: block;
	margin: 0 !important;
	padding: 1rem 1rem 1rem 2.5rem;
	border: 1px solid var(--aridoro-gray-light);
	border-radius: 4px;
	background: var(--aridoro-white);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--aridoro-brown);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aridoro-account-register .vendor-customer-registration label.radio:has(input:checked) {
	border-color: var(--aridoro-gold);
	box-shadow: inset 0 0 0 1px var(--aridoro-gold);
}

.aridoro-account-register .vendor-customer-registration input[type="radio"] {
	position: absolute;
	left: 1rem;
	top: 1.15rem;
	margin: 0;
	accent-color: var(--aridoro-gold);
}

.aridoro-account-register .show_if_seller {
	margin-top: 0.5rem;
}

.aridoro-account-register .show_if_seller .form-row {
	margin-bottom: 0.85rem;
}

.aridoro-account-register .show_if_seller label {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.aridoro-account-register .show_if_seller .input-text,
.aridoro-account-register .show_if_seller .form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--aridoro-gray-light);
	border-radius: 4px;
}

/* Logged-in account */
body.aridoro-account-dashboard {
	background: var(--mkt-sand);
}

main.aridoro-account-dashboard {
	padding: 2.25rem 0 3.25rem;
}

.aridoro-account-dashboard .aridoro-account-layout {
	display: grid;
	grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
	gap: 1.75rem;
	align-items: start;
	padding: 50px;
}

.aridoro-account-dashboard .woocommerce-MyAccount-navigation,
.aridoro-account-dashboard .woocommerce-MyAccount-content {
	float: none !important;
	width: auto !important;
}

.aridoro-account-dashboard .woocommerce-MyAccount-navigation {
	margin: 0;
}

.aridoro-account-dashboard .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 1.1rem 1rem;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--aridoro-gray-light);
	box-shadow: 0 18px 45px rgba(74, 55, 40, 0.06);
}

.aridoro-account-dashboard .woocommerce-MyAccount-navigation li + li {
	margin-top: 0.35rem;
}

.aridoro-account-dashboard .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.6rem 0.65rem;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--aridoro-brown);
	transition: background 0.2s ease, color 0.2s ease;
}

.aridoro-account-dashboard .woocommerce-MyAccount-navigation a:hover {
	background: rgba(197, 160, 89, 0.12);
}

.aridoro-account-dashboard .woocommerce-MyAccount-navigation .is-active a {
	background: rgba(197, 160, 89, 0.18);
	color: var(--aridoro-brown-dark);
}

.aridoro-account-nav__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(197, 160, 89, 0.3);
	color: var(--aridoro-gold);
	background: rgba(253, 251, 247, 0.8);
}

.woocommerce-MyAccount-content.aridoro-account-content {
	padding: 1.5rem 1.75rem;
	background: var(--aridoro-white);
	border: 1px solid var(--aridoro-gray-light);
	box-sizing: border-box;
	min-width: 0;
	max-width: 100%;
}

/* Dashboard uses individual cards — no outer content box */
.woocommerce-MyAccount-content.aridoro-account-content:has(.aridoro-account-hero) {
	padding: 0;
	background: transparent;
	border: 0;
}

/* Dashboard mockup */
.aridoro-account-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.25rem;
	align-items: stretch;
	margin: 0 0 1.75rem;
}

.aridoro-account-hero__panel,
.aridoro-account-hero__banner,
.aridoro-account-overview,
.aridoro-account-actions {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--aridoro-gray-light);
	box-shadow: 0 18px 45px rgba(74, 55, 40, 0.06);
}

.aridoro-account-hero__panel {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	padding: 1.1rem 1.15rem;
}

.aridoro-account-hero__avatar {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid rgba(197, 160, 89, 0.35);
	background: rgba(245, 242, 237, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
}

.aridoro-account-hero__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.aridoro-account-hero__kicker {
	margin: 0 0 0.2rem;
	font-size: 12px;
	color: var(--aridoro-gray);
}

.aridoro-account-hero__name-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0 0 0.25rem;
}

.aridoro-account-hero__name {
	margin: 0;
	font-family: var(--aridoro-font-serif);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 500;
	color: var(--aridoro-brown-dark);
	line-height: 1.2;
}

body.aridoro-account-dashboard h1.aridoro-account-hero__name {
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.aridoro-account-hero__badge {
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding: 0 0.55rem;
	border: 1px solid rgba(197, 160, 89, 0.35);
	background: rgba(197, 160, 89, 0.1);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--aridoro-brown);
}

.aridoro-account-hero__meta {
	margin: 0;
	font-size: 12px;
	color: var(--aridoro-gray);
}

.aridoro-account-hero__banner {
	position: relative;
	padding: 1.15rem 1.25rem;
	background: linear-gradient(90deg, rgba(245, 242, 237, 0.92), rgba(245, 242, 237, 0.65));
}

.aridoro-account-hero__quote {
	font-family: var(--aridoro-font-serif);
	font-size: 36px;
	line-height: 1;
	color: rgba(197, 160, 89, 0.55);
}

.aridoro-account-hero__message {
	margin: 0.35rem 0 0;
	max-width: 42ch;
	font-size: 13px;
	color: var(--aridoro-brown);
}

.aridoro-account-overview,
.aridoro-account-actions {
	padding: 1.25rem 1.25rem 1.35rem;
}

.aridoro-account-overview__title {
	margin: 0 0 1rem;
	font-family: var(--aridoro-font-serif);
	font-size: 18px;
	font-weight: 500;
	color: var(--aridoro-brown-dark);
}

body.aridoro-account-dashboard h2.aridoro-account-overview__title {
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 1.2;
}

.aridoro-account-overview__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.aridoro-account-card {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	column-gap: 0.65rem;
	row-gap: 0.15rem;
	padding: 0.9rem 0.85rem;
	border: 1px solid var(--aridoro-gray-light);
	background: rgba(253, 251, 247, 0.75);
	text-decoration: none;
	color: var(--aridoro-brown);
	min-height: 92px;
}

.aridoro-account-card:hover {
	border-color: rgba(197, 160, 89, 0.55);
}

.aridoro-account-card__icon {
	grid-row: 1 / span 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--aridoro-gold);
}

.aridoro-account-card__count {
	font-family: var(--aridoro-font-serif);
	font-size: 22px;
	font-weight: 500;
	color: var(--aridoro-brown-dark);
}

.aridoro-account-card__label {
	font-size: 12px;
	color: var(--aridoro-gray);
}

.aridoro-account-card__link {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--aridoro-gold);
}

.aridoro-account-actions {
	margin-top: 1rem;
	display: grid;
	gap: 0.85rem;
}

.aridoro-account-action {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	gap: 0.9rem;
	align-items: center;
	padding: 0.9rem 0.85rem;
	border: 1px solid var(--aridoro-gray-light);
	background: rgba(253, 251, 247, 0.75);
}

.aridoro-account-action__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(197, 160, 89, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--aridoro-gold);
	background: rgba(255, 255, 255, 0.6);
}

.aridoro-account-action__title {
	margin: 0 0 0.2rem;
	font-family: var(--aridoro-font-serif);
	font-size: 14px;
	font-weight: 500;
	color: var(--aridoro-brown-dark);
}

body.aridoro-account-dashboard h3.aridoro-account-action__title {
	font-size: 14px;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.aridoro-account-action__text {
	margin: 0;
	font-size: 12px;
	color: var(--aridoro-gray);
}

.aridoro-account-action__btn {
	white-space: nowrap;
	flex-shrink: 0;
}

/* Sub-pages: keep addresses/orders inside content column */
.aridoro-account-dashboard .woocommerce-Addresses.col2-set {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: start;
	width: 100%;
	float: none;
	clear: both;
}

/* WooCommerce clearfix pseudo-elements become extra grid cells — remove them */
.aridoro-account-dashboard .woocommerce-Addresses.col2-set::before,
.aridoro-account-dashboard .woocommerce-Addresses.col2-set::after {
	content: none !important;
	display: none !important;
}

.aridoro-account-dashboard .woocommerce-Addresses .woocommerce-Address,
.aridoro-account-dashboard .woocommerce-Addresses .col-1,
.aridoro-account-dashboard .woocommerce-Addresses .col-2,
.aridoro-account-dashboard .woocommerce-Addresses .u-column1,
.aridoro-account-dashboard .woocommerce-Addresses .u-column2 {
	float: none !important;
	width: 100% !important;
	min-width: 0;
	max-width: 100%;
	margin: 0 !important;
}

.aridoro-account-dashboard .woocommerce-Address-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	margin-bottom: 0.75rem;
}

.aridoro-account-dashboard .woocommerce-Address-title h2 {
	margin: 0;
	font-family: var(--aridoro-font-serif);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--aridoro-brown-dark);
}

.aridoro-account-dashboard .woocommerce-Address-title .edit {
	font-size: 12px;
	font-style: italic;
	color: var(--aridoro-gold);
	text-decoration: none;
}

.aridoro-account-dashboard .woocommerce-Address-title .edit:hover {
	text-decoration: underline;
}

.aridoro-account-dashboard .woocommerce-Address address {
	font-style: italic;
	font-size: 13px;
	line-height: 1.6;
	color: var(--aridoro-gray);
	margin: 0;
}

/* Account sub-page forms (edit account, addresses, etc.) */
.aridoro-account-dashboard .woocommerce-MyAccount-content form .clear {
	display: none;
}

.aridoro-account-dashboard .woocommerce-EditAccountForm.edit-account {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 1rem;
	max-width: 720px;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .form-row {
	float: none;
	width: 100%;
	margin: 0 0 1rem;
	padding: 0;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .form-row-wide,
.aridoro-account-dashboard .woocommerce-MyAccount-content form fieldset,
.aridoro-account-dashboard .woocommerce-MyAccount-content form > p:last-child {
	grid-column: 1 / -1;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .form-row label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--aridoro-brown);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .form-row .required {
	color: var(--aridoro-gold);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .input-text,
.aridoro-account-dashboard .woocommerce-MyAccount-content form input[type="email"],
.aridoro-account-dashboard .woocommerce-MyAccount-content form input[type="password"],
.aridoro-account-dashboard .woocommerce-MyAccount-content form input[type="text"],
.aridoro-account-dashboard .woocommerce-MyAccount-content form select,
.aridoro-account-dashboard .woocommerce-MyAccount-content form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--aridoro-gray-light);
	border-radius: 4px;
	background: var(--aridoro-white);
	font-family: var(--aridoro-font-sans);
	font-size: 14px;
	color: var(--aridoro-brown-dark);
	box-shadow: none;
	box-sizing: border-box;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .input-text:focus,
.aridoro-account-dashboard .woocommerce-MyAccount-content form input:focus,
.aridoro-account-dashboard .woocommerce-MyAccount-content form select:focus,
.aridoro-account-dashboard .woocommerce-MyAccount-content form textarea:focus {
	outline: none;
	border-color: var(--aridoro-gold);
	box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.25);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .form-row em,
.aridoro-account-dashboard .woocommerce-MyAccount-content form .form-row span[id$="_description"] {
	display: block;
	margin-top: 0.35rem;
	font-size: 12px;
	font-style: italic;
	line-height: 1.5;
	color: var(--aridoro-gray);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form fieldset {
	margin: 0.5rem 0 1rem;
	padding: 1.25rem 1.25rem 0.25rem;
	border: 1px solid var(--aridoro-gray-light);
	border-radius: 4px;
	background: rgba(253, 251, 247, 0.65);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form fieldset legend {
	padding: 0 0.35rem;
	font-family: var(--aridoro-font-serif);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--aridoro-brown-dark);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content form .show-password-input {
	color: var(--aridoro-gold);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content .button,
.aridoro-account-dashboard .woocommerce-MyAccount-content button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1.5rem;
	border: 0;
	border-radius: 4px;
	background: var(--aridoro-brown-dark);
	color: var(--aridoro-white);
	font-family: var(--aridoro-font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content .button:hover,
.aridoro-account-dashboard .woocommerce-MyAccount-content button[type="submit"]:hover {
	background: var(--aridoro-gold);
	color: var(--aridoro-brown-dark);
}

/* Account sub-pages — orders, returns, support tickets, etc. */
body.aridoro-account-dashboard .woocommerce-MyAccount-content:not(:has(.aridoro-account-hero)) header h2,
body.aridoro-account-dashboard .woocommerce-MyAccount-content:not(:has(.aridoro-account-hero)) > h2,
body.aridoro-account-dashboard .woocommerce-MyAccount-content:not(:has(.aridoro-account-hero)) > h3 {
	margin: 0 0 1.25rem;
	padding: 0;
	font-family: var(--mkt-font-display);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.2;
	color: var(--mkt-ink);
}

body.aridoro-account-dashboard .woocommerce-MyAccount-content:not(:has(.aridoro-account-hero)) > h3 {
	font-size: 16px;
}

body.aridoro-account-dashboard .woocommerce-MyAccount-content:not(:has(.aridoro-account-hero)) header + br {
	display: none;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--mkt-line);
	margin: 0 0 1.5rem;
	font-size: 13px;
	background: var(--mkt-ivory);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.table-striped tbody tr:nth-of-type(odd) {
	background: transparent;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table thead th,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders thead th {
	padding: 14px 16px;
	font-family: var(--mkt-font-body);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: left;
	color: var(--mkt-ink);
	background: rgba(251, 249, 244, 0.85);
	border-bottom: 1px solid var(--mkt-line);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table tbody td,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders tbody td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--mkt-line);
	color: var(--mkt-ink-soft);
	vertical-align: middle;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table tbody tr:last-child td,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders tbody tr:last-child td {
	border-bottom: 0;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table a,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders a {
	color: var(--mkt-ink);
	text-decoration: none;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table a:hover,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders a:hover {
	color: var(--mkt-gold);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table .button,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders .button,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table .woocommerce-button,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders .woocommerce-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: auto;
	padding: 8px 14px;
	font-size: 10px;
	letter-spacing: 0.12em;
	border-radius: 0;
	background: transparent;
	color: var(--mkt-ink);
	border: 1px solid var(--mkt-line);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table .button:hover,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders .button:hover,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.shop_table .woocommerce-button:hover,
.aridoro-account-dashboard .woocommerce-MyAccount-content table.my_account_orders .woocommerce-button:hover {
	background: var(--mkt-ink);
	border-color: var(--mkt-ink);
	color: var(--mkt-ivory);
}

.aridoro-account-dashboard .woocommerce-MyAccount-content .woocommerce-pagination {
	margin-top: 1.5rem;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content .woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content .woocommerce-pagination ul li a,
.aridoro-account-dashboard .woocommerce-MyAccount-content .woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--mkt-line);
	border-radius: 0;
	background: transparent;
	font-size: 13px;
	color: var(--mkt-ink);
	text-decoration: none;
}

.aridoro-account-dashboard .woocommerce-MyAccount-content .woocommerce-pagination ul li span.current {
	background: var(--mkt-ink);
	border-color: var(--mkt-ink);
	color: var(--mkt-ivory);
}

/* Wishlist endpoint content */
.aridoro-account-dashboard .woocommerce-MyAccount-content .wc-block-wishlist {
	margin-top: 0.25rem;
}

@media (min-width: 1100px) {
	.aridoro-account-overview__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.aridoro-account-dashboard .aridoro-account-layout {
		grid-template-columns: 1fr;
	}

	.aridoro-account-hero {
		grid-template-columns: 1fr;
	}

	.aridoro-account-overview__grid {
		grid-template-columns: 1fr;
	}

	.aridoro-account-dashboard .woocommerce-Addresses.col2-set {
		grid-template-columns: 1fr;
	}

	.aridoro-account-dashboard .woocommerce-EditAccountForm.edit-account {
		grid-template-columns: 1fr;
	}

	.aridoro-account-action {
		grid-template-columns: 44px minmax(0, 1fr);
	}

	.aridoro-account-action__btn {
		grid-column: 1 / -1;
		justify-self: start;
	}
}

@media (max-width: 900px) {
	.aridoro-auth__grid {
		grid-template-columns: 1fr;
	}

	.aridoro-auth__panel--login {
		border-right: 0;
		border-bottom: 1px solid var(--aridoro-gray-light);
	}
}

@media (max-width: 560px) {
	.aridoro-account-register .vendor-customer-registration {
		grid-template-columns: 1fr;
	}
}

/* Buyer vs vendor auth contexts */
.aridoro-auth--buyer .vendor-customer-registration,
.aridoro-auth--buyer .show_if_seller {
	display: none !important;
}

.aridoro-auth--vendor .vendor-customer-registration label.radio input[value="customer"],
.aridoro-auth--vendor .vendor-customer-registration label.radio:has(input[value="customer"]) {
	display: none !important;
}

.aridoro-auth--vendor .vendor-customer-registration {
	grid-template-columns: 1fr !important;
}

.aridoro-auth--vendor .show_if_seller {
	display: block !important;
}

/* Vendor registration: two fields per row on tablet / laptop */
@media (min-width: 768px) {
	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 1rem;
		align-items: start;
	}

	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form > .show_if_seller,
	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form > .vendor-customer-registration,
	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form > .aridoro-auth__privacy,
	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form > .aridoro-auth__hint,
	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form > .aridoro-auth__submit {
		grid-column: 1 / -1;
	}

	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form > .aridoro-auth__field--email {
		grid-column: 1 / -1;
	}

	.aridoro-auth--vendor .aridoro-auth__panel--register .aridoro-auth__form > .aridoro-auth__field--email:has(~ .aridoro-auth__field--password) {
		grid-column: auto;
	}

	.aridoro-auth--vendor .aridoro-account-register .show_if_seller {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 1rem;
		align-items: start;
	}

	.aridoro-auth--vendor .show_if_seller .split-row {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 1rem;
	}

	.aridoro-auth--vendor .show_if_seller .split-row .form-row {
		margin-bottom: 0;
	}

	.aridoro-auth--vendor .show_if_seller > p:has(textarea),
	.aridoro-auth--vendor .show_if_seller > p:has(input[type="checkbox"]),
	.aridoro-auth--vendor .show_if_seller .dokan-form-group,
	.aridoro-auth--vendor .show_if_seller #dokan-address-fields-wrapper {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.aridoro-auth--vendor .show_if_seller .split-row {
		display: block;
	}
}
