.tgad-dashboard-template,
.tgad-access-wrap,
.tgad-full-access-template,
.tgad-access-template {
	width: 100%;
	min-width: 0;
}

.tgad-access-wrap {
	--tgad-orange: #e75925;
	--tgad-text: #343848;
	--tgad-muted: #697080;
	--tgad-line: #e9edf2;
	--tgad-soft: #f7f8fa;
	color: var(--tgad-text);
}

.tgad-welcome {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	gap: 28px;
	align-items: stretch;
	margin-bottom: 32px;
}

.tgad-welcome__content,
.tgad-membership-summary {
	border: 1px solid var(--tgad-line);
	border-radius: 22px;
	padding: clamp(24px, 3vw, 38px);
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.tgad-welcome__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tgad-eyebrow,
.tgad-card__badge,
.tgad-membership-summary__label {
	display: inline-flex;
	width: fit-content;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--tgad-orange);
}

.tgad-welcome h2,
.tgad-access-header h2 {
	font-size: clamp(27px, 3vw, 42px);
	line-height: 1.12;
	letter-spacing: -0.035em;
	margin: 8px 0 12px;
	font-weight: 800;
}

.tgad-welcome p,
.tgad-access-header p,
.tgad-card p,
.tgad-empty p {
	color: var(--tgad-muted);
	line-height: 1.6;
}

.tgad-membership-summary {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tgad-membership-summary strong {
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 1.2;
}

.tgad-summary-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
	padding-top: 18px;
}


.tgad-purchased-courses {
	margin-top: 32px;
}

.tgad-access-header {
	max-width: 900px;
	margin: 0 0 28px;
}

.tgad-access-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.tgad-card {
	display: flex;
	flex-direction: column;
	min-height: 230px;
	padding: 26px;
	background: #fff;
	border: 1px solid var(--tgad-line);
	border-radius: 22px;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tgad-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
	border-color: rgba(231, 89, 37, 0.28);
}

.tgad-card__badge {
	padding: 6px 11px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: rgba(231, 89, 37, 0.10);
}

.tgad-card h3 {
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
	font-weight: 800;
}

.tgad-card p {
	font-size: 15px;
	margin: 0 0 22px;
}

.tgad-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 42px;
	margin-top: auto;
	padding: 10px 18px;
	border: 1px solid var(--tgad-orange);
	border-radius: 999px;
	background: var(--tgad-orange);
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none !important;
}

.tgad-button:hover,
.tgad-button:focus {
	filter: brightness(0.96);
	color: #fff !important;
}

.tgad-button--secondary {
	background: transparent;
	color: var(--tgad-orange) !important;
}

.tgad-button--secondary:hover,
.tgad-button--secondary:focus {
	background: rgba(231, 89, 37, 0.08);
	color: var(--tgad-orange) !important;
}

.tgad-empty {
	max-width: 760px;
	padding: 28px;
	background: var(--tgad-soft);
	border: 1px dashed var(--tgad-line);
	border-radius: 22px;
}

.tgad-empty h3 {
	margin: 0 0 8px;
	font-size: 22px;
}

.tgad-empty p {
	margin: 0;
}

@media (max-width: 1024px) {
	.tgad-access-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 780px) {
	.tgad-welcome {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.tgad-access-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tgad-card,
	.tgad-welcome__content,
	.tgad-membership-summary {
		padding: 22px;
		border-radius: 18px;
		min-height: auto;
	}
}

/* TennisGate My Account navigation ----------------------------------------- */
body.tgad-account-nav-style {
	--tgad-nav-accent: #e75925;
	--tgad-nav-text: #343848;
	--tgad-nav-muted: #697080;
	--tgad-nav-line: #e9edf2;
	--tgad-nav-soft: #f7f8fa;
	--tgad-nav-radius: 20px;
	--tgad-nav-item-radius: 13px;
	--tgad-nav-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation {
	box-sizing: border-box;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--tgad-nav-line);
	border-radius: var(--tgad-nav-radius);
	box-shadow: var(--tgad-nav-shadow);
	overflow: visible;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation li {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	list-style: none;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation li::before,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li::after {
	content: none !important;
	display: none !important;
}

/* Reset endpoint icons supplied by Astra, WooCommerce or other account-menu CSS.
 * The plugin adds its own icons back only when the dedicated icon option is enabled. */
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a::before,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a::after {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	background: none !important;
	-webkit-mask-image: none !important;
	mask-image: none !important;
}

/* Hide icon elements injected into account links by a theme or endpoint plugin. */
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a > i,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a > svg,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a > .icon,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a > .ast-icon,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a > [class*='icon' i] {
	display: none !important;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	box-sizing: border-box;
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	color: var(--tgad-nav-text) !important;
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--tgad-nav-item-radius);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none !important;
	box-shadow: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation li:not(.is-active) > a:hover,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li:not(.is-active) > a:focus-visible {
	color: var(--tgad-nav-accent) !important;
	background: var(--tgad-nav-soft);
	border-color: rgba(231, 89, 37, 0.12);
	transform: translateX(2px);
	outline: 0;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation li.is-active > a,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li.current-menu-item > a {
	color: var(--tgad-nav-accent) !important;
	background: var(--tgad-nav-soft);
	border-color: rgba(231, 89, 37, 0.12);
	box-shadow: none;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation li.is-active > a:hover,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li.is-active > a:focus-visible,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li.current-menu-item > a:hover,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation li.current-menu-item > a:focus-visible {
	color: var(--tgad-nav-accent) !important;
	background: var(--tgad-nav-soft);
	border-color: rgba(231, 89, 37, 0.2);
	filter: none;
	outline: 3px solid rgba(231, 89, 37, 0.12);
	outline-offset: 2px;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation-link--customer-logout {
	margin-top: 8px !important;
	padding-top: 8px !important;
	border-top: 1px solid var(--tgad-nav-line) !important;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation-link--customer-logout > a {
	color: var(--tgad-nav-muted) !important;
}

body.tgad-account-nav-style .woocommerce-MyAccount-navigation-link--customer-logout > a:hover,
body.tgad-account-nav-style .woocommerce-MyAccount-navigation-link--customer-logout > a:focus-visible {
	color: var(--tgad-nav-accent) !important;
}

/* Automatic 24px / 2px-stroke endpoint icons. */
body.tgad-account-nav-style.tgad-account-nav-icons .woocommerce-MyAccount-navigation li > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3C/svg%3E");
	content: "" !important;
	display: block !important;
	flex: 0 0 22px;
	width: 22px !important;
	height: 22px !important;
	margin: 0 !important;
	background-color: currentColor !important;
	-webkit-mask-image: var(--tgad-account-icon) !important;
	mask-image: var(--tgad-account-icon) !important;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--dashboard > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--orders > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 7h12l1 14H5L6 7Z'/%3E%3Cpath d='M9 7V5a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--downloads > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3Cpath d='M5 21h14'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--edit-address > a::before,
body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--addresses > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--payment-methods > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M7 15h3'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--edit-account > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--customer-logout > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17l5-5-5-5'/%3E%3Cpath d='M15 12H3'/%3E%3Cpath d='M14 3h5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--subscriptions > a::before,
body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--subscription > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7h-5V2'/%3E%3Cpath d='M4 17h5v5'/%3E%3Cpath d='M5.1 8a8 8 0 0 1 13.7-2L20 7'/%3E%3Cpath d='M18.9 16a8 8 0 0 1-13.7 2L4 17'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--teams > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Ccircle cx='17' cy='10' r='2.5'/%3E%3Cpath d='M3 21a6 6 0 0 1 12 0'/%3E%3Cpath d='M14 16a5 5 0 0 1 7 5'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--my-playlists > a::before,
body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--playlists > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h10'/%3E%3Cpath d='M4 12h7'/%3E%3Cpath d='M4 18h7'/%3E%3Cpath d='m15 13 6 4-6 4v-8Z'/%3E%3C/svg%3E");
}

body.tgad-account-nav-icons .woocommerce-MyAccount-navigation-link--tg-access > a::before,
body.tgad-account-nav-icons [class*='woocommerce-MyAccount-navigation-link--member'] > a::before {
	--tgad-account-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4 7v5c0 5 3.5 8 8 9 4.5-1 8-4 8-9V7l-8-4Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

.tgad-account-nav-toggle {
	display: none;
}

/* Older Playlist/Collections and theme builds can inject a second, full-width
 * mobile sidebar button on WooCommerce account pages. The account dashboard
 * now owns mobile navigation, so those legacy controls are suppressed here. */
@media (max-width: 768px) {
	body.tgad-account-nav-style .tgad-suppressed-legacy-sidebar-toggle,
	body.tgad-account-nav-style .tg-playlist-sidebar-toggle,
	body.tgad-account-nav-style .tg-playlists-sidebar-toggle,
	body.tgad-account-nav-style .tg-collection-sidebar-toggle,
	body.tgad-account-nav-style .tg-collections-sidebar-toggle,
	body.tgad-account-nav-style .sesa-playlist-sidebar-toggle,
	body.tgad-account-nav-style .sesa-collections-sidebar-toggle,
	body.tgad-account-nav-style .tg-mobile-sidebar-toggle,
	body.tgad-account-nav-style [class*="playlist"][class*="sidebar"][class*="toggle"],
	body.tgad-account-nav-style [class*="collection"][class*="sidebar"][class*="toggle"],
	body.tgad-account-nav-style [id*="playlist"][id*="sidebar"][id*="toggle"],
	body.tgad-account-nav-style [id*="collection"][id*="sidebar"][id*="toggle"] {
		display: none !important;
	}
}

@media (min-width: 769px) {
	body.tgad-account-nav-style .woocommerce-MyAccount-navigation {
		position: sticky;
		top: 112px;
		align-self: flex-start;
	}
}

@media (max-width: 768px) {
	body.tgad-account-nav-style .woocommerce-MyAccount-navigation {
		width: 100% !important;
		margin: 0 0 24px !important;
		padding: 8px;
		border-radius: 18px;
		float: none !important;
	}

	body.tgad-account-nav-mobile .woocommerce-MyAccount-navigation.tgad-nav-enhanced .tgad-account-nav-toggle {
		display: flex;
		align-items: center;
		gap: 12px;
		box-sizing: border-box;
		width: 100%;
		min-height: 58px;
		padding: 9px 12px;
		color: var(--tgad-nav-text);
		background: #fff;
		border: 0;
		border-radius: 12px;
		font: inherit;
		text-align: left;
		cursor: pointer;
	}

	body.tgad-account-nav-mobile .woocommerce-MyAccount-navigation.tgad-nav-enhanced .tgad-account-nav-toggle:focus-visible {
		outline: 3px solid rgba(231, 89, 37, 0.18);
		outline-offset: 2px;
	}

	.tgad-account-nav-toggle__menu-icon {
		position: relative;
		flex: 0 0 38px;
		width: 38px;
		height: 38px;
		border-radius: 11px;
		background: rgba(231, 89, 37, 0.10);
	}

	/* One precisely positioned stroke plus two shadows keeps all three burger
	 * lines on the same x-axis in Safari, Chrome and Elementor preview. */
	.tgad-account-nav-toggle__menu-icon::before {
		content: "";
		position: absolute;
		top: 11px;
		left: 10px;
		width: 18px;
		height: 2px;
		margin: 0;
		background: var(--tgad-nav-accent);
		border-radius: 999px;
		box-shadow:
			0 7px 0 var(--tgad-nav-accent),
			0 14px 0 var(--tgad-nav-accent);
		transform: none;
	}

	.tgad-account-nav-toggle__menu-icon::after {
		content: none !important;
		display: none !important;
	}

	.tgad-account-nav-toggle__copy {
		display: grid;
		gap: 2px;
		min-width: 0;
	}

	.tgad-account-nav-toggle__eyebrow {
		color: var(--tgad-nav-accent);
		font-size: 10px;
		font-weight: 800;
		letter-spacing: 0.07em;
		text-transform: uppercase;
	}

	.tgad-account-nav-toggle__current {
		overflow: hidden;
		font-size: 15px;
		font-weight: 800;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.tgad-account-nav-toggle__chevron {
		width: 9px;
		height: 9px;
		margin-left: auto;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 180ms ease;
	}

	body.tgad-account-nav-mobile .woocommerce-MyAccount-navigation.tgad-nav-enhanced.is-open .tgad-account-nav-toggle__chevron {
		transform: rotate(225deg) translate(-2px, -2px);
	}

	body.tgad-account-nav-mobile .woocommerce-MyAccount-navigation.tgad-nav-enhanced ul {
		display: none;
		margin-top: 6px;
		padding-top: 6px;
		border-top: 1px solid var(--tgad-nav-line);
	}

	body.tgad-account-nav-mobile .woocommerce-MyAccount-navigation.tgad-nav-enhanced.is-open ul {
		display: flex;
		animation: tgad-nav-reveal 180ms ease both;
	}

	body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a {
		min-height: 48px;
	}

	body.tgad-account-nav-style .woocommerce-MyAccount-content {
		width: 100% !important;
		float: none !important;
	}
}

@keyframes tgad-nav-reveal {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.tgad-account-nav-style .woocommerce-MyAccount-navigation li > a,
	.tgad-account-nav-toggle__chevron {
		transition: none;
	}

	body.tgad-account-nav-mobile .woocommerce-MyAccount-navigation.tgad-nav-enhanced.is-open ul {
		animation: none;
	}
}

/* Membership lifecycle and conversion offer ------------------------------- */
.tgad-lifecycle-card,
.tgad-conversion-offer {
	--tgad-orange: #e75925;
	--tgad-text: #343848;
	--tgad-muted: #697080;
	--tgad-line: #e9edf2;
	width: 100%;
	box-sizing: border-box;
	margin: 24px 0 32px;
	padding: clamp(24px, 3vw, 36px);
	background: #fff;
	border: 1px solid var(--tgad-line);
	border-radius: 22px;
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
	color: var(--tgad-text);
}

.tgad-lifecycle-card__header h3,
.tgad-conversion-offer h3 {
	margin: 10px 0 12px;
	font-size: clamp(24px, 2.5vw, 34px);
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 800;
}

.tgad-lifecycle-card__facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 24px 0 0;
}

.tgad-lifecycle-card__facts > div {
	min-width: 0;
	padding: 16px;
	background: #f7f8fa;
	border: 1px solid var(--tgad-line);
	border-radius: 14px;
}

.tgad-lifecycle-card__facts dt {
	margin: 0 0 5px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: var(--tgad-muted);
}

.tgad-lifecycle-card__facts dd {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--tgad-text);
}

.tgad-conversion-offer {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.75fr);
	gap: 26px;
	align-items: center;
	border-color: rgba(231, 89, 37, 0.22);
	background: linear-gradient(135deg, #fff 0%, #fff 58%, rgba(231, 89, 37, 0.055) 100%);
}

.tgad-conversion-offer__copy p {
	max-width: 720px;
	margin: 0;
	color: var(--tgad-muted);
	font-size: 16px;
	line-height: 1.65;
}

.tgad-conversion-offer__copy .tgad-conversion-offer__expiry {
	margin-top: 14px;
	font-size: 14px;
	line-height: 1.5;
}

.tgad-conversion-offer__expiry strong {
	color: var(--tgad-text);
}

.tgad-coupon-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	background: #f7f8fa;
	border: 1px dashed rgba(231, 89, 37, 0.45);
	border-radius: 15px;
}

.tgad-coupon-box__label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: var(--tgad-muted);
}

.tgad-coupon-box__row {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.tgad-coupon-code {
	display: block;
	min-width: 0;
	flex: 1 1 auto;
	padding: 11px 14px;
	background: #fff;
	border: 1px solid var(--tgad-line);
	border-radius: 10px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--tgad-text);
	word-break: break-all;
}

.tgad-copy-coupon {
	flex: 0 0 auto;
	min-height: 42px;
	padding: 9px 15px;
	border: 1px solid var(--tgad-orange);
	border-radius: 999px;
	background: #fff;
	color: var(--tgad-orange);
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.tgad-copy-coupon:hover,
.tgad-copy-coupon:focus-visible,
.tgad-copy-coupon.is-copied {
	background: var(--tgad-orange);
	color: #fff;
}

.tgad-copy-coupon:active {
	transform: scale(0.98);
}

.tgad-conversion-offer > .tgad-button {
	grid-column: 2;
	justify-self: start;
}

.tgad-conversion-template {
	width: 100%;
	margin: 24px 0 32px;
}

@media (max-width: 980px) {
	.tgad-lifecycle-card__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tgad-conversion-offer {
		grid-template-columns: 1fr;
	}

	.tgad-conversion-offer > .tgad-button {
		grid-column: auto;
	}
}

@media (max-width: 600px) {
	.tgad-lifecycle-card,
	.tgad-conversion-offer {
		padding: 22px;
		border-radius: 18px;
	}

	.tgad-lifecycle-card__facts {
		grid-template-columns: 1fr;
	}

	.tgad-coupon-box__row {
		align-items: stretch;
		flex-direction: column;
	}

	.tgad-copy-coupon,
	.tgad-conversion-offer > .tgad-button {
		width: 100%;
	}
}

.tgad-conversion-offer__auto-note {
	margin: -4px 0 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
	color: #4b5563;
}


/* My Membership term summary --------------------------------------------- */
.tgad-membership-term-card {
	margin-top: 0;
}

.tgad-membership-term-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.tgad-membership-term-card__actions .tgad-button {
	margin-top: 0;
}


/* TennisGate WooCommerce login -------------------------------------------- */
body.tgad-account-login-style {
	--tgad-login-accent: #e75925;
	--tgad-login-text: #343848;
	--tgad-login-muted: #697080;
	--tgad-login-line: #cfd6df;
	--tgad-login-line-soft: #e5e9ef;
	--tgad-login-surface: #ffffff;
	--tgad-login-soft: #f7f8fa;
	--tgad-login-radius: 20px;
	--tgad-login-field-radius: 12px;
}

body.tgad-account-login-style .woocommerce {
	box-sizing: border-box;
	width: 100%;
	max-width: 760px;
	margin: 0 auto 0 0 !important;
	padding: 36px !important;
	color: var(--tgad-login-text);
	text-align: left !important;
	background: var(--tgad-login-surface);
	border: 1px solid var(--tgad-login-line-soft);
	border-radius: var(--tgad-login-radius);
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

body.tgad-account-login-style .woocommerce > h2,
body.tgad-account-login-style .woocommerce .u-column1 > h2,
body.tgad-account-login-style .woocommerce .u-column2 > h2,
body.tgad-account-login-style .woocommerce-account-fields + h2 {
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 24px !important;
	padding: 0;
	color: var(--tgad-login-text);
	text-align: left !important;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login,
body.tgad-account-login-style .woocommerce form.login {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--tgad-login-text);
	text-align: left !important;
	background: transparent;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login .form-row,
body.tgad-account-login-style .woocommerce form.login .form-row {
	margin: 0 0 20px;
	padding: 0;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login label,
body.tgad-account-login-style .woocommerce form.login label {
	color: var(--tgad-login-text);
	font-weight: 700;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login .form-row > label,
body.tgad-account-login-style .woocommerce form.login .form-row > label {
	display: block;
	margin: 0 0 8px;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login input.input-text,
body.tgad-account-login-style .woocommerce form.login input.input-text,
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='text'],
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='email'],
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='password'],
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='number'],
body.tgad-account-login-style .woocommerce form.login input[type='text'],
body.tgad-account-login-style .woocommerce form.login input[type='email'],
body.tgad-account-login-style .woocommerce form.login input[type='password'],
body.tgad-account-login-style .woocommerce form.login input[type='number'] {
	box-sizing: border-box;
	min-height: 56px;
	padding: 13px 16px !important;
	color: var(--tgad-login-text) !important;
	background: #fff !important;
	border: 1.5px solid var(--tgad-login-line) !important;
	border-radius: var(--tgad-login-field-radius) !important;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
	opacity: 1 !important;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login input::placeholder,
body.tgad-account-login-style .woocommerce form.login input::placeholder {
	color: #747c8b !important;
	opacity: 1 !important;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login input.input-text:focus,
body.tgad-account-login-style .woocommerce form.login input.input-text:focus,
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='text']:focus,
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='email']:focus,
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='password']:focus,
body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='number']:focus,
body.tgad-account-login-style .woocommerce form.login input[type='text']:focus,
body.tgad-account-login-style .woocommerce form.login input[type='email']:focus,
body.tgad-account-login-style .woocommerce form.login input[type='password']:focus,
body.tgad-account-login-style .woocommerce form.login input[type='number']:focus {
	background: #fff !important;
	border-color: var(--tgad-login-accent) !important;
	box-shadow: 0 0 0 3px rgba(231, 89, 37, 0.12) !important;
	outline: 0 !important;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login .show-password-input,
body.tgad-account-login-style .woocommerce form.login .show-password-input {
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login .woocommerce-form-login__rememberme,
body.tgad-account-login-style .woocommerce form.login .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 2px 0 8px;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login input[type='checkbox'],
body.tgad-account-login-style .woocommerce form.login input[type='checkbox'] {
	width: 20px;
	height: 20px;
	margin: 0;
	accent-color: var(--tgad-login-accent);
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login button[type='submit'],
body.tgad-account-login-style .woocommerce form.login button[type='submit'],
body.tgad-account-login-style .woocommerce form.woocommerce-form-login .woocommerce-button,
body.tgad-account-login-style .woocommerce form.login .woocommerce-button {
	min-height: 50px;
	margin-top: 8px;
	border-radius: 999px !important;
}

body.tgad-account-login-style .woocommerce .woocommerce-LostPassword,
body.tgad-account-login-style .woocommerce .lost_password {
	margin: 20px 0 0 !important;
	text-align: left !important;
}

body.tgad-account-login-style .woocommerce .woocommerce-LostPassword a,
body.tgad-account-login-style .woocommerce .lost_password a {
	color: var(--tgad-login-accent);
	font-weight: 600;
}

/* Login Lockdown PRO and other captcha fields remain visually distinct. */
body.tgad-account-login-style .woocommerce form.woocommerce-form-login [class*='captcha' i],
body.tgad-account-login-style .woocommerce form.woocommerce-form-login [id*='captcha' i],
body.tgad-account-login-style .woocommerce form.login [class*='captcha' i],
body.tgad-account-login-style .woocommerce form.login [id*='captcha' i] {
	color: var(--tgad-login-text) !important;
	opacity: 1 !important;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login [class*='captcha' i] input,
body.tgad-account-login-style .woocommerce form.woocommerce-form-login [id*='captcha' i] input,
body.tgad-account-login-style .woocommerce form.login [class*='captcha' i] input,
body.tgad-account-login-style .woocommerce form.login [id*='captcha' i] input {
	min-width: 120px;
	min-height: 52px;
	margin-inline-start: 18px !important;
	vertical-align: middle;
	color: var(--tgad-login-text) !important;
	background: var(--tgad-login-soft) !important;
	border: 1.5px solid var(--tgad-login-line) !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	opacity: 1 !important;
}

body.tgad-account-login-style .woocommerce form.woocommerce-form-login img[class*='captcha' i],
body.tgad-account-login-style .woocommerce form.woocommerce-form-login img[id*='captcha' i],
body.tgad-account-login-style .woocommerce form.login img[class*='captcha' i],
body.tgad-account-login-style .woocommerce form.login img[id*='captcha' i] {
	filter: contrast(1.35) brightness(0.94);
	opacity: 1 !important;
}

@media (max-width: 680px) {
	body.tgad-account-login-style .woocommerce form.woocommerce-form-login [class*='captcha' i] input,
	body.tgad-account-login-style .woocommerce form.woocommerce-form-login [id*='captcha' i] input,
	body.tgad-account-login-style .woocommerce form.login [class*='captcha' i] input,
	body.tgad-account-login-style .woocommerce form.login [id*='captcha' i] input {
		display: block;
		margin: 12px 0 0 !important;
	}

	body.tgad-account-login-style .woocommerce {
		padding: 24px !important;
		border-radius: 18px !important;
	}
}
