/**
 * Premium UI — inner pages (products, contact, cart, auth, etc.)
 */

body.premium-landing-page {
  overflow-x: hidden;
}

/* Hide legacy chrome if present */
body.premium-landing-page #header.header-layout-v2,
body.premium-landing-page #footer,
body.premium-landing-page .footer-trust-bar,
body.premium-landing-page .footer-after-trust,
body.premium-landing-page #overlay_bg,
body.premium-landing-page .overlay-bg,
body.premium-landing-page .mobile-nav-container,
body.premium-landing-page #navMobile {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Mobile header profile icon */
.user-mobile-profile {
  border: 1px solid var(--pl-border);
  border-radius: 10px;
}

.pl-auth__row .pl-auth__row--2 {
  margin-bottom: 16px;
}


/* Modals above fixed premium header (z-index 1000–1001) */
body.premium-landing-page .modal-backdrop {
  z-index: 10040 !important;
}

body.premium-landing-page .modal {
  z-index: 10050 !important;
}

body.premium-landing-page .modal .select2-container--open {
  z-index: 10060 !important;
}

/* Newsletter popup above standard modals */
body.premium-landing-page .pl-newsletter-modal {
  z-index: 10070 !important;
}

/* Newsletter popup — premium UI */
body.premium-landing-page .pl-newsletter-modal .modal-dialog {
  max-width: 720px;
  margin: 1rem auto;
}

body.premium-landing-page .pl-newsletter-modal__content {
  border: none;
  background: transparent;
  box-shadow: none;
}

body.premium-landing-page .pl-newsletter-modal__body {
  position: relative;
  padding: 0;
  background: var(--pl-card, #fff);
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: var(--pl-radius-card, 18px);
  box-shadow: var(--pl-shadow, 0 24px 48px rgba(0, 0, 0, 0.12));
  overflow: hidden;
}

body.premium-landing-page .pl-newsletter-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: 50%;
  background: var(--pl-card, #fff);
  color: var(--pl-text-secondary, #666);
  cursor: pointer;
  transition:
    background-color var(--pl-transition, 0.2s ease),
    border-color var(--pl-transition, 0.2s ease),
    color var(--pl-transition, 0.2s ease);
}

body.premium-landing-page .pl-newsletter-modal__close:hover,
body.premium-landing-page .pl-newsletter-modal__close:focus-visible {
  background: var(--pl-bg-secondary, #f5f5f5);
  border-color: var(--pl-border-strong, #d4d4d4);
  color: var(--pl-text, #111);
  outline: none;
}

body.premium-landing-page .pl-newsletter-modal__layout {
  display: flex;
  align-items: stretch;
  min-height: 320px;
}

body.premium-landing-page .pl-newsletter-modal__media {
  position: relative;
  flex: 0 0 42%;
  max-width: 42%;
  min-height: 280px;
  overflow: hidden;
  background: var(--pl-bg-secondary, #f5f5f5);
}

body.premium-landing-page .pl-newsletter-modal__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

body.premium-landing-page .pl-newsletter-modal__media-accent {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
}

body.premium-landing-page .pl-newsletter-modal__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px 36px;
}

body.premium-landing-page .pl-newsletter-modal__eyebrow {
  margin-bottom: 12px;
}

body.premium-landing-page .pl-newsletter-modal__title {
  margin: 0 0 10px;
  font-family: var(--pl-font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--pl-text);
}

body.premium-landing-page .pl-newsletter-modal__desc {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-newsletter-modal__form {
  margin: 0;
}

body.premium-landing-page .pl-newsletter-modal__field {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 5px;
  border-radius: var(--pl-radius-lg, 14px);
  border: 1px solid var(--pl-border, #e8e8e8);
  background: var(--pl-bg-secondary, #f5f5f5);
  transition:
    border-color var(--pl-transition, 0.2s ease),
    box-shadow var(--pl-transition, 0.2s ease);
}

body.premium-landing-page .pl-newsletter-modal__field:focus-within {
  border-color: rgba(251, 206, 5, 0.65);
  box-shadow: 0 0 0 3px rgba(251, 206, 5, 0.18);
}

body.premium-landing-page .pl-newsletter-modal__field-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 14px;
  color: var(--pl-text-muted, #999);
  font-size: 16px;
}

body.premium-landing-page .pl-newsletter-modal__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  font-family: var(--pl-font-body);
  font-size: 14px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--pl-text);
}

body.premium-landing-page .pl-newsletter-modal__input::placeholder {
  color: var(--pl-text-muted, #999);
}

body.premium-landing-page .pl-newsletter-modal__input:focus {
  outline: none;
}

body.premium-landing-page .pl-newsletter-modal__submit {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: 10px;
}

body.premium-landing-page .pl-newsletter-modal__submit i {
  font-size: 14px;
}

body.premium-landing-page .pl-newsletter-modal__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--pl-text-muted, #999);
}

body.premium-landing-page .pl-newsletter-modal__note-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-newsletter-modal .newsletter-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

body.premium-landing-page .pl-newsletter-modal .has-error {
  border-color: #dc3545 !important;
}

@media (max-width: 767px) {
  body.premium-landing-page .pl-newsletter-modal .modal-dialog {
    max-width: calc(100% - 24px);
  }

  body.premium-landing-page .pl-newsletter-modal__layout {
    flex-direction: column;
    min-height: 0;
  }

  body.premium-landing-page .pl-newsletter-modal__media {
    flex: none;
    max-width: none;
    min-height: 180px;
  }

  body.premium-landing-page .pl-newsletter-modal__img {
    min-height: 180px;
  }

  body.premium-landing-page .pl-newsletter-modal__main {
    padding: 28px 22px 26px;
  }

  body.premium-landing-page .pl-newsletter-modal__field {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
  }

  body.premium-landing-page .pl-newsletter-modal__field-icon {
    display: none;
  }

  body.premium-landing-page .pl-newsletter-modal__input {
    width: 100%;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--pl-card, #fff);
  }

  body.premium-landing-page .pl-newsletter-modal__submit {
    width: 100%;
  }
}

/* Main content shell — offset fixed header */
body.premium-landing-page .pl-main {
  display: block;
  visibility: visible;
  opacity: 1;
}

body.premium-landing-page {
  --pl-header-offset: 132px;
}

body.premium-landing-page .pl-main--inner {
  min-height: 60vh;
  padding-top: var(--pl-header-offset, 132px);
}

/* Inner hero sits flush under fixed header (no double gap) */
body.premium-landing-page .pl-main--inner:has(.pl-inner-hero),
body.premium-landing-page .pl-main--inner:has(.pl-hero),
body.premium-landing-page .pl-main--inner:has(.pl-affiliate-hero) {
  padding-top: 0;
}

body.premium-landing-page .pl-main--home {
  padding-top: 0;
}

/* Hero offset when top bar + main header are fixed */
body.premium-landing-page .pl-hero {
  padding-top: 200px;
}

body.premium-landing-page #wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
  padding: 0 0 var(--pl-inner-bottom, 64px);
}

body.premium-landing-page #wrapper.pl-inner-page-wrap,
body.premium-landing-page #wrapper.page-contact-wrap,
body.premium-landing-page #wrapper.page-affiliate-wrap,
body.premium-landing-page #wrapper:has(> .pl-inner-hero),
body.premium-landing-page #wrapper:has(> .pl-hero),
body.premium-landing-page #wrapper:has(> .pl-affiliate-hero) {
  padding-top: 0;
  margin-top: 0;
}

body.premium-landing-page {
  --pl-radius-sm: 10px;
  --pl-radius-md: 12px;
  --pl-radius-lg: 14px;
}

body.premium-landing-page #wrapper > .container,
body.premium-landing-page #wrapper > .container-fluid:not(.contact-map-container) {
  max-width: var(--pl-container, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pl-section-px, 15px) !important;
  padding-right: var(--pl-section-px, 15px) !important;
  --bs-gutter-x: var(--pl-gap-grid, 28px);
}

/* Header search (inner pages) */
.pl-header__search {
  flex: 0 1 280px;
  max-width: 280px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
}

.pl-header__search-input {
  width: 100%;
  height: 42px;
  padding: 0 44px 0 16px;
  font-family: var(--pl-font-body);
  font-size: 14px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-input, 12px);
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pl-header__search-input:focus {
  outline: none;
  border-color: rgba(251, 206, 5, 0.6);
  box-shadow: 0 0 0 3px rgba(251, 206, 5, 0.15);
  background: var(--pl-bg);
}

.pl-header__search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 10px;
  background: var(--pl-accent);
  color: var(--pl-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 991px) {
  body.premium-landing-page {
    --pl-header-offset: 88px;
  }

  body.premium-landing-page .pl-main--inner {
    padding-top: var(--pl-header-offset, 88px);
  }
}

@media (max-width: 1100px) {
  .pl-header__search { display: none; }
}

@media (max-width: 768px) {
  .pl-header__actions .pl-btn--primary,
  .pl-header__actions .pl-btn--ghost:not(.pl-header__auth-mobile):not(.pl-header__menu-btn) {
    display: none;
  }
}

/* Typography */
body.premium-landing-page #wrapper .page-title,
body.premium-landing-page #wrapper .product-list-title,
body.premium-landing-page #wrapper h1.title-blog {
  font-family: var(--pl-font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--pl-text);
  margin-bottom: 8px;
}

body.premium-landing-page #wrapper .index-title {
  display: none;
}

/* Breadcrumbs */
body.premium-landing-page .nav-breadcrumb {
  margin: 0 0 24px;
  padding: 0;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  width: auto;
  max-width: 100%;
  margin: 0;
  /* padding: 10px 18px; */
  min-height: 0;
  line-height: 1.4;
  font-family: var(--pl-font-body);
  font-size: 13px;
  /* background: var(--pl-bg-secondary); */
  /* border: 1px solid var(--pl-border); */
  border-radius: 12px;
  list-style: none;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  float: none;
  word-break: normal;
  max-width: 100%;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  margin: -2px -6px;
  border-radius: 8px;
  color: var(--pl-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item a:hover {
  color: var(--pl-text);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item:first-child a::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.85;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item.active {
  color: var(--pl-text);
  font-weight: 600;
  padding: 2px 0;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item.active:last-child {
  max-width: min(100%, 480px);
  overflow: hidden;
  text-overflow: ellipsis;
  /*white-space: nowrap; */
  word-break: break-word;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item:not(.active) a {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

body.premium-landing-page .nav-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 12px;
  padding: 0;
  border: none;
  border-right: 1.5px solid var(--pl-text-secondary);
  border-bottom: 1.5px solid var(--pl-text-secondary);
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0.45;
  float: none;
  vertical-align: middle;
}

@media (max-width: 767px) {
  body.premium-landing-page .nav-breadcrumb .breadcrumb {
    padding: 8px 14px;
    font-size: 12px;
  }

  body.premium-landing-page .nav-breadcrumb .breadcrumb-item.active:last-child {
    max-width: min(100%, 100%);
  }

  body.premium-landing-page .nav-breadcrumb .breadcrumb-item:not(.active) a {
    max-width: 120px;
  }

  body.premium-landing-page .nav-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 8px;
  }
}

/* Buttons — glow + shine (legacy Bootstrap) */
body.premium-landing-page .btn-custom,
body.premium-landing-page .btn-sell-now,
body.premium-landing-page .cookies-warning .btn,
body.premium-landing-page .btn-block,
body.premium-landing-page .btn-default,
body.premium-landing-page .btn-secondary,
body.premium-landing-page .btn-info,
body.premium-landing-page .btn-danger,
body.premium-landing-page .btn-delete,
body.premium-landing-page .btn-block-options,
body.premium-landing-page .btn-filter-products-mobile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color var(--pl-transition, 0.3s ease),
    color var(--pl-transition, 0.3s ease),
    box-shadow var(--pl-transition, 0.3s ease),
    border-color var(--pl-transition, 0.3s ease),
    transform var(--pl-transition, 0.3s ease) !important;
}

body.premium-landing-page .btn-custom::before,
body.premium-landing-page .btn-sell-now::before,
body.premium-landing-page .cookies-warning .btn::before,
body.premium-landing-page .btn-block::before,
body.premium-landing-page .btn-default::before,
body.premium-landing-page .btn-secondary::before,
body.premium-landing-page .btn-info::before,
body.premium-landing-page .btn-danger::before,
body.premium-landing-page .btn-delete::before,
body.premium-landing-page .btn-block-options::before,
body.premium-landing-page .btn-filter-products-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--pl-btn-shine, linear-gradient(115deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%, transparent 100%));
  transform: translateX(-130%) skewX(-14deg);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

body.premium-landing-page .btn-info:hover{
  color : #fff !important;
}

body.premium-landing-page .btn-custom:hover::before,
body.premium-landing-page .btn-custom:focus-visible::before,
body.premium-landing-page .btn-sell-now:hover::before,
body.premium-landing-page .btn-sell-now:focus-visible::before,
body.premium-landing-page .cookies-warning .btn:hover::before,
body.premium-landing-page .cookies-warning .btn:focus-visible::before,
body.premium-landing-page .btn-block:hover::before,
body.premium-landing-page .btn-block:focus-visible::before,
body.premium-landing-page .btn-default:hover::before,
body.premium-landing-page .btn-default:focus-visible::before,
body.premium-landing-page .btn-secondary:hover::before,
body.premium-landing-page .btn-secondary:focus-visible::before,
body.premium-landing-page .btn-info:hover::before,
body.premium-landing-page .btn-info:focus-visible::before,
body.premium-landing-page .btn-danger:hover::before,
body.premium-landing-page .btn-danger:focus-visible::before,
body.premium-landing-page .btn-delete:hover::before,
body.premium-landing-page .btn-delete:focus-visible::before,
body.premium-landing-page .btn-block-options:hover::before,
body.premium-landing-page .btn-block-options:focus-visible::before,
body.premium-landing-page .btn-filter-products-mobile:hover::before,
body.premium-landing-page .btn-filter-products-mobile:focus-visible::before {
  transform: translateX(130%) skewX(-14deg);
}

body.premium-landing-page .btn-custom,
body.premium-landing-page .btn-custom:focus,
body.premium-landing-page .btn-custom:active,
body.premium-landing-page .btn-sell-now,
body.premium-landing-page .cookies-warning .btn {
  background-color: var(--pl-accent) !important;
  color: var(--pl-text) !important;
  border: none !important;
  border-radius: var(--pl-radius-btn, 14px) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

body.premium-landing-page .btn-custom:hover,
body.premium-landing-page .btn-custom:focus-visible,
body.premium-landing-page .btn-sell-now:hover,
body.premium-landing-page .btn-sell-now:focus-visible,
body.premium-landing-page .cookies-warning .btn:hover,
body.premium-landing-page .cookies-warning .btn:focus-visible {
  background-color: var(--pl-accent-hover, #e8be04) !important;
  color: var(--pl-text) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

body.premium-landing-page .btn-default,
body.premium-landing-page .btn-secondary,
body.premium-landing-page .btn-info,
body.premium-landing-page .btn-block-options,
body.premium-landing-page .btn-filter-products-mobile {
  border-radius: var(--pl-radius-btn, 14px);
  border-color: var(--pl-border);
  box-shadow: none;
}

body.premium-landing-page .btn-info:hover{
  color : #fff !important;
}

body.premium-landing-page .btn-default:hover,
body.premium-landing-page .btn-default:focus-visible,
body.premium-landing-page .btn-secondary:hover,
body.premium-landing-page .btn-secondary:focus-visible,
body.premium-landing-page .btn-info:focus-visible,
body.premium-landing-page .btn-block-options:hover,
body.premium-landing-page .btn-block-options:focus-visible,
body.premium-landing-page .btn-filter-products-mobile:hover,
body.premium-landing-page .btn-filter-products-mobile:focus-visible {
  border-color: #d1d5db !important;
  color: var(--pl-text) !important;
  box-shadow: none !important;
}

body.premium-landing-page .btn-danger:hover,
body.premium-landing-page .btn-danger:focus-visible,
body.premium-landing-page .btn-delete:hover,
body.premium-landing-page .btn-delete:focus-visible {
  border-color: #fca5a5 !important;
  box-shadow: none !important;
}

/* Full-width .btn-block — match primary buttons (cart checkout, etc.) */
body.premium-landing-page .btn.btn-block:not(.btn-default):not(.btn-secondary):not(.btn-light):not(.btn-gray):not(.btn-custom-outline):not(.btn-success):not(.btn-info):not(.btn-danger):not(.btn-slate):not(.btn-blue):not(.btn-outline):not(.btn-red):not(.btn-primary),
body.premium-landing-page a.btn.btn-block:not(.btn-default):not(.btn-secondary):not(.btn-light):not(.btn-gray):not(.btn-custom-outline):not(.btn-success):not(.btn-info):not(.btn-danger):not(.btn-slate):not(.btn-blue):not(.btn-outline):not(.btn-red):not(.btn-primary) {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 12px 24px !important;
  line-height: 1.5 !important;
  background-color: var(--pl-accent) !important;
  color: var(--pl-text) !important;
  border: none !important;
  border-radius: var(--pl-radius-btn, 14px) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

body.premium-landing-page .btn.btn-block:not(.btn-default):not(.btn-secondary):not(.btn-light):not(.btn-gray):not(.btn-custom-outline):not(.btn-success):not(.btn-info):not(.btn-danger):not(.btn-slate):not(.btn-blue):not(.btn-outline):not(.btn-red):not(.btn-primary):hover,
body.premium-landing-page .btn.btn-block:not(.btn-default):not(.btn-secondary):not(.btn-light):not(.btn-gray):not(.btn-custom-outline):not(.btn-success):not(.btn-info):not(.btn-danger):not(.btn-slate):not(.btn-blue):not(.btn-outline):not(.btn-red):not(.btn-primary):focus-visible,
body.premium-landing-page a.btn.btn-block:not(.btn-default):not(.btn-secondary):not(.btn-light):not(.btn-gray):not(.btn-custom-outline):not(.btn-success):not(.btn-info):not(.btn-danger):not(.btn-slate):not(.btn-blue):not(.btn-outline):not(.btn-red):not(.btn-primary):hover,
body.premium-landing-page a.btn.btn-block:not(.btn-default):not(.btn-secondary):not(.btn-light):not(.btn-gray):not(.btn-custom-outline):not(.btn-success):not(.btn-info):not(.btn-danger):not(.btn-slate):not(.btn-blue):not(.btn-outline):not(.btn-red):not(.btn-primary):focus-visible {
  background-color: var(--pl-accent-hover, #e8be04) !important;
  color: var(--pl-text) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

body.premium-landing-page a.btn-block[href="javascript:void(0)"],
body.premium-landing-page .btn-block:disabled,
body.premium-landing-page .btn-block.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

body.premium-landing-page .btn-block.btn-custom-outline {
  background-color: transparent !important;
  color: var(--pl-text) !important;
  border: 1px solid var(--pl-border) !important;
  box-shadow: none !important;
}

body.premium-landing-page .btn-block.btn-custom-outline:hover,
body.premium-landing-page .btn-block.btn-custom-outline:focus-visible {
  background-color: var(--pl-bg-secondary) !important;
  border-color: #d1d5db !important;
  color: var(--pl-text) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

/* Forms */
body.premium-landing-page .form-input,
body.premium-landing-page .form-control,
body.premium-landing-page .auth-form-input,
body.premium-landing-page select.form-control {
  border-radius: var(--pl-radius-input, 12px);
  border-color: var(--pl-border);
  font-family: var(--pl-font-body);
}

body.premium-landing-page .form-input:focus,
body.premium-landing-page .form-control:focus {
  border-color: rgba(251, 206, 5, 0.6);
  box-shadow: 0 0 0 3px rgba(251, 206, 5, 0.12);
}

/* Product grid cards */
body.premium-landing-page .product-item {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 0;
}

body.premium-landing-page .product-item:hover {
  border-color: var(--pl-border);
  box-shadow: none;
  transform: none;
}

body.premium-landing-page .product-item .badge-promoted {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--pl-font-body);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  background: var(--pl-accent) !important;
  color: var(--pl-text) !important;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.1);
}

body.premium-landing-page .product-item .row-custom:first-child {
  position: relative;
  padding: 0;
  line-height: 0;
  background: var(--pl-bg-secondary);
  border-bottom: 1px solid var(--pl-border);
  border-radius: calc(var(--pl-radius-card, 18px) - 1px) calc(var(--pl-radius-card, 18px) - 1px) 0 0;
  overflow: hidden;
}

/* Wishlist / add-to-cart must sit above the image link (especially with a second hover image). */
body.premium-landing-page .product-item .product-item-options {
  z-index: 20;
  pointer-events: none;
}

body.premium-landing-page .product-item .product-item-options .item-option {
  pointer-events: auto;
}

body.premium-landing-page .product-item .ratio-product-box {
  z-index: 1;
}

body.premium-landing-page .product-item .ratio-product-box > a {
  z-index: 1;
}

@media (min-width: 992px) {
  body.premium-landing-page .product-item:hover .product-item-options .item-option,
  body.premium-landing-page .product-item .row-img-product-list:hover .product-item-options .item-option {
    opacity: 1;
  }
}

body.premium-landing-page .product-item .ratio-product-box {
  display: block;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

body.premium-landing-page .product-item .product-title {
  margin-bottom: 6px;
}

body.premium-landing-page .product-item .product-title a {
  font-family: var(--pl-font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--pl-text);
  transition: color 0.2s ease;
}

body.premium-landing-page .product-item:hover .product-title a {
  color: var(--pl-text);
}

body.premium-landing-page .product-item .item-details {
  padding: 16px 16px 18px;
}

body.premium-landing-page .product-item-rating {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--pl-border);
}

body.premium-landing-page .product-item-rating .item-wishlist {
  color: var(--pl-text-secondary);
  font-size: 0.8125rem;
}

body.premium-landing-page .product-item .item-meta .price {
  font-family: var(--pl-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pl-text);
}

body.premium-landing-page .product-item .item-details::after {
  content: "";
  display: table;
  clear: both;
}

body.premium-landing-page .product-item .product-item-features {
  display: block;
  width: 100%;
  clear: both;
  margin: 0 0 10px;
  padding: 0;
  background: none;
  border: none;
}

body.premium-landing-page .product-item .product-item-features .product-feature-list--card {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.premium-landing-page .ratio-3x2,
body.premium-landing-page .ratio-product-box,
body.premium-landing-page .ratio-image-product-details {
  --bs-aspect-ratio: 66.6666666667%;
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  background: var(--pl-bg-secondary);
}

body.premium-landing-page .ratio-3x2::before,
body.premium-landing-page .ratio-product-box::before,
body.premium-landing-page .ratio-image-product-details::before {
  display: none;
  padding-top: 0;
  content: none;
}

body.premium-landing-page .ratio-product-box {
  border-radius: inherit;
}

body.premium-landing-page .ratio-image-product-details > a {
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

body.premium-landing-page .product-item .ratio-product-box > a {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

body.premium-landing-page .ratio-image-product-details > img {
  position: relative;
  top: auto;
  left: auto;
}

body.premium-landing-page .product-item .ratio-product-box > a > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

body.premium-landing-page .product-item .img-product,
body.premium-landing-page .ratio-image-product-details img:not(.img-product-slider) {
  object-fit: contain !important;
  object-position: center;
}

body.premium-landing-page .product-item .ratio-product-box > a > img.img-product {
  object-fit: cover !important;
  object-position: center;
}

body.premium-landing-page .product-slider-container {
  max-height: none;
  overflow: visible;
}

/* Product detail — image gallery */
body.premium-landing-page .product-gallery-wrap {
  position: relative;
  width: 100%;
}

body.premium-landing-page .product-slider-container--gallery-below {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  float: none;
  overflow: hidden;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-main,
body.premium-landing-page .product-slider-container--gallery-below .product-slider-main.right {
  width: 100% !important;
  max-width: 100%;
  float: none;
}

body.premium-landing-page .col-product-details-left,
body.premium-landing-page #product_slider_container,
body.premium-landing-page .product-gallery-wrap {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-main .product-slider-content {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  height: auto !important;
  max-height: none;
  overflow: hidden;
  background: var(--pl-bg-secondary);
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider .ratio-image-product-details {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--pl-bg-secondary);
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider .ratio-image-product-details::before {
  display: none;
  content: none;
  padding-top: 0;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider .img-product-slider {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 100% !important;
  max-height: 100%;
  object-fit: cover !important;
  object-position: center;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider .item a {
  display: block;
  height: 100%;
  background: transparent;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav {
  padding: 0 12px;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .prev,
body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .next {
  width: 40px;
  height: 40px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 11px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.1);
  opacity: 0.92;
  color: var(--pl-text);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .next {
  float: right;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .prev:hover,
body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .next:hover {
  border-color: rgba(251, 206, 5, 0.55);
  background: var(--pl-card);
  opacity: 1;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .prev i:before,
body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .next i:before {
  height: auto !important;
  line-height: 1 !important;
  font-size: 18px;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-main .row-custom.text-center {
 /* padding: 12px 14px 4px; */
  margin: 0;
  background: var(--pl-bg-secondary);
 /* border-top: 1px solid var(--pl-border); */
}

body.premium-landing-page .product-slider-container--gallery-below .btn-video-preview {
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 4px 8px;
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.premium-landing-page .product-slider-container--gallery-below .btn-video-preview:hover {
  border-color: rgba(251, 206, 5, 0.45);
  background: rgba(251, 206, 5, 0.08);
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-thumbs,
body.premium-landing-page .product-slider-container--gallery-below .product-slider-thumbs.left {
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  padding: 12px 14px 14px;
  float: none;
  display: block !important;
  background: var(--pl-card);
  border-top: 1px solid var(--pl-border);
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-content--thumbs {
  padding: 0;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-list,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-track,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-slide,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-slide > div {
  height: auto !important;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-slide {
  width: 72px !important;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-list {
  margin: 0 -2px;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .item {
  width: 72px !important;
  height: auto !important;
  aspect-ratio: 3 / 2;
  margin-right: 10px;
  border: 2px solid var(--pl-border) !important;
  border-radius: 10px;
  background: var(--pl-bg-secondary);
  opacity: 0.88;
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .item:hover {
  opacity: 1;
  border-color: rgba(251, 206, 5, 0.4) !important;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-current {
  border-color: var(--pl-accent) !important;
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(251, 206, 5, 0.35);
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .item-inner {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .item img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider-nav .prev,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider-nav .next {
  width: 28px;
  height: 28px;
  line-height: 1;
  font-size: 16px;
  color: var(--pl-text);
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.1);
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider-nav .prev {
  left: 2px;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider-nav .next {
  right: 2px;
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider .slick-list,
body.premium-landing-page .product-slider-container--gallery-below .product-slider .slick-track,
body.premium-landing-page .product-slider-container--gallery-below .product-slider .slick-slide,
body.premium-landing-page .product-slider-container--gallery-below .product-slider .slick-slide > div,
body.premium-landing-page .product-slider-container--gallery-below .product-slider .item {
  height: 100% !important;
}

@media (max-width: 1399px) {
  body.premium-landing-page .product-slider-container--gallery-below .product-slider-thumbs,
  body.premium-landing-page .product-slider-container--gallery-below .left {
    width: 100% !important;
    max-width: 100%;
    display: block !important;
  }

  body.premium-landing-page .product-slider-container--gallery-below .product-slider-main,
  body.premium-landing-page .product-slider-container--gallery-below .right {
    width: 100% !important;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body.premium-landing-page .product-slider-container--gallery-below .product-slider-main .product-slider-content {
    aspect-ratio: 3 / 2;
  }

  body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-slide {
    width: 60px !important;
  }

  body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .item {
    width: 60px !important;
    height: auto !important;
    aspect-ratio: 3 / 2;
    margin-right: 8px;
  }

  body.premium-landing-page .product-slider-container--gallery-below .product-slider-thumbs {
    padding: 10px 12px 12px;
  }

  body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .prev,
  body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .next {
    width: 36px;
    height: 36px;
  }
}

/* Product share — description sidebar (below third-party block) */
body.premium-landing-page .product-share--sidebar {
  width: 100%;
  margin: var(--pl-space-2, 16px) 0 0;
}

body.premium-landing-page .product-description-sidebar-col .product-third-party-purchase + .product-share--sidebar {
  margin-top: var(--pl-space-2, 16px);
}

body.premium-landing-page .product-description-sidebar-col .product-documentation-btn + .product-share--sidebar {
  margin-top: var(--pl-space-2, 16px);
}

body.premium-landing-page .product-share--sidebar .product-share__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: var(--pl-card-padding, 20px);
  background: var(--pl-surface, #fff);
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .product-share--sidebar .product-share__intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.premium-landing-page .product-share--sidebar .product-share__label {
  margin: 0;
  font-family: var(--pl-font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pl-text, #111);
}

body.premium-landing-page .product-share--sidebar .product-share__hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--pl-text-muted, #6b7280);
}

body.premium-landing-page .product-share--sidebar .product-share__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.premium-landing-page .product-share--sidebar .product-share__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

body.premium-landing-page .product-share--sidebar .product-share__icons a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: 11px;
  background: var(--pl-bg-secondary, #f7f8fc);
  color: var(--pl-text-secondary, #6b7280) !important;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s;
}

body.premium-landing-page .product-share--sidebar .product-share__icons a i {
  display: block;
  font-size: 16px;
  line-height: 1;
}

body.premium-landing-page .product-share--sidebar .product-share__icons a:hover {
  border-color: var(--pl-accent, #fbce05);
  background: rgba(251, 206, 5, 0.12);
  color: var(--pl-text, #111) !important;
  transform: translateY(-2px);
}

body.premium-landing-page .product-share--sidebar .product-share__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: var(--pl-radius-btn, 14px);
  background: var(--pl-surface, #fff);
  color: var(--pl-text, #111);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

body.premium-landing-page .product-share--sidebar .product-share__copy-btn svg {
  flex-shrink: 0;
}

body.premium-landing-page .product-share--sidebar .product-share__copy-btn:hover {
  border-color: var(--pl-accent, #fbce05);
  background: rgba(251, 206, 5, 0.1);
}

body.premium-landing-page .product-share--sidebar .product-share__copy-btn.is-copied {
  border-color: rgba(25, 187, 155, 0.45);
  background: rgba(25, 187, 155, 0.1);
  color: #0f766e;
}

@media (max-width: 768px) {
  body.premium-landing-page .product-share--sidebar .product-share__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  body.premium-landing-page .product-share--sidebar .product-share__icons {
    justify-content: flex-start;
  }

  body.premium-landing-page .product-share--sidebar .product-share__copy-btn {
    width: 100%;
  }

  body.premium-landing-page .product-share--sidebar .product-share__icons a {
    width: 38px;
    height: 38px;
  }
}

/* Wishlist heart on product gallery */
body.premium-landing-page .product-gallery-wrap {
  position: relative;
}

body.premium-landing-page .product-wishlist-overlay__btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  pointer-events: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pl-text-secondary, #6b7280);
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body.premium-landing-page .product-wishlist-overlay__btn i {
  font-size: 22px;
  line-height: 1;
}

body.premium-landing-page .product-wishlist-overlay__btn:hover {
  transform: scale(1.06);
  box-shadow: none;
}

body.premium-landing-page .product-wishlist-overlay__btn.is-active {
  color: #e11d48;
  background: #fff;
}

body.premium-landing-page .product-wishlist-overlay__btn.is-active i {
  color: #e11d48;
}

/* Product actions: add to cart (primary) + live preview (secondary) */
body.premium-landing-page .product-add-to-cart-container {
  margin-top: 16px;
  clear: both;
}

body.premium-landing-page .product-buy-box__cta-zone {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--pl-border, #e8e8e8);
}

body.premium-landing-page .product-buy-box__extras {
  margin-top: 16px;
}

body.premium-landing-page .product-buy-box__extras .product-features-block {
  margin-bottom: 12px;
}

body.premium-landing-page .product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

body.premium-landing-page .product-actions__qty-row {
  width: 122px;
  max-width: 100%;
}

body.premium-landing-page .product-actions__qty-row .input-group {
  height: 48px;
}

body.premium-landing-page .product-actions__qty-row .form-control,
body.premium-landing-page .product-actions__qty-row .btn {
  height: 48px;
}

body.premium-landing-page .product-actions__cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

body.premium-landing-page .product-actions__cta--has-free-version {
  flex-direction: column;
  gap: 12px;
}

body.premium-landing-page .product-actions__cta-primary {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

body.premium-landing-page .product-actions__cta--cart-only .product-actions__cta-primary .product-actions__cart {
  flex: 1 1 100%;
}

body.premium-landing-page .product-actions__free-version {
  flex: 1 1 100%;
  width: 100%;
  padding: 14px;
  background: linear-gradient(180deg, rgba(251, 206, 5, 0.12) 0%, rgba(251, 206, 5, 0.04) 100%);
  border: 1px solid rgba(251, 206, 5, 0.45);
  border-radius: var(--pl-radius-btn, 12px);
  box-sizing: border-box;
}

body.premium-landing-page .product-actions__free-version-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

body.premium-landing-page .product-actions__free-version-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pl-text, #111);
  background: var(--pl-accent, #fbce05);
  border-radius: 6px;
  line-height: 1.2;
}

body.premium-landing-page .product-actions__free-version-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

body.premium-landing-page .product-actions__free-version-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pl-text, #111);
}

body.premium-landing-page .product-actions__free-version-hint {
  font-size: 12px;
  line-height: 1.4;
  color: var(--pl-text-secondary, #6b7280);
}

body.premium-landing-page .product-actions__free-version-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  color: var(--pl-text, #111);
  background: var(--pl-card, #fff);
  border: 1px solid var(--pl-border-strong, #d4d4d4);
  border-radius: var(--pl-radius-btn, 12px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-sizing: border-box;
}

body.premium-landing-page .product-actions__free-version-btn svg {
  flex-shrink: 0;
}

body.premium-landing-page .product-actions__free-version-btn span {
  white-space: nowrap;
}

body.premium-landing-page .product-actions__free-version-btn:hover,
body.premium-landing-page .product-actions__free-version-btn:focus-visible {
  border-color: var(--pl-accent, #fbce05);
  background: var(--pl-accent, #fbce05);
  color: var(--pl-text, #111);
  box-shadow: 0 4px 12px rgba(251, 206, 5, 0.35);
  transform: translateY(-1px);
  outline: none;
}

body.premium-landing-page .product-actions__preview {
  flex: 1 1 38%;
  min-width: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  text-decoration: none;
  border-radius: var(--pl-radius-btn, 12px);
  box-sizing: border-box;
  background: var(--pl-card, #fff);
  border: 1px solid var(--pl-border-strong, #d4d4d4);
  color: var(--pl-text, #111);
}

body.premium-landing-page .product-actions__preview:hover {
  border-color: var(--pl-accent, #fbce05);
  background: rgba(251, 206, 5, 0.08);
  color: var(--pl-text, #111);
}

body.premium-landing-page .product-actions__cart {
  flex: 1 1 62%;
  min-width: 0;
}

body.premium-landing-page .product-actions__cart .btn-product-cart {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  float: none;
  margin: 0;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--pl-radius-btn, 12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.premium-landing-page .product-actions__cart .btn-product-cart:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

body.premium-landing-page .product-actions__cta--cart-only .product-actions__cart {
  flex: 1 1 100%;
}

body.premium-landing-page .product-actions__cta--preview-only .product-actions__preview {
  flex: 1 1 100%;
}

body.premium-landing-page .product-actions__preview span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 992px) {
  body.premium-landing-page:has(.product-details-container) .col-product-details-right {
    position: sticky;
    top: calc(var(--pl-header-offset, 132px) + 12px);
    z-index: 5;
    align-self: flex-start;
  }
}

/* ——— Product page — spacing aligned with homepage (pl-gap-grid / pl-section-px) ——— */
body.premium-landing-page:has(.product-details-container) #wrapper {
  padding-bottom: var(--pl-inner-bottom, 64px);
}

body.premium-landing-page:has(.product-details-container) .nav-breadcrumb {
  margin-bottom: var(--pl-block-gap, 28px);
}

body.premium-landing-page:has(.product-details-container) .product-details-container {
  margin-bottom: var(--pl-block-gap, 28px);
}

body.premium-landing-page:has(.product-details-container) .product-detail-page-layout {
  --bs-gutter-x: var(--pl-gap-grid, 28px);
  align-items: flex-start;
}

body.premium-landing-page:has(.product-details-container) .product-detail-page-layout > [class*="col-"] {
  align-self: flex-start;
}

/* Columns stack their own blocks (avoids float + height:100% overlap in buy box vs attributes). */
body.premium-landing-page:has(.product-details-container) .col-product-details-left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--pl-block-gap, 28px);
  float: none !important;
  height: auto !important;
  min-height: 0;
}

body.premium-landing-page:has(.product-details-container) .col-product-details-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: auto;
  align-content: start;
  gap: var(--pl-block-gap, 28px);
  float: none !important;
  height: auto !important;
  min-height: 0;
  align-self: flex-start;
}

body.premium-landing-page:has(.product-details-container) .product-content-details,
body.premium-landing-page:has(.product-details-container) #product_slider_container,
body.premium-landing-page:has(.product-details-container) .product-gallery-wrap,
body.premium-landing-page:has(.product-details-container) .product-description-main,
body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col {
  float: none !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto;
}

body.premium-landing-page:has(.product-details-container) .product-content-details {
  position: relative;
  display: flow-root;
  overflow: visible;
  min-height: 0;
  flex: 0 0 auto;
  align-self: stretch;
  background: var(--pl-surface, #fff);
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: var(--pl-radius-card, 18px);
  box-shadow: none;
  padding: var(--pl-card-padding, 24px);
}

body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col {
  display: flow-root;
  flex: 0 0 auto;
  align-self: stretch;
  clear: both;
}

body.premium-landing-page:has(.product-details-container) .product-description-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
  float: none !important;
  clear: both;
}

body.premium-landing-page:has(.product-details-container) .product-description-main > .pl-product-highlights-strip {
  flex: 0 0 auto;
  float: none !important;
  clear: both;
}

body.premium-landing-page:has(.product-details-container) .product-description-main > #product_description_content {
  flex: 0 0 auto;
  float: none !important;
  clear: both;
  width: 100%;
}

@media (min-width: 992px) {
  /* Match top product row to description/attributes row (8 + 4), not legacy 51.2/48.8 */
  body.premium-landing-page .col-product-details-left {
    flex: 0 0 auto;
    width: 60%;
    max-width: 60%;
  }

  body.premium-landing-page .col-product-details-right {
    flex: 0 0 auto;
    width: 40%;
    max-width: 40%;
  }

  body.premium-landing-page:has(.product-details-container) .col-product-details-right,
  body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col {
   /* padding-left: var(--pl-gap-grid, 28px); */
    padding-right: 0;
  }
}

body.premium-landing-page:has(.product-details-container) .product-content-details .product-title {
  margin-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-content-details .product-short-description {
  margin: var(--pl-space-1, 8px) 0 var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-content-details .meta {
  margin-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-content-details .row-custom.price {
  margin-bottom: var(--pl-space-2, 16px);
}

/* Product detail — price + savings (matches trust badges / pl-badge UI) */
.pl-product-price-offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  float: none;
  width: 100%;
  overflow: visible;
}

.pl-product-price-offer__price {
  float: none !important;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-family: var(--pl-font-heading, 'Sora', system-ui, sans-serif);
  font-size: clamp(1.75rem, 2.5vw, 2rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--pl-text, #111);
}

.pl-product-price-offer__price .discount-original-price {
  font-family: var(--pl-font-body, 'Inter', system-ui, sans-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--pl-text-secondary, #6b7280);
}

.pl-product-price-save {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(251, 206, 5, 0.14) 0%, rgba(251, 206, 5, 0.05) 100%);
  border: 1px solid rgba(251, 206, 5, 0.32);
  border-radius: var(--pl-radius-md, 12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pl-product-price-save__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  font-family: var(--pl-font-heading, 'Sora', system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  background: #dc2626;
  border: 1px solid rgba(185, 28, 28, 0.35);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow:
    0 4px 14px rgba(220, 38, 38, 0.35),
    0 2px 4px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pl-product-price-save:hover .pl-product-price-save__badge {
  transform: translateY(-3px);
  box-shadow:
    0 8px 20px rgba(220, 38, 38, 0.4),
    0 3px 8px rgba(0, 0, 0, 0.08);
}

.pl-product-price-save__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  font-family: var(--pl-font-body, 'Inter', system-ui, sans-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--pl-text-secondary, #6b7280);
}

.pl-product-price-save__meta strong {
  font-weight: 700;
  color: var(--pl-text, #111);
}

.pl-product-price-save__meta .pl-badge-dot {
  flex-shrink: 0;
}

.pl-product-price-save__sep {
  color: var(--pl-border, #e5e7eb);
  font-weight: 600;
}

@media (max-width: 480px) {
  .pl-product-price-offer {
    align-items: stretch;
  }

  .pl-product-price-save {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pl-product-price-save__badge {
    transition: none;
  }

  .pl-product-price-save:hover .pl-product-price-save__badge {
    transform: translateY(-1px);
  }
}

body.premium-landing-page:has(.product-details-container) .product-content-details .product-short-description {
  margin-bottom: var(--pl-space-2, 16px);
}

/* Product detail — reviews + analytics meta row */
body.premium-landing-page .product-content-details .row-custom.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 12px;
  width: 100%;
  float: none;
  margin-bottom: var(--pl-space-2, 16px);
  padding-bottom: var(--pl-space-2, 16px);
  border-bottom: 1px solid var(--pl-border);
}

body.premium-landing-page .product-content-details .row-custom.meta::after {
  display: none;
}

body.premium-landing-page .product-content-details .product-details-review {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  float: none;
  flex: 0 1 auto;
  min-width: 0;
}

body.premium-landing-page .product-content-details .product-details-review .rating {
  float: none;
  display: inline-flex;
  align-items: center;
  height: auto;
  line-height: 1;
}

body.premium-landing-page .product-content-details .product-details-review .review-text,
body.premium-landing-page .product-content-details .product-details-review .button-link.review-text {
  margin-left: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-review-cta--inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

body.premium-landing-page .pl-review-cta--block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

body.premium-landing-page .pl-review-cta--prominent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}

body.premium-landing-page .product-details-review-cta {
  margin: 0 0 var(--pl-space-2, 16px);
  padding: 0;
  clear: both;
}

body.premium-landing-page .product-details-review-cta .pl-review-cta__btn {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

body.premium-landing-page .product-details-review-cta .pl-review-cta__btn--locked {
  opacity: 0.92;
}

body.premium-landing-page .pl-review-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  white-space: nowrap;
}

body.premium-landing-page .pl-review-cta__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--pl-text-secondary);
  line-height: 1.45;
}

body.premium-landing-page .pl-review-empty {
  margin-top: 8px;
}

body.premium-landing-page .reviews-container .review-total {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

body.premium-landing-page .reviews-container .review-total .label-review {
  margin: 0;
}

body.premium-landing-page #rateProductModal .rating-stars-modal .label-star {
  cursor: pointer;
  color: #ddd;
  font-size: 1.35rem;
  margin: 0 2px;
}

body.premium-landing-page #rateProductModal .rating-stars-modal .label-star .icon-star {
  color: var(--pl-accent, #fbce05);
}

body.premium-landing-page #rateProductModal .modal-footer .btn-gray,
body.premium-landing-page #rateProductModal .modal-footer .btn-custom {
  border-radius: var(--pl-radius-btn, 14px) !important;
}

body.premium-landing-page .product-content-details .product-analytics {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  float: none;
  margin-left: 0;
  flex: 0 1 auto;
  min-width: 0;
}

body.premium-landing-page .product-content-details .product-analytics span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  float: none;
  margin: 0;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--pl-text-secondary);
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
  border-radius: 8px;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.premium-landing-page .product-content-details .product-analytics span:hover {
  border-color: rgba(251, 206, 5, 0.45);
  background: rgba(251, 206, 5, 0.08);
}

body.premium-landing-page .product-content-details .product-analytics span i {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  color: var(--pl-text);
  opacity: 0.65;
}

body.premium-landing-page .product-content-details .meta span .icon-comment {
  font-size: 14px;
}

body.premium-landing-page:has(.product-details-container) .product-actions {
  gap: var(--pl-space-2, 16px);
  margin-top: var(--pl-space-1, 8px);
}

@media (max-width: 991.98px) {
  body.premium-landing-page:has(.product-details-container) .product-detail-page-layout {
    display: flex;
    flex-direction: column;
    gap: var(--pl-space-3, 24px);
  }

  body.premium-landing-page:has(.product-details-container) .product-detail-page-layout > .col-product-details-left,
  body.premium-landing-page:has(.product-details-container) .product-detail-page-layout > .col-product-details-right {
    display: contents;
  }

  body.premium-landing-page:has(.product-details-container) .product-gallery-wrap {
    order: 1;
  }

  body.premium-landing-page:has(.product-details-container) .product-content-details {
    order: 2;
  }

  body.premium-landing-page:has(.product-details-container) .product-description-main {
    order: 3;
    margin-top: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col {
    order: 4;
    margin-top: 0;
  }
}

body.premium-landing-page:has(.product-details-container) .product-description {
  margin-bottom: 0;
  display: flow-root;
  overflow: hidden;
}

body.premium-landing-page:has(.product-details-container) .product-description .tab-content,
body.premium-landing-page:has(.product-details-container) .product-description .tab-content .tab-pane,
body.premium-landing-page:has(.product-details-container) .product-description .tab-content .card,
body.premium-landing-page:has(.product-details-container) .product-description .collapse-description-content,
body.premium-landing-page:has(.product-details-container) .product-description .description,
body.premium-landing-page:has(.product-details-container) .product-description .product-changelog {
  float: none;
  width: 100%;
  max-width: 100%;
}

body.premium-landing-page:has(.product-details-container) .product-attributes-sidebar {
  padding: var(--pl-card-padding, 24px);
}

body.premium-landing-page:has(.product-details-container) .product-attributes-sidebar__title {
  margin-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-attributes-sidebar__row {
  padding: var(--pl-space-2, 16px) 0;
}

body.premium-landing-page:has(.product-details-container) .product-description > .nav-tabs-horizontal {
  margin-bottom: 0;
}

body.premium-landing-page:has(.product-details-container) .product-description .description,
body.premium-landing-page:has(.product-details-container) .product-description .product-changelog {
  padding-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-description .collapse-description-content #review-result {
  padding-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-description .collapse-description-content .comments-container {
  padding-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-description .collapse-description-content .form-add-comment {
  padding-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-description .description :is(h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-content-details .product-features-block {
  margin-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col .product-share--sidebar {
  margin-top: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col .product-documentation-btn {
  margin-top: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) #wrapper .section {
  margin-bottom: 0;
}

body.premium-landing-page:has(.product-details-container) .section-related-products {
  margin-top: var(--pl-block-gap, 28px);
  margin-bottom: var(--pl-block-gap, 28px) !important;
}

body.premium-landing-page:has(.product-details-container) .section-related-products .title {
  margin-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page:has(.product-details-container) .section-related-products > .row {
  --bs-gutter-x: var(--pl-gap-grid, 28px);
  row-gap: var(--pl-gap-grid, 28px);
}

body.premium-landing-page:has(.product-details-container) .pl-product-cta {
  margin-top: var(--pl-block-gap, 28px);
  margin-bottom: var(--pl-block-gap, 28px);
}

body.premium-landing-page:has(.product-details-container) .pl-product-cta .pl-cta {
  padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 48px);
}

body.premium-landing-page:has(.product-details-container) .mb-4 {
  margin-bottom: var(--pl-block-gap, 28px) !important;
}

@media (min-width: 992px) {
  body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col {
    margin-top: 0;
    padding-left: 0px;
  }
}

@media (max-width: 991.98px) {
  /* One horizontal inset (container 15px) — no stacked Bootstrap column gutters */
  body.premium-landing-page:has(.product-details-container) #wrapper > .container > .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  body.premium-landing-page:has(.product-details-container) #wrapper > .container > .row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.premium-landing-page:has(.product-details-container) .product-detail-page-layout {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-detail-page-layout > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.premium-landing-page:has(.product-details-container) .product-description,
  body.premium-landing-page:has(.product-details-container) .product-attributes-sidebar {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description {
    padding: 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
  }

  body.premium-landing-page:has(.product-details-container) .product-content-details {
    margin-bottom: 0px;
  }

  body.premium-landing-page:has(.product-details-container) .product-attributes-sidebar {
    padding: var(--pl-space-3, 24px) 15px;
  }

  body.premium-landing-page:has(.product-details-container) .section-related-products > .row.row-related-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--pl-gap-grid, 28px);
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
  }

  body.premium-landing-page:has(.product-details-container) .row-related-products > .col-product {
    flex: none !important;
    max-width: none !important;
    width: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.premium-landing-page:has(.product-details-container) .product-description-sidebar-col {
    margin-top: 0px;
    padding-left: 0;
    padding-right: 0;
  }

  /* Tablet/mobile: accordion sections instead of horizontal tabs */
  body.premium-landing-page .product-description .nav-tabs-horizontal {
    display: none !important;
  }

  body.premium-landing-page .product-description .tab-content > .tab-pane {
    display: block !important;
    opacity: 1 !important;
    float: none;
    width: 100%;
    padding: 0 !important;
    min-height: 0;
  }

  body.premium-landing-page .product-description .tab-content .card {
    margin-bottom: var(--pl-space-2, 16px);
    border: 1px solid var(--pl-border) !important;
    border-radius: var(--pl-radius-md, 12px);
    overflow: hidden;
    background: var(--pl-card);
  }

  body.premium-landing-page .product-description .tab-content .card .card-header {
    display: block !important;
    float: none;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background: var(--pl-bg-secondary);
    border-bottom: 1px solid var(--pl-border);
  }

  body.premium-landing-page .product-description .tab-content .card-header .card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--pl-space-2, 16px) 15px;
    font-weight: 600;
    color: var(--pl-text);
    text-decoration: none;
    cursor: pointer;
  }

  body.premium-landing-page .product-description .tab-content .card-header .card-link:hover {
    color: var(--pl-text);
    text-decoration: none;
    background: rgba(251, 206, 5, 0.06);
  }

  body.premium-landing-page .product-description .tab-content .card-header .card-link i {
    float: none;
    flex-shrink: 0;
  }

  body.premium-landing-page .product-description .collapse-description-content.collapse:not(.show) {
    display: none !important;
  }

  body.premium-landing-page .product-description .collapse-description-content.collapse.show {
    display: block !important;
    height: auto !important;
    padding: 0 0 var(--pl-space-2, 16px);
  }

  body.premium-landing-page .product-description .collapse-description-content .description,
  body.premium-landing-page .product-description .collapse-description-content .product-changelog {
    padding: var(--pl-space-2, 16px) var(--pl-section-px, 15px) var(--pl-space-2, 16px);
  }

  body.premium-landing-page .product-description .collapse-description-content #review-result {
    padding: var(--pl-space-2, 16px) var(--pl-section-px, 15px) var(--pl-space-2, 16px);
  }

  body.premium-landing-page .product-description .collapse-description-content .comments-container {
    padding: var(--pl-space-2, 16px) var(--pl-section-px, 15px) var(--pl-space-2, 16px);
  }

  body.premium-landing-page .product-description .collapse-description-content .form-add-comment {
    margin-top: 0;
    padding: var(--pl-space-2, 16px) var(--pl-section-px, 15px) var(--pl-space-2, 16px);
    border-top: 1px solid var(--pl-border);
  }
}

@media (max-width: 768px) {
  body.premium-landing-page:has(.product-details-container) .pl-product-cta .pl-cta {
    padding: var(--pl-space-5, 48px) var(--pl-space-3, 24px);
  }
}

/* Product details */
body.premium-landing-page .product-details-container {
  min-height: 0;
}

body.premium-landing-page .product-details-container > .row {
  align-items: flex-start;
}

body.premium-landing-page .col-product-details-left,
body.premium-landing-page #product_slider_container {
  align-self: flex-start;
  height: auto;
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-list,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .slick-track {
  height: auto !important;
  min-height: 0 !important;
}

body.premium-landing-page .product-content-details .product-title {
  font-family: var(--pl-font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

body.premium-landing-page .product-content-details .product-short-description {
  color: var(--pl-text-secondary, #5c6370);
  font-size: 0.95rem;
  line-height: 1.6;
}

body.premium-landing-page .row-custom.details:empty {
  display: none;
  margin: 0;
  padding: 0;
}

/* Product detail — feature list below short description */
body.premium-landing-page .product-content-details .product-features-block {
  margin: 0 0 var(--pl-space-2, 16px);
}

body.premium-landing-page .product-content-details .product-features-block__label {
  margin: 0 0 8px;
  font-family: var(--pl-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .product-content-details .product-feature-list--detail,
body.premium-landing-page .product-item .product-feature-list--card {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
}

body.premium-landing-page .product-content-details .product-feature-list--detail .product-feature-list__item,
body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

body.premium-landing-page .product-content-details .product-feature-list--detail .product-feature-list__item + .product-feature-list__item,
body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__item + .product-feature-list__item {
  border-top: none;
}

body.premium-landing-page .product-content-details .product-feature-list--detail .product-feature-list__icon,
body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
}

body.premium-landing-page .product-content-details .product-feature-list--detail .product-feature-list__icon .icon-check,
body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__icon .icon-check {
  font-size: 12px;
  line-height: 1;
  color: var(--pl-accent);
}

body.premium-landing-page .product-content-details .product-feature-list--detail .product-feature-list__text {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--pl-text-secondary);
  word-break: break-word;
}

body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__item {
  align-items: center;
  width: 100%;
  float: none;
  font-size: 0.8125rem;
  line-height: 1.35;
}

body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__icon {
  margin-top: 0;
}

body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__icon .icon-check {
  font-size: 11px;
}

body.premium-landing-page .product-item .product-feature-list--card .product-feature-list__text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  color: var(--pl-text-secondary);
}

@media (max-width: 991.98px) {
  body.premium-landing-page .product-details-container > .row {
    margin-left: 0;
    margin-right: 0;
  }

  body.premium-landing-page .col-product-details-left,
  body.premium-landing-page .col-product-details-right {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  body.premium-landing-page .product-slider-container,
  body.premium-landing-page .product-content-details,
  body.premium-landing-page #product_slider_container {
    float: none;
    width: 100%;
  }

  body.premium-landing-page .product-content-details .row-custom.meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  body.premium-landing-page .product-content-details .product-analytics {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  body.premium-landing-page:has(.product-details-container) .col-product-details-right {
    position: static;
  }

  body.premium-landing-page .product-actions__cta {
    flex-direction: column;
    gap: 10px;
  }

  body.premium-landing-page .product-actions__cta-primary {
    flex-direction: column;
    gap: 10px;
  }

  body.premium-landing-page .product-actions__cart {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  body.premium-landing-page .product-actions__preview {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    min-height: 48px;
  }

  body.premium-landing-page .product-actions__preview span {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  body.premium-landing-page .product-actions__cart .btn-product-cart {
    white-space: nowrap;
    min-height: 50px;
  }

  body.premium-landing-page .product-actions__free-version {
    padding: 12px;
  }

  body.premium-landing-page .product-actions__free-version-btn {
    min-height: 46px;
    font-size: 14px;
  }

  body.premium-landing-page .product-actions__free-version-btn span {
    white-space: normal;
    text-align: center;
  }

}

@media (max-width: 479.98px) {
  body.premium-landing-page .product-actions__qty-row {
    width: 100%;
  }
}

body.premium-landing-page .nav-tabs-horizontal {
  border-bottom: 1px solid var(--pl-border);
  margin-bottom: 24px;
}

body.premium-landing-page .nav-tabs-horizontal .nav-link {
  font-weight: 600;
  color: var(--pl-text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 12px 20px;
}

body.premium-landing-page .nav-tabs-horizontal .nav-link.active,
body.premium-landing-page .nav-tabs-horizontal .nav-link:hover {
  color: var(--pl-text);
  border-bottom-color: var(--pl-accent);
  background: transparent;
}

body.premium-landing-page .product-description {
  float: none;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.premium-landing-page .product-description .product-changelog {
  display: block;
  visibility: visible;
  opacity: 1;
  color: var(--pl-text);
}

.product-changelog-entries .product-changelog-entry {
  padding: 1rem 0;
  border-bottom: 1px solid var(--pl-border, #e8e8e8);
}

.product-changelog-entries .product-changelog-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-changelog-entries .product-changelog-version {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.product-changelog-editor .changelog-entry .panel-body {
  padding-bottom: 0;
}

.product-changelog-editor .product-changelog-editor-help {
  margin-bottom: 1rem;
}

/* Desktop tabs: card wrapper + panel body visible inside active tab */
@media (min-width: 992px) {
  body.premium-landing-page .product-description,
  body.premium-landing-page:has(.product-details-container) .product-description {
    background: var(--pl-card);
    border: 1px solid var(--pl-border);
    border-radius: var(--pl-radius-card, 18px);
  }

  body.premium-landing-page:has(.product-details-container) .product-description > .nav-tabs-horizontal {
    padding: var(--pl-card-padding, 24px) var(--pl-card-padding, 24px) 0;
    margin-bottom: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description > .nav-tabs-horizontal .nav-link {
    padding: 10px 18px 10px 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description > .nav-tabs-horizontal .nav-item:not(:last-child) .nav-link {
    padding-right: 18px;
  }

  body.premium-landing-page:has(.product-details-container) .product-description .tab-content .tab-pane {
    padding: var(--pl-space-3, 24px) var(--pl-card-padding, 24px) var(--pl-card-padding, 24px);
    min-height: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description .description,
  body.premium-landing-page:has(.product-details-container) .product-description .product-changelog {
    padding: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description .collapse-description-content #review-result {
    padding: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description .collapse-description-content .comments-container {
    padding: 0;
  }

  body.premium-landing-page:has(.product-details-container) .product-description .collapse-description-content .form-add-comment {
    margin-top: var(--pl-space-3, 24px);
    padding: var(--pl-space-3, 24px) 0 0;
    border-top: 1px solid var(--pl-border);
  }

  body.premium-landing-page .product-description .tab-pane.active .collapse-description-content,
  body.premium-landing-page .product-description .tab-pane.show .collapse-description-content {
    display: block !important;
    height: auto !important;
  }
}

/* Sidebar filters */
body.premium-landing-page .product-list-filters,
body.premium-landing-page .sidebar-filter {
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  padding: 20px;
}

body.premium-landing-page .filter-list .filter-list-title {
  font-family: var(--pl-font-heading);
  font-weight: 700;
  font-size: 14px;
}

body.premium-landing-page .col-content-products {
  min-width: 0;
}

/* Product page: related products grid (3 per row) */
body.premium-landing-page:has(.product-details-container) .section-related-products .title {
  font-size: 1.125rem;
}

body.premium-landing-page .row-related-products > .col-product {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  min-width: 0;
}

@media (max-width: 767.98px) {
  body.premium-landing-page .row-related-products > .col-product {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Inner page hero (contact, CMS pages, product archive, blog, etc.) */
body.premium-landing-page .pl-inner-page-wrap,
body.premium-landing-page .page-contact-wrap {
  padding-bottom: var(--pl-block-gap, 48px);
}

body.premium-landing-page .pl-inner-hero,
body.premium-landing-page .page-contact-hero {
  background: linear-gradient(165deg, var(--pl-bg-secondary, #f4f4f5) 0%, var(--pl-bg, #fafafa) 55%);
  border-bottom: 1px solid var(--pl-border);
  padding: calc(var(--pl-header-offset, 132px) + clamp(32px, 5vw, 56px)) 0 clamp(36px, 5vw, 56px);
  margin-top: 0;
  margin-bottom: var(--pl-block-gap, 28px);
}

body.premium-landing-page .pl-inner-hero__inner,
body.premium-landing-page .page-contact-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

body.premium-landing-page .pl-inner-hero__eyebrow,
body.premium-landing-page .page-contact-hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pl-text-secondary);
  background: rgba(251, 206, 5, 0.18);
  border-radius: 999px;
}

body.premium-landing-page .pl-inner-hero__title,
body.premium-landing-page .page-contact-hero__title {
  font-family: var(--pl-font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--pl-text);
}

body.premium-landing-page .pl-inner-hero__lead,
body.premium-landing-page .page-contact-hero__lead {
  margin: 0 auto;
  max-width: 56ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-inner-page-wrap .nav-breadcrumb {
  margin-bottom: var(--pl-space-3, 24px);
}

body.premium-landing-page .pl-inner-page-wrap .page-title:not(.sr-only),
body.premium-landing-page .pl-inner-page-wrap .product-list-title,
body.premium-landing-page .pl-inner-page-wrap .product-list-header .category-description,
body.premium-landing-page .pl-inner-page-wrap .support .article-title,
body.premium-landing-page .pl-inner-page-wrap .support .title-category {
  display: none;
}

/* Support tickets — keep list/detail titles visible on inner pages */
body.premium-landing-page .pl-inner-page-wrap .support.support-ticket-page .page-title,
body.premium-landing-page .pl-inner-page-wrap .support .page-title.page-title-ticket {
  display: block;
  font-family: var(--pl-font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  color: var(--pl-text);
}

body.premium-landing-page .page-contact__form-hint {
  margin: -12px 0 var(--pl-space-3, 24px);
  font-size: 0.9375rem;
  color: var(--pl-text-secondary);
  line-height: 1.55;
}

body.premium-landing-page .page-contact__inquiry-type {
  margin-bottom: var(--pl-space-3, 24px);
}

body.premium-landing-page .page-contact__inquiry-label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text);
}

body.premium-landing-page .page-contact__inquiry-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

body.premium-landing-page .page-contact__inquiry-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-btn, 14px);
  background: var(--pl-bg);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--pl-text-secondary);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.premium-landing-page .page-contact__inquiry-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body.premium-landing-page .page-contact__inquiry-option:has(input:checked) {
  border-color: var(--pl-accent);
  background: rgba(251, 206, 5, 0.12);
  color: var(--pl-text);
}

body.premium-landing-page .page-contact__field--phone,
body.premium-landing-page .page-contact__field--subject,
body.premium-landing-page .page-contact__field--service,
body.premium-landing-page .page-contact__field--package {
  display: none;
}

body.premium-landing-page .page-contact__field.is-visible {
  display: block;
}

body.premium-landing-page .page-contact__aside-title {
  font-family: var(--pl-font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 8px;
  color: var(--pl-text);
}

body.premium-landing-page .page-contact__aside-lead {
  margin: 0 0 var(--pl-space-3, 24px);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .page-contact__aside-cta {
  margin-top: var(--pl-space-3, 24px);
  padding-top: var(--pl-space-3, 24px);
  border-top: 1px solid var(--pl-border);
}

body.premium-landing-page .page-contact-wrap #wrapper .page-title {
  margin-bottom: var(--pl-block-gap, 28px);
}

body.premium-landing-page .page-contact {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  padding: var(--pl-card-padding, 24px);
  box-shadow: none;
}

body.premium-landing-page .page-contact__intro.contact-text {
  margin-bottom: var(--pl-block-gap, 28px);
  padding-bottom: var(--pl-block-gap, 28px);
  border-bottom: 1px solid var(--pl-border);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .page-contact__intro.contact-text p:last-child {
  margin-bottom: 0;
}

body.premium-landing-page .page-contact__grid {
  --bs-gutter-x: var(--pl-gap-grid, 28px);
  row-gap: var(--pl-gap-grid, 28px);
  align-items: flex-start;
}

body.premium-landing-page .contact-leave-message {
  font-family: var(--pl-font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin: 0 0 var(--pl-space-3, 24px);
  color: var(--pl-text);
}

body.premium-landing-page .page-contact__form .form-group {
  margin-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page .page-contact__form .form-textarea {
  min-height: 140px;
  resize: vertical;
}

body.premium-landing-page .page-contact__form .custom-control-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .page-contact__form .link-terms {
  color: var(--pl-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.premium-landing-page .page-contact__submit {
  margin-bottom: 0;
  margin-top: var(--pl-space-1, 8px);
}

body.premium-landing-page .page-contact__aside {
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  padding: var(--pl-card-padding, 24px);
  height: 100%;
}

body.premium-landing-page .page-contact .contact-item {
  display: flex;
  align-items: center;
  gap: var(--pl-space-2, 16px);
  margin: 0 0 var(--pl-space-2, 16px);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .page-contact .contact-item:last-of-type {
  margin-bottom: 0;
}

body.premium-landing-page .page-contact .contact-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pl-radius-md, 12px);
  background: rgba(251, 206, 5, 0.14);
  border: 1px solid rgba(251, 206, 5, 0.28);
  color: #9a7b00;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.premium-landing-page .page-contact .contact-item__icon i,
body.premium-landing-page .page-contact .contact-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: inherit;
  vertical-align: middle;
}

body.premium-landing-page .page-contact .contact-item:hover .contact-item__icon {
  background: rgba(251, 206, 5, 0.22);
  border-color: var(--pl-accent, #fbce05);
  color: var(--pl-text, #111);
}

body.premium-landing-page .page-contact .contact-item__text {
  flex: 1;
  min-width: 0;
  padding-top: 0;
  word-break: break-word;
}

body.premium-landing-page .page-contact .contact-item__text a {
  color: var(--pl-text);
  text-decoration: none;
  font-weight: 500;
}

body.premium-landing-page .page-contact .contact-item__text a:hover {
  color: var(--pl-accent-hover, #e8be04);
  text-decoration: underline;
}

body.premium-landing-page .page-contact__social {
  margin-top: var(--pl-space-3, 24px);
  padding-top: var(--pl-space-3, 24px);
  border-top: 1px solid var(--pl-border);
}

body.premium-landing-page .page-contact__social-label {
  display: block;
  margin-bottom: var(--pl-space-2, 16px);
  font-family: var(--pl-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .page-contact__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.premium-landing-page .page-contact__social-list a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pl-border);
  border-radius: 11px;
  color: var(--pl-text);
  background: var(--pl-card);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body.premium-landing-page .page-contact__social-list a:hover {
  border-color: var(--pl-accent);
  background: rgba(251, 206, 5, 0.12);
  color: var(--pl-text);
}

body.premium-landing-page .page-contact__social-list a i {
  font-size: 17px;
  line-height: 1;
}

body.premium-landing-page .page-contact .ctd {
  display: none !important;
}

body.premium-landing-page .page-contact__map-wrap {
  margin-top: var(--pl-block-gap, 28px);
}

body.premium-landing-page .contact-map-container {
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
  border: 1px solid var(--pl-border);
  background: var(--pl-bg-secondary);
  aspect-ratio: 21 / 9;
  min-height: 280px;
}

body.premium-landing-page .contact-map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

@media (max-width: 576px) {
  body.premium-landing-page .page-contact__inquiry-options {
    grid-template-columns: 1fr;
  }
}

/* Cart & checkout */
body.premium-landing-page .shopping-cart .cart-section-title {
  margin-bottom: 16px;
  font-family: var(--pl-font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.premium-landing-page .shopping-cart .cart-coupon-applied {
  font-size: 14px;
  color: var(--pl-text-secondary, #6b7280);
}

body.premium-landing-page .shopping-cart .cart-coupon-applied a {
  font-weight: 600;
}

body.premium-landing-page .shopping-cart .cart-coupon-error .text-danger {
  font-size: 13px;
  margin-top: 8px;
}

/* Cart — instant download badge (product detail + cart) */
body.premium-landing-page .pl-badge-instant-download,
body.premium-landing-page .badge-instant-download.pl-badge-instant-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  min-width: 0 !important;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--pl-font-body);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, 0.1) !important;
  border: 1px solid rgba(37, 99, 235, 0.22) !important;
  border-radius: 999px;
  box-shadow: none;
}

body.premium-landing-page .pl-badge-instant-download svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

body.premium-landing-page .shopping-cart .list-item--badge {
  margin-bottom: 10px;
}

body.premium-landing-page .shopping-cart .list-item--badge .pl-badge-instant-download {
  margin: 0;
}

/* Product detail — highlights strip (above description tabs) */
body.premium-landing-page .pl-product-highlights-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px 24px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 24px;
  padding: 22px 24px;
 /* background: var(--pl-bg-secondary, #f5f5f5); */
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: var(--pl-radius-md, 12px);
  float: none !important;
  clear: both;
}

body.premium-landing-page .pl-product-highlights-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  float: none !important;
}

body.premium-landing-page .pl-product-highlights-strip__icon {
  display: flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: var(--pl-radius-md, 12px);
  background: rgba(251, 206, 5, 0.14);
  border: 1px solid rgba(251, 206, 5, 0.28);
  color: #9a7b00;
  transition:
    background-color var(--pl-transition, 0.2s ease),
    border-color var(--pl-transition, 0.2s ease),
    color var(--pl-transition, 0.2s ease);
}

body.premium-landing-page .pl-product-highlights-strip__item:hover .pl-product-highlights-strip__icon {
  background: rgba(251, 206, 5, 0.22);
  border-color: var(--pl-accent, #fbce05);
  color: var(--pl-text, #111);
}

body.premium-landing-page .pl-product-highlights-strip__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

body.premium-landing-page .pl-product-highlights-strip__text {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

body.premium-landing-page .pl-product-highlights-strip__title {
  display: block;
  margin: 0;
  font-family: var(--pl-font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--pl-text, #111);
}

body.premium-landing-page .pl-product-highlights-strip__desc {
  display: block;
  margin: 0;
  font-family: var(--pl-font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--pl-text-secondary, #666);
}

@media (max-width: 991px) {
  body.premium-landing-page .pl-product-highlights-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 18px 16px;
    gap: 16px 12px;
  }
}

@media (max-width: 575px) {
  body.premium-landing-page .pl-product-highlights-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  body.premium-landing-page .pl-product-highlights-strip__item {
    align-items: center;
  }
}

/* Dashboard — highlights strip editor */
body.premium-landing-page .product-highlights-editor__head,
body.premium-landing-page .product-highlights-editor__row {
  display: grid;
  grid-template-columns: 72px 1fr 1.4fr;
  gap: 10px;
  align-items: center;
}

body.premium-landing-page .product-highlights-editor__head {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.premium-landing-page .product-highlights-editor__row + .product-highlights-editor__row {
  margin-top: 10px;
}

body.premium-landing-page .product-highlights-editor__icon-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

@media (max-width: 767px) {
  body.premium-landing-page .product-highlights-editor__head {
    display: none;
  }

  body.premium-landing-page .product-highlights-editor__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
  }

  body.premium-landing-page .product-highlights-editor__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* Product detail — trust badges (Well Documented, Regular Updates) */
body.premium-landing-page .pl-product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

body.premium-landing-page .pl-product-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  font-family: var(--pl-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: #4b5563;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

body.premium-landing-page .pl-product-trust-badge__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

body.premium-landing-page .pl-product-trust-badge__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

body.premium-landing-page .pl-product-trust-badge__label {
  white-space: nowrap;
}

/* Product detail — space between instant download badge and title */
body.premium-landing-page .product-content-details .pl-badge-instant-download {
  margin: 0 0 24px;
}

body.premium-landing-page .product-content-details .pl-badge-instant-download + .product-title {
  margin-top: 0;
}

body.premium-landing-page .shopping-cart .item .list-item--badge label,
body.premium-landing-page .shopping-cart .item .list-item--badge .pl-badge-instant-download {
  min-width: 0 !important;
  margin-right: 0;
}

/* Cart — remove item */
body.premium-landing-page .shopping-cart .pl-cart-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  font-family: var(--pl-font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border-radius: var(--pl-radius-btn, 14px);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.premium-landing-page .shopping-cart .pl-cart-item__remove svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

body.premium-landing-page .shopping-cart .pl-cart-item__remove.pl-btn--danger {
  background: var(--pl-bg, #fff);
  color: var(--pl-text-secondary, #6b7280);
  border: 1px solid var(--pl-border, #e5e7eb);
}

body.premium-landing-page .shopping-cart .pl-cart-item__remove.pl-btn--danger:hover,
body.premium-landing-page .shopping-cart .pl-cart-item__remove.pl-btn--danger:focus-visible {
  background: #fff5f5;
  color: #b91c1c;
  border-color: #fca5a5;
  box-shadow: none;
  transform: none;
}

/* Cart / checkout / modal — product thumbnails (full image, not cropped) */
body.premium-landing-page .shopping-cart .item .img-cart-product,
body.premium-landing-page .cart-order-details .item .item-left .img-cart-product,
body.premium-landing-page .modal-product-cart .col-left .img-product-container {
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--pl-bg-secondary, #f8f9fc);
  border-radius: var(--pl-radius-md, 12px);
}

body.premium-landing-page .shopping-cart .item .img-cart-product > a,
body.premium-landing-page .cart-order-details .item .item-left .img-cart-product > a,
body.premium-landing-page .modal-product-cart .col-left .img-product-container > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

body.premium-landing-page .shopping-cart .item .img-cart-product {
  width: 120px;
  aspect-ratio: 3 / 2;
  height: auto;
  min-height: 80px;
}

body.premium-landing-page .shopping-cart .item .img-cart-product img,
body.premium-landing-page .shopping-cart .item .img-cart-product .img-cart-thumb,
body.premium-landing-page .cart-order-details .item .item-left .img-cart-product img,
body.premium-landing-page .cart-order-details .item .item-left .img-cart-product .img-cart-thumb,
body.premium-landing-page .modal-product-cart .col-left .img-product-container .img-product,
body.premium-landing-page .modal-product-cart .col-left .img-product-container .img-cart-thumb {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 auto !important;
  margin-left: 0 !important;
  transform: none !important;
  object-fit: contain !important;
  object-position: center;
}

body.premium-landing-page .cart-order-details .item .item-left .img-cart-product {
  width: 88px;
  aspect-ratio: 3 / 2;
  height: auto;
  min-height: 56px;
}

body.premium-landing-page .modal-product-cart .col-left .img-product-container {
  width: 130px;
  height: auto;
}

@media (max-width: 767px) {
  body.premium-landing-page .shopping-cart .item .img-cart-product {
    width: 96px;
    min-height: 64px;
    margin: 0 16px 0 0;
  }

  body.premium-landing-page .shopping-cart .item .img-cart-product img,
  body.premium-landing-page .shopping-cart .item .img-cart-product .img-cart-thumb {
    width: 100% !important;
    height: auto !important;
    max-height: 100% !important;
  }

  body.premium-landing-page .modal-product-cart .col-left .img-product-container {
    width: 110px;
    height: 124px;
  }

  body.premium-landing-page .modal-product-cart .col-left .img-product-container .img-product {
    height: 100% !important;
  }
}

body.premium-landing-page .table-cart-products,
body.premium-landing-page .tab-checkout {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
  padding-top: 24px;
  padding-bottom: 24px;
}

body.premium-landing-page .cart-order-summary {
  background: var(--pl-bg-secondary);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  padding: 24px;
}

/* Auth pages */
body.premium-landing-page .auth-box,
body.premium-landing-page .login-box {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .auth-box .title {
  font-family: var(--pl-font-heading);
  font-weight: 800;
}

/* Full-screen auth (login, register, reset, etc.) */
body.premium-landing-page.pl-auth-screen {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--pl-bg, #fff);
}

/* Centered layout (forgot password, confirm email, legacy) */
body.premium-landing-page.pl-auth-screen main.pl-auth-screen:not(.pl-auth-screen--split) {
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: max(24px, env(safe-area-inset-top)) var(--pl-section-px, 15px) max(24px, env(safe-area-inset-bottom));
}

body.premium-landing-page .pl-auth-screen__logo {
  display: block;
  flex-shrink: 0;
  margin: 0 auto 28px;
  text-align: center;
  line-height: 0;
}

body.premium-landing-page .pl-auth-screen__logo-img {
  display: inline-block;
  width: auto;
  max-width: min(220px, 72vw);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

body.premium-landing-page .pl-auth-screen__logo-img--light {
  filter: brightness(0);
}

/* Split login / register */
body.premium-landing-page main.pl-auth-screen--split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

body.premium-landing-page .pl-auth-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 64px);
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 48%, #111 100%);
  color: #fff;
  overflow: hidden;
}

body.premium-landing-page .pl-auth-brand__glow {
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -20%;
  right: -25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 206, 5, 0.35) 0%, rgba(251, 206, 5, 0.08) 40%, transparent 70%);
  pointer-events: none;
}

body.premium-landing-page .pl-auth-brand__inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
}

body.premium-landing-page .pl-auth-brand__logo {
  display: inline-block;
  margin-bottom: 28px;
  line-height: 0;
}

body.premium-landing-page .pl-auth-brand__logo-img {
  max-width: min(200px, 70vw);
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

body.premium-landing-page .pl-auth-brand__logo-img--invert {
  filter: brightness(0) invert(1);
}

body.premium-landing-page .pl-auth-brand__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-accent, #fbce05);
}

body.premium-landing-page .pl-auth-brand__title {
  margin: 0 0 14px;
  font-family: var(--pl-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

body.premium-landing-page .pl-auth-brand__lead {
  margin: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

body.premium-landing-page .pl-auth-brand__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.premium-landing-page .pl-auth-brand__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
}

body.premium-landing-page .pl-auth-brand__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(251, 206, 5, 0.15);
  color: var(--pl-accent, #fbce05);
}

body.premium-landing-page .pl-auth-screen__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) clamp(20px, 4vw, 48px) max(28px, env(safe-area-inset-bottom));
  background: var(--pl-bg-secondary, #f8f9fc);
  position: relative;
}

body.premium-landing-page .pl-auth-screen__form-wrap {
  width: 100%;
  max-width: 440px;
}

body.premium-landing-page .pl-auth-screen__header {
  margin-bottom: 20px;
  text-align: left;
}

/* Mobile auth page header — desktop uses brand panel */
body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head {
  display: none;
}

body.premium-landing-page.pl-auth-screen .pl-auth-screen__header--desktop {
  display: block;
}

body.premium-landing-page .pl-auth-screen__intro {
  margin: 0;
}

body.premium-landing-page .pl-auth-screen--split .pl-auth-screen__intro .pl-auth-screen__title {
  margin-bottom: 4px;
}

body.premium-landing-page .pl-auth-screen--split .pl-auth-screen__intro .pl-auth-screen__subtitle {
  margin: 0;
}

body.premium-landing-page .pl-auth-screen__card {
  width: 100% !important;
  max-width: none;
  margin: 0 !important;
  padding: 28px 28px 24px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: var(--pl-shadow, 0 10px 30px rgba(0, 0, 0, 0.06));
}

body.premium-landing-page .pl-auth-screen__card--message {
  text-align: center;
}

body.premium-landing-page .pl-auth-screen__title {
  font-family: var(--pl-font-heading);
  font-weight: 800;
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 6px;
  text-align: left;
  color: var(--pl-text);
}

body.premium-landing-page .pl-auth-screen--split .pl-auth-screen__title,
body.premium-landing-page .pl-auth-screen--split .pl-auth-screen__subtitle {
  text-align: left;
}

body.premium-landing-page .pl-auth-screen__subtitle {
  font-size: 0.9375rem;
  color: var(--pl-text-secondary);
  margin: 0;
  text-align: center;
}

body.premium-landing-page .pl-auth-screen__subtitle--center {
  margin-bottom: 20px;
}

body.premium-landing-page .pl-auth-screen__subtitle--intro {
  margin: 0 0 20px;
  line-height: 1.55;
}

body.premium-landing-page .pl-auth-screen__switch {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-auth-screen__switch a {
  color: var(--pl-link, var(--pl-text, #111));
  font-weight: 700;
  text-decoration: none;
}

body.premium-landing-page .pl-auth-screen__switch a:hover {
  color: var(--pl-link-hover, var(--pl-accent-hover, #e8be04));
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.premium-landing-page .pl-auth-screen__status {
  margin: 0 auto 20px;
}

/* Social */
body.premium-landing-page .pl-auth-social {
  margin-bottom: 4px;
}

body.premium-landing-page .pl-auth-social__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.premium-landing-page .pl-auth-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: var(--pl-radius-btn, 14px);
  border: 1px solid var(--pl-border);
  background: var(--pl-bg, #fff);
  color: var(--pl-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--pl-transition), background var(--pl-transition), box-shadow var(--pl-transition);
}

body.premium-landing-page .pl-auth-social__btn:hover {
  border-color: #d1d5db;
  background: var(--pl-bg-secondary);
  color: var(--pl-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.premium-landing-page .pl-auth-social__icon {
  display: flex;
  flex-shrink: 0;
}

body.premium-landing-page .pl-auth-social__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 16px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pl-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.premium-landing-page .pl-auth-social__divider span {
  flex: 0 1 auto;
  text-align: center;
  background: var(--pl-card, #fff);
  padding: 0 10px;
}

body.premium-landing-page .pl-auth-social__divider::before,
body.premium-landing-page .pl-auth-social__divider::after {
  content: '';
  flex: 1 1 0;
  min-width: 12px;
  height: 1px;
  background: var(--pl-border);
}

body.premium-landing-page .pl-auth-screen .social-login {
  margin-bottom: 4px;
}

body.premium-landing-page .btn-social {
  border-radius: var(--pl-radius-btn, 14px) !important;
}

body.premium-landing-page .pl-auth-screen .social-login .btn-social {
  margin-bottom: 10px;
}

body.premium-landing-page .pl-auth-screen .p-social-media {
  margin: 12px 0 16px;
  text-align: center;
  font-size: 13px;
  color: var(--pl-text-secondary);
}

/* Form fields — override legacy .form-group { float: left } from style-2.5 */
body.premium-landing-page .pl-auth__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

body.premium-landing-page .pl-auth__form .form-group,
body.premium-landing-page .pl-auth__row .form-group {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  margin-bottom: 16px;
}

body.premium-landing-page .pl-auth__form .auth-form-input,
body.premium-landing-page .pl-auth__form .form-control {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

body.premium-landing-page .pl-auth__row {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-bottom: 0;
}

body.premium-landing-page .pl-auth__row .form-group {
  margin-bottom: 0;
}

body.premium-landing-page .pl-auth__row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.premium-landing-page .pl-auth__row--stack {
  grid-template-columns: 1fr;
}

body.premium-landing-page .pl-auth__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text);
  margin-bottom: 6px;
}

body.premium-landing-page .pl-auth__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

body.premium-landing-page .pl-auth__label-row .pl-auth__label {
  margin-bottom: 0;
}

body.premium-landing-page .pl-auth__forgot-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text-secondary);
  text-decoration: none;
  white-space: nowrap;
}

body.premium-landing-page .pl-auth__forgot-link:hover {
  color: var(--pl-text);
  text-decoration: underline;
}

body.premium-landing-page .pl-auth__forgot {
  text-align: right;
  margin-bottom: 4px;
}

body.premium-landing-page .pl-auth__forgot a {
  font-size: 14px;
  color: var(--pl-link, var(--pl-text, #111));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.premium-landing-page .pl-auth__actions {
  margin-top: 8px;
  margin-bottom: 0;
}

body.premium-landing-page .pl-auth__submit {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--pl-radius-btn, 14px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.premium-landing-page .pl-auth__field--checkbox {
  margin-bottom: 12px;
}

body.premium-landing-page .pl-auth__field--checkbox .custom-control-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-auth__messages .alert {
  margin-bottom: 16px;
}

body.premium-landing-page .pl-auth__spinner {
  margin: 0 auto 12px;
}

body.premium-landing-page .login-modal .pl-auth__label {
  display: none;
}

body.premium-landing-page .login-modal .auth-box .title {
  text-align: center;
}

/* Tablet & mobile — auth screens */
@media (max-width: 991px) {
  body.premium-landing-page.pl-auth-screen {
    overflow-x: hidden;
  }

  body.premium-landing-page main.pl-auth-screen--split {
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100dvh;
  }

  body.premium-landing-page .pl-auth-brand {
    display: none;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 0 12px;
    padding:
      max(20px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      28px
      max(20px, env(safe-area-inset-left));
    box-sizing: border-box;
    background: linear-gradient(165deg, var(--pl-bg-secondary, #f4f4f5) 0%, var(--pl-bg, #fafafa) 62%);
    border-bottom: 1px solid var(--pl-border);
    isolation: isolate;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
    gap: 0;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__logo-link {
    display: inline-block;
    margin: 0 0 22px;
    line-height: 0;
    text-decoration: none;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__logo {
    display: block;
    width: auto;
    max-width: min(180px, 68vw);
    height: auto;
    max-height: 44px;
    object-fit: contain;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__title {
    margin: 0;
    font-family: var(--pl-font-heading);
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--pl-text);
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__lead {
    margin: 10px 0 0;
    max-width: 28ch;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--pl-text-secondary);
    text-transform: none;
    letter-spacing: normal;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-screen__form-wrap {
    position: relative;
    z-index: 1;
    padding-top: 4px;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-screen__card {
    border: 1px solid var(--pl-border);
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-screen__header--desktop {
    display: none;
  }

  body.premium-landing-page .pl-auth-screen__main {
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding:
      0
      max(16px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-left));
  }

  body.premium-landing-page .pl-auth-screen__form-wrap {
    max-width: none;
    width: 100%;
    flex: 1;
  }

  body.premium-landing-page .pl-auth-screen__intro .pl-auth-screen__title {
    font-size: 1.5rem;
  }

  body.premium-landing-page .pl-auth-screen__card {
    padding: 24px 20px 22px;
    border-radius: var(--pl-radius-card, 18px);
  }

  body.premium-landing-page .pl-auth__row--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body.premium-landing-page .pl-auth__row--2 .form-group {
    margin-bottom: 16px;
  }

  body.premium-landing-page .pl-auth__row--2 .form-group:last-child {
    margin-bottom: 0;
  }

  body.premium-landing-page .pl-auth__form .auth-form-input,
  body.premium-landing-page .pl-auth__form .form-control {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 14px;
  }

  body.premium-landing-page .pl-auth-social__btn {
    min-height: 48px;
  }

  body.premium-landing-page .pl-auth__submit {
    min-height: 52px;
    font-size: 16px;
  }

  body.premium-landing-page .pl-auth__label-row {
    flex-wrap: wrap;
    gap: 4px 12px;
  }

  body.premium-landing-page .pl-auth__forgot-link {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  body.premium-landing-page .pl-auth-screen__main {
    padding:
      max(12px, env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      max(20px, env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head {
    margin-bottom: 10px;
    padding-bottom: 24px;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__logo-link {
    margin-bottom: 18px;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__logo {
    max-height: 40px;
  }

  body.premium-landing-page.pl-auth-screen .pl-auth-mobile-head__title {
    font-size: 1.5rem;
  }

  body.premium-landing-page .pl-auth-screen__card {
    padding: 20px 16px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  body.premium-landing-page .pl-auth-screen__logo {
    margin-bottom: 22px;
  }

  body.premium-landing-page .pl-auth-screen__logo-img {
    max-height: 48px;
  }

  body.premium-landing-page .pl-auth__form .form-group,
  body.premium-landing-page .pl-auth__row .form-group {
    margin-bottom: 14px;
  }

  body.premium-landing-page .pl-auth-social__divider {
    margin: 14px 0 12px;
    font-size: 11px;
    gap: 10px;
  }

  body.premium-landing-page .pl-auth__field--checkbox .custom-control-label {
    font-size: 12px;
    padding-left: 0.25rem;
  }

  body.premium-landing-page .pl-auth__field--checkbox .custom-control-input {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.2rem;
  }

  body.premium-landing-page .pl-auth-screen__switch {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 16px;
  }

  body.premium-landing-page .pl-auth__messages .alert {
    font-size: 14px;
    padding: 12px 14px;
  }
}

@media (max-width: 380px) {
  body.premium-landing-page .pl-auth-social__btn {
    font-size: 13px;
    padding: 10px 12px;
  }

  body.premium-landing-page .pl-auth-social__label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Blog */
body.premium-landing-page .blog-item,
body.premium-landing-page .post-item {
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
  background: var(--pl-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

body.premium-landing-page .blog-item:hover,
body.premium-landing-page .post-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--pl-shadow, 0 10px 30px rgba(0, 0, 0, 0.06));
}

body.premium-landing-page .blog-content .blog-categories li a {
  border-radius: 12px;
}

body.premium-landing-page .blog-content .blog-categories .active a {
  background-color: var(--pl-accent);
  color: var(--pl-text);
}

/* Profile / settings tabs */
body.premium-landing-page .profile-tabs .nav-link.active,
body.premium-landing-page .nav-tabs .nav-link.active {
  color: var(--pl-text);
  border-color: var(--pl-border) var(--pl-border) var(--pl-bg);
}

body.premium-landing-page .profile-tabs .nav-link {
  font-weight: 600;
  color: var(--pl-text-secondary);
}

/* Modals */
body.premium-landing-page .modal-content {
  border-radius: var(--pl-radius-card, 18px);
  border: 1px solid var(--pl-border);
  overflow: hidden;
}

body.premium-landing-page .modal-content .auth-box .title {
  font-family: var(--pl-font-heading);
}

/* Pagination */
body.premium-landing-page .pagination .page-item .page-link {
  border-radius: 10px;
  margin: 0 3px;
  border-color: var(--pl-border);
  color: var(--pl-text);
}

body.premium-landing-page .pagination .page-item.active .page-link {
  background: var(--pl-accent);
  border-color: var(--pl-accent);
  color: var(--pl-text);
}

/* Scroll to top */
body.premium-landing-page .scrollup {
  background: transparent !important;
  border-radius: 12px;
  box-shadow: none;
}

body.premium-landing-page .scrollup i.icon-arrow-up {
  background-color: var(--pl-accent);
  color: var(--pl-text) !important;
  border-radius: 12px;
  box-shadow: none;
  transition:
    background-color var(--pl-transition, 0.3s ease),
    color var(--pl-transition, 0.3s ease);
}

body.premium-landing-page .scrollup:hover i.icon-arrow-up {
  background-color: var(--pl-accent-hover, #e8be04);
  color: var(--pl-text) !important;
  box-shadow: none;
}

/* Cookies bar */
body.premium-landing-page .cookies-warning {
  border-radius: var(--pl-radius-card, 18px);
  border: 1px solid var(--pl-border);
  box-shadow: var(--pl-shadow-hover, 0 16px 40px rgba(0, 0, 0, 0.09));
}

/* Section spacing on marketplace-style blocks still in use */
body.premium-landing-page #wrapper .section {
  margin-bottom: 48px;
}

body.premium-landing-page #wrapper .section-header .title {
  font-family: var(--pl-font-heading);
  font-weight: 700;
}

/* Messages / alerts */
body.premium-landing-page .alert {
  border-radius: 12px;
}

/* Product description + attributes sidebar */
body.premium-landing-page .product-detail-page-layout {
  align-items: flex-start;
}

body.premium-landing-page .product-attributes-sidebar {
  background: var(--pl-surface, #fff);
  border: 1px solid var(--pl-border, #e8e8e8);
  border-radius: var(--pl-radius-card, 18px);
  box-shadow: none;
}

body.premium-landing-page .product-attributes-sidebar__title {
  font-family: var(--pl-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pl-text, #111);
  margin: 0 0 var(--pl-space-2, 16px);
  line-height: 1.3;
}

body.premium-landing-page .product-attributes-sidebar__list {
  margin: 0;
}

body.premium-landing-page .product-attributes-sidebar__row {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  gap: var(--pl-space-2, 16px);
  padding: var(--pl-space-2, 16px) 0;
  border-bottom: 1px solid var(--pl-border, #eee);
}

body.premium-landing-page .product-attributes-sidebar__row:first-of-type {
  padding-top: 0;
}

body.premium-landing-page .product-attributes-sidebar__row:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

body.premium-landing-page .product-attributes-sidebar__label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pl-text-muted, #6b7280);
  line-height: 1.45;
}

body.premium-landing-page .product-attributes-sidebar__value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--pl-text, #111);
  line-height: 1.5;
  word-break: break-word;
}

body.premium-landing-page .product-attributes-sidebar__value a {
  color: var(--pl-text, #111);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.premium-landing-page .product-attributes-sidebar__value a:hover {
  color: var(--pl-accent-hover, #e8be04);
}

body.premium-landing-page .product-description-sidebar-col .product-documentation-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: var(--pl-space-2, 16px) 0 0;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--pl-radius-btn, 14px);
}

body.premium-landing-page .product-description-sidebar-col .product-attributes-sidebar + .product-documentation-btn {
  margin-top: var(--pl-space-2, 16px);
}

body.premium-landing-page .product-description-sidebar-col .product-documentation-btn:not(.product-attributes-sidebar + .product-documentation-btn) {
  margin-top: 0;
  margin-bottom: var(--pl-space-2, 16px);
}

body.premium-landing-page .product-description-sidebar-col .product-documentation-btn i {
  font-size: 16px;
  line-height: 1;
}

body.premium-landing-page .product-description-sidebar-col .product-third-party-purchase {
  margin: var(--pl-space-2, 16px) 0;
  padding: 20px 18px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .product-description-sidebar-col .product-documentation-btn + .product-third-party-purchase {
  margin-top: var(--pl-space-2, 16px);
}

body.premium-landing-page .product-third-party-purchase__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .product-third-party-purchase__title {
  margin: 0 0 8px;
  font-family: var(--pl-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pl-text);
}

body.premium-landing-page .product-third-party-purchase__lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .product-third-party-purchase__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.premium-landing-page .product-third-party-purchase__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  text-decoration: none;
}

body.premium-landing-page .product-third-party-purchase__btn.pl-btn--secondary {
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  color: var(--pl-text);
}

body.premium-landing-page .product-third-party-purchase__btn.pl-btn--secondary:hover {
  border-color: rgba(251, 206, 5, 0.55);
  color: var(--pl-text);
}

@media (max-width: 991.98px) {
  body.premium-landing-page .product-attributes-sidebar__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ——— Responsive: tablet & mobile ——— */
@media (max-width: 1024px) {
  body.premium-landing-page .pl-main--inner {
    padding-top: 100px;
  }

  body.premium-landing-page .pl-hero {
    padding-top: 160px;
  }

  body.premium-landing-page #wrapper:not(:has(.product-details-container)) {
    padding: 12px 0 48px;
  }

  body.premium-landing-page .page-contact {
    padding: var(--pl-card-padding, 24px);
  }

  body.premium-landing-page .page-contact-wrap #wrapper > .container > .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  body.premium-landing-page .page-contact-wrap #wrapper > .container > .row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.premium-landing-page .page-contact__grid {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  body.premium-landing-page .page-contact__grid > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.premium-landing-page .col-sidebar-products,
  body.premium-landing-page .col-content-products {
    flex: 0 0 100%;
    max-width: 100%;
  }

  body.premium-landing-page .col-content-products {
    margin-top: 8px;
  }

  body.premium-landing-page .product-list-filters,
  body.premium-landing-page .sidebar-filter {
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  body.premium-landing-page .pl-main--inner {
    padding-top: 88px;
  }

  body.premium-landing-page .pl-hero {
    padding-top: 128px;
  }

  body.premium-landing-page .product-content-details .product-title {
    font-size: 1.5rem;
  }

  body.premium-landing-page .nav-tabs-horizontal {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    border-bottom: 1px solid var(--pl-border);
  }

  body.premium-landing-page .nav-tabs-horizontal::-webkit-scrollbar {
    display: none;
  }

  body.premium-landing-page .nav-tabs-horizontal .nav-item {
    flex-shrink: 0;
  }

  body.premium-landing-page .nav-tabs-horizontal .nav-link {
    padding: 12px 16px;
    font-size: 14px;
  }

  body.premium-landing-page .product-detail-page-layout {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  body.premium-landing-page .pl-main--inner {
    padding-top: 80px;
  }

  body.premium-landing-page .pl-hero {
    padding-top: 104px;
  }

  body.premium-landing-page #wrapper:not(:has(.product-details-container)) {
    padding: 8px 0 40px;
  }

  body.premium-landing-page #wrapper .page-title,
  body.premium-landing-page #wrapper .product-list-title,
  body.premium-landing-page #wrapper h1.title-blog {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  body.premium-landing-page .page-contact {
    padding: 18px 16px;
  }

  body.premium-landing-page .page-contact__intro.contact-text {
    margin-bottom: var(--pl-space-3, 24px);
    padding-bottom: var(--pl-space-3, 24px);
  }

  body.premium-landing-page .page-contact__aside {
    margin-top: var(--pl-gap-grid, 28px);
    padding: 18px 16px;
  }

  body.premium-landing-page .contact-map-container {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  body.premium-landing-page .contact-map-container iframe {
    min-height: 220px;
  }

  body.premium-landing-page .product-content-details .product-title {
    font-size: 1.35rem;
  }

  body.premium-landing-page .product-content-details .product-short-description {
    font-size: 0.9rem;
  }

  body.premium-landing-page .product-content-details .product-features-block {
    margin-bottom: var(--pl-space-2, 16px);
  }

  body.premium-landing-page .product-content-details .product-feature-list--detail .product-feature-list__text {
    font-size: 0.875rem;
  }

  body.premium-landing-page .product-content-details .pl-badge-instant-download {
    margin-bottom: 20px;
    padding: 6px 12px;
    font-size: 11px;
  }

  body.premium-landing-page .product-content-details .product-analytics span {
    padding: 5px 10px;
    font-size: 11px;
  }

  body.premium-landing-page .product-wishlist-overlay__btn {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  body.premium-landing-page .product-wishlist-overlay__btn i {
    font-size: 20px;
  }

  body.premium-landing-page .table-cart-products,
  body.premium-landing-page .tab-checkout {
    padding: 16px 12px;
    border-radius: var(--pl-radius-card, 18px);
    overflow-x: auto;
  }

  body.premium-landing-page .shopping-cart .right {
    margin-top: 20px;
    padding: 16px;
  }

  body.premium-landing-page .cookies-warning {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  body.premium-landing-page .product-item .item-details {
    padding: 14px 14px 16px;
  }

  body.premium-landing-page .product-item .product-item-features {
    padding: 0;
    margin-bottom: 8px;
  }

  body.premium-landing-page #wrapper .section {
    margin-bottom: 32px;
  }

  body.premium-landing-page .pl-auth-screen__card {
    padding: 28px 20px 24px;
  }
}

@media (max-width: 576px) {
  body.premium-landing-page .product-actions__cta {
    gap: 10px;
  }

  body.premium-landing-page .product-actions__cart .btn-product-cart,
  body.premium-landing-page .product-actions__preview,
  body.premium-landing-page .product-actions__free-version-btn {
    min-height: 44px;
    font-size: 14px;
  }

  body.premium-landing-page .nav-tabs-horizontal .nav-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  body.premium-landing-page .blog-item .blog-item-img,
  body.premium-landing-page .post-item .post-image {
    max-height: 220px;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  body.premium-landing-page .pl-main--inner {
    padding-top: 76px;
  }

  body.premium-landing-page #row_promoted_products > .col-product.col-6,
  body.premium-landing-page .section .row-product:not(#productListResultContainer):not(.row-related-products) > .col-product.col-6,
  body.premium-landing-page .col-mds-5.col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  body.premium-landing-page .product-list-filters,
  body.premium-landing-page .sidebar-filter {
    padding: 16px;
  }

  body.premium-landing-page .filter-list .filter-list-title {
    font-size: 13px;
  }
}

/* ——— Unified UI: rounded corners (override legacy sharp edges) ——— */
body.premium-landing-page .card,
body.premium-landing-page .panel,
body.premium-landing-page .box,
body.premium-landing-page .widget,
body.premium-landing-page .profile-box,
body.premium-landing-page .order-address-box,
body.premium-landing-page .shipping-address-box,
body.premium-landing-page .coupon-item,
body.premium-landing-page .sub-comment-form,
body.premium-landing-page .ticket-content .media,
body.premium-landing-page .tab-checkout-closed,
body.premium-landing-page .reviews-box,
body.premium-landing-page .section-affiliate,
body.premium-landing-page .help-center-box,
body.premium-landing-page .support-box,
body.premium-landing-page .quote-box,
body.premium-landing-page .membership-box {
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .custom-select,
body.premium-landing-page .select2-container--default .select2-selection--single,
body.premium-landing-page .select2-container--default .select2-selection--multiple,
body.premium-landing-page .select2-selection.select2-selection--single {
  border-radius: var(--pl-radius-input, 12px) !important;
}

body.premium-landing-page .input-group-text,
body.premium-landing-page .form-checkout .input-group-text {
  border-radius: var(--pl-radius-input, 12px) !important;
}

body.premium-landing-page .input-group > .form-control:first-child,
body.premium-landing-page .input-group > .custom-select:first-child,
body.premium-landing-page .input-group > .input-group-prepend:first-child .input-group-text {
  border-top-left-radius: var(--pl-radius-input, 12px) !important;
  border-bottom-left-radius: var(--pl-radius-input, 12px) !important;
}

body.premium-landing-page .input-group > .form-control:last-child,
body.premium-landing-page .input-group > .input-group-append:last-child .input-group-text,
body.premium-landing-page .input-group > .btn:last-child {
  border-top-right-radius: var(--pl-radius-input, 12px) !important;
  border-bottom-right-radius: var(--pl-radius-input, 12px) !important;
}

/* Products listing — page layout */
@media (min-width: 769px) {
  body.premium-landing-page .container-products-page > .row.pl-products-layout {
    align-items: flex-start;
  }

  body.premium-landing-page .pl-products-layout > .col-sidebar-products,
  body.premium-landing-page .pl-products-layout > .col-content-products {
    align-self: flex-start;
  }

  body.premium-landing-page .pl-products-layout > .container-filter-products-mobile {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
  }

  body.premium-landing-page .col-content-products {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body.premium-landing-page .col-content-products .container-filter-products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    float: none;
    clear: both;
    width: 100%;
    min-height: 0;
    margin: 0 0 12px;
    padding: 0;
  }

  body.premium-landing-page .col-content-products .container-filter-products::before,
  body.premium-landing-page .col-content-products .container-filter-products::after {
    display: none;
  }

  body.premium-landing-page .col-content-products .product-sort-by {
    float: none;
    margin: 0;
    text-align: right;
  }

  body.premium-landing-page .col-content-products .product-sort-by .dropdown .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    background: var(--pl-card, #fff);
    border-color: var(--pl-border, #e5e7eb);
    box-shadow: none;
  }
}

body.premium-landing-page .container-products-page {
  margin-bottom: 96px;
}

body.premium-landing-page .container-products-page .product-list-content {
  float: none;
  display: block;
  width: 100%;
  min-height: 0;
  margin-top: 0;
  padding-top: 0;
}

body.premium-landing-page .container-products-page .filter-reset-tag-container {
  float: none;
  width: 100%;
  margin-bottom: 12px;
}

body.premium-landing-page .container-products-page .filter-reset-tag-container:not(:has(.filter-reset-tag)) {
  display: none;
  margin: 0;
  padding: 0;
  min-height: 0;
}

body.premium-landing-page .container-products-page #productListResultContainer.row-product {
  display: grid;
  grid-template-columns: repeat(var(--pl-product-grid-cols-desktop, 3), minmax(0, 1fr));
  gap: var(--pl-gap-grid, 28px);
  align-items: stretch;
  margin-right: 0;
  margin-left: 0;
}

body.premium-landing-page .container-products-page #productListResultContainer > .col-product,
body.premium-landing-page .container-products-page #productListResultContainer > .col-product.col-6,
body.premium-landing-page .container-products-page #productListResultContainer > .col-product.col-sm-6,
body.premium-landing-page .container-products-page #productListResultContainer > .col-product.col-md-6,
body.premium-landing-page .container-products-page #productListResultContainer > .col-product.col-lg-6 {
  display: flex;
  flex-direction: column;
  flex: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0;
  margin-bottom: 0;
}

body.premium-landing-page .container-products-page #productListResultContainer .product-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
}

body.premium-landing-page .container-products-page #productListResultContainer .product-item .item-details {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

body.premium-landing-page .container-products-page #productListResultContainer .product-item .product-item-rating {
  margin-top: auto;
}

@media (min-width: 992px) {
  body.premium-landing-page .col-sidebar-products {
    flex: 0 0 25%;
    max-width: 25%;
  }

  body.premium-landing-page .col-content-products {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

/* Products listing — mobile toolbar + single-column grid */
@media (max-width: 768px) {
  body.premium-landing-page .col-content-products .container-filter-products,
  body.premium-landing-page .col-content-products .pl-products-toolbar {
    display: none !important;
  }

  body.premium-landing-page .container-filter-products-mobile {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    float: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 0px 15px;
  }

  body.premium-landing-page .container-filter-products-mobile::before,
  body.premium-landing-page .container-filter-products-mobile::after {
    display: none;
  }

  body.premium-landing-page .container-filter-products-mobile .btn-filter-products-mobile,
  body.premium-landing-page .container-filter-products-mobile .product-sort-by {
    float: none;
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  body.premium-landing-page .container-filter-products-mobile .btn-filter-products-mobile::before,
  body.premium-landing-page .container-filter-products-mobile .product-sort-by::before {
    display: none !important;
  }

  body.premium-landing-page .container-filter-products-mobile .product-sort-by .dropdown {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  body.premium-landing-page .container-filter-products-mobile .btn-filter-products-mobile .btn,
  body.premium-landing-page .container-filter-products-mobile .product-sort-by .dropdown .btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--pl-text, #111) !important;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: var(--pl-card, #fff) !important;
    border: 1px solid var(--pl-border, #e5e7eb) !important;
    border-radius: var(--pl-radius-btn, 14px) !important;
    box-shadow: none !important;
  }

  body.premium-landing-page .container-filter-products-mobile .product-sort-by .dropdown .btn::after {
    display: none;
  }

  body.premium-landing-page .container-filter-products-mobile .btn-filter-products-mobile .btn svg,
  body.premium-landing-page .container-filter-products-mobile .product-sort-by .dropdown .btn svg {
    position: static;
    top: auto;
    flex-shrink: 0;
  }

  body.premium-landing-page .container-filter-products-mobile .product-sort-by .dropdown .btn .icon-arrow-down {
    margin-left: auto;
    flex-shrink: 0;
  }

  body.premium-landing-page .container-products-page #productListResultContainer.row-product {
    grid-template-columns: repeat(var(--pl-product-grid-cols-mobile, 2), minmax(0, 1fr));
    gap: 14px;
  }
}

/* Products listing — filter sidebar */
body.premium-landing-page .col-sidebar-products .sticky-lg-top {
  top: 96px;
  z-index: 5;
}

body.premium-landing-page .col-sidebar-products .pl-sidebar-sort {
  margin-bottom: 12px;
}

body.premium-landing-page .col-sidebar-products .pl-sidebar-sort .product-sort-by {
  float: none;
  width: 100%;
  margin: 0;
  text-align: left;
}

body.premium-landing-page .col-sidebar-products .pl-sidebar-sort .dropdown {
  width: 100%;
}

body.premium-landing-page .col-sidebar-products .pl-sidebar-sort .dropdown .btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  background: var(--pl-card, #fff);
  border-color: var(--pl-border, #e5e7eb);
  box-shadow: none;
}

body.premium-landing-page .col-sidebar-products .pl-sidebar-sort .dropdown .btn svg {
  flex-shrink: 0;
}

body.premium-landing-page .col-sidebar-products .pl-sidebar-sort .dropdown .btn span {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

body.premium-landing-page .col-sidebar-products .pl-sidebar-sort .dropdown .btn .icon-arrow-down {
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  body.premium-landing-page .col-sidebar-products .pl-sidebar-sort {
    display: none;
  }
}

body.premium-landing-page .col-sidebar-products .product-filters {
  float: none;
  overflow: visible;
  padding: 20px 18px 22px;
  margin-bottom: 20px;
  background: var(--pl-card, #fff);
  border: 1px solid var(--pl-border, #e5e7eb);
  border-radius: var(--pl-radius-card, 18px);
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.05);
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item {
  float: none;
  display: flow-root;
  clear: both;
  padding-bottom: 22px;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--pl-border, #e5e7eb);
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item.filter-item-categories {
  padding-top: 0;
  margin-top: 0;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item:last-child,
body.premium-landing-page .col-sidebar-products .product-filters .filter-item.border-0 {
  padding-bottom: 0;
  border-bottom: 0;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .title {
  float: none;
  width: 100%;
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: none;
  font-family: var(--pl-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pl-text-secondary, #6b7280);
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .collapse-title {
  float: none;
  margin-bottom: 10px;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .collapse-title .btn {
  float: none;
  width: 100%;
  padding: 10px 36px 10px 12px;
  font-family: var(--pl-font-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pl-text);
  text-align: left;
  background: var(--pl-bg-secondary, #f8f9fc);
  border: 1px solid var(--pl-border, #e5e7eb);
  border-radius: var(--pl-radius-sm, 10px);
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .collapse-title .btn:hover,
body.premium-landing-page .col-sidebar-products .product-filters .filter-item .collapse-title .btn:focus {
  border-color: rgba(251, 206, 5, 0.45);
  background: #fff;
  color: var(--pl-text);
  box-shadow: none;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .collapse-title .btn::after {
  right: 12px;
  top: 50%;
  margin-top: 0;
  transform: translateY(-50%);
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .collapse-title .btn:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list-container {
  float: none;
  clear: both;
  width: 100%;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list-categories-parent {
  display: flex;
  align-items: center;
  gap: 8px;
  float: none;
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pl-text);
  border-radius: var(--pl-radius-sm, 10px);
  transition: background-color 0.2s ease;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list-categories-parent svg {
  flex-shrink: 0;
  position: static;
  top: auto;
  width: 1.125em;
  height: 1.125em;
  margin: 0;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list-categories-parent span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item.filter-item-categories .title {
  margin-bottom: 14px;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list-categories-parent:hover {
  background: var(--pl-bg-secondary, #f8f9fc);
  color: var(--pl-text);
  text-decoration: none;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list {
  float: none;
  clear: both;
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list-categories,
body.premium-landing-page .col-sidebar-products .product-filters .filter-list-subcategories {
  margin-top: 0;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list li {
  float: none;
  display: block;
  width: 100%;
  margin-bottom: 8px;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list li:last-child {
  margin-bottom: 0;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list li a {
  display: block;
  float: none;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--pl-text);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list li a:hover {
  background: var(--pl-bg-secondary, #f8f9fc);
  color: var(--pl-text);
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list-categories li a.active,
body.premium-landing-page .col-sidebar-products .product-filters .filter-list-subcategories li a.active,
body.premium-landing-page .col-sidebar-products .product-filters .filter-list-subcategories li .active {
  background: rgba(251, 206, 5, 0.14);
  color: var(--pl-text);
  font-weight: 600;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-search-input,
body.premium-landing-page .col-sidebar-products .product-filters .form-input,
body.premium-landing-page .col-sidebar-products #input_filter_keyword {
  border-radius: var(--pl-radius-input, 12px) !important;
  border-color: var(--pl-border, #e5e7eb) !important;
  font-size: 14px;
  box-shadow: none;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-search-input {
  float: none;
  height: 40px;
  margin-top: 10px;
  margin-bottom: 8px;
  padding: 8px 12px;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .inputs-filter-price {
  gap: 10px;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .inputs-filter-price span {
  flex-shrink: 0;
  color: var(--pl-text-secondary, #6b7280);
  font-weight: 500;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .inputs-filter-price .form-input {
  flex: 1;
  min-width: 0;
  width: auto;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-list li a .custom-control-label {
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .btn-filter-product,
body.premium-landing-page .col-sidebar-products #btnFilterByKeyword {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 11px 16px;
  font-weight: 600;
  color: var(--pl-text) !important;
  background: var(--pl-accent) !important;
  border: none !important;
  box-shadow: none;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

body.premium-landing-page .col-sidebar-products .product-filters .filter-item .btn-filter-product:hover,
body.premium-landing-page .col-sidebar-products .product-filters .filter-item .btn-filter-product:focus-visible,
body.premium-landing-page .col-sidebar-products #btnFilterByKeyword:hover,
body.premium-landing-page .col-sidebar-products #btnFilterByKeyword:focus-visible {
  background: var(--pl-accent-hover, #e8be04) !important;
  color: var(--pl-text) !important;
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  body.premium-landing-page .col-sidebar-products .sticky-lg-top {
    top: 0;
  }

  body.premium-landing-page .col-sidebar-products .product-filters {
    margin-top: 0;
    padding: 16px 14px 18px;
  }
}

body.premium-landing-page .btn-outline,
body.premium-landing-page .btn-contact-seller,
body.premium-landing-page .btn-live-preview,
body.premium-landing-page .btn-video-preview,
body.premium-landing-page .btn-share,
body.premium-landing-page .post-content .post-share .btn-share,
body.premium-landing-page .btn-filter-products-mobile,
body.premium-landing-page .container-filter-products-mobile .product-sort-by .dropdown .btn,
body.premium-landing-page .product-sort-by .dropdown .btn,
body.premium-landing-page .product-sort-by .dropdown .btn.dropdown-toggle,
body.premium-landing-page .filter-item .btn-filter-product,
body.premium-landing-page #btnFilterByKeyword {
  border-radius: var(--pl-radius-btn, 14px) !important;
}

body.premium-landing-page .product-sort-by .dropdown .dropdown-menu {
  border-radius: var(--pl-radius-md, 12px);
  overflow: hidden;
  border-color: var(--pl-border, #e5e7eb);
}

body.premium-landing-page .dropdown-menu {
  border-radius: var(--pl-radius-md, 12px);
  overflow: hidden;
}

body.premium-landing-page .modal-content,
body.premium-landing-page .modal-custom,
body.premium-landing-page .modal-product-video .modal-content {
  border-radius: var(--pl-radius-card, 18px) !important;
  overflow: hidden;
}

body.premium-landing-page .product-thumbnails-slider .item-inner {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .product-video-preview,
body.premium-landing-page .product-video-preview video,
body.premium-landing-page #single-song-player {
  border-radius: var(--pl-radius-md, 12px);
  overflow: hidden;
}

body.premium-landing-page .profile-details .img-profile,
body.premium-landing-page .form-avatar,
body.premium-landing-page .img-profile-cover {
  border-radius: var(--pl-radius-md, 12px);
}

body.premium-landing-page .blog-content .blog-tags ul li a,
body.premium-landing-page .blog-content .post-tags ul li a,
body.premium-landing-page .label-tags a {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .product-item .badge-discount,
body.premium-landing-page .product-item-horizontal .badge-promoted {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .tooltip-inner {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .section-slider,
body.premium-landing-page .slider-container,
body.premium-landing-page .main-slider .item {
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
}

body.premium-landing-page .main-slider-nav .prev,
body.premium-landing-page .main-slider-nav .next,
body.premium-landing-page .section .section-slider-nav button {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .product-item-horizontal .item-image,
body.premium-landing-page .product-item-horizontal .ratio-product-box {
  border-radius: var(--pl-radius-md, 12px);
  overflow: hidden;
}

body.premium-landing-page .shopping-cart .right {
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .ul-support-articles li a,
body.premium-landing-page .help-center-collapse .ul-support-articles li a {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .ul-support-articles .active a {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .digital-download-dropdown-menu {
  border-radius: var(--pl-radius-md, 12px);
}

body.premium-landing-page .swal2-popup {
  border-radius: var(--pl-radius-card, 18px) !important;
}

/* SweetAlert v1 — match premium modals & primary buttons */
body.premium-landing-page .swal-modal {
  border-radius: var(--pl-radius-card, 18px) !important;
  overflow: hidden;
  font-family: var(--pl-font-body);
  border: 1px solid var(--pl-border, #e5e7eb);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

body.premium-landing-page .swal-title {
  font-family: var(--pl-font-heading);
  font-weight: 600;
  color: var(--pl-text, #111);
}

body.premium-landing-page .swal-text {
  color: var(--pl-text-secondary, #6b7280);
  font-family: var(--pl-font-body);
}

body.premium-landing-page .swal-button {
  border-radius: var(--pl-radius-btn, 14px) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  font-family: var(--pl-font-body);
  box-shadow: none !important;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

body.premium-landing-page .swal-button:focus {
  box-shadow: none !important;
}

body.premium-landing-page .swal-button--confirm {
  background-color: var(--pl-accent) !important;
  border-color: var(--pl-accent) !important;
  color: var(--pl-text, #111) !important;
}

body.premium-landing-page .swal-button--confirm:hover,
body.premium-landing-page .swal-button--confirm:active {
  background-color: var(--pl-accent-hover, #e8be04) !important;
  border-color: var(--pl-accent-hover, #e8be04) !important;
  color: var(--pl-text, #111) !important;
}

body.premium-landing-page .swal-button--cancel {
  background-color: #fff !important;
  border: 1px solid var(--pl-border, #e5e7eb) !important;
  color: var(--pl-text-secondary, #6b7280) !important;
}

body.premium-landing-page .swal-button--cancel:hover,
body.premium-landing-page .swal-button--cancel:active {
  background-color: var(--pl-bg, #f9fafb) !important;
  border-color: #d1d5db !important;
  color: var(--pl-text, #111) !important;
}

body.premium-landing-page .product-content-details .product-analytics span,
body.premium-landing-page .pagination .page-item .page-link,
body.premium-landing-page .blog-content .blog-categories li a,
body.premium-landing-page .alert,
body.premium-landing-page .scrollup,
body.premium-landing-page .scrollup i.icon-arrow-up {
  border-radius: var(--pl-radius-md, 12px);
}

body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .prev,
body.premium-landing-page .product-slider-container--gallery-below .product-slider-nav .next,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .item,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider-nav .prev,
body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider-nav .next,
body.premium-landing-page .product-slider-container--gallery-below .btn-video-preview {
  border-radius: var(--pl-radius-sm, 10px);
}

body.premium-landing-page .product-slider-container--gallery-below .product-thumbnails-slider .item img {
  border-radius: calc(var(--pl-radius-sm, 10px) - 2px);
}

body.premium-landing-page .pl-header__search-input,
body.premium-landing-page .pl-header__search-btn {
  border-radius: var(--pl-radius-input, 12px);
}

body.premium-landing-page .pl-header__search-btn {
  border-radius: var(--pl-radius-sm, 10px);
}

/* Help center / support */
body.premium-landing-page .support .search-container {
  max-width: 640px;
  margin: 0 auto 40px;
}

body.premium-landing-page .support .search {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  box-shadow: none;
  padding: 8px;
}

body.premium-landing-page .support .search input.form-control {
  border: none;
  background: transparent;
  border-radius: var(--pl-radius-input, 12px);
  min-height: 48px;
  padding-left: 16px;
}

body.premium-landing-page .support .search button {
  border-radius: var(--pl-radius-btn, 14px);
  background: var(--pl-accent);
  color: var(--pl-text);
  border: none;
  width: 48px;
  height: 48px;
}

body.premium-landing-page .support .search button:hover {
  background: var(--pl-accent-hover, #e8be04);
  color: var(--pl-text);
}

body.premium-landing-page .box-support {
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  box-shadow: none;
}

/* Help center — category grid & article layout */
body.premium-landing-page .support-home .kb-search-wrap {
  max-width: 720px;
  margin: 0 auto 48px;
}

body.premium-landing-page .kb-search-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 8px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .kb-search-form .form-control {
  border: none;
  background: transparent;
  min-height: 52px;
  flex: 1;
}

body.premium-landing-page .kb-search-submit {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: var(--pl-radius-btn, 14px);
  background: var(--pl-accent);
  color: var(--pl-text);
  cursor: pointer;
}

body.premium-landing-page .kb-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pl-gap-grid, 28px);
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  body.premium-landing-page .kb-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  body.premium-landing-page .kb-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.premium-landing-page .kb-category-grid__item {
  min-width: 0;
}

body.premium-landing-page .kb-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  padding: 28px 24px;
  margin-bottom: 0;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

body.premium-landing-page a.kb-category-card:hover {
  border-color: var(--pl-accent);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

body.premium-landing-page .kb-category-card--disabled {
  opacity: 0.65;
  cursor: default;
}

body.premium-landing-page .kb-category-card-icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 12px;
  background: var(--pl-accent);
  color: var(--pl-text);
  margin-bottom: 16px;
}

body.premium-landing-page .kb-category-card-title {
  font-family: var(--pl-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
}

body.premium-landing-page .kb-category-card-desc {
  flex: 1;
  font-size: 0.9rem;
  color: var(--pl-text-muted, #6c757d);
  margin: 0 0 12px;
  line-height: 1.5;
}

body.premium-landing-page .kb-category-card-meta {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pl-text-muted, #6c757d);
}

body.premium-landing-page .support .need-more-help-actions.pl-cta__buttons {
  margin-top: 0px;
}

body.premium-landing-page .support .need-more-help-actions .pl-btn {
  text-decoration: none;
}

body.premium-landing-page .kb-article-page {
  padding-top: 32px;
}

body.premium-landing-page .kb-article-page .nav-breadcrumb,
body.premium-landing-page .kb-article-page .breadcrumb {
  margin-bottom: 24px;
}

body.premium-landing-page .support-article-layout .kb-sidebar {
  position: sticky;
  top: 100px;
  padding: 20px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .kb-sidebar-back {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 12px;
  color: inherit;
}

body.premium-landing-page .kb-sidebar-category-desc {
  font-size: 0.875rem;
  color: var(--pl-text-muted, #6c757d);
  margin-bottom: 16px;
  line-height: 1.5;
}

body.premium-landing-page .kb-sidebar-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pl-text-muted, #6c757d);
  margin: 0 0 8px;
}

body.premium-landing-page .kb-sidebar-nav--subcategories {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pl-border);
}

body.premium-landing-page .kb-subcategory-nav li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.premium-landing-page .kb-subcategory-count {
  font-size: 0.75rem;
  color: var(--pl-text-muted, #6c757d);
}

body.premium-landing-page .kb-category-card-meta-sep {
  opacity: 0.6;
}

body.premium-landing-page .kb-article-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 24px;
}

body.premium-landing-page .kb-article-pager__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 14px);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 72px;
}

body.premium-landing-page .kb-article-pager__link:hover {
  border-color: var(--pl-accent, #0d6efd);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  color: inherit;
}

body.premium-landing-page .kb-article-pager__link--next {
  text-align: right;
  align-items: flex-end;
}

body.premium-landing-page .kb-article-pager__link--empty {
  visibility: hidden;
  pointer-events: none;
  border: none;
  background: transparent;
}

body.premium-landing-page .kb-article-pager__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pl-text-muted, #6c757d);
}

body.premium-landing-page .kb-article-pager__link--prev .kb-article-pager__label::before {
  content: "← ";
}

body.premium-landing-page .kb-article-pager__link--next .kb-article-pager__label::after {
  content: " →";
}

body.premium-landing-page .kb-article-pager__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

body.premium-landing-page .kb-related-docs-card {
  margin: 0 0 24px;
  padding: 22px 24px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .kb-related-docs-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
}

body.premium-landing-page .kb-related-docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

@media (min-width: 768px) {
  body.premium-landing-page .kb-related-docs-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

body.premium-landing-page .kb-related-docs-list__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.premium-landing-page .kb-related-docs-list__link:hover {
  border-color: var(--pl-accent, #0d6efd);
  background: rgba(13, 110, 253, 0.04);
  color: inherit;
}

body.premium-landing-page .kb-related-docs-list__title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
}

body.premium-landing-page .kb-related-docs-list__meta {
  font-size: 0.75rem;
  color: var(--pl-text-muted, #6c757d);
}

@media (max-width: 767px) {
  body.premium-landing-page .kb-article-pager {
    grid-template-columns: 1fr;
  }

  body.premium-landing-page .kb-article-pager__link--next {
    text-align: left;
    align-items: flex-start;
  }
}

body.premium-landing-page .kb-article-nav li.active a {
  font-weight: 700;
  color: var(--pl-accent);
}

body.premium-landing-page .kb-article-card {
  padding: 32px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  margin-bottom: 24px;
}

body.premium-landing-page .kb-article-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pl-text-muted, #6c757d);
  margin-bottom: 8px;
}

body.premium-landing-page .kb-article-title {
  font-family: var(--pl-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 24px;
}

body.premium-landing-page .kb-article-body {
  line-height: 1.7;
}

body.premium-landing-page .kb-engagement {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--pl-border);
}

body.premium-landing-page .kb-engagement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.premium-landing-page .kb-engagement-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-btn, 14px);
  background: transparent;
  color: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
}

body.premium-landing-page .kb-engagement-btn.is-active,
body.premium-landing-page .kb-engagement-btn:hover {
  border-color: var(--pl-accent);
  background: rgba(0, 0, 0, 0.03);
}

body.premium-landing-page .kb-engagement-hint {
  margin: 12px 0 0;
  font-size: 0.8rem;
}

body.premium-landing-page .kb-comments {
  padding: 28px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  margin-bottom: 24px;
}

body.premium-landing-page .kb-comments-title {
  font-family: var(--pl-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}

body.premium-landing-page .kb-comment-form textarea {
  margin-bottom: 12px;
}

body.premium-landing-page .kb-comment-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--pl-border);
}

body.premium-landing-page .kb-comment-item:last-child {
  border-bottom: none;
}

body.premium-landing-page .kb-comment-meta {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 0.875rem;
}

body.premium-landing-page .kb-search-results .kb-search-result-item {
  margin-bottom: 12px;
}

body.premium-landing-page .kb-search-result-link {
  display: block;
  padding: 20px 24px;
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease;
}

body.premium-landing-page .kb-search-result-link:hover {
  border-color: var(--pl-accent);
  text-decoration: none;
}

body.premium-landing-page .kb-search-result-title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

body.premium-landing-page .kb-search-result-category {
  font-size: 0.8rem;
  color: var(--pl-text-muted, #6c757d);
}

body.premium-landing-page .kb-share-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 12px 20px;
  background: var(--pl-text, #111);
  color: #fff;
  border-radius: 10px;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
}

body.premium-landing-page .kb-share-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 992px) {
  body.premium-landing-page .kb-sidebar-col {
    display: block;
  }
}

body.premium-landing-page .box-support:hover,
body.premium-landing-page .a-box-support:hover .box-support {
  border-color: var(--pl-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  transform: translateY(-2px);
}

body.premium-landing-page .support .need-more-help,
body.premium-landing-page .support .need-more-help-article {
  margin-top: 48px;
  padding: var(--pl-card-padding, 32px);
  background: var(--pl-card);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  text-align: center;
}

body.premium-landing-page .support .need-more-help-article {
  margin-top: 32px;
}

body.premium-landing-page .support .need-more-help .title {
  font-family: var(--pl-font-heading);
  font-weight: 700;
  margin-bottom: 8px;
}


body.premium-landing-page .support .btn-submit-request,
body.premium-landing-page .support a.btn-submit-request {
  border-radius: var(--pl-radius-btn, 14px) !important;
  color: #fff !important;
  background-color: #17a2b8 !important;
  border-color: #17a2b8 !important;
}

body.premium-landing-page .support .btn-submit-request:hover,
body.premium-landing-page .support .btn-submit-request:focus,
body.premium-landing-page .support .btn-submit-request:focus-visible,
body.premium-landing-page .support a.btn-submit-request:hover,
body.premium-landing-page .support a.btn-submit-request:focus,
body.premium-landing-page .support a.btn-submit-request:focus-visible {
  color: #fff !important;
  background-color: #138496 !important;
  border-color: #117a8b !important;
}

body.premium-landing-page .support .btn-submit-request svg,
body.premium-landing-page .support .btn-submit-request path {
  fill: currentColor;
  color: #fff;
}

/* Settings / account sidebar tabs */
body.premium-landing-page .sidebar-tabs .nav .nav-item .nav-link {
  border-radius: var(--pl-radius-btn, 14px);
  overflow: hidden;
}

body.premium-landing-page .sidebar-tabs .nav .active .nav-link {
  border-radius: var(--pl-radius-btn, 14px);
}

/* Wallet — main section tabs (Earnings, Referral Earnings, etc.) */
body.premium-landing-page .nav-tabs-wallet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  border: 0;
}

body.premium-landing-page .nav-tabs-wallet .nav-item {
  margin: 0;
}

body.premium-landing-page .nav-tabs-wallet .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--pl-text, #111);
  background: var(--pl-bg-secondary, #f4f4f5);
  border: 1px solid var(--pl-border, #e5e7eb) !important;
  border-radius: var(--pl-radius-btn, 14px);
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.premium-landing-page .nav-tabs-wallet .nav-item .nav-link:hover,
body.premium-landing-page .nav-tabs-wallet .nav-item .nav-link:focus {
  color: var(--pl-text, #111);
  background: var(--pl-card, #fff);
  border-color: var(--pl-text, #111) !important;
}

body.premium-landing-page .nav-tabs-wallet .nav-item .nav-link.active,
body.premium-landing-page .nav-tabs-wallet .nav-item .active.nav-link {
  color: #fff !important;
  background: var(--pl-text, #111) !important;
  border-color: var(--pl-text, #111) !important;
}

/* Wallet — payout account method tabs (PayPal, IBAN, SWIFT, etc.) */
body.premium-landing-page .nav-payout-accounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0;
  border: 0 !important;
}

body.premium-landing-page .nav-payout-accounts > li {
  list-style: none;
  margin: 0;
}

body.premium-landing-page .nav-payout-accounts a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--pl-text, #111) !important;
  background: var(--pl-bg-secondary, #f4f4f5) !important;
  border: 1px solid var(--pl-border, #e5e7eb) !important;
  border-radius: var(--pl-radius-btn, 14px) !important;
  box-shadow: none !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.premium-landing-page .nav-payout-accounts a.btn:hover,
body.premium-landing-page .nav-payout-accounts a.btn:focus {
  color: var(--pl-text, #111) !important;
  background: var(--pl-card, #fff) !important;
  border-color: var(--pl-text, #111) !important;
}

body.premium-landing-page .nav-payout-accounts a.btn.active,
body.premium-landing-page .nav-payout-accounts a.btn.active:hover,
body.premium-landing-page .nav-payout-accounts a.btn.active:focus {
  color: #fff !important;
  background: var(--pl-text, #111) !important;
  border-color: var(--pl-text, #111) !important;
}

body.premium-landing-page .wallet-container {
  border-color: var(--pl-border, #e5e7eb);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .wallet-container .btn-custom svg,
body.premium-landing-page .wallet-container .btn-custom path {
  fill: currentColor;
}

body.premium-landing-page .card-wallet-balance {
  border-radius: var(--pl-radius-card, 18px);
  border-color: var(--pl-border, #e5e7eb);
}

body.premium-landing-page .card-wallet-balance .btn-add-funds {
  border-radius: var(--pl-radius-sm, 10px);
  border: 1px solid var(--pl-border, #e5e7eb);
}

body.premium-landing-page .new-payout-request .input-group .input-group-prepend .input-group-text {
  border-top-left-radius: var(--pl-radius-input, 12px) !important;
  border-bottom-left-radius: var(--pl-radius-input, 12px) !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

body.premium-landing-page .new-payout-request .input-group > .form-control.form-input,
body.premium-landing-page .new-payout-request .input-group > .form-control.price-input {
  border-top-right-radius: var(--pl-radius-input, 12px) !important;
  border-bottom-right-radius: var(--pl-radius-input, 12px) !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

body.premium-landing-page .new-payout-request .form-control.custom-select {
  border-radius: var(--pl-radius-input, 12px) !important;
}

body.premium-landing-page .minimum-payout-container {
  border-radius: var(--pl-radius-input, 12px);
}

/* Homepage catalog — product grids (3 columns desktop) */
body.premium-landing-page .pl-home-catalog .pl-container {

  box-sizing: border-box;
}

body.premium-landing-page .pl-home-catalog .pl-home-products-row {
  display: grid;
  grid-template-columns: repeat(var(--pl-product-grid-cols-desktop, 3), minmax(0, 1fr));
  gap: var(--pl-gap-grid, 28px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.premium-landing-page .pl-home-catalog .pl-home-products-row > .col-product,
body.premium-landing-page .pl-home-catalog .pl-home-products-row > .pl-home-products-row__col {
  flex: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

body.premium-landing-page .pl-home-catalog .product-item {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

body.premium-landing-page .pl-home-catalog .product-item .row-custom:first-child {
  width: 100%;
  max-width: 100%;
}

body.premium-landing-page .pl-home-catalog .product-item .ratio-product-box {
  width: 100%;
  max-width: 100%;
}

body.premium-landing-page .pl-home-catalog .product-item .ratio-product-box > a > img.img-product {
  max-width: 100% !important;
}

body.premium-landing-page .pl-home-catalog .product-item .product-title,
body.premium-landing-page .pl-home-catalog .product-item .product-title a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.premium-landing-page .pl-home-catalog .pl-section-title a {
  color: inherit;
  text-decoration: none;
}

body.premium-landing-page .pl-home-catalog .pl-section-title a:hover {
  color: var(--pl-text);
}

body.premium-landing-page .pl-home-catalog--categories .pl-home-legacy-grid > .section > .section-header {
  display: none;
}

body.premium-landing-page .pl-home-legacy-grid > .section,
body.premium-landing-page .pl-home-legacy-grid .section-category-products {
  margin-bottom: 48px;
  padding: 0;
  border: none;
  background: transparent;
}

body.premium-landing-page .pl-home-legacy-grid > .section:last-child,
body.premium-landing-page .pl-home-legacy-grid .section-category-products:last-child {
  margin-bottom: 0;
}

body.premium-landing-page .pl-home-catalog--by-category .section-category-products .section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}

body.premium-landing-page .pl-home-catalog--by-category .section-category-products .section-header .title,
body.premium-landing-page .pl-home-catalog--by-category .section-category-products .section-header .title a {
  font-family: var(--pl-font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--pl-text);
  margin: 0;
}

body.premium-landing-page .pl-home-catalog--by-category .section-slider-nav button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
  color: var(--pl-text);
}

body.premium-landing-page .pl-home-catalog .pl-section-header-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  max-width: none;
  text-align: left;
  margin-bottom: 32px;
}

body.premium-landing-page .pl-home-slider-nav {
  display: flex;
  gap: 8px;
}

body.premium-landing-page .pl-home-slider-nav button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
  color: var(--pl-text);
}

body.premium-landing-page .pl-home-brand-slider .brand-item .item {
  border-radius: var(--pl-radius-card, 18px);
  border: 1px solid var(--pl-border);
  background: var(--pl-card);
  padding: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.premium-landing-page .pl-home-brand-slider .brand-item .item:hover {
  border-color: rgba(251, 206, 5, 0.45);
  box-shadow: var(--pl-shadow, 0 10px 30px rgba(0, 0, 0, 0.06));
}

body.premium-landing-page .pl-home-brand-slider .brand-item img {
  object-fit: contain;
}

body.premium-landing-page .pl-home-catalog--categories .featured-categories .card,
body.premium-landing-page .pl-home-catalog--categories .item-category-round {
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
}

@media (max-width: 991px) {
  body.premium-landing-page .pl-home-catalog .pl-section-header {
    margin-bottom: 40px;
  }

  body.premium-landing-page .pl-home-legacy-grid > .section,
  body.premium-landing-page .pl-home-legacy-grid .section-category-products {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  body.premium-landing-page .pl-home-catalog .pl-section-header-slider {
    margin-bottom: 24px;
  }

  body.premium-landing-page .pl-home-catalog--by-category .section-category-products .section-header {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  body.premium-landing-page .pl-main--home {
    overflow-x: clip;
  }

  body.premium-landing-page .pl-home-catalog {
    overflow-x: clip;
    max-width: 100%;
  }

  body.premium-landing-page .pl-home-catalog .product-item .item-details {
    padding: 14px 12px 16px;
  }

  body.premium-landing-page .pl-home-catalog .product-item .product-title a {
    font-size: 0.875rem;
    line-height: 1.35;
  }
}

/* Product grids — columns from Admin → Theme (desktop / mobile). */
body.premium-landing-page .row-product:not(.row-related-products) {
  display: grid;
  grid-template-columns: repeat(var(--pl-product-grid-cols-desktop, 3), minmax(0, 1fr));
  gap: var(--pl-gap-grid, 28px);
  margin-right: 0;
  margin-left: 0;
}

body.premium-landing-page .row-product:not(.row-related-products) > .col-product {
  flex: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  body.premium-landing-page .row-product:not(.row-related-products),
  body.premium-landing-page .pl-home-catalog .pl-home-products-row {
    grid-template-columns: repeat(var(--pl-product-grid-cols-mobile, 2), minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 479px) {
  body.premium-landing-page .pl-home-catalog .pl-home-products-row {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  body.premium-landing-page .container-products-page #productListResultContainer.row-product,
  body.premium-landing-page #productListResultContainer.row-product:not(.row-related-products) {
    grid-template-columns: repeat(var(--pl-product-grid-cols-desktop, 3), minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  body.premium-landing-page .container-products-page #productListResultContainer.row-product,
  body.premium-landing-page #productListResultContainer.row-product:not(.row-related-products) {
    grid-template-columns: repeat(var(--pl-product-grid-cols-mobile, 2), minmax(0, 1fr));
    gap: 14px;
  }

  body.premium-landing-page .container-products-page #productListResultContainer > .col-product,
  body.premium-landing-page #productListResultContainer.row-product:not(.row-related-products) > .col-product {
    flex: none !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* Product — already purchased notice */
body.premium-landing-page .pl-purchased-notice.product-already-purchased {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 0 0 var(--pl-space-2, 16px);
  width: 100%;
  padding: 10px 14px;
  background: var(--pl-bg-secondary, #f4f4f5);
  border: 1px solid var(--pl-border, #e5e7eb);
  border-radius: var(--pl-radius-sm, 10px);
  color: var(--pl-text-secondary) !important;
  font-family: var(--pl-font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
}

body.premium-landing-page .pl-purchased-notice__label {
  margin: 0;
  color: var(--pl-text);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

body.premium-landing-page .pl-purchased-notice__form {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

body.premium-landing-page .pl-purchased-notice.product-already-purchased .pl-purchased-notice__link,
body.premium-landing-page .pl-purchased-notice.product-already-purchased button.pl-purchased-notice__link {
  display: inline;
  margin: 0;
  padding: 0;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: 600 !important;
  line-height: inherit !important;
  letter-spacing: normal;
  text-transform: none;
  color: var(--pl-text) !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  vertical-align: baseline;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

body.premium-landing-page .pl-purchased-notice.product-already-purchased .pl-purchased-notice__link:hover,
body.premium-landing-page .pl-purchased-notice.product-already-purchased .pl-purchased-notice__link:focus-visible,
body.premium-landing-page .pl-purchased-notice.product-already-purchased button.pl-purchased-notice__link:hover,
body.premium-landing-page .pl-purchased-notice.product-already-purchased button.pl-purchased-notice__link:focus-visible {
  color: var(--pl-accent-hover, #e8be04) !important;
  text-decoration: underline;
}

body.premium-landing-page .product-already-purchased.text-success,
body.premium-landing-page .product-already-purchased.product-already-purchased {
  color: var(--pl-text-secondary) !important;
}

body.premium-landing-page .product-already-purchased button,
body.premium-landing-page .product-already-purchased a {
  font-family: inherit !important;
  color: var(--pl-text) !important;
}

/* Orders — list, details, downloads */
body.premium-landing-page .order-list-item {
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .order-list-item .btn.btn-light,
body.premium-landing-page .order-download-view-btn {
  border-radius: var(--pl-radius-btn, 14px) !important;
  border: 1px solid var(--pl-border, #e5e7eb);
  color: var(--pl-text) !important;
  background: var(--pl-card, #fff) !important;
  font-weight: 600;
}

body.premium-landing-page .order-download-view-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 0.8125rem;
}

body.premium-landing-page .order-details-container .order-total {
  border-radius: var(--pl-radius-card, 18px);
  border: 1px solid var(--pl-border, #e5e7eb);
  overflow: hidden;
}

body.premium-landing-page .order-details-container .table-orders-products {
  border-radius: var(--pl-radius-card, 18px);
  border: 1px solid var(--pl-border, #e5e7eb);
  overflow: hidden;
}

body.premium-landing-page .order-details-container .order-head .order-back-orders-btn {
  color: var(--pl-text) !important;
  background: var(--pl-card, #fff) !important;
  border: 1px solid var(--pl-border, #e5e7eb) !important;
  border-radius: var(--pl-radius-btn, 14px) !important;
  font-weight: 600;
  box-shadow: none !important;
}

body.premium-landing-page .order-details-container .order-head .order-back-orders-btn:hover,
body.premium-landing-page .order-details-container .order-head .order-back-orders-btn:focus-visible {
  color: var(--pl-text) !important;
  background: var(--pl-bg-secondary, #f4f4f5) !important;
  border-color: var(--pl-border, #e5e7eb) !important;
}

body.premium-landing-page .order-details-container .order-head .order-back-orders-btn svg {
  fill: currentColor;
}

/* ==========================================================================
   Modesy compatibility (load this file after style-2.5.1.min.css)
   Preserves checkout/payment/coupon UI; scoped content images for pages/blog.
   ========================================================================== */

/* Payment gateway logos — all checkout contexts */
body.premium-landing-page .payment-icons-container .payment-icons,
body.premium-landing-page .shopping-cart .payment-icons-container .payment-icons,
body.premium-landing-page .payment-options-list li .list-right label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px 12px;
}

body.premium-landing-page .payment-icons img,
body.premium-landing-page .payment-icons-container .payment-icons img,
body.premium-landing-page .shopping-cart .payment-icons-container .payment-icons img,
body.premium-landing-page .payment-button-cnt .payment-icons img,
body.premium-landing-page #payment-button-container .payment-icons img,
body.premium-landing-page .stripe-checkout .payment-icons img,
body.premium-landing-page .tab-checkout .payment-icons img,
body.premium-landing-page .payment-options-list li label img,
body.premium-landing-page .tab-checkout .payment-options-list li label img,
body.premium-landing-page .payment-options-list li .list-right img {
  display: inline-block !important;
  width: auto !important;
  height: 26px !important;
  max-width: 72px !important;
  max-height: 26px !important;
  object-fit: contain !important;
  margin: 0 !important;
  float: none !important;
}

body.premium-landing-page #footer .footer-payment-icons img,
body.premium-landing-page .pl-footer__payments-list img {
  display: block !important;
  width: auto !important;
  height: 22px !important;
  max-width: 44px !important;
  max-height: 22px !important;
  object-fit: contain !important;
}

body.premium-landing-page #payment-button-container.payment-button-cnt--visible {
  visibility: visible !important;
}

body.premium-landing-page a.btn-dodo-payments,
body.premium-landing-page a.btn-dodo-payments.btn-custom {
  display: inline-block !important;
  color: var(--pl-text, #0f172a) !important;
  background-color: var(--pl-accent, #f5c518) !important;
  border: none !important;
  border-radius: var(--pl-radius-btn, 14px) !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

body.premium-landing-page a.btn-dodo-payments:hover,
body.premium-landing-page a.btn-dodo-payments:focus-visible {
  color: var(--pl-text, #0f172a) !important;
  background-color: var(--pl-accent-hover, #e8be04) !important;
}

body.premium-landing-page .coupon-item .coupon-img img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
}

/* Responsive content images (replaces removed premium-landing main img rule) */
body.premium-landing-page main #wrapper img:not(.img-cart-thumb):not(.img-product):not(.img-product-slider) {
  max-width: 100%;
  height: auto;
}

/* Product detail main image — fixed 3:2 frame; large uploads must not resize the column */
body.premium-landing-page main #wrapper .product-slider-container--gallery-below .img-product-slider {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
}

body.premium-landing-page main #wrapper .section img,
body.premium-landing-page main #wrapper .page-content img,
body.premium-landing-page main #wrapper .blog-item img,
body.premium-landing-page main #wrapper .post-content img {
  display: block;
}

body.premium-landing-page .product-affiliate-panel {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-md, 12px);
  background: var(--pl-bg-secondary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.premium-landing-page .product-affiliate-panel__notice {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

body.premium-landing-page .btn-product-affiliate {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

body.premium-landing-page .product-affiliate-panel__manage {
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text-secondary);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.premium-landing-page .product-affiliate-panel__manage:hover {
  color: var(--pl-text);
}

body.premium-landing-page .affiliate-joined-next .btn {
  margin-top: 4px;
}

/* Affiliate program — hero */
body.premium-landing-page .pl-affiliate-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--pl-bg-secondary, #f4f4f5) 0%, var(--pl-bg, #fafafa) 55%);
  border-bottom: 1px solid var(--pl-border);
  padding: calc(var(--pl-header-offset, 132px) + clamp(28px, 4vw, 44px)) 0 clamp(44px, 5vw, 64px);
  margin-bottom: var(--pl-block-gap, 32px);
}

body.premium-landing-page .pl-affiliate-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  background: radial-gradient(circle, rgba(251, 206, 5, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

body.premium-landing-page .pl-affiliate-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

body.premium-landing-page .pl-affiliate-hero__content {
  max-width: 580px;
}

body.premium-landing-page .pl-affiliate-hero__content .pl-badge {
  margin-bottom: 20px;
}

body.premium-landing-page .pl-affiliate-hero__title {
  font-family: var(--pl-font-heading);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-hero__lead {
  margin: 0 0 22px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-affiliate-hero__highlights {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.premium-landing-page .pl-affiliate-hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-hero__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 8px;
  background: rgba(251, 206, 5, 0.22);
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

body.premium-landing-page .pl-affiliate-hero__actions .pl-affiliate-status {
  flex: 1 1 100%;
  max-width: 100%;
}

body.premium-landing-page .pl-affiliate-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  padding-top: 8px;
  border-top: 1px solid var(--pl-border);
}

body.premium-landing-page .pl-affiliate-hero__stat strong {
  display: block;
  font-family: var(--pl-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-hero__stat span {
  font-size: 13px;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-affiliate-hero__visual {
  position: relative;
}

body.premium-landing-page .pl-affiliate-hero__media {
  border-radius: var(--pl-radius-card, 18px);
  overflow: hidden;
  border: 1px solid var(--pl-border);
  background: var(--pl-card, #fff);
}

body.premium-landing-page .pl-affiliate-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

body.premium-landing-page .pl-affiliate-hero__image--illustration {
  max-height: none;
  min-height: 320px;
  aspect-ratio: 7 / 5;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: linear-gradient(165deg, var(--pl-bg-secondary, #f8f9fc) 0%, var(--pl-bg, #fff) 100%);
}

body.premium-landing-page .pl-affiliate-hero__float {
  position: absolute;
  max-width: 200px;
  padding: 12px 16px;
  background: var(--pl-card, #fff);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-lg, 14px);
  animation: pl-float 6s ease-in-out infinite;
}

body.premium-landing-page .pl-affiliate-hero__float strong {
  display: block;
  font-family: var(--pl-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-hero__float span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-affiliate-hero__float--1 {
  top: -12px;
  right: -16px;
  animation-delay: 0s;
}

body.premium-landing-page .pl-affiliate-hero__float--2 {
  bottom: 48px;
  left: -24px;
  animation-delay: -2s;
}

body.premium-landing-page .pl-affiliate-hero__float--3 {
  bottom: -10px;
  right: 32px;
  animation-delay: -4s;
}

body.premium-landing-page .page-affiliate-wrap > .container {
  padding-top: var(--pl-block-gap, 32px);
}

body.premium-landing-page .pl-affiliate {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 72px);
}

body.premium-landing-page .pl-affiliate-section-title {
  font-family: var(--pl-font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-align: center;
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--pl-radius-md, 12px);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 100%;
}

body.premium-landing-page .pl-affiliate-status--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-status--danger {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-status__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

body.premium-landing-page .pl-affiliate-status--success .pl-affiliate-status__icon {
  color: #16a34a;
}

body.premium-landing-page .pl-affiliate-status--danger .pl-affiliate-status__icon {
  color: #dc2626;
}

body.premium-landing-page .pl-affiliate-status p {
  margin: 4px 0 0;
  font-size: 0.875rem;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-affiliate .pl-affiliate-steps {
  margin-left: 0;
  margin-right: 0;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 32px);
  border-radius: var(--pl-radius-card, 18px);
}

body.premium-landing-page .pl-affiliate .pl-affiliate-steps.pl-section {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

body.premium-landing-page .pl-affiliate-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991.98px) {
  body.premium-landing-page .pl-affiliate-steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

body.premium-landing-page .pl-affiliate-step-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card, 18px);
  background: var(--pl-card, #fff);
}

body.premium-landing-page .page-affiliate-wrap .pl-service-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--pl-border);
}

body.premium-landing-page .pl-affiliate-step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  font-family: var(--pl-font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--pl-text);
  background: rgba(251, 206, 5, 0.35);
  border-radius: 10px;
}

body.premium-landing-page .pl-affiliate-step-card__title {
  font-family: var(--pl-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-step-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--pl-text-secondary);
}

/* Affiliate content — rich text (admin TinyMCE) */
body.premium-landing-page .pl-affiliate-content .pl-section-header {
  margin-bottom: 28px;
}

body.premium-landing-page .pl-affiliate-content__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-affiliate-content__body p {
  margin: 0 0 1.15em;
}

body.premium-landing-page .pl-affiliate-content__body p:last-child {
  margin-bottom: 0;
}

body.premium-landing-page .pl-affiliate-content__body strong {
  color: var(--pl-text);
  font-weight: 600;
}

body.premium-landing-page .pl-affiliate-content__body h2,
body.premium-landing-page .pl-affiliate-content__body h3,
body.premium-landing-page .pl-affiliate-content__body h4 {
  font-family: var(--pl-font-heading);
  color: var(--pl-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.5em 0 0.65em;
}

body.premium-landing-page .pl-affiliate-content__body h2 {
  font-size: 1.375rem;
}

body.premium-landing-page .pl-affiliate-content__body h3 {
  font-size: 1.125rem;
}

body.premium-landing-page .pl-affiliate-content__body ul,
body.premium-landing-page .pl-affiliate-content__body ol {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
}

body.premium-landing-page .pl-affiliate-content__body li + li {
  margin-top: 0.35em;
}

/* Affiliate FAQ — same component as homepage (#faq .pl-faq) */
body.premium-landing-page .pl-affiliate-faq .pl-section-header {
  margin-bottom: 40px;
}

body.premium-landing-page .pl-affiliate-faq .pl-faq {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  body.premium-landing-page .pl-affiliate-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.premium-landing-page .pl-affiliate-hero__visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  body.premium-landing-page .pl-affiliate-hero__content {
    max-width: none;
  }

  body.premium-landing-page .pl-affiliate-hero__float--2 {
    left: 0;
  }
}

@media (max-width: 575.98px) {
  body.premium-landing-page .pl-affiliate-hero__actions .pl-btn {
    width: 100%;
    justify-content: center;
  }

  body.premium-landing-page .pl-affiliate-hero__float {
    display: none;
  }
}

/* Affiliate join modal */
body.premium-landing-page #modalAffiliate .modal-dialog {
  max-width: 640px;
}

body.premium-landing-page .pl-affiliate-join-modal .modal-header {
  padding: 24px 28px 0;
  border-bottom: 0;
}

body.premium-landing-page .pl-affiliate-join-modal .modal-title {
  font-family: var(--pl-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
}

body.premium-landing-page .pl-affiliate-join-modal .modal-header .close {
  top: 20px;
  right: 20px;
}

body.premium-landing-page .pl-affiliate-join-modal__body {
  padding: 20px 28px 8px;
}

body.premium-landing-page .pl-affiliate-join-modal__fields > [class*='col-'] {
  padding-left: 10px;
  padding-right: 10px;
}

body.premium-landing-page .pl-affiliate-join-modal__fields .form-group {
  margin-bottom: 16px;
}

body.premium-landing-page .pl-affiliate-join-modal__fields label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-text);
}

body.premium-landing-page .pl-affiliate-join-modal__location .row {
  margin-left: -10px;
  margin-right: -10px;
}

body.premium-landing-page .pl-affiliate-join-modal__location .row > [class*='col-'] {
  padding-left: 10px;
  padding-right: 10px;
}

body.premium-landing-page .pl-affiliate-join-modal__location .select2-container {
  width: 100% !important;
}

body.premium-landing-page .pl-affiliate-join-modal .custom-control-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pl-text-secondary);
}

body.premium-landing-page .pl-affiliate-join-modal__footer {
  padding: 8px 28px 28px;
  border-top: 0;
}

body.premium-landing-page .pl-affiliate-join-modal__footer .btn {
  min-height: 48px;
  border-radius: var(--pl-radius-btn, 14px);
}

@media (max-width: 767.98px) {
  body.premium-landing-page .pl-affiliate-join-modal__body,
  body.premium-landing-page .pl-affiliate-join-modal .modal-header,
  body.premium-landing-page .pl-affiliate-join-modal__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.premium-landing-page .pl-affiliate-join-modal__fields > .col-md-8,
  body.premium-landing-page .pl-affiliate-join-modal__fields > .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
