/* Treethemes EDD Single Product */

:root {
	--tt-edd-primary: #10b466;
	--tt-edd-primary-dark: #0d9a58;
	--tt-edd-cart: #c8eb47;
	--tt-edd-cart-hover: #b8db37;
	--tt-edd-blue: #1a8fe3;
	--tt-edd-blue-light: #e8f4fd;
	--tt-edd-orange: #f57c5c;
	--tt-edd-purple: #2e004b;
	--tt-edd-border: #e5e7eb;
	--tt-edd-text: #1f2937;
	--tt-edd-muted: #6b7280;
	--tt-edd-bg: #f4f9f7;
	--tt-edd-sticky-top: 24px;
	--tt-edd-sidebar-width: 480px;
}

.tt-edd-single {
	font-family: "DM Sans", sans-serif;
	color: var(--tt-edd-text);
}

.tt-edd-single__wrapper {
	background: #fff;
}

.tt-edd-single__hero-band {
	position: relative;
	isolation: isolate;
	padding-top: clamp(120px, 10rem, 160px);
	background-color: #fff;
	background-image: var(--tt-edd-hero-bg, url("../imgs/default-blog/hero-bg-gradient.png"));
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.tt-edd-single__hero-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.35) 45%,
		#ffffff 80%
	);
	pointer-events: none;
	z-index: 0;
}

.tt-edd-single__hero-band::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
	pointer-events: none;
	z-index: 0;
}

.tt-edd-single__hero {
	position: relative;
	z-index: 1;
	padding: 0;
}

.tt-edd-single__hero .container {
	position: relative;
	z-index: 1;
}

#content-area.tt-edd-single,
.tt-edd-single,
.tt-edd-single__wrapper,
.tt-edd-single .container,
.tt-edd-single__grid,
.tt-edd-single__main,
.tt-edd-single__sidebar {
	overflow: visible;
}

.tt-edd-single__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, var(--tt-edd-sidebar-width));
	gap: 40px;
	align-items: start;
	margin-top: 50px;
}

/* Header */
.tt-edd-header {
	margin-bottom: 0;
}

.tt-edd-header__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.tt-edd-header__intro {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tt-edd-header__title {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	color: #111827;
}

.tt-edd-preview-theme {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 22px;
	border: 2px solid #06021f;
	border-radius: 999px;
	background: #fff;
	color: #06021f !important;
	font-size: 15px;
	font-weight: 600 !important;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	flex-shrink: 0;
	align-self: flex-end;
	border-radius: 6px;
	letter-spacing: -0.01em;
	font-size: 16px !important;
}

.tt-edd-preview-theme:hover {
	background: #0d9a57;
	color: #fff !important;
	border-color: #0d9a57;
	border: 2px solid #0d9a57;
}

.tt-edd-preview-theme svg {
	flex-shrink: 0;
	rotate: -45Deg;
}

.tt-edd-header__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	flex-shrink: 0;
}

.tt-edd-all-access-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	text-align: right;
}

.tt-edd-all-access-action__status {
	margin: 0;
	color: #16a34a;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

.tt-edd-all-access-action__status.is-inactive {
	color: #b45309;
}

.tt-edd-all-access-action__download,
.tt-edd-all-access-action__renew {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 22px;
	border: 2px solid #e11d48;
	border-radius: 6px;
	border: 2px solid rgb(22, 163, 74);
	border-radius: 6px;
	background: rgb(22, 163, 74);
	color: #fff !important;
	font-size: 16px;
	font-weight: 600 !important;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tt-edd-all-access-action__download:hover,
.tt-edd-all-access-action__renew:hover{
	border: 2px solid #563be4;
	background: #563be4;
	
}

.tt-edd-all-access-action--card {
	align-items: stretch;
	width: 100%;
}

.tt-edd-all-access-action--card .tt-edd-all-access-action__status,
.tt-edd-all-access-action--card .tt-edd-all-access-action__download,
.tt-edd-all-access-action--card .tt-edd-all-access-action__renew {
	text-align: center;
}

.tt-edd-all-access-action--card .tt-edd-all-access-action__download,
.tt-edd-all-access-action--card .tt-edd-all-access-action__renew {
	width: 100%;
}

.tt-edd-preview-theme--media {
	align-self: auto;
}

.tt-edd-header__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.tt-edd-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	/* padding: 7px 14px; */
	border-radius: 999px;
	font-size: 18px;
	font-weight: 500;
	white-space: nowrap;
}

.tt-edd-badge svg,
.tt-edd-badge__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.tt-edd-badge--updated {
	/* background: #ecfdf3; */
	color: #047857;
	margin-left: -10px;
}

.tt-edd-rating-summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 15px;
	line-height: 1.2;
	color: #6b7280;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}

.tt-edd-rating-summary:hover,
.tt-edd-rating-summary:focus-visible {
	color: #374151;
}

.tt-edd-rating-summary__label {
	font-weight: 400;
}

.tt-edd-rating-summary__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: var(--tt-edd-primary);
}

.tt-edd-rating-summary__stars svg {
	width: 16px;
	height: 16px;
}

.tt-edd-rating-summary__score {
	font-weight: 400;
	color: #06021f;
}

.tt-edd-rating-summary__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 14px;
	height: 14px;
	/* padding: 0 7px; */
	border-radius: 4px;
	background: #553ae2;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	border-radius: 100px;
	position: relative;
	top: -9px;
	left: -8px;
}

.tt-edd-badge--sales {
	/* background: #f3f4f6; */
	color: #06021f;
	/* margin-left: -10px; */
}

/* Tabs */
.tt-edd-tabs {
	background: transparent;
}

.tt-edd-tabs__nav {
	margin: 0;
	padding: 0;
	background: transparent;
}

.tt-edd-tabs__nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #dcdcdc;
}

.tt-edd-tabs__nav li + li {
	margin-left: 4px;
}

.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link,
.tt-edd-tabs__link {
	display: block;
	padding: 10px 16px;
	border: 1px solid transparent;
	border-bottom: 0;
	margin: 0 0 -1px;
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: #777;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	cursor: pointer;
	border-radius: 0;
	appearance: none;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link:hover,
.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link:focus,
.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link:focus-visible,
.tt-edd-tabs__link:hover,
.tt-edd-tabs__link:focus,
.tt-edd-tabs__link:focus-visible {
	background: transparent !important;
	background-color: transparent !important;
	color: #444;
}

.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link.is-active,
.tt-edd-tabs__link.is-active {
	position: relative;
	z-index: 1;
	background: #fff !important;
	background-color: #fff !important;
	border-color: #dcdcdc;
	border-bottom: 1px solid #fff;
	color: #222;
	font-weight: 600;
}

.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link.is-active:hover,
.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link.is-active:focus,
.tt-edd-tabs__link.is-active:hover,
.tt-edd-tabs__link.is-active:focus {
	background: #fff !important;
	background-color: #fff !important;
	color: #222;
}

.tt-edd-tabs__link--reviews {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.tt-edd-tabs__link-label {
	font-weight: inherit;
}

.tt-edd-tabs__link-meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 400;
}

.tt-edd-tabs__link-stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	color: var(--tt-edd-primary);
}

.tt-edd-tabs__link-stars svg {
	width: 12px;
	height: 12px;
}

.tt-edd-tabs__link-score {
	color: #777;
	font-size: 13px;
}

.tt-edd-tabs__link.is-active .tt-edd-tabs__link-score {
	color: #666;
}

.tt-edd-tabs__link-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 3px;
	background: #0073aa;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.tt-edd-tabs__panels {
	padding: 24px;
	background: #fff;
	border: 1px solid #dcdcdc;
	border-top: 0;
}

.tt-edd-tabs__panel {
	padding-top: 0;
}

.tt-edd-tabs__panel[hidden] {
	display: none !important;
}

.tt-edd-tabs__content {
	font-size: 16px;
	line-height: 1.7;
	color: #374151;
}

.tt-edd-empty-state {
	color: var(--tt-edd-muted);
	font-size: 15px;
}

.tt-edd-support__intro {
	max-width: 720px;
	margin-bottom: 32px;
}

.tt-edd-support__title {
	margin: 0 0 12px;
	font-size: 22px !important;
	font-weight: 700;
	line-height: 1.35;
	color: #111827;
}

.tt-edd-support__intro p {
	margin: 0 0 20px;
}

.tt-edd-btn--support {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 22px;
	border: 1px solid #111827;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tt-edd-btn--support:hover {
	background: #fff;
	color: #111827;
}

.tt-edd-support__faqs-title {
	margin: 0 0 16px;
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

.tt-edd-faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tt-edd-faq {
	border: 1px solid var(--tt-edd-border);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.tt-edd-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	cursor: pointer;
	list-style: none;
}

.tt-edd-faq__question::-webkit-details-marker {
	display: none;
}

.tt-edd-faq__question::after {
	content: "+";
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 400;
	color: var(--tt-edd-muted);
}

.tt-edd-faq[open] .tt-edd-faq__question::after {
	content: "-";
}

.tt-edd-faq__answer {
	padding: 0 18px 16px;
	color: #4b5563;
}

.tt-edd-faq__answer p {
	margin: 0;
}

.tt-edd-changelog h2,
.tt-edd-changelog h3,
.tt-edd-changelog h4 {
	color: #111827;
	margin: 1.5em 0 0.75em;
}

.tt-edd-changelog > *:first-child {
	margin-top: 0;
}

.tt-edd-changelog pre {
	max-width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* Media */
.tt-edd-media {
	border: 1px solid var(--tt-edd-border);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	margin-bottom: 40px;
}

.tt-edd-media__toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 14px 18px;
	border-bottom: 1px solid var(--tt-edd-border);
	background: #fff;
}

.tt-edd-media__platform {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	flex-shrink: 0;
}

.tt-edd-media__platform svg {
	color: var(--tt-edd-primary);
	flex-shrink: 0;
}

.tt-edd-media__demo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--tt-edd-blue);
	color: #fff;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}

.tt-edd-media__demo:hover {
	background: #1570c4;
	color: #fff;
}

.tt-edd-media__preview {
	background: #111827;
	line-height: 0;
}

.tt-edd-media__preview-inner {
	position: relative;
}

.tt-edd-media__preview-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	line-height: normal;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.tt-edd-media__preview-inner:hover .tt-edd-media__preview-overlay,
.tt-edd-media__preview-inner:focus-within .tt-edd-media__preview-overlay {
	opacity: 1;
	pointer-events: auto;
}

.tt-edd-media__image {
	width: 100%;
	height: auto;
	display: block;
}

.tt-edd-media__placeholder {
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: 18px;
}

.tt-edd-media__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	border-top: 1px solid var(--tt-edd-border);
	background: #fff;
	flex-wrap: wrap;
}

.tt-edd-media__share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	width: auto;
	margin-left: auto;
}

.tt-edd-media__share-label {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.tt-edd-media__share-list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-edd-media__share-list a,
.tt-edd-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--tt-edd-border);
	background: #fff !important;
	color: #374151 !important;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.tt-edd-media__share-list a i {
	font-size: 14px;
	line-height: 1;
}

.tt-edd-media__share-list a:hover,
.tt-edd-share-btn:hover {
	border-color: var(--tt-edd-blue);
	color: var(--tt-edd-blue);
	background: var(--tt-edd-blue-light);
}

/* Product gallery */
.tt-edd-gallery {
	background: #111827;
}

.tt-edd-gallery__viewport {
	position: relative;
	overflow: hidden;
	transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: height;
}

.tt-edd-gallery__track {
	position: relative;
}

.tt-edd-gallery__slide {
	display: none;
	position: relative;
	line-height: 0;
}

.tt-edd-gallery__slide.is-active {
	display: block;
}

.tt-edd-gallery__image,
.tt-edd-gallery__video {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	background: #111827;
}

.tt-edd-gallery__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 20px;
	background: rgba(0, 0, 0, 0.78);
	line-height: 1.4;
}

.tt-edd-gallery__caption p {
	margin: 0;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tt-edd-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #111827;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: background 0.2s ease, transform 0.2s ease;
}

.tt-edd-gallery__nav:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.04);
}

.tt-edd-gallery__nav--prev {
	left: 16px;
}

.tt-edd-gallery__nav--next {
	right: 16px;
}

.tt-edd-gallery__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 18px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: 2;
}

.tt-edd-gallery__viewport:hover .tt-edd-gallery__overlay,
.tt-edd-gallery__viewport:focus-within .tt-edd-gallery__overlay,
.tt-edd-gallery.is-touch .tt-edd-gallery__overlay {
	opacity: 1;
}

.tt-edd-gallery__overlay-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 12px;
	pointer-events: auto;
}

.tt-edd-preview-theme--gallery {
	align-self: auto;
	border: 2px solid #fff;
}

.tt-edd-gallery__play-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	/* border: 2px solid #111827; */
	border-radius: 999px;
	background: #fff;
	color: #fff !important;
	font-size: 15px;
	font-weight: 500 !important;
	cursor: pointer;
	margin-left: auto;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border-radius: 6px;
	text-transform: unset !important;
	font-size: 16px !important;
}

.tt-edd-gallery__play-btn:hover {
	background: #111827;
	color: #fff;
	border-color: #111827;
}

.tt-edd-gallery__play-btn.is-hidden,
.tt-edd-gallery__play-btn[hidden] {
	display: none !important;
}

.tt-edd-gallery__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 18px;
	background: #fff;
	border-top: 1px solid var(--tt-edd-border);
}

.tt-edd-gallery__dot {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 999px;
	background: #d1d5db;
	cursor: pointer;
	padding: 0;
}

.tt-edd-gallery__dot.is-active {
	background: #111827;
}

.tt-edd-video-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.tt-edd-video-modal[hidden] {
	display: none !important;
}

.tt-edd-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
}

.tt-edd-video-modal__dialog {
	position: relative;
	width: min(960px, 100%);
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.tt-edd-video-modal__player {
	display: block;
	width: 100%;
	height: auto;
	max-height: 80vh;
	background: #000;
}

.tt-edd-video-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

body.tt-edd-video-modal-open {
	overflow: hidden;
}

@media (hover: none) {
	.tt-edd-gallery__overlay {
		opacity: 1;
	}
}

/* Product content */
.tt-edd-product-content {
	padding: 0;
}

.tt-edd-product-content > *:first-child {
	margin-top: 0;
}

.tt-edd-product-content h2,
.tt-edd-product-content h3,
.tt-edd-product-content h4 {
	color: #111827;
	margin: 1.5em 0 0.75em;
}

.tt-edd-product-content p {
	margin-bottom: 1em;
}

.tt-edd-product-content ul,
.tt-edd-product-content ol {
	margin: 0 0 1em 1.25em;
}

.tt-edd-product-content img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}

.tt-edd-product-content .wp-block-image {
	margin: 1.5em 0;
}

/* Sticky sidebar */
.tt-edd-single__sidebar {
	position: relative;
	align-self: start;
	min-width: 0;
	z-index: 20;
}

.tt-edd-purchase {
	border: 1px solid var(--tt-edd-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	pointer-events: auto;
	position: relative;
	z-index: 30;
	overflow: hidden;
}

body:not(.bb-video-popup-open):not(.tt-edd-video-modal-open) #smooth-wrapper,
body:not(.bb-video-popup-open):not(.tt-edd-video-modal-open) #smooth-content {
	pointer-events: auto !important;
}

body.single-download.tt-edd-native-scroll #smooth-wrapper,
body.single-download.tt-edd-native-scroll #smooth-content {
	overflow: visible !important;
	height: auto !important;
	transform: none !important;
	-webkit-transform: none !important;
	filter: none !important;
	will-change: auto !important;
	pointer-events: auto !important;
	touch-action: auto !important;
}

/* Cookie/consent layers must stay above product touch fixes and remain tappable. */
body.single-download #cookie-law-info-bar,
body.single-download #cookie-notice,
body.single-download .cky-consent-container,
body.single-download .cky-modal,
body.single-download #cmplz-cookiebanner-container,
body.single-download .cmplz-cookiebanner,
body.single-download .borlabs-cookie,
body.single-download #moove_gdpr_cookie_info_bar,
body.single-download .moove-gdpr-info-bar-container,
body.single-download .rcb-banner,
body.single-download .rcb-bar,
body.single-download .elementor-popup-modal {
	z-index: 2147483640 !important;
	pointer-events: auto !important;
	touch-action: manipulation;
}

body.single-download #cookie-law-info-bar *,
body.single-download #cookie-notice *,
body.single-download .cky-consent-container *,
body.single-download .cky-modal *,
body.single-download #cmplz-cookiebanner-container *,
body.single-download .cmplz-cookiebanner *,
body.single-download .borlabs-cookie *,
body.single-download #moove_gdpr_cookie_info_bar *,
body.single-download .moove-gdpr-info-bar-container *,
body.single-download .rcb-banner *,
body.single-download .rcb-bar *,
body.single-download .elementor-popup-modal * {
	pointer-events: auto !important;
}

/* Closed fullscreen video shell must not intercept taps on product pages. */
body.single-download .wcf--popup-video-wrapper {
	pointer-events: none !important;
}

body.single-download.bb-video-popup-open .wcf--popup-video-wrapper,
body.single-download.tt-edd-video-modal-open .wcf--popup-video-wrapper {
	pointer-events: auto !important;
}

.pin-spacer {
	pointer-events: none !important;
}

body > .tt-edd-purchase,
body > .tt-edd-purchase * {
	pointer-events: auto !important;
}

.pin-spacer .tt-edd-purchase,
.pin-spacer .tt-edd-purchase * {
	pointer-events: auto;
}

.pin-spacer .tt-edd-single__sidebar,
.pin-spacer .tt-edd-single__sidebar * {
	pointer-events: auto;
}

.tt-edd-tabs,
.tt-edd-tabs__nav,
.tt-edd-tabs__link,
.tt-edd-tabs__panels,
[data-tab-link],
.tt-edd-readmore-toggle {
	pointer-events: auto;
}

@media (min-width: 1025px) {
	body:not(.tt-edd-uses-gsap-pin) .tt-edd-purchase {
		position: sticky;
		top: var(--tt-edd-sticky-top, 24px);
	}

	body.tt-edd-uses-gsap-pin .tt-edd-single__sidebar {
		position: relative;
		top: auto;
	}

	.tt-edd-single__sidebar.is-pinned,
	.tt-edd-purchase.is-pinned {
		z-index: 25;
	}
}

.tt-edd-purchase__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	background: #fff;
	border-bottom: 1px solid var(--tt-edd-border);
}

.tt-edd-purchase__header-title {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	line-height: 1.2;
}

.tt-edd-purchase__header-price {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 10px;
	flex-shrink: 0;
}

.tt-edd-purchase__form {
	/* background: #fff; */
}

.tt-edd-purchase__was {
	font-size: 16px;
	color: #6b7280;
	text-decoration: line-through;
	font-weight: 500;
}

.tt-edd-purchase__now {
	font-size: 22px;
	font-weight: 700;
	color: var(--tt-edd-primary);
	line-height: 1;
}

.tt-edd-purchase__section {
	padding: 16px 20px;
	border-bottom: 1px solid var(--tt-edd-border);
	background: #fff;
}

.tt-edd-purchase__section--services {
	background: #fff;
}

.tt-edd-purchase__heading {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 14px;
	color: #111827;
}

.tt-edd-purchase__heading--services {
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1.3;
	margin-bottom: 12px;
	font-size: 18px !important;
	font-weight: 700 !important;
}

.tt-edd-purchase__heading--services::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #d1d5db;
}

.tt-edd-purchase__included {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--tt-edd-border);
}

.tt-edd-purchase__included--clean {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.tt-edd-purchase__included--box {
	margin-top: 16px;
	padding: 14px 16px;
	border: 1px solid #bfdbfe;
	border-radius: 6px;
	background: var(--tt-edd-blue-light);
}

.tt-edd-purchase__included-label {
	margin: 0 0 12px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
}

.tt-edd-purchase__included-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-edd-purchase__included-list li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	color: #374151;
}

.tt-edd-purchase__included-list svg {
	color: var(--tt-edd-primary);
	flex-shrink: 0;
}

.tt-edd-purchase__highlights {
	margin-top: 14px;
	padding-top: 13px;
	/* border-top: 1px solid var(--tt-edd-border); */
	padding-bottom: 10px;
	margin-left: 10px;
}

.tt-edd-purchase__highlights-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-edd-purchase__highlights-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	flex: 1 1 calc(15%);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--tt-edd-primary);
	white-space: normal;
}

.tt-edd-purchase__highlights-icon {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--tt-edd-primary);
}

.tt-edd-purchase__highlights-label {
	min-width: 0;
	color: #7d8086;
	text-transform: capitalize;
	line-height: 1em;
}

.tt-edd-license-list,
.tt-edd-addon-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tt-edd-license-option,
.tt-edd-addon-option {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 12px;
	cursor: pointer;
	padding: 14px 16px;
	border: 1px solid var(--tt-edd-border);
	border-radius: 10px;
	transition: border-color 0.2s, background 0.2s;
	background: #fff;
}

.tt-edd-license-item:last-child .tt-edd-license-option,
.tt-edd-addon-item:last-child .tt-edd-addon-option {
	padding-bottom: 14px;
}

.tt-edd-license-option.is-selected,
.tt-edd-addon-option:has(input:checked) {
	border-color: var(--tt-edd-primary);
	background: #f0fdf4;
}

.tt-edd-license-option input,
.tt-edd-addon-option input {
	margin: 0;
	accent-color: var(--tt-edd-primary);
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	align-self: center;
}

.tt-edd-license-option__body,
.tt-edd-addon-option__body {
	display: contents;
}

.tt-edd-license-option__main {
	display: flex;
	align-items: center;
	min-width: 0;
}

.tt-edd-license-option__title {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
	color: #111827;
}

.tt-edd-license-option__desc {
	font-size: 13px;
	line-height: 1.45;
	color: #9ca3af;
}

.tt-edd-license-option__name,
.tt-edd-addon-option__name{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
}

.tt-edd-addon-option__name a{
	font-size: 14px !important;
	line-height: 1.25 !important;
}
.tt-edd-addon-option__link {
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tt-edd-addon-option__link:hover,
.tt-edd-addon-option__link:focus-visible {
	color: #563be3;
	text-decoration: underline;
	outline: none;
}

.tt-edd-addon-option:has(input:checked) .tt-edd-addon-option__name {
	color: var(--tt-edd-primary);
	font-weight: 700;
}

.tt-edd-license-option__price,
.tt-edd-addon-option__price {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-shrink: 0;
	min-width: 108px;
	white-space: nowrap;
	text-align: right;
	line-height: 1.25;
}

.tt-edd-price-was {
	font-size: 14px;
	font-weight: 400;
	color: #6b7280;
	text-decoration: line-through;
	line-height: 1.25;
}

.tt-edd-price-now {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
	line-height: 1.25;
}

.tt-edd-addon-item {
	position: relative;
}

.tt-edd-addon-item.is-featured .tt-edd-addon-option {
	border-color: var(--tt-edd-border);
	border-width: 0;
}

.tt-edd-addon-badge {
	position: absolute;
	top: -10px;
	left: 14px;
	z-index: 1;
	background: var(--tt-edd-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 4px;
}

.tt-edd-info-tip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #e5e7eb;
	color: #6b7280;
	font-size: 11px;
	font-weight: 700;
	margin-left: 4px;
	cursor: help;
	vertical-align: middle;
}

/* Tooltip */
.tt-edd-tooltip {
	position: relative;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	margin-left: 0;
	flex-shrink: 0;
}

.tt-edd-tooltip__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #374151;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	font-style: normal;
	line-height: 1;
	cursor: help;
	flex-shrink: 0;
	appearance: none;
	-webkit-appearance: none;
}

.tt-edd-purchase .tt-edd-tooltip__trigger,
.tt-edd-license-option .tt-edd-tooltip__trigger,
.tt-edd-addon-option .tt-edd-tooltip__trigger {
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

.tt-edd-tooltip__trigger:hover,
.tt-edd-tooltip__trigger:focus,
.tt-edd-tooltip__trigger:focus-visible,
.tt-edd-tooltip__trigger:active {
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #111827;
}

.tt-edd-tooltip__trigger:focus-visible {
	outline: 2px solid rgba(55, 65, 81, 0.35);
	outline-offset: 2px;
}

.tt-edd-tooltip__icon {
	display: block;
	width: 16px;
	height: 16px;
}

.tt-edd-tooltip__content {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translateX(-50%);
	min-width: 180px;
	max-width: 280px;
	padding: 8px 10px;
	border-radius: 6px;
	background: #374151;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.45;
	text-align: left;
	white-space: normal;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.15s, visibility 0.15s;
	z-index: 20;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tt-edd-tooltip__content::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #374151;
}

.tt-edd-tooltip:hover .tt-edd-tooltip__content,
.tt-edd-tooltip:focus-within .tt-edd-tooltip__content {
	opacity: 1;
	visibility: visible;
}

.tt-edd-purchase__total {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 16px 20px;
	background: #fff;
	border-bottom: 1px solid var(--tt-edd-border);
	font-size: 15px;
	font-weight: 500;
	color: #111827;
}

.tt-edd-purchase__total-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.tt-edd-purchase__total-value {
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	min-width: 108px;
	text-align: right;
	line-height: 1.25;
}

.tt-edd-purchase .tt-edd-price-tax-note {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: 0;
	padding: 0;
	font-size: 11px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(0, 0, 0, 0.5);
}

.tt-edd-purchase .tt-edd-price-tax-note__icon {
	display: inline-flex;
	flex: 0 0 auto;
	margin-top: 1px;
	color: rgba(0, 0, 0, 0.45);
}

.tt-edd-purchase__actions {
	padding: 20px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tt-edd-purchase__actions .tt-edd-btn--cart {
	width: 100%;
	position: relative;
	color: #fff;
}

.tt-edd-purchase__actions-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tt-edd-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 16px 20px;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	pointer-events: auto;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s, opacity 0.2s;
}

.tt-edd-btn__label {
	display: inline-block;
	text-align: center;
}

.tt-edd-btn__main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.tt-edd-btn__icon {
	display: block;
	flex-shrink: 0;
	width: 18px;
	/* display: none; */
	position: absolute;
	top: 10px;
	left: 10px;
	opacity: 0.2;
}

.tt-edd-btn__subtext {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	opacity: 0.75;
	display: block;
	margin-top: 2px;
	text-align: center;
}

/* Stack icon + label + subtext vertically in the purchase actions */
.tt-edd-purchase__actions-row .tt-edd-btn {
	width: 100%;
	flex-direction: column;
	gap: 0;
	color: #fff;
	font-size: 19px;
	text-transform: unset;
	line-height: 17px;
	font-weight: 600;
	position: relative;
}

.tt-edd-purchase__actions-row .tt-edd-btn.tt-edd-btn--subscription-cta:hover{
	color: #fff !important;
	text-transform: unset;
	line-height: 17px !important;
	font-size: 19px !important;
	font-weight: 600 !important;
	position: relative;
	background: #422cb3;
}

.tt-edd-btn--cart {
	background: var(--tt-edd-cart);
	color: #111827;
}

.tt-edd-btn--cart:hover {
	background: #0d9a57;
	color: #fff;
}

.tt-edd-btn--cart.is-loading .tt-edd-btn__label {
	opacity: 0.6;
}

.tt-edd-btn--cart.is-loading .tt-edd-btn__loading {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(17, 24, 39, 0.2);
	border-top-color: #111827;
	border-radius: 50%;
	animation: tt-edd-spin 0.6s linear infinite;
}

.tt-edd-btn__loading {
	display: none;
}

@keyframes tt-edd-spin {
	to { transform: rotate(360deg); }
}

.tt-edd-purchase__or {
	font-size: 13px;
	font-weight: 800;
	color: #111827;
	text-align: center;
	white-space: nowrap;
	margin: 4px 0;
}

.tt-edd-purchase__trust {
	padding: 20px;
	border-top: 1px solid var(--tt-edd-border);
	text-align: center;
	background: #fff;
	border-radius: 0 0 8px 8px;
}

.tt-edd-purchase__alert {
	margin: 0 20px 16px;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 14px;
}

.tt-edd-purchase__alert.is-success {
	background: #ecfdf3;
	color: #047857;
}

.tt-edd-purchase__alert.is-error {
	background: #fef2f2;
	color: #b91c1c;
}

.tt-edd-purchase__trust-stars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 8px;
}

.tt-edd-trust-star {
	display: inline-flex;
	color: var(--tt-edd-primary);
	line-height: 0;
}

.tt-edd-trust-star svg {
	display: block;
}

.tt-edd-purchase__trust-text {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	line-height: 1.4;
	margin-bottom: 10px !important;
}

/* Subscription box */
.tt-edd-subscription-box {
	margin: 0;
	padding: 14px 16px;
	border: 1px solid #bfdbfe;
	border-radius: 6px;
	background: var(--tt-edd-blue-light);
}

.tt-edd-subscription-box__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	color: #111827;
}

.tt-edd-subscription-box__title {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.tt-edd-subscription-box__price {
	font-weight: 700;
	color: var(--tt-edd-orange);
	white-space: nowrap;
	flex-shrink: 0;
}

.tt-edd-btn--subscription-cta {
	background: #5e43ef;
	color: #fff;
	width: 100%;
	border: none;
	text-align: center;
	text-transform: none;
	letter-spacing: 0;
	font-size: 16px;
}

.tt-edd-btn--subscription-cta:hover {
	background: #4d36c7;
	color: #fff;
}

/* Service product inline reviews */
.tt-edd-service-reviews {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid #e5e7eb;
}

.tt-edd-service-reviews__title {
	margin: 0 0 24px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: #111827;
}

/* Reviews tab */
.tt-edd-reviews {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tt-edd-reviews__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tt-edd-review {
	padding: 20px 22px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #fff;
}

.tt-edd-review__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 12px;
}

.tt-edd-review__title-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	min-width: 0;
}

.tt-edd-review__title {
	margin: 0;
	font-size: 20px !important;
	font-weight: 700;
	color: #111827;
}

.tt-edd-review__badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 999px;
	background: #f3f4f6;
	font-size: 11px;
	font-weight: 600;
	color: #4b5563;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.tt-edd-review__byline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px;
	flex-shrink: 0;
	font-size: 14px;
	color: #6b7280;
	text-align: right;
}

.tt-edd-review__author strong {
	font-weight: 700;
	color: #111827;
}

.tt-edd-review__date {
	color: #6b7280;
}

.tt-edd-review__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	margin-bottom: 12px;
	color: var(--tt-edd-primary);
}

.tt-edd-reviews__plugin--form-only .edd-reviews-list,
.tt-edd-reviews__plugin--form-only .edd_reviews_breakdown {
	display: none;
}

.tt-edd-reviews__notice {
	padding: 14px 18px;
	border-radius: 12px;
	background: rgba(16, 180, 102, 0.1);
	border: 1px solid rgba(16, 180, 102, 0.35);
	color: #065f46;
}

.tt-edd-reviews__notice p {
	margin: 0;
}

.tt-edd-reviews__policy-notice {
	margin-top: 8px;
	padding: 14px 18px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.55;
}

.tt-edd-reviews__policy-notice p {
	margin: 0 !important;
}

.tt-edd-reviews__policy-notice p + p {
	margin-top: 8px;
}

.tt-edd-reviews__policy-notice a {
	color: #111827;
	font-weight: 600;
	text-decoration: underline;
}

.tt-edd-reviews__form {
	margin-top: 8px;
	padding-top: 28px;
	border-top: 1px solid #e5e7eb;
}

.tt-edd-review-form__title {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
}

.tt-edd-review-form__field {
	margin: 0 0 18px;
}

.tt-edd-review-form__field label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.tt-edd-review-form__field .required {
	color: #dc2626;
}

.tt-edd-review-form__field input[type="text"],
.tt-edd-review-form__field input[type="email"],
.tt-edd-review-form__field input[type="url"],
.tt-edd-review-form__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: #111827;
	background: #fff;
}

.tt-edd-review-form__field textarea {
	min-height: 140px;
	resize: vertical;
}

.tt-edd-review-form__submit {
	margin: 0;
}

.tt-edd-review-form__restricted {
	padding: 20px 22px;
	border: 1px dashed #d1d5db;
	border-radius: 16px;
	background: #f9fafb;
}

.tt-edd-review-form__restricted fieldset[disabled] {
	opacity: 0.72;
}

.tt-edd-review-form__restricted fieldset[disabled] .tt-edd-review-form__submit {
	display: none;
}

.tt-edd-review-form__restricted .edd-reviews-not-allowed {
	margin: 0 0 16px;
	color: #4b5563;
}

.tt-edd-review-form .edd-reviews-star-rating-container {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tt-edd-review-form .edd-reviews-star-rating {
	color: #10b466;
	cursor: pointer;
}

.tt-edd-review-form .edd-reviews-star-rating.dashicons-star-filled,
.tt-edd-review-form .edd-reviews-star-rating.dashicons-star-half {
	color: #10b466;
}

.tt-edd-review-form .edd-reviews-star-rating.dashicons-star-empty {
	color: #d1d5db;
}

.tt-edd-review__content {
	font-size: 15px;
	line-height: 1.7;
	color: #374151;
}

.tt-edd-review__content p:last-child {
	margin-bottom: 0;
}

.tt-edd-reviews__plugin .edd-reviews-area {
	margin-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.tt-edd-tabs__nav {
		position: relative;
		z-index: 5;
	}

	.tt-edd-tabs__link {
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	.tt-edd-readmore.is-collapsed {
		max-height: 260px;
		overflow: hidden;
		position: relative;
	}

	.tt-edd-readmore.is-collapsed::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 72px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 88%);
		pointer-events: none;
	}

	.tt-edd-readmore.is-expanded {
		max-height: none !important;
		overflow: visible !important;
	}

	.tt-edd-readmore.is-expanded::after {
		display: none !important;
	}

	.tt-edd-readmore-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 6;
		width: 100%;
		margin-top: 16px;
		padding: 12px 20px;
		border: 1px solid var(--tt-edd-border);
		border-radius: 8px;
		background: #fff;
		color: #111827;
		font-family: inherit;
		font-size: 15px;
		font-weight: 600;
		line-height: 1.2;
		cursor: pointer;
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
		pointer-events: auto;
		transition: border-color 0.2s ease, color 0.2s ease;
	}

	.tt-edd-readmore-toggle:hover,
	.tt-edd-readmore-toggle:focus-visible {
		border-color: var(--tt-edd-primary);
		color: var(--tt-edd-primary-dark);
		outline: none;
	}

	.tt-edd-single__grid {
		grid-template-columns: 1fr;
	}

	.tt-edd-header__top {
		flex-direction: column;
		align-items: stretch;
	}

	.tt-edd-header__actions {
		align-items: stretch;
	}

	.tt-edd-all-access-action {
		align-items: stretch;
	}

	.tt-edd-all-access-action__download,
	.tt-edd-all-access-action__renew {
		justify-content: center;
		width: 100%;
	}

	.tt-edd-preview-theme {
		align-self: stretch;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.tt-edd-header__badges {
		width: 100%;
	}
	.tt-edd-badge--updated,
	.tt-edd-gallery__overlay-actions .tt-edd-preview-theme, .tt-edd-media__platform{display: none;}
	.tt-edd-media__share{margin-left: 0;}
	
	.treethemes-edd-filter-label {
	    padding-left: 19px !important;
		font-size: 14px !important;
	}
	.treethemes-edd-filter-list{
        gap: 7px 15px !important;
    }
    .tt-edd-tabs__nav li + li {
	    margin-left: 1px;
	}
	.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link, .tt-edd-tabs__link{font-size: 13px;}
	.tt-edd-license-option,
	.tt-edd-addon-option {
		grid-template-columns: 18px minmax(0, 1fr);
		row-gap: 8px;
	}

	.tt-edd-license-option__price,
	.tt-edd-addon-option__price {
		grid-column: 2;
		justify-content: flex-start;
		min-width: 0;
		text-align: left;
	}

	.tt-edd-price-was {
		text-align: left;
	}

	.tt-edd-purchase__now {
		font-size: 20px;
	}

	.tt-edd-review__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.tt-edd-review__byline {
		justify-content: flex-start;
		text-align: left;
	}
	.tt-edd-single .tt-edd-tabs__nav button.tt-edd-tabs__link, .tt-edd-tabs__link{padding: 10px 11px;}
}

/* Support portal */
.tt-edd-support-portal__card {
	max-width: 560px;
	margin: 0 auto;
	padding: 40px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.tt-edd-support-portal__title {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
}

.tt-edd-support-portal__intro {
	margin: 0 0 24px;
	color: rgba(0, 0, 0, 0.65);
	line-height: 1.6;
}

.tt-edd-support-portal__notice {
	margin-bottom: 24px;
	padding: 16px 20px;
	border-radius: 8px;
}

.tt-edd-support-portal__notice--success {
	background: rgba(16, 180, 102, 0.1);
	border: 1px solid rgba(16, 180, 102, 0.35);
}

.tt-edd-support-portal__notice--error {
	background: rgba(220, 53, 69, 0.08);
	border: 1px solid rgba(220, 53, 69, 0.25);
}

.tt-edd-support-portal__form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

.tt-edd-support-portal__form input.widefat {
	width: 100%;
	margin-bottom: 16px;
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 6px;
}

.tt-edd-support-portal__note {
	margin-top: 24px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.55);
}

.tt-edd-support-portal--embedded {
	padding-top: 0;
	padding-bottom: 0;
}

.tt-edd-btn--support {
	display: inline-flex;
	align-items: center;
	margin-top: 12px;
	padding: 12px 20px;
	background: #10b466;
	color: #fff !important;
	border-radius: 6px;
	font-weight: 600 !important;
	text-decoration: none;
	text-transform: unset;
}

.tt-edd-btn--support:hover {
	background: #0d9a57;
	color: #fff !important;
}

/* Hide addon service sales when enabled in Store Settings */
body.tt-edd-hide-service-sales .treethemes-edd-product-card.download_category-addon-services .treethemes-edd-product-sales,
body.tt-edd-hide-service-sales.tt-edd-single--service .tt-edd-badge--sales {
	display: none !important;
}

/* Single product recommendations */
.tt-edd-single-recommendations-band {
	margin-top: 80px;
    padding: 80px 0 72px;
    background: #f7f9fe;
}

.tt-edd-single-recommendations__title{
	font-size: 22px !important;
	font-weight: 600 !important;
}

.tt-edd-single-recommendations {
	margin: 0;
	padding: 0;
	border: 0;
}

.tt-edd-single-recommendations__title {
	margin: 0 0 28px;
	font-size: clamp(24px, 2.5vw, 30px);
	font-weight: 700;
	line-height: 1.2;
	color: #111827;
}

.tt-edd-single-recommendations .treethemes-edd-products-grid {
	--tt-edd-cols: 3;
	--tt-edd-thumb-height: 400px;
}

/* Addon-services only: desktop + tablet = 2 cols, mobile = 1 col */
.tt-edd-single-recommendations--services .treethemes-edd-products-grid,
.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns],
.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="1"],
.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="2"],
.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="3"],
.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="4"] {
	--tt-edd-cols: 2;
	--tt-edd-gap: 50px;
	--tt-edd-thumb-height: 300px;
}

.tt-edd-single-recommendations .treethemes-edd-product-card {
	background: #fff;
}

@media (max-width: 1024px) {
	.tt-edd-single-recommendations .treethemes-edd-products-grid,
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="1"],
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="2"],
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="3"],
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="4"] {
		--tt-edd-cols: 2;
	}

	.tt-edd-single-recommendations--services .treethemes-edd-products-grid,
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns],
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="1"],
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="2"],
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="3"],
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="4"] {
		--tt-edd-cols: 2;
		--tt-edd-thumb-height: 300px;
	}
}

@media (max-width: 1024px) {
	body.single-download.tt-edd-native-scroll #smooth-wrapper,
	body.single-download.tt-edd-native-scroll #smooth-content,
	body.single-download:not(.bb-video-popup-open):not(.tt-edd-video-modal-open) #smooth-wrapper,
	body.single-download:not(.bb-video-popup-open):not(.tt-edd-video-modal-open) #smooth-content,
	body.single-download:not(.bb-video-popup-open):not(.tt-edd-video-modal-open) .tt-edd-single,
	body.single-download:not(.bb-video-popup-open):not(.tt-edd-video-modal-open) .elementor-location-header {
		pointer-events: auto !important;
		touch-action: manipulation;
	}

	body.single-download.tt-edd-native-scroll a,
	body.single-download.tt-edd-native-scroll button,
	body.single-download.tt-edd-native-scroll input,
	body.single-download.tt-edd-native-scroll select,
	body.single-download.tt-edd-native-scroll label,
	body.single-download.tt-edd-native-scroll summary,
	body.single-download.tt-edd-native-scroll [role="button"],
	body.single-download.tt-edd-native-scroll .tt-edd-btn,
	body.single-download.tt-edd-native-scroll .tt-edd-tabs__link,
	body.single-download.tt-edd-native-scroll .tt-edd-readmore-toggle,
	body.single-download.tt-edd-native-scroll .tt-edd-gallery__nav,
	body.single-download.tt-edd-native-scroll .tt-edd-gallery__dot,
	body.single-download.tt-edd-native-scroll .tt-edd-gallery__play-btn,
	body.single-download.tt-edd-native-scroll .treethemes-menu-hamburger,
	body.single-download.tt-edd-native-scroll .deep-menu-hamburger,
	body.single-download.tt-edd-native-scroll .wcf-menu-hamburger {
		cursor: pointer;
		touch-action: manipulation;
	}

	body.single-download .tt-edd-purchase,
	body.single-download .tt-edd-tabs__link,
	body.single-download .tt-edd-readmore-toggle,
	body.single-download .tt-edd-btn,
	body.single-download .tt-edd-gallery__nav,
	body.single-download .tt-edd-gallery__dot,
	body.single-download .treethemes-menu-hamburger,
	body.single-download .deep-menu-hamburger,
	body.single-download .wcf-menu-hamburger {
		touch-action: manipulation;
	}
}

@media (max-width: 767px) {
	.tt-edd-single__hero-band {
		padding-top: 120px;
	}

	.tt-edd-single__hero {
		padding-bottom: 1px;
	}
	.tt-edd-purchase__highlights-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 15px;
}
	.tt-edd-single__grid {
		margin-top: 32px;
	}

	.tt-edd-single-recommendations-band {
		margin-top: 48px;
		padding: 40px 0 56px;
	}

	.tt-edd-single-recommendations .treethemes-edd-products-grid,
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="1"],
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="2"],
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="3"],
	.tt-edd-single-recommendations .treethemes-edd-products-grid[data-columns="4"] {
		--tt-edd-cols: 1;
	}

	.tt-edd-single-recommendations--services .treethemes-edd-products-grid,
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="1"],
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="2"],
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="3"],
	.tt-edd-single-recommendations--services .treethemes-edd-products-grid[data-columns="4"] {
		--tt-edd-cols: 1;
	}
}

/* Page load fade — hide #smooth-wrapper until body.tt-edd-page-ready (see enqueue.class.php) */
body.single-download:not(.tt-edd-page-ready) #smooth-wrapper,
body.single-download:not(.tt-edd-page-ready) #content-area.tt-edd-single {
	opacity: 0;
	visibility: hidden;
}

body.single-download.tt-edd-page-ready #smooth-wrapper,
body.single-download.tt-edd-page-ready #content-area.tt-edd-single {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
	body.single-download #smooth-wrapper,
	body.single-download #content-area.tt-edd-single {
		opacity: 1 !important;
		visibility: visible !important;
		transition: none !important;
	}
}

.entry-content li{
	list-style: circle;
}
.entry-content h5{
	margin-bottom: 0.2em !important;
	margin-top: 0.7em !important;
}

/*
.tt-license-manage {
	max-width: 1180px;
	margin: 0 auto;
	padding: 8px 0 32px;
}
*/

.tt-license-manage__head {
	margin-bottom: 20px;
}

.tt-license-manage__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 28px;
	border: 1px solid rgba(17, 24, 39, 0.12);
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.tt-license-manage__back:hover {
	border-color: #563be3;
	background: #563be3;
	color: #fff !important;
}

.tt-license-card {
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 20px;
	background: #fff;
/* 	box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08); */
	overflow: hidden;
}

.tt-license-card__header {
	padding: 26px 28px 20px;
	border-bottom: 1px solid rgba(17, 24, 39, 0.08);
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.tt-license-card__title {
	margin: 0;
	color: #111827;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
}
.deep--page-details .blog__details_title{
	display: none;
}
.tt-license-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin-top: 14px;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.5;
}

.tt-license-card__meta code {
	padding: 2px 6px;
	border-radius: 6px;
	background: #f3f4f6;
	color: #111827;
}

.tt-license-card__table {
	display: block;
}

.tt-license-card__row {
	display: grid;
	grid-template-columns: minmax(220px, 1.6fr) 132px 120px 120px 170px 150px 170px;
	gap: 18px;
	align-items: center;
	padding: 18px 28px;
	border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.tt-license-card__table--sites .tt-license-card__row {
	grid-template-columns: minmax(0, 1fr) 160px;
}

.tt-license-card__row--head {
	border-top: 0;
	padding-top: 16px;
	padding-bottom: 16px;
	background: #f8fafc;
	color: #6b7280;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tt-license-card__cell {
	min-width: 0;
	color: #111827;
	font-size: 14px;
	line-height: 1.5;
}

.tt-license-card__item {
	font-weight: 600;
}

.tt-license-key {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tt-license-key__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(86, 59, 227, 0.16);
	border-radius: 999px;
	background: #f5f3ff;
}

.tt-license-key__toggle:hover {
	background: #ebe5ff;
}

.tt-license-key__toggle img {
	width: 16px;
	height: 16px;
}

.tt-license-key__input {
	width: 100%;
	max-width: 220px;
	padding: 10px 12px;
	border: 1px solid rgba(17, 24, 39, 0.1);
	border-radius: 10px;
	background: #f9fafb;
	color: #111827;
	font-size: 13px;
}

.tt-license-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.tt-license-badge--active {
	background: #eafbf2;
	color: #169b5f;
}

.tt-license-badge--inactive,
.tt-license-badge--disabled {
	background: #fff4e5;
	color: #b45309;
}

.tt-license-badge--expired {
	background: #fef2f2;
	color: #dc2626;
}

.tt-license-activations {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
}

.tt-license-expiry {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tt-license-link {
	color: #563be3;
	font-weight: 600;
	text-decoration: none;
}

.tt-license-link:hover {
	color: #16b766;
}

.tt-license-link--danger:hover {
	color: #dc2626;
}

.tt-license-muted {
	color: #6b7280;
}

.tt-license-site-form {
	margin-top: 24px;
	padding: 24px 28px;
	border: 1px solid rgba(17, 24, 39, 0.08);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.tt-license-site-form__label {
	display: block;
	margin-bottom: 14px;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
}

.tt-license-site-form__row {
	display: flex;
	gap: 12px;
	align-items: center;
}

.tt-license-site-form__input {
	flex: 1 1 auto;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid rgba(17, 24, 39, 0.1);
	border-radius: 12px;
	background: #fff;
}

.tt-license-site-form__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 0;
	border-radius: 12px;
	background: #563be3;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.tt-license-site-form__button:hover {
	background: #16b766;
}

@media (max-width: 1024px) {
	.tt-license-card__row,
	.tt-license-card__table--sites .tt-license-card__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tt-license-card__row--head {
		display: none;
	}

	.tt-license-card__cell {
		position: relative;
		padding-top: 18px;
	}

	.tt-license-card__row .tt-license-card__cell::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		color: #6b7280;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}

	.tt-license-card__row .tt-license-card__cell:nth-child(1)::before { content: 'Item'; }
	.tt-license-card__row .tt-license-card__cell:nth-child(2)::before { content: 'Key'; }
	.tt-license-card__row .tt-license-card__cell:nth-child(3)::before { content: 'Status'; }
	.tt-license-card__row .tt-license-card__cell:nth-child(4)::before { content: 'Activations'; }
	.tt-license-card__row .tt-license-card__cell:nth-child(5)::before { content: 'Expiration'; }
	.tt-license-card__row .tt-license-card__cell:nth-child(6)::before { content: 'Manage Sites'; }
	.tt-license-card__row .tt-license-card__cell:nth-child(7)::before { content: 'Upgrades'; }

	.tt-license-card__table--sites .tt-license-card__row .tt-license-card__cell:nth-child(1)::before { content: 'Activation ID'; }
	.tt-license-card__table--sites .tt-license-card__row .tt-license-card__cell:nth-child(2)::before { content: 'Actions'; }
}

@media (max-width: 767px) {
	.tt-license-card__header,
	.tt-license-card__row,
	.tt-license-site-form {
		padding-left: 18px;
		padding-right: 18px;
	}

	.tt-license-card__title {
		font-size: 24px;
	}

	.tt-license-card__row,
	.tt-license-card__table--sites .tt-license-card__row,
	.tt-license-site-form__row {
		grid-template-columns: 1fr;
	}
}

.tt-edd-all-access-action__status {margin-bottom: 5px !important;}
body .tt-edd-product-content img {
    width: 100% !important;
    max-width: 100% !important;
}