/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

:root {
	--tizo-auth-text: #f5f1e8;
	--tizo-auth-muted: #b7af9f;
	--tizo-auth-panel: rgba(255, 255, 255, 0.05);
	--tizo-auth-panel-strong: rgba(255, 255, 255, 0.08);
	--tizo-auth-border: rgba(255, 255, 255, 0.14);
	--tizo-auth-accent: #c9a35f;
	--tizo-auth-accent-strong: #e3bc73;
	--tizo-auth-danger-bg: rgba(167, 37, 37, 0.32);
	--tizo-auth-danger-border: rgba(231, 109, 109, 0.48);
}

.tizo-lens-login-form {
	width: min(100%, 420px);
	margin: 0 auto;
	padding: 32px;
	border: 1px solid var(--tizo-auth-border);
	border-radius: 20px;
	background: linear-gradient(180deg, var(--tizo-auth-panel-strong) 0%, var(--tizo-auth-panel) 100%);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(10px);
}

.tizo-lens-login-form,
.tizo-lens-login-form * {
	box-sizing: border-box;
}

.tizo-lens-login-form p {
	margin: 0;
}

.tizo-lens-login-form__field + .tizo-lens-login-form__field,
.tizo-lens-login-form__field + .tizo-lens-login-form__actions,
.tizo-lens-login-form__message + .tizo-lens-login-form__field,
.tizo-lens-login-form p + p {
	margin-top: 18px;
}

.tizo-lens-login-form__label,
.tizo-lens-login-form label {
	display: block;
	margin-bottom: 8px;
	color: var(--tizo-auth-text) !important;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.tizo-lens-login-form__input,
.tizo-lens-login-form input[type="text"],
.tizo-lens-login-form input[type="email"],
.tizo-lens-login-form input[type="password"] {
	width: 100%;
	min-height: 54px;
	padding: 0 16px;
	border: 1px solid var(--tizo-auth-border) !important;
	border-radius: 14px !important;
	background: rgba(10, 10, 10, 0.78) !important;
	color: var(--tizo-auth-text) !important;
	font-size: 1rem;
	line-height: 1.4;
	box-shadow: none !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tizo-lens-login-form__input::placeholder {
	color: var(--tizo-auth-muted);
}

.tizo-lens-login-form__input:hover,
.tizo-lens-login-form input[type="text"]:hover,
.tizo-lens-login-form input[type="email"]:hover,
.tizo-lens-login-form input[type="password"]:hover {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(16, 16, 16, 0.9);
}

.tizo-lens-login-form__input:focus,
.tizo-lens-login-form input[type="text"]:focus,
.tizo-lens-login-form input[type="email"]:focus,
.tizo-lens-login-form input[type="password"]:focus {
	outline: none;
	border-color: var(--tizo-auth-accent) !important;
	box-shadow: 0 0 0 4px rgba(201, 163, 95, 0.18) !important;
	background: rgba(16, 16, 16, 0.95) !important;
}

.tizo-lens-login-form__message {
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid var(--tizo-auth-danger-border);
	border-radius: 14px;
	background: var(--tizo-auth-danger-bg);
	color: #ffd6d6;
	font-size: 0.95rem;
	line-height: 1.5;
}

.tizo-lens-login-form__actions {
	margin-top: 24px;
}

.tizo-lens-login-form__submit,
.tizo-lens-login-form button[type="submit"],
.tizo-lens-login-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	padding: 0 20px;
	border: 0 !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, var(--tizo-auth-accent) 0%, var(--tizo-auth-accent-strong) 100%) !important;
	color: #111111 !important;
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	appearance: none;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tizo-lens-login-form__submit:hover,
.tizo-lens-login-form__submit:focus,
.tizo-lens-login-form button[type="submit"]:hover,
.tizo-lens-login-form button[type="submit"]:focus,
.tizo-lens-login-form input[type="submit"]:hover,
.tizo-lens-login-form input[type="submit"]:focus {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(201, 163, 95, 0.24);
	filter: brightness(1.04);
}

.tizo-lens-login-form__submit:focus {
	outline: 2px solid rgba(255, 255, 255, 0.28);
	outline-offset: 2px;
}

.tizo-lens-login-form .login-remember,
.tizo-lens-login-form p:has(input[name="rememberme"]),
.tizo-lens-login-form label:has(input[name="rememberme"]) {
	display: none !important;
}

@media (max-width: 640px) {
	.tizo-lens-login-form {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.tizo-lens-login-form__input,
	.tizo-lens-login-form input[type="text"],
	.tizo-lens-login-form input[type="email"],
	.tizo-lens-login-form input[type="password"] {
		min-height: 50px;
		font-size: 0.98rem;
	}

	.tizo-lens-login-form__submit,
	.tizo-lens-login-form button[type="submit"],
	.tizo-lens-login-form input[type="submit"] {
		min-height: 52px;
	}
}

.tizo-lens-profile-dashboard {
	width: min(100%, 1240px);
	margin: 0 auto;
	color: var(--tizo-auth-text);
}

.tizo-lens-profile-dashboard,
.tizo-lens-profile-dashboard * {
	box-sizing: border-box;
}

.tizo-lens-profile-dashboard__layout {
	display: grid;
	grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.tizo-lens-profile-dashboard__sidebar,
.tizo-lens-profile-dashboard__panel {
	border: 1px solid var(--tizo-auth-border);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(14px);
}

.tizo-lens-profile-dashboard__sidebar {
	position: sticky;
	top: 32px;
	padding: 24px;
}

.tizo-lens-profile-dashboard__brand {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tizo-lens-profile-dashboard__eyebrow {
	margin: 0 0 8px;
	color: var(--tizo-auth-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tizo-lens-profile-dashboard__sidebar-title,
.tizo-lens-profile-dashboard__title {
	margin: 0;
	color: var(--tizo-auth-text) !important;
	font-size: clamp(1.5rem, 2vw, 2.25rem);
	line-height: 1.1;
}

.tizo-lens-profile-dashboard__sidebar-text,
.tizo-lens-profile-dashboard__lead,
.tizo-lens-profile-dashboard__helper-text,
.tizo-lens-profile-dashboard__shoot-meta,
.tizo-lens-profile-dashboard__table td,
.tizo-lens-profile-dashboard__table th {
	color: var(--tizo-auth-muted);
}

.tizo-lens-profile-dashboard__sidebar-text,
.tizo-lens-profile-dashboard__lead {
	margin: 10px 0 0;
	font-size: 0.98rem;
	line-height: 1.6;
}

.tizo-lens-profile-dashboard__nav {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.tizo-lens-profile-dashboard__nav-item {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid transparent;
	border-radius: 14px;
	background: transparent;
	color: var(--tizo-auth-text);
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.tizo-lens-profile-dashboard__nav-item:hover,
.tizo-lens-profile-dashboard__nav-item:focus,
.tizo-lens-profile-dashboard__nav-item.is-active {
	border-color: rgba(201, 163, 95, 0.32);
	background: rgba(201, 163, 95, 0.12);
	transform: translateX(2px);
}

.tizo-lens-profile-dashboard__nav-item--logout {
	margin-top: 10px;
	color: #ffd4d4;
	border-color: rgba(231, 109, 109, 0.22);
	background: rgba(167, 37, 37, 0.16);
}

.tizo-lens-profile-dashboard__nav-item--logout:hover,
.tizo-lens-profile-dashboard__nav-item--logout:focus {
	border-color: rgba(231, 109, 109, 0.42);
	background: rgba(167, 37, 37, 0.24);
}

.tizo-lens-profile-dashboard__content {
	min-width: 0;
}

.tizo-lens-profile-dashboard__panel {
	padding: 30px;
}

.tizo-lens-profile-dashboard__panel + .tizo-lens-profile-dashboard__panel {
	margin-top: 20px;
}

.tizo-lens-profile-dashboard__info-grid,
.tizo-lens-profile-dashboard__stats-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.tizo-lens-profile-dashboard__info-card,
.tizo-lens-profile-dashboard__stat-card,
.tizo-lens-profile-dashboard__shoot-card,
.tizo-lens-profile-dashboard__payments-box,
.tizo-lens-profile-dashboard__form {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(7, 7, 7, 0.42);
}

.tizo-lens-profile-dashboard__info-card,
.tizo-lens-profile-dashboard__stat-card {
	padding: 18px 18px 20px;
}

.tizo-lens-profile-dashboard__info-label {
	margin: 0 0 10px;
	color: var(--tizo-auth-muted);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tizo-lens-profile-dashboard__info-value {
	margin: 0;
	color: var(--tizo-auth-text);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.5;
}

.tizo-lens-profile-dashboard__shoot-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.tizo-lens-profile-dashboard__shoot-card {
	padding: 20px;
}

.tizo-lens-profile-dashboard__shoot-title {
	margin: 0 0 14px;
	color: var(--tizo-auth-text);
	font-size: 1.08rem;
	font-weight: 700;
}

.tizo-lens-profile-dashboard__shoot-meta {
	margin: 0 0 8px;
	font-size: 0.95rem;
	line-height: 1.5;
}

.tizo-lens-profile-dashboard__ghost-button {
	width: 100%;
	min-height: 46px;
	margin-top: 14px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: transparent;
	color: var(--tizo-auth-text);
	font-size: 0.92rem;
	font-weight: 600;
	cursor: pointer;
}

.tizo-lens-profile-dashboard__ghost-button--link,
.tizo-lens-profile-dashboard__ghost-button--inline,
.tizo-lens-profile-dashboard__primary-button--link {
	text-decoration: none;
}

.tizo-lens-profile-dashboard__ghost-button--link,
.tizo-lens-profile-dashboard__primary-button--link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tizo-lens-profile-dashboard__ghost-button--inline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	margin-top: 0;
}

.tizo-lens-profile-dashboard__form {
	margin-top: 24px;
	padding: 24px;
}

.tizo-lens-profile-dashboard__form-field + .tizo-lens-profile-dashboard__form-field {
	margin-top: 18px;
}

.tizo-lens-profile-dashboard__form-field label {
	display: block;
	margin-bottom: 8px;
	color: var(--tizo-auth-text);
	font-size: 0.92rem;
	font-weight: 600;
}

.tizo-lens-profile-dashboard__form-field input,
.tizo-lens-profile-dashboard__form-field textarea,
.tizo-lens-profile-dashboard__form-field select {
	width: 100%;
	min-height: 54px;
	padding: 0 16px;
	border: 1px solid var(--tizo-auth-border) !important;
	border-radius: 14px;
	background: rgba(10, 10, 10, 0.84) !important;
	color: var(--tizo-auth-text) !important;
	font-size: 1rem;
	line-height: 1.5;
}

.tizo-lens-profile-dashboard__form-field textarea {
	min-height: 150px;
	padding: 16px;
	resize: vertical;
}

.tizo-lens-profile-dashboard__form-field input::placeholder,
.tizo-lens-profile-dashboard__form-field textarea::placeholder {
	color: var(--tizo-auth-muted) !important;
	opacity: 1;
}

.tizo-lens-profile-dashboard__form-field input:focus,
.tizo-lens-profile-dashboard__form-field textarea:focus,
.tizo-lens-profile-dashboard__form-field select:focus {
	outline: none;
	border-color: var(--tizo-auth-accent);
	box-shadow: 0 0 0 4px rgba(201, 163, 95, 0.18);
}

.tizo-lens-profile-dashboard__form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 22px;
}

.tizo-lens-profile-dashboard__primary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	min-height: 52px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--tizo-auth-accent) 0%, var(--tizo-auth-accent-strong) 100%);
	color: #111111;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.tizo-lens-profile-dashboard__gallery-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-top: 24px;
}

.tizo-lens-profile-dashboard__gallery-meta-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
	color: var(--tizo-auth-muted);
	font-size: 0.92rem;
}

.tizo-lens-profile-dashboard__gallery-meta-bar span {
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(7, 7, 7, 0.42);
}

.tizo-lens-profile-dashboard__gallery-message {
	margin-top: 24px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: rgba(7, 7, 7, 0.42);
	color: var(--tizo-auth-muted);
}

.tizo-lens-profile-dashboard__gallery-message p {
	margin: 0;
}

.tizo-lens-profile-dashboard__gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.tizo-lens-profile-dashboard__gallery-item {
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: rgba(7, 7, 7, 0.42);
}

.tizo-lens-profile-dashboard__gallery-thumb {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 16px;
	background: rgba(10, 10, 10, 0.84);
	cursor: pointer;
	overflow: hidden;
}

.tizo-lens-profile-dashboard__gallery-thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.tizo-lens-profile-dashboard__gallery-item-footer {
	margin-top: 14px;
}

.tizo-lens-profile-dashboard__gallery-item-name {
	margin: 0;
	color: var(--tizo-auth-text);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.4;
	word-break: break-word;
}

.tizo-lens-profile-dashboard__gallery-item-footer .tizo-lens-profile-dashboard__ghost-button--inline {
	margin-top: 14px;
}

.tizo-lens-profile-dashboard__helper-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}

.tizo-lens-profile-dashboard__payments-box {
	margin-top: 24px;
	padding: 24px;
}

.tizo-lens-profile-dashboard__payments-action {
	display: grid;
	grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
	gap: 16px;
	align-items: end;
}

.tizo-lens-profile-dashboard__table-wrap {
	margin-top: 28px;
	overflow-x: auto;
}

.tizo-lens-profile-dashboard__table {
	width: 100%;
	border-collapse: collapse;
}

.tizo-lens-profile-dashboard__table th,
.tizo-lens-profile-dashboard__table td {
	padding: 14px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
	font-size: 0.94rem;
}

.tizo-lens-profile-dashboard__table th {
	color: var(--tizo-auth-text);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tizo-lens-lightbox-open {
	overflow: hidden;
}

.tizo-lens-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	padding: 24px;
	background: rgba(4, 4, 4, 0.92);
}

.tizo-lens-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.tizo-lens-lightbox__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	gap: 16px;
}

.tizo-lens-lightbox__image {
	display: block;
	max-width: min(1200px, 100%);
	max-height: calc(100vh - 140px);
	border-radius: 18px;
	object-fit: contain;
}

.tizo-lens-lightbox__caption {
	margin: 0;
	color: var(--tizo-auth-text);
	font-size: 0.95rem;
	text-align: center;
}

@media (max-width: 1100px) {
	.tizo-lens-profile-dashboard__gallery-grid,
	.tizo-lens-profile-dashboard__shoot-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.tizo-lens-profile-dashboard__layout {
		grid-template-columns: 1fr;
	}

	.tizo-lens-profile-dashboard__sidebar {
		position: static;
	}

	.tizo-lens-profile-dashboard__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tizo-lens-profile-dashboard__info-grid,
	.tizo-lens-profile-dashboard__stats-grid,
	.tizo-lens-profile-dashboard__payments-action {
		grid-template-columns: 1fr;
	}

	.tizo-lens-profile-dashboard__gallery-toolbar {
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 640px) {
	.tizo-lens-profile-dashboard__sidebar,
	.tizo-lens-profile-dashboard__panel {
		padding: 20px;
		border-radius: 18px;
	}

	.tizo-lens-profile-dashboard__nav {
		grid-template-columns: 1fr;
	}

	.tizo-lens-profile-dashboard__info-grid,
	.tizo-lens-profile-dashboard__stats-grid,
	.tizo-lens-profile-dashboard__gallery-grid,
	.tizo-lens-profile-dashboard__shoot-grid {
		grid-template-columns: 1fr;
	}

	.tizo-lens-profile-dashboard__form {
		padding: 20px;
	}

	.tizo-lens-profile-dashboard__form-actions {
		align-items: stretch;
	}

	.tizo-lens-profile-dashboard__primary-button {
		width: 100%;
	}

	.tizo-lens-lightbox {
		padding: 16px;
	}
}
