/**
 * Main CSS.
 *
 * @package wp-theme-boilerplate
 * @author Store Boost Kit <storeboostkit@gmail.com>
 * @version 1.0
 */

/** 
 * ------------------------------
 *  Header 
 * ------------------------------
*/
/* .home .header-wrapper {
  position: absolute;
  width: 100%;
  z-index: 9;
} */

.header {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

/* .home .header {
  margin: 32px 0 0 0;
} */

.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-element-wrapper {
  display: flex;
  gap: 12px;
}

.header .menu-title,
.header .menu-close-icon {
  display: none;
}

.header-element-wrapper .mobile-nav {
  display: none;
  background: var(--color-light-bg);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
}

.mobile-nav > span {
  font-size: clamp(20px, 4vw, 28px);
  cursor: pointer;
}

.header .menu-close-icon {
  position: absolute;
  top: 50px;
  right: 30px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--color-light-bg);
  border-radius: 50px;
  cursor: pointer;
}

.header .menu-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  margin: 0 0 24px 0;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-menu > li {
  margin: 0;
  padding: 0;
  position: relative;
}

.main-menu > li > a {
  display: inline-block;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--color-heading);
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* .home .main-menu > li > a {
  color: #fff;
} */

.main-menu li > a:hover,
.main-menu li.current-menu-item > a {
  color: var(--color-primary);
}

/* Hide submenu by default */
.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 2px 2px 0 #00000010;
  border-radius: 12px;
  padding: 10px 0;
  z-index: 1000;
}

/* Show submenu on hover */
.menu-item-has-children:hover .sub-menu {
  display: block;
}

/* Submenu items styling */
.sub-menu li {
  list-style: none;
}

.sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Optional: Add smooth transition effect */
.menu-item-has-children .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.apply-overlay main:after {
  position: fixed;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: '';
  cursor: pointer;
}

/* === Avatar === */
.my-profile-element-wrapper {
  background: var(--color-light-bg);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
}

.my-profile-element-wrapper:hover .my-profile-dropdown {
  opacity: 1;
  visibility: visible;
}

.my-profile-element-wrapper > span {
  font-size: clamp(20px, 4vw, 28px);
  cursor: pointer;
}

.my-profile-dropdown {
  position: absolute;
  right: -10px;
  top: 40px;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  max-width: 240px;
  padding: 20px 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  box-shadow: 0 2px 2px 0 #00000010;
}

.my-profile-dropdown p {
  margin: 0;
  text-transform: capitalize;
}

.my-profile-dropdown-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 12px 0;
}

.my-profile-dropdown img {
  border-radius: 50px;
}

.my-profile-dropdown .profile-link {
  font-size: 14px;
}

/** 
 * ------------------------------
 *  Content Area 
 * ------------------------------
*/

.main-wrapper {
  margin: 60px 0;
}

/** 
 * ------------------------------
 *  My Account
 * ------------------------------
*/

/* === Table === */

#edd_user_history,
#edd_sl_license_keys {
  border-bottom: none;
  border-top: 1px solid var(--border-light);
  text-align: left;
  width: 100%;
  border-spacing: 0;
}

#edd_user_history td,
#edd_user_history th,
#edd_sl_license_keys td,
#edd_sl_license_keys th {
  border-bottom: var(--border-light);
  border-top: none;
  padding: 3px 5px;
  text-align: left;
}

/* === Button === */
#edd-purchase-button,
.edd-submit,
[type=submit].edd-submit {
  border: 0;
}

/* === Tab === */
.my-account-header {
  margin: 80px 0 0 0;
}

.my-account-header .welcome-text {
  font-family: var(--font-primary);
  font-weight: var(--fw-semi-bold);
  font-size: var(--fs-xxl);
  margin: 0;
}

.my-account-tabs-nav {
  margin: 40px 0 0 0;
}

.my-account-tabs-nav ul {
  display: flex;
}

.my-account-tabs-nav li a {
  padding: 16px 32px;
  background: var(--color-light-bg);
}

.my-account-tabs-nav li:first-child a {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.my-account-tabs-nav li:last-child a {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.my-account-tabs-nav li a.active {
  border-bottom: var(--border-dark);
  color: var(--color-primary);
  border-color: var(--color-primary);
  border-width: 2px;
}

.my-account-tabs-content > div {
  display: none;
}

.my-account-tabs-content > div.active {
  display: block;
}

.my-account-tabs-content {
  margin: 40px 0 0 0;
}


/* === Download Tab === */
#edd_user_history th {
  background: none;
  font-weight: var(--fw-semi-bold);
}

/* === Profile Tab === */
#edd_profile_editor_form fieldset {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: var(--border-light);
  padding: 0px 0 8px 0;
  margin: 24px 0 0 0;
}

#edd_profile_editor_form fieldset:last-child {
  border-bottom: 0;
}

#edd_profile_editor_form fieldset legend {
  font-weight: var(--fw-semi-bold);
  margin: 0 0 12px 0;
}

#edd_profile_editor_form fieldset > p {
  width: 49%;
  margin: 0 0 20px 0;
}

#edd_profile_editor_form fieldset p:nth-last-child(2n+1) {
  margin: 0;
}

/* === Login/Register Form === */
.my-account-form-wrapper,
.reset-password-form-wrapper {
  width: 400px;
  min-height: 460px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
}

.my-account-form-wrapper p,
.reset-password-form-wrapper p {
  text-align: left;
}

.my-account-form-wrapper input[type="submit"] {
  width: 100%;
}

.my-account-form-wrapper .edd-lost-password,
.my-account-form-wrapper legend + p,
.reset-password-form-wrapper legend + p {
  text-align: center;
}

.login-form-wrapper,
.register-form-wrapper {
  display: none;
  width: 100%;
}

.login-form-wrapper.active,
.register-form-wrapper.active {
  display: block;
}

#edd_login_form legend,
#edd_register_form legend,
.reset-password-form-wrapper legend {
  font-size: clamp(18px, 3.5vw, 21px);
  margin-bottom: 1em;
}

.reset-password-form,
.request-reset-form {
  width: 100%;
}

/** 
 * ------------------------------
 *  Downloads 
 * ------------------------------
*/

.edd_download {
  border: var(--border-dark);
  padding: 40px;
  border-radius: 24px;
}

.edd_downloads_list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.edd_download_image {
  width: 80px;
}

.edd_download_image img {
  border-radius: 16px;
}

.edd_download_title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  margin: 16px 70px 32px 0;
}

.edd_download .edd_price {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi-bold);
  text-align: right;
  margin: 32px 0 0 0;
}

/** 
 * ------------------------------
 *  Single Downloads 
 * ------------------------------
*/

.single-download .banner-content {
  margin: 0 0 60px 0;
}

.single-download .overview {
  margin: 28px 0 0 0;
}

.product-gallery-wrapper .product-slider-carousel img {
  border-radius: 8px;
}

.product-gallery-wrapper .product-thumbnails {
  display: flex;
  gap: 12px;
  margin: 16px 0 0 0;
}

.product-thumbnails img {
  width: 100px;
  padding: 10px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  cursor: pointer;
}

.product-thumbnails .active img {
  border: var(--border-dark);
}

.title-wrapper a {
  border-bottom: 1px solid;
}

.rating-icon {
  color: #F59E0B;
}

.download-content {
  margin: 60px auto;
  max-width: 960px;
}

.single-download .title-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px 0;
}

.single-download .title-header h2,
.single-download .title-header p {
  margin: 0;
}

.single-download .title-header .icon img {
  height: 92px;
}

.single-download #screenshots {
  margin: 60px auto 0 auto;
}

.single-download #screenshots h3 {
  text-align: center;
}

.single-download #screenshots > div {
  display: flex;
  flex-wrap: wrap;
}

.single-download #screenshots > div > div {
  width: 33.33%;
  padding: 4px;
}

.single-download #screenshots img {
  border-radius: 8px;
}

.single-download #faq {
  width: 100%;
  max-width: 960px;
  margin: 60px auto 0 auto;
}

.single-download #faq h3 {
  text-align: center;
}

.purchase-box {
  border: var(--border-dark);
  border-radius: 24px;
  padding: 32px;
  margin: 0 0 32px 0;
}

.single-download #requirements {
  margin: 60px auto 0 auto;
}

.attributes-box {
  background: var(--color-light-bg);
  border-radius: 24px;
  padding: 32px;
  max-width: 960px;
  margin: 0 auto;
}

#reviews {
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.edd-reviews-form label {
  font-weight: 400;
}

.edd-reviews-star-rating-container span{
  color: #F59E0B;
}

edd-reviews-review {
  height: 120px;
}

.edd-reviews-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 4px;
}

.edd-reviews-form .comment-form-cookies-consent label {
  margin: 0;
}

.purchase-box-title {
  font-size: var(--fs-md);
  margin: 0;
}

.single-download .edd_download_purchase_form {
  margin: 16px 0 24px 0;
}

.purchase-box .price {
  font-size: var(--fs-xxl);
  font-weight: var(--fw-semi-bold);
}

.purchase-box ul {
  margin: 12px 0 24px 0;
}

.purchase-box li {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px 0;
}

.purchase-box li span {
   font-size: clamp(16px, 3vw, 20px);
}

.purchase-box .edd-submit.button.blue {
  font-weight: var(--fw-medium);
  color: var(--color-bg);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  width: 100%;
  padding:0.6em 0;
  font-size: var(--fs-md);
}

.purchase-box .price-suffix {
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
}

.purchase-box-guarantee {
  display: flex;
  gap: 8px;
  margin: 16px 0 24px 0;
}

.purchase-box-guarantee p {
  margin: 0;
}

.purchase-box-guarantee .title {
  margin: 0 0 8px 0;
}

.purchase-box-guarantee a {
  color: var(--color-primary);
  border-bottom: 1px solid;
}

.purchase-box-quick-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid #E2E8F0;
  padding: 16px 0 0 0;
}

.purchase-box-quick-links a {
  font-size: var(--fs-sm);
  border-bottom: 1px solid;
}

.edd-js-none .edd-has-js, .edd-js .edd-no-js, body.edd-js input.edd-no-js {
  display: none !important;
}

.purchase-box .data-edd-loading + .edd-no-js + .edd-submit.button.blue.edd_go_to_checkout {
  display: inline-block;
}

.purchase-box .edd_purchase_submit_wrapper {
  margin: 32px 0 20px 0;
}

.purchase-box .edd-cart-ajax-alert {
  position: absolute;
  width: 100%;
  left: 0;
  top: -30px;
  color: var(--color-success);
}

.quick-links p {
  font-weight: var(--fw-medium);;
}

.related-downloads {
  margin: 80px 0;
}

.download-cards {
  margin: 40px 0 0 0;
}

#requirements h3 {
  text-align: center;
}

.single-download .banner-img {
  background: #F8FAFC;
  padding: 32px;
  border-radius: 16px;
}

.attributes-box > ul > li {
  margin: 0 0 12px 0;
}

.single-download .attributes-box ul,
.single-download .attributes-box ul ul {
  margin: 0;
}

.attribute-title {
  font-weight: var(--fw-medium);
}

.edd-cart-added-alert svg {
  display: none !important;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
}

thead tr {
  background: var(--color-light-bg);
  text-align: left;
  font-weight: 500;
  border: 1px solid #E2E8F0;
}

thead td {
  padding: 14px;
}

tbody tr {
  border: 1px solid #E2E8F0;
}

td {
  padding: 14px;
  border: 1px solid #E2E8F0;
}

tbody tr .icon-check_circle,
tbody tr .icon-cancel {
  font-size: clamp(18px, 3.5vw, 21px);
}

#compare-package {
  max-width: 960px;
  margin: 0 auto;
}

#compare-package h3 {
  text-align: center;
}

.download-compare-package td {
  width: 20%;
  text-align: center;
}

.download-compare-package td:first-child {
  width: 60%;
  text-align: left;
  padding: 14px 14px 14px 24px;
}


/* === Accordion === */

.accordion-wrapper h3 {
  font-size: var(--fs-xl);
}
.accordion-item {
	padding: 8px 0 0 0;
}

.accordion-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  border-bottom: var(--border-dark);
  padding: 0 0 8px 0;
  margin: 0 0 8px 0;
  cursor: pointer;
}

.accordion-content {
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

/* === FAQ === */
.single-download .accordion-content {
  padding: 8px 0;
}

.faq .accordion-title {
  font-size: var(--fs-md);
}

/* === Changelogs === */

.changelog {
  background: var(--color-light-bg);
  padding: 1.5rem;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-sm, 0.875rem);
  line-height: 1.6;
  white-space: pre-wrap;
  position: relative;
}

.changelog span::before {
  font-weight: bold;
  display: inline-block;
  margin-right: 0.5rem;
}

/* === Trust Box === */
.icons-box-wrapper {
  margin: 60px 0;
}

.icons-box {
  display: flex;
  gap: 12px;
}

.trust-main-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);  
  text-align: center;
}

.icons-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
}

.icon span {
  font-size: clamp(24px, 4vw, 32px);
}

/** 
 * ------------------------------
 *  Footer 
 * ------------------------------
*/

.footer-wrapper {
  padding: 60px 0 0 0;
}

.footer-logo-wrapper {
  width: 400px;
}

.footer-widgets-wrapper {
  width: 100%;
  padding: 60px 0;
}

.footer-widgets-wrapper ul li {
  margin: 0 0 8px 0; 
}

.footer-widgets-wrapper .widget {
  width: 20%; 
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.footer-widgets .widget-title {
  font-weight: var(--fw-medium);
  font-size: var(--fs-lg);
}

.footer-widgets .widget a {
  color: var(--color-description);
}


.footer-copyright-inner {
  display: flex;
  justify-content: space-between;
}

.footer-copyright-inner ul {
  display: flex;
  gap: 12px;
}

.footer-copyright {
  padding: 32px 0;
  border-top: 1px solid rgba( 209, 209, 255, 0.27 );
}

.footer-copyright p, 
.footer-copyright ul {
  margin: 0;
}


/** 
 * ------------------------------
 *  Document Page 
 * ------------------------------
*/
.doc-toc-container {
  max-width: 1140px;
}

.doc-toc-container .post-content {
  padding: 20px 0 0 52px;
}

.doc-toc {
	position: sticky;
	top: 100px;
	padding: 28px 36px;
	margin: 0 0 100px 0;
  border: 1px solid #d1d1ff;
	border-radius: 12px;
}

.doc-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.doc-toc li {
	margin: 12px 0;
}

.doc-toc a {
	color: var(--color-heading);
}

.doc-toc a:hover {
  color: var(--color-primary);
}

html {
  scroll-behavior: smooth;
}

.doc-toc a.active {
  color: var(--color-primary);
}

/** 
 * ------------------------------
 *  Shortcodes 
 * ------------------------------
*/

/* === Icon Card === */

.iconcard {
  display: flex;
  gap: 8px;
  margin: 0 0 28px 0;
}

.iconcard .icon span {
  font-size: clamp(24px, 4vw, 32px);
}

.iconcard .text {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
}

/* === Highlight Text === */

.highlight-text {
  padding: 8px 12px;
  background: #fff;
  border: var(--border-dark);
  display: inline-block;
  border-radius: 8px;
}

/* === Product Card === */

.product-card {
  background: #fff;
  border: var(--border-dark);
  padding: 24px;
  border-radius: 16px;
  float: left;
  width: 100%;
  cursor: pointer;
  margin: 0 0 28px 0;
}

.product-card .icon {
  background: var(--color-primary);
  border-radius: 8px;
  width: 60px;
  height: 60px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px 0 0;
}

.product-card .icon img {
  border-radius: 8px;
}

.product-card .text {
  font-size: 16px;
  font-weight: var(--fw-medium);
  margin: 4px 0 0 0;
}

/* === Highlight Box === */

.highlight-box {
  border-radius: 40px;
  background: var(--color-light-bg);
  padding: 60px 80px;
}

.highlight-box.white {
  border: var(--border-dark);
  background: none;
}

.highlight-box .row {
  justify-content: space-between;
  align-items: center;
}

/* === Callout === */

.callout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 48px;
  border: 1px solid;
  border-radius: 24px;
  align-items: center;
  gap: 2%;
}

.callout > div:first-child {
  width: 76%;
}

.callout > div:last-child {
  width: 22%;
}

/* === Contact Form 7 === */

.wpcf7-form-control-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 0 0 24px 0;
}

.wpcf7 label span {
  color: var(--color-danger);
  padding: 0 0 0 4px;
}

.error-page-content {
  margin: 40px 0 0 100px;
}

.error-page-content p {
  margin: 0 0 40px 0;
}

.error404 h1  {
  font-size: var(--fs-xxl);
}

/* === Validation Form === */
#validation-form {
  display: flex;
  justify-content: center;
  margin: 0 0 12px 0;
}

.validation-form-wrapper {
  text-align: center;
}

.validation-form-wrapper [name="email"] {
  width: 70%;
  height: 56px;
}

#validation-form button {
  margin: 0 0 0 -8px;
  padding: 12px 20px;
  width: 180px;
}

/** 
 * ------------------------------
 *  Subscribe Form 
 * ------------------------------
*/

#more-tools-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

#more-tools-subscribe-form {
  background: #fff;
  text-align: center;
  max-width: 90%;
  width: 420px;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  z-index: 9999;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  animation: fadeInScale 0.3s ease;
}

#more-tools-subscribe-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center;
}

#more-tools-subscribe-form #more-tools-subscribe-title span {
  font-size: 1rem;
}

#more-tools-subscribe-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border: var(--border-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

#more-tools-subscribe-form button {
  width: 100%;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#more-tools-subscribe-form span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-align: center;
}

@keyframes fadeInScale {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

#more-tools-subscribe-form .close-popup {
  position: absolute;
  right: 20px;
  top: 8px;
  font-size: 1.5rem;
  cursor: pointer;
}

#slicewp-affiliate-register-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.slicewp-field-wrapper {
  width: 49%;
}

.slicewp-field-wrapper[data-type="textarea"] {
  width: 100%;
}

#slicewp-affiliate-login-form {
  max-width: 400px;
  margin: 0 auto;
}

#slicewp-affiliate-login-form .slicewp-field-wrapper {
  width: 100%;
}

#slicewp-affiliate-login-form .slicewp-button-primary {
  display: block;
  width: 100%;
}

/** 
 * ------------------------------
 *  Blog Page
 * ------------------------------
*/
.blog h1 {
  text-align: center;
  font-size: var(--fs-xxl);
  margin: 0 0 12px 0;
}

.blog .col-4 {
  margin: 0 0 32px 0;
}

.blog article {
  border: var(--border-dark);
  padding: 32px;
  border-radius: 16px;
}

.blog article h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  margin: 0 0 12px 0;
}

.blog article ul,
.single-post article .post-header ul {
  display: flex;
  gap: 16px;
  margin: 0 0 28px 0;
}

.single-post article .post-header ul {
   font-size: clamp(16px, 3vw, 20px);
}

.blog article ul {
  margin: 0;
}

.blog article li span,
.single-post li span {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: var(--color-heading);
  display: inline-block;
}

.blog .post-header li,
.single-post .post-header li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-post .post-content ul li {
  list-style: disc outside;
}

.blog article p {
  margin: 0;
}

.blog article img {
  margin: 0 0 24px 0;
  border-radius: 12px;
}

.page-description {
  font-size: var(--fs-md);
  text-align: center;
  margin: 0 0 60px 0;
}

/** 
 * ------------------------------
 *  Single Post
 * ------------------------------
*/

.single-post article {
  width: 1400px;
  margin: 0 auto;
  max-width:100%;
}

.single-post .post-header {
  max-width: 1200px;
  margin: 0 auto;
  text-transform: capitalize;
}

.single-post article .post-header .post-date,
.single-post article .post-header .author-name {
  font-size: 18px;
  margin: 0;
}

.single-post article .post-header .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 0 0;
}

.single-post article .post-header .author-info img {
  border-radius: 50px;
  margin: 0;
}

.single-post .post-header h1 {
  font-size: clamp(32px, 6vw, 62px);
  margin: 24px 0 8px 0;
}

.single-post .post-content {
  max-width: 800px;
  margin: 0 auto;
}

.single-post article h2 {
  margin: 0 auto 12px auto;
  font-size: 36px;
}

.single-post article img {
  border-radius: 24px;
  margin: 52px 0;
  display: inline-block;
}

.single-post .post-content p,
.single-post .post-content a,
.single-post .post-content li {
  font-size: 18px;
}

.single-post .post-content ol {
  list-style: initial;
  list-style-type: decimal;
}

.single-post .post-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.single-post section {
  margin: 0 0 36px 0;
}

.single-post .table-of-contents {
    margin: 0 0 32px 0;
}

.author-box {
  display: flex;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid #d1cced;
  margin: 32px 0 80px 0;
}

.author-box .author-name {
  text-transform: capitalize;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.author-box .author-avatar {
  margin: 0 20px 0 0;
  flex-shrink: 0;
  width: 112px;
}

.single-post .author-box img {
  border-radius: 50%;
  width: 100%;
  margin: 0;
  display: block;
}

.single-post .author-social-links a {
  text-decoration: none;
}
/** 
 * ------------------------------
 *  Blank Template
 * ------------------------------
*/
.page-template-page-blank .container {
  max-width: 1240px;
}

.page-template-page-blank .main-wrapper {
  margin: 0;
}

.edd-alert-error {
    color: var(--color-danger);
    padding: 0;	
	background: none;
    border: 0;
}

.edd-alert-error a {
    border-bottom: 1px solid;
}

#edd_checkout_form_wrap {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}


#edd_checkout_form_wrap .edd-description {
	color: var(--color-heading);
	font-size: 14px;
}

#edd_checkout_form_wrap legend.screen-reader-text {
	display: none;
}

#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__items,
#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__row-header,
#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__items,
#edd_checkout_form_wrap .edd-blocks-form__cart .edd-blocks-cart__row-header,
#edd_checkout_form_wrap.wp-block-edd-checkout #edd_purchase_form .edd-blocks-form {
	border-color: #E2E8F0;
}

.edd-blocks-form__cart .edd-blocks-cart__action-remove, .edd-blocks-form__cart .edd_discount_remove {
  background: none !important;
  opacity: 1 !important;
  font-size: 24px;
  display: inline-block !important;
}

a.edd-blocks-cart__action-remove.edd_cart_remove_item_btn:after {
    content: "\e910";
    font-family: 'material-icons' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

.edd-receipt #edd_purchase_receipt,
.edd-receipt #edd_purchase_receipt_products {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.edd-receipt #edd_purchase_receipt + h3 {
  text-align: center;
  font-size: 24px;
  margin: 36px 0 20px 0;
  font-weight: 500;
}

.edd-receipt .edd_license_keys,
.edd-receipt .edd_license_key,
.edd-receipt .edd_purchase_receipt_files {
  display: none;
}

.edd-receipt table {
  width: 100%;
  border-collapse: collapse; /* removes gaps between borders */
}

.edd-receipt th, .edd-receipt  td {
  border: var(--border-light);
  padding: 10px;
  text-align: left;
}

.edd-receipt th {
  width: 60%;
  font-weight: 500;
}

table#edd_purchase_receipt_products .edd_purchase_receipt_product_name {
  font-weight: 400;
}

.edd_purchase_row .edd_license_key {
  display: none;
}

.edd_sl_license_row a,
.edd_sl_license_row br {
  display: none;
}

#edd_sl_license_keys td {
  padding: 0 0 16px 0;
}

.edd_sl_license_row input {
  max-width: 400px;
  margin: 24px 0 0 0;
}

.single-post .post-content h1,
.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4,
.single-post .post-content h5,
.single-post .post-content h6 {
  margin: 0;
  margin: 0 0 16px 0;
}

.single-post .post-content ul {
  margin-bottom: 24px;
  margin-left: 1.25em;
}

.single-post .post-content ul ul {
  margin: 12px 0 28px 24px;
}

.single-post .post-content ul + h3,
.single-post .post-content ul + h4,
.single-post .post-content ol + h3,
.single-post .post-content ol + h4,
.single-post .post-content p + h3,
.single-post .post-content p + h4 {
  margin: 24px 0 12px 0;
}

.single-post .post-content h2 + h3,
.single-post .post-content h2 + h4 {
  margin: 28px 0 16px 0;
}

.single-post .post-content ul + h2,
.single-post .post-content ol + h2,
.single-post .post-content p + h2 {
  margin: 32px 0 12px 0;
}

.single-post .doc-content a {
  color: #6366F1;
  border-bottom: 1px solid;
}

.single-post h3 {
  font-size: 1.5rem;
}

.single-post p:has(+ ul),
.single-post p:has(+ ol) {
  margin: 0 0 8px 0;
}

.single-post ul + p,
.single-post ol + p {
	margin: 16px 0;
}

.single-download .download-content h1,
.single-download .download-content h2,
.single-download .download-content h3,
.single-download .download-content h4,
.single-download .download-content h5,
.single-download .download-content h6 {
  margin: 0;
  margin: 0 0 16px 0;
}

.single-download .download-content ul {
  margin: 0 0 24px 0;
}

.single-download .download-content ul ul {
  margin: 12px 0 28px 24px;
}

.single-download .download-content ul + h3,
.single-download .download-content ul + h4,
.single-download .download-content ol + h3,
.single-download .download-content ol + h4,
.single-download .download-content p + h3,
.single-download .download-content p + h4 {
  margin: 24px 0 12px 0;
}

.single-download .download-content ul + h2,
.single-download .download-content ol + h2,
.single-download .download-content p + h2 {
  margin: 32px 0 12px 0;
}

.single-download .download-content .doc-content a {
  color: #6366F1;
  border-bottom: 1px solid;
}

.single-download .download-content h2 {
  font-size: 1.75rem;
}

.single-download .download-content h3 {
  font-size: 1.5rem;
}

.single-download .download-content li {
  margin: 0 0 4px 0;
}

.single-download .download-content p:has(+ ul),
.single-download .download-content p:has(+ ol) {
  margin: 0 0 16px 0;
}

hr {
  margin: 28px 0;
}

.sticky-tab-wrapper {
  text-align: center;
}

.sticky-tab {
  background: var(--color-light-bg);
  transition: all 0.3s ease;
  z-index: 100;
  position: relative;
  border-radius: 12px;
  display: inline-block;
  padding: 0 24px;
}

.sticky-tab.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sticky-tab ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sticky-tab ul li {
    margin: 0;
}

.sticky-tab ul li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--color-heading);
  font-weight: 500;
  transition: color 0.3s ease;
}

.sticky-tab ul li a:hover {
    color: var(--color-primary);
}

/* Placeholder to prevent content jump */
.sticky-tab.is-sticky + .sticky-placeholder {
  display: block;
}

.sticky-placeholder {
  display: none;
}

.sticky-tab ul li.active a {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}


/* Minimal, neutral styles for inline and block code */
code {
  font-size: 18px;
  background: #fbfbff;
  padding: 0.15em 0.35em;
  border-radius: 6px;
  border: 1px solid #d8d8fe;
  line-height: 1.6;
  white-space: nowrap; /* inline code should not wrap by default */
  margin: 4px 0;
  display: inline-block;
}

pre {
  font-family: inherit;
  font-size: 0.9em;
  line-height: 1.45;
  background: #fbfbff;
  padding: 20px 24px;
  border-radius: 8px;
  border: 1px solid #d8d8fe;
  overflow: auto;            /* horizontal scroll for long lines */
  white-space: pre;          /* preserve formatting */
  tab-size: 4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 24px 0;
  /* border: 0; */
}

/* keep code inside pre from doubling background/padding */
pre code {
  font-family: 'JetBrains Mono';
  background: transparent;
  padding: 0;
  border: none;
  display: block;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.single-post blockquote {
  font-family: inherit;
  font-size: 0.9em;
  line-height: 1.45;
  background: #f4f2ff;
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid #d1cced;
  tab-size: 4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 24px 0;
}

.single-post blockquote.warning {
  background: #fffcf2;
  border: 1px solid #ededcc;
}

.single-post blockquote p{
  margin: 0 0 0 52px;
  position: relative;
}

.single-post blockquote p::before {
  content: ''; /* This should show the word TEST */
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('../img/tips-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  /* margin-right: 10px; */
  position: absolute;
  left: -50px;
}

/* Popup Container */
.exit-intent-popup-wrap .exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  z-index: 9998;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.exit-intent-popup-wrap .exit-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 64px 52px;
  border-radius: 28px;
  z-index: 9999;
  max-width: 520px;
  width: 90%;
  animation: slideIn 0.3s ease;
  border: 1px solid #d1d1ff;
}

.exit-intent-popup-wrap .exit-popup.show,
.exit-intent-popup-wrap .exit-popup-overlay.show {
  display: block;
}

.exit-intent-popup-wrap .exit-popup h4 {
  margin: 0 0 20px 0;
  font-size: clamp(24px, 4vw, 32px);
  text-align: center;
  font-weight: 700;
}

.exit-intent-popup-wrap .exit-popup p {
   font-size: clamp(16px, 3vw, 20px);
  margin: 0 0 40px 0;
  text-align: center;
  line-height: 1.4;
}

.exit-intent-popup-wrap .exit-popup ul {
  margin: 40px 0 0 24px;
  font-size: 18px;
}

.exit-intent-popup-wrap .exit-popup li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
  background: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6.88 11.6L12.52 5.92L11.4 4.8L6.88 9.32L4.6 7.04L3.48 8.2L6.88 11.6ZM8 16C5.78667 16 3.9 15.22 2.34 13.66C0.780001 12.1 0 10.2133 0 8C0 5.78667 0.780001 3.9 2.34 2.34C3.9 0.78 5.78667 0 8 0C10.2133 0 12.1 0.78 13.66 2.34C15.22 3.9 16 5.78667 16 8C16 10.2133 15.22 12.1 13.66 13.66C12.1 15.22 10.2133 16 8 16Z' fill='%231F1F1F'/></svg>") no-repeat center;
  background-size: contain;
}

.exit-intent-popup-wrap .exit-popup-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.exit-intent-popup-wrap .exit-popup-buttons .btn {
  height: 72px;
  border-radius: 12px;
   font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
}

.exit-intent-popup-wrap .exit-popup-buttons .btn:hover {
  box-shadow: none;
  transform: none;
}

.exit-intent-popup-wrap .exit-popup-buttons .btn:hover::before  {
  width: 440px;
  height: 440px;
}

.exit-intent-popup-wrap .close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: clamp(20px, 4vw, 28px);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  color: #1F1F1F;
}

.exit-intent-popup-wrap input#cartEmail {
  width: 100%;
  height: 72px;
  padding: 0 32px !important;
  border-radius: 12px;
  box-sizing: border-box;
  border: 1px solid;
  border-color: #D1D1FF;
}

input#cartEmail::placeholder {
  color: #1F1F1F;
}

.exit-intent-popup-wrap @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@media screen and (max-width: 767px ) {
	
	code {
		white-space: normal;
	}
	
	
}