/*
Theme Name: Seributype
Theme URI: https://seributype.com/
Author: Seributype Team
Author URI: https://seributype.com/
Description: Custom Modern Typography Foundry Theme for Seributype (Duplicated from Gumroad Design System)
Version: 1.0.0
Text Domain: seributype
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;1,400;1,600&family=Space+Grotesk:wght@500;700&display=swap');

@font-face {
  font-family: 'Font_grooby';
  src: url('assets/fonts/Grooby-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font_ironveyl';
  src: url('assets/fonts/Ironveyl-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fafafa;
  --card-bg: #ffffff;
  --card-subtle: #f4f4f5;
  --text-main: #09090b;
  --text-muted: #52525b;
  --text-light: #71717a;
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-subtle: #fffbeb;
  --brand-gold: #ffae00;
  --brand-ochre: #d97706;
  --brand-slate: #52525b;
  --brand-dark: #09090b;
  --border-subtle: #e4e4e7;
  --border-dark: #d4d4d8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   DARK THEME (PURE MATTE JET BLACK & ZINC) DESIGN TOKENS
   ========================================================================== */
[data-theme="dark"] {
  --bg: #09090b;
  --card-bg: #141416;
  --card-subtle: #1c1c1f;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-light: #71717a;
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-subtle: rgba(245, 158, 11, 0.12);
  --brand-gold: #ffb800;
  --brand-ochre: #f59e0b;
  --brand-slate: #a1a1aa;
  --brand-dark: #000000;
  --border-subtle: #27272a;
  --border-dark: #3f3f46;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body, .kt-header, .kt-footer, .kt-font-card, .doc-content-box, 
.comparison-table-container, .faq-category, .faq-acc-item, .freebie-card, 
.about-card, .contact-card, .eula-card-container, .notice-box, .story-section {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

#fonts, #license, #tester, section[id] {
  scroll-margin-top: 64px;
}

.kt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.kt-nav-inner {
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
  padding: 20px clamp(16px, 3vw, 44px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kt-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.kt-nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.kt-nav-menu a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.kt-nav-menu a:hover { color: var(--accent); }
.kt-nav-menu a.active { color: var(--accent); font-weight: 700; }

.kt-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kt-nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-main);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
}

.kt-nav-icon-btn:hover {
  background: var(--card-subtle);
  color: var(--accent);
  border-color: var(--border-subtle);
  transform: translateY(-1px);
}

.kt-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px;
}

.btn-nav-primary {
  background: var(--text-main);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-nav-primary:hover { opacity: 0.9; }


.kt-container {
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 44px);
}

.kt-hero {
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
}

.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  padding: 24px 0;
}

.kt-hero-kinetic-title {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 8.5vw, 7.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-main);
  max-width: 1400px;
  margin: 0 auto 24px;
}

.serif-italic-accent {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--brand-ochre);
  padding: 0 4px;
  letter-spacing: -0.01em;
}

.kt-hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 32px;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--text-main);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(11, 19, 32, 0.12);
}
.btn-hero-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.3);
}

.btn-hero-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-dark);
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  border-color: var(--text-main);
  background: var(--bg);
  transform: translateY(-2px);
}

.hero-stats-strip {
  width: 100%;
  margin-top: auto;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 6px 0;
  gap: 12px;
  background: transparent;
  transition: transform 0.2s ease;
}
.hero-stat-item:hover {
  transform: translateY(-2px);
}

.stat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.08);
  color: var(--brand-ochre);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
  }
}

@media (max-width: 540px) {
  .hero-stats-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

#fonts {
  padding-top: 80px;
}

.kt-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.kt-section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-view-all {
  border: 1px solid var(--border-dark);
  padding: 8px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  transition: all 0.2s;
}
.btn-view-all:hover {
  border-color: var(--text-main);
  background: var(--text-main);
  color: #fff;
}

.kt-fonts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 90px;
}

@media (max-width: 1100px) {
  .kt-fonts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .kt-fonts-grid {
    grid-template-columns: 1fr;
  }
}

.kt-font-card {
  aspect-ratio: 16 / 10;
  min-height: 300px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.025);
  overflow: hidden;
}

.kt-font-card:hover {
  transform: translateY(-6px);
  background: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
  box-shadow: 0 24px 48px rgba(11, 19, 32, 0.22);
}

.kt-font-card:hover .font-title-card,
.kt-font-card:hover .font-styles-count,
.kt-font-card:hover .card-price-value {
  color: #ffffff !important;
}

.kt-font-card:hover .card-bottom-info {
  border-color: rgba(255, 255, 255, 0.12);
}

.kt-font-card:hover .card-ribbon {
  background: linear-gradient(135deg, #ffb800 0%, #e07a00 100%);
  color: #ffffff;
}

.card-ribbon {
  position: absolute;
  top: 20px;
  right: 24px;
  background: linear-gradient(135deg, #ffb800 0%, #e07a00 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(224, 122, 0, 0.22);
  transition: all 0.2s ease;
  z-index: 2;
}

.card-center-specimen {
  flex: 1;
  margin: 0;
  padding: 8px 0 12px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 155px;
  width: 100%;
  overflow: visible;
}

.specimen-main-name {
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  line-height: 1.25;
  padding-bottom: 6px;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
  width: 100%;
  letter-spacing: -0.03em;
  transition: opacity 0.2s ease;
}

.specimen-pangram {
  display: none;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.3;
  padding-bottom: 4px;
  word-break: break-word;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.kt-font-card:hover .specimen-main-name {
  display: none;
}
.kt-font-card:hover .specimen-pangram {
  display: block;
  opacity: 1;
}

.card-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  transition: border-color 0.2s ease;
}

.font-title-card {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  margin: 0 0 2px 0;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.font-styles-count {
  font-size: 0.84rem;
  line-height: 1.2;
  display: block;
  color: var(--text-muted);
  transition: color 0.2s;
}

.card-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  transition: all 0.2s;
}

.card-price-value {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 2px 0;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.card-free-trial-badge {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  color: var(--accent);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}

.kt-font-card:hover .card-free-trial-badge {
  color: #fbbf24;
}

.kt-license-section {
  padding: 80px 0 90px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.license-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.license-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}

.license-box {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s, transform 0.2s;
}
.license-box:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.license-box-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.license-target-user {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  min-height: 52px;
  margin-bottom: 24px;
}

.license-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-main);
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.license-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.license-checklist li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  font-size: 0.95rem;
}

.license-cta-section {
  margin-top: 56px;
  padding-top: 10px;
  text-align: center;
}

.license-cta-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.license-cta-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.btn-view-eula {
  display: inline-block;
  background: var(--text-main);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-view-eula:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.kt-newsletter-wrap {
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 20px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.newsletter-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.newsletter-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.kt-newsletter-wrap form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}

.kt-newsletter-wrap input[type="email"] {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
}
.kt-newsletter-wrap input[type="email"]:focus {
  border-color: var(--accent);
}

.kt-newsletter-wrap button {
  background: var(--text-main);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.kt-newsletter-wrap button:hover {
  background: var(--accent);
}

.kt-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 32px;
  background: var(--bg);
  margin-top: 80px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-main);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.copyright-row {
  text-align: center;
  padding-top: 28px;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--border-subtle);
}

/* Doc & Inner Page Styles */
.doc-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.doc-tag {
  display: inline-block;
  background: var(--text-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.doc-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.doc-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.doc-content-box {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  max-width: 1000px;
  margin: 0 auto 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.doc-content-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.doc-content-box h2:first-child { margin-top: 0; }
.doc-content-box p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.doc-content-box ul, .doc-content-box ol {
  margin: 12px 0 20px 24px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* ==========================================================================
   Catalog & Shop Page Styles (Exact Gumroad Duplication)
   ========================================================================== */
.catalog-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.catalog-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--text-main);
}

.catalog-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Filter Toolbar */
.filter-toolbar {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 380px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
}

.search-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-pill,
.filter-pill {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.category-pill:hover,
.filter-pill:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.category-pill.active,
.filter-pill.active {
  background: var(--text-main);
  border-color: var(--text-main);
  color: #ffffff;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.sort-select {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sort-select:focus {
  border-color: var(--accent);
}

/* Results Bar */
.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 4px;
}

.results-count {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}
.results-count strong {
  color: var(--text-main);
}

/* Empty State */
.empty-state {
  display: none;
  text-align: center;
  padding: 80px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 80px;
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.btn-reset-filter {
  background: var(--text-main);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-reset-filter:hover {
  background: var(--accent);
}

/* ==========================================================================
   Single Product & Font Specimen Details (Gumroad 100% Duplication)
   ========================================================================== */
.product-carousel-wrapper {
  position: relative;
  margin: 28px 0 44px;
}

.carousel-viewport {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  cursor: grab;
}
.carousel-viewport:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1100px) {
  .carousel-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 640px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.carousel-slide:hover img {
  transform: scale(1.03);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0 0 4px 0;
}
.carousel-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

.carousel-dots-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: all 0.25s ease;
}
.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--text-main);
}

/* 2-Column Product Layout */
.product-main-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
  margin-bottom: 70px;
}

@media (max-width: 1024px) {
  .product-main-grid {
    grid-template-columns: 1fr;
  }
}

/* LEFT COLUMN: Tester, Glyphs, Specs */
.product-content-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Interactive Tester Box */
.type-tester-box {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: background 0.3s ease, color 0.3s ease;
}

.type-tester-box.tester-inverted {
  background: #141416 !important;
  border-color: #27272a !important;
  color: #f4f4f5 !important;
}
.type-tester-box.tester-inverted .tester-slider-labels {
  color: #a1a1aa !important;
}
.type-tester-box.tester-inverted .tester-slider-val {
  color: #f4f4f5 !important;
}
.type-tester-box.tester-inverted .sample-chip {
  color: #a1a1aa !important;
  background: #1c1c1f !important;
  border-color: #27272a !important;
}
.type-tester-box.tester-inverted .sample-chip:hover {
  color: #ffffff !important;
  border-color: #f4f4f5 !important;
}
.type-tester-box.tester-inverted .sample-chip.active {
  color: #09090b !important;
  background: #f4f4f5 !important;
  border-color: #f4f4f5 !important;
}
.type-tester-box.tester-inverted .tester-text-input {
  color: #f4f4f5 !important;
  background: transparent !important;
  border: none !important;
}
.type-tester-box.tester-inverted .slider-minimal {
  background: #27272a !important;
}
.type-tester-box.tester-inverted .slider-minimal::-webkit-slider-thumb {
  background: #f4f4f5 !important;
}
.type-tester-box.tester-inverted .btn-align-icon {
  color: #a1a1aa !important;
}
.type-tester-box.tester-inverted .btn-align-icon:hover {
  color: #ffffff !important;
  border-color: #444444 !important;
}
.type-tester-box.tester-inverted .btn-align-icon.active {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15) !important;
}
.type-tester-box.tester-inverted .btn-theme-circle {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

.tester-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 22px;
}

.tester-sliders-cluster {
  display: flex;
  flex: 1;
  gap: 28px;
  min-width: 280px;
  max-width: 760px;
}

@media (max-width: 768px) {
  .tester-sliders-cluster {
    flex-direction: column;
    gap: 16px;
  }
}

.tester-slider-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tester-slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.tester-slider-val {
  font-weight: 600;
  color: var(--text-main);
  font-feature-settings: "tnum";
}

.slider-minimal {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
  margin: 6px 0;
}

.slider-minimal::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
  transition: transform 0.15s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.slider-minimal::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.tester-actions-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-align-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s ease;
  padding: 0;
}
.btn-align-icon:hover {
  color: var(--text-main);
  border-color: var(--border-subtle);
}
.btn-align-icon.active {
  color: var(--text-main);
  border-color: var(--text-main);
  background: rgba(0, 0, 0, 0.05);
}

.btn-theme-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin-left: 6px;
}
.btn-theme-circle:hover {
  transform: scale(1.08);
}

.sample-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.sample-chip {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.sample-chip:hover {
  border-color: #000;
  color: var(--text-main);
}
.sample-chip.active {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}

.tester-textarea-wrap {
  width: 100%;
  background: transparent;
}

.tester-text-input,
textarea.tester-text-input {
  width: 100%;
  min-height: 160px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 72px;
  line-height: 1.1;
  letter-spacing: 0em;
  color: var(--text-main);
  background: transparent !important;
  resize: vertical;
  word-break: break-word;
  padding: 8px 0;
}

/* Glyphs Inspector Section */
.glyphs-inspector-section {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.glyphs-count-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.glyphs-inspector-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .glyphs-inspector-container {
    grid-template-columns: 1fr;
  }
}

/* Left Big Glyph Stage */
.glyph-inspect-left {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
}

.glyph-inspect-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.glyph-style-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(0,0,0,0.05);
  padding: 5px 12px;
  border-radius: 6px;
}

.glyph-meta-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-feature-settings: "tnum";
}

.glyph-specimen-stage {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.big-glyph-char {
  font-size: 220px;
  line-height: 1;
  color: var(--text-main);
  z-index: 2;
  user-select: none;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Right Grid Area */
.glyph-inspect-right {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.glyph-tabs-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.glyph-pill-tab {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.glyph-pill-tab:hover {
  color: #000;
  border-color: #000;
}
.glyph-pill-tab.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}

.glyph-scroll-area {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glyph-group-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.glyph-grid-cells {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
  gap: 8px;
}

.glyph-card-btn {
  aspect-ratio: 1;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.15s ease;
  user-select: none;
  padding: 0;
}
.glyph-card-btn:hover {
  background: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.glyph-card-btn.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1.5px var(--accent);
  background: #fffbf2;
  color: var(--accent);
}

/* About & Specs Box */
.specs-card-box {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.about-story-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.font-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.spec-item-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.spec-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.spec-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.product-keywords-wrap {
  border-top: 1px solid var(--border-subtle);
  margin-top: 24px;
  padding-top: 20px;
}

.keywords-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.keywords-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-pill-chip {
  background: #f4f4f6;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.keyword-pill-chip:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* RIGHT COLUMN: Sticky Sidebar */
.product-sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  align-self: start;
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.sidebar-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.sidebar-meta-row {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.license-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.license-header-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.license-guide-link {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.license-guide-link:hover { text-decoration: underline; }

.license-options-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.license-choice-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.license-choice-card:hover {
  border-color: #000;
}
.license-choice-card.selected {
  border-color: var(--accent);
  background: #fffbf2;
  box-shadow: 0 0 0 1px var(--accent);
}

.license-choice-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.license-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.license-choice-card.selected .license-radio-dot {
  border-color: var(--accent);
}
.license-choice-card.selected .license-radio-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.lic-tier-title {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-main);
  display: block;
}
.lic-tier-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.lic-tier-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.btn-checkout-cta {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #ffffff !important;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-bottom: 18px;
  border: none;
  cursor: pointer;
}
.btn-checkout-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.guarantees-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.guarantees-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.3;
}
.guarantee-icon {
  flex-shrink: 0;
  color: var(--text-main);
  opacity: 0.75;
}

/* Cross-sell section */
.cross-sell-wrap {
  margin: 80px 0 20px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
}
.cross-sell-headline {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* ==========================================================================
   STATIC PAGES STYLES (MATCHING GUMROAD DESIGN SYSTEM)
   ========================================================================== */

/* ==========================================================================
   LICENSE PAGE
   ========================================================================== */
.kt-license-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.kt-license-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.kt-license-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.license-table {
  margin-bottom: 80px;
}
.comparison-license-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.header-left h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.header-left p {
  color: var(--text-muted);
  font-size: 1rem;
}
.kt-btn-lucu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--text-main);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.kt-btn-lucu:hover {
  background: var(--accent);
}

.mobile-tabs-wrapper {
  display: none;
  margin-bottom: 20px;
}
.mobile-tabs-track {
  display: flex;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 4px;
  overflow-x: auto;
}
.tab-btn {
  flex: 1;
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.tab-btn.active {
  background: var(--text-main);
  color: #ffffff;
}

.comparison-table-container {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}
.comparison-table-container table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.95rem;
}
.comparison-table-container th, 
.comparison-table-container td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-table-container th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--card-subtle);
}
.comparison-table-container th.feature-name-header, 
.comparison-table-container td.feature-name {
  text-align: left;
  font-weight: 700;
  width: 280px;
}
.comparison-table-container tr.group-header td {
  background: var(--card-subtle);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: left;
  padding: 12px 24px;
}
.comparison-table-container .col-business.is-active {
  background: rgba(217, 119, 6, 0.04);
  font-weight: 700;
}
.comparison-table-container th.col-business.is-active {
  color: var(--accent);
}
.comparison-table-container .icon-check::after {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  font-size: 1.15rem;
}
.comparison-table-container .icon-minus::after {
  content: "—";
  color: var(--text-light);
  font-weight: 700;
}

/* Custom VIP License Box */
.custom-license-wrapper {
  margin-bottom: 80px;
}
.custom-vip-grid {
  background: var(--brand-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 12px 36px rgba(11, 19, 32, 0.16);
}
.vip-title h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.vip-desc p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.vip-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
}
.vip-list li::before {
  content: "✦";
  color: var(--brand-gold);
}
.kt-btn-domino {
  display: inline-block;
  background: #ffffff;
  color: var(--brand-dark) !important;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.kt-btn-domino:hover {
  background: var(--accent);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.about-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.about-hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin: 60px 0 80px;
}
.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.about-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-block;
  color: var(--accent);
}
.about-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.about-card-p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}
.story-section {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.story-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.story-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.contact-tag {
  display: inline-block;
  background: var(--text-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.contact-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.contact-hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin: 40px 0 80px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.btn-contact-action {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.btn-contact-action:hover { background: var(--accent-hover); }

/* ==========================================================================
   FREEBIES PAGE
   ========================================================================== */
.page-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.page-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ffb800 0%, #e07a00 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(224, 122, 0, 0.22);
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.freebies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin: 40px 0 80px;
}
.freebie-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.freebie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #000;
}
.freebie-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.freebie-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
.btn-download-freebie {
  background: var(--text-main);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn-download-freebie:hover,
.btn-download-freebie:focus,
.btn-download-freebie:active {
  text-decoration: none !important;
}
.freebie-card:hover .btn-download-freebie {
  background: var(--accent);
}
.notice-box {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}
.notice-box h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.notice-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   EULA PAGE
   ========================================================================== */
.eula-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.eula-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.eula-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.eula-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 50px;
  flex-wrap: wrap;
}
.eula-tab-btn {
  padding: 12px 26px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}
.eula-tab-btn.active {
  background: var(--text-main);
  color: #ffffff;
  border-color: var(--text-main);
}
.eula-card-container {
  max-width: 1000px;
  margin: 0 auto 80px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}
.eula-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.eula-tier-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
}
.eula-tier-badge {
  background: var(--card-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.eula-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}
.eula-content h4:first-of-type {
  margin-top: 0;
}
.eula-content p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.eula-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.eula-content li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.eula-content li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.faq-hero {
  padding: 50px 0 26px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.faq-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.faq-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-content-wrap {
  max-width: 920px;
  margin: 0 auto 90px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.faq-category {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.faq-category-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}
.faq-category-title span {
  background: var(--card-subtle);
  border: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--text-muted);
}
.acc-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-acc-item {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-acc-item:hover {
  border-color: var(--border-dark);
}
.faq-acc-header {
  padding: 18px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: var(--text-main);
  background: #ffffff;
  transition: background 0.2s;
}
.faq-acc-header:hover {
  background: #fafafa;
}
.faq-acc-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-acc-item.active .faq-acc-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-acc-body {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid transparent;
}
.faq-acc-item.active .faq-acc-body {
  display: block;
  border-top-color: var(--border-subtle);
  padding-top: 16px;
}
.faq-acc-body p {
  margin-bottom: 12px;
}
.faq-acc-body p:last-child {
  margin-bottom: 0;
}
.faq-acc-body strong {
  color: var(--text-main);
}
.faq-cta-card {
  background: #000000;
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin-top: 20px;
}
.faq-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.faq-cta-card p {
  color: #a3a3a3;
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.btn-faq-contact {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 12px 36px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-faq-contact:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 900px) {
  .custom-vip-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .vip-list ul {
    grid-template-columns: 1fr;
  }
  .mobile-tabs-wrapper {
    display: block;
  }
  .comparison-table-container th.col-standard,
  .comparison-table-container td.col-standard,
  .comparison-table-container th.col-premium,
  .comparison-table-container td.col-premium,
  .comparison-table-container th.col-business,
  .comparison-table-container td.col-business,
  .comparison-table-container th.col-corporate,
  .comparison-table-container td.col-corporate {
    display: none;
  }
  .comparison-table-container th.is-active,
  .comparison-table-container td.is-active {
    display: table-cell;
  }
}

@media (max-width: 768px) {
  .doc-content-box,
  .eula-card-container {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   THEME TOGGLE ICON & BUTTON
   ========================================================================== */
.kt-theme-toggle-btn {
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-main);
  transition: all 0.2s ease;
}
.kt-theme-toggle-btn:hover {
  background: var(--card-subtle);
  color: var(--accent);
  border-color: var(--border-subtle);
  transform: translateY(-1px);
}
.theme-icon-sun {
  display: none;
  color: #fbbf24;
}
.theme-icon-moon {
  display: block;
  color: var(--text-main);
}
[data-theme="dark"] .theme-icon-sun {
  display: block;
}
[data-theme="dark"] .theme-icon-moon {
  display: none;
}

/* ==========================================================================
   DARK MODE COMPONENT OVERRIDES (BLACK THEME)
   ========================================================================== */
[data-theme="dark"] .kt-header {
  background: rgba(9, 9, 11, 0.88);
  border-bottom-color: var(--border-subtle);
}

[data-theme="dark"] .kt-footer {
  background: #050507;
  border-top-color: var(--border-subtle);
}

[data-theme="dark"] .btn-nav-primary {
  background: #f4f4f5;
  color: #09090b !important;
}
[data-theme="dark"] .btn-nav-primary:hover {
  background: #e4e4e7;
}

[data-theme="dark"] .kt-font-card {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .kt-font-card:hover {
  background: #1c1c1f;
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}
[data-theme="dark"] .kt-font-card:hover .card-bottom-info {
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .search-input {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

[data-theme="dark"] .category-pill,
[data-theme="dark"] .filter-pill {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}
[data-theme="dark"] .category-pill:hover,
[data-theme="dark"] .filter-pill:hover {
  color: var(--text-main);
  border-color: var(--border-dark);
}
[data-theme="dark"] .category-pill.active,
[data-theme="dark"] .filter-pill.active {
  background: #f4f4f5 !important;
  color: #09090b !important;
  border-color: #f4f4f5 !important;
}

[data-theme="dark"] .sort-select {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

[data-theme="dark"] .hero-stats-strip {
  background: transparent;
  border-color: var(--border-subtle);
}

[data-theme="dark"] .btn-hero-primary {
  background: #f4f4f5;
  color: #09090b !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .btn-hero-primary:hover {
  background: var(--accent);
  color: #000000 !important;
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.35);
}

[data-theme="dark"] .btn-hero-secondary {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--card-subtle);
}

[data-theme="dark"] .btn-view-all {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .btn-view-all:hover {
  background: var(--card-subtle);
  border-color: var(--accent);
  color: var(--accent);
}

[data-theme="dark"] .btn-view-eula {
  background: #f4f4f5;
  color: #09090b !important;
}
[data-theme="dark"] .btn-view-eula:hover {
  background: var(--accent);
  color: #000000 !important;
}

[data-theme="dark"] .kt-newsletter-wrap input[type="email"] {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .kt-newsletter-wrap input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
[data-theme="dark"] .kt-newsletter-wrap button {
  background: #f4f4f5;
  color: #09090b !important;
}
[data-theme="dark"] .kt-newsletter-wrap button:hover {
  background: var(--accent);
  color: #000000 !important;
}

/* Single Product Carousel & Controls */
[data-theme="dark"] .carousel-btn {
  background: rgba(20, 20, 22, 0.9);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .carousel-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Single Product Type Tester */
[data-theme="dark"] .sample-chip {
  background: var(--card-subtle);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}
[data-theme="dark"] .sample-chip:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}
[data-theme="dark"] .sample-chip.active {
  background: #f4f4f5;
  color: #09090b !important;
  border-color: #f4f4f5;
}

[data-theme="dark"] .btn-align-icon.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

[data-theme="dark"] .slider-minimal {
  background: #27272a;
}
[data-theme="dark"] .slider-minimal::-webkit-slider-thumb {
  background: #f4f4f5;
}

[data-theme="dark"] .tester-textarea-wrap {
  background: transparent !important;
}
[data-theme="dark"] .tester-text-input,
[data-theme="dark"] textarea.tester-text-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--text-main) !important;
}

/* When website is in Dark Mode, clicking invert turns tester into clean Light Mode */
[data-theme="dark"] .type-tester-box.tester-inverted {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  color: #0b1320 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25) !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .tester-top-bar {
  border-bottom-color: #e2e8f0 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .tester-slider-labels {
  color: #5c6f84 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .tester-slider-val {
  color: #0b1320 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .sample-chip {
  color: #5c6f84 !important;
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .sample-chip:hover {
  color: #0b1320 !important;
  border-color: #0b1320 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .sample-chip.active {
  color: #ffffff !important;
  background: #0b1320 !important;
  border-color: #0b1320 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .tester-text-input {
  color: #0b1320 !important;
  background: transparent !important;
  border: none !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .slider-minimal {
  background: #e2e8f0 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .slider-minimal::-webkit-slider-thumb {
  background: #000000 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .btn-align-icon {
  color: #5c6f84 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .btn-align-icon:hover {
  color: #0b1320 !important;
  border-color: #e2e8f0 !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .btn-align-icon.active {
  color: #0b1320 !important;
  border-color: #0b1320 !important;
  background: rgba(0, 0, 0, 0.06) !important;
}
[data-theme="dark"] .type-tester-box.tester-inverted .btn-theme-circle {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

/* Single Product Glyphs Inspector */
[data-theme="dark"] .glyph-inspect-left,
[data-theme="dark"] .glyph-inspect-right {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .glyph-style-pill {
  background: var(--card-subtle);
  color: var(--text-muted);
}
[data-theme="dark"] .glyph-pill-tab {
  background: var(--card-subtle);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}
[data-theme="dark"] .glyph-pill-tab:hover {
  color: var(--text-main);
  border-color: var(--border-dark);
}
[data-theme="dark"] .glyph-pill-tab.active {
  background: #f4f4f5;
  color: #09090b !important;
  border-color: #f4f4f5;
}
[data-theme="dark"] .glyph-card-btn {
  background: var(--card-subtle);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .glyph-card-btn:hover {
  background: #27272a;
  border-color: var(--text-main);
}
[data-theme="dark"] .glyph-card-btn.selected {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 1.5px var(--accent);
}

/* Single Product Specs & Tags */
[data-theme="dark"] .spec-item-box {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .spec-val {
  color: var(--text-main);
}
[data-theme="dark"] .spec-label {
  color: var(--text-muted);
}
[data-theme="dark"] .keyword-pill-chip {
  background: var(--card-subtle);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}
[data-theme="dark"] .keyword-pill-chip:hover {
  background: #27272a;
  color: var(--text-main);
  border-color: var(--border-dark);
}

/* Single Product Sidebar License Options */
[data-theme="dark"] .license-choice-card {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .license-choice-card:hover {
  border-color: var(--border-dark);
  background: var(--card-subtle);
}
[data-theme="dark"] .license-choice-card.selected {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.12);
  box-shadow: 0 0 0 1px var(--accent);
}
[data-theme="dark"] .license-choice-card .lic-tier-title {
  color: var(--text-main);
}
[data-theme="dark"] .license-choice-card .lic-tier-desc {
  color: var(--text-muted);
}
[data-theme="dark"] .license-choice-card .lic-tier-price {
  color: var(--text-main);
}
[data-theme="dark"] .guarantee-icon {
  color: var(--text-main);
}

[data-theme="dark"] .comparison-table-container {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .comparison-table-container th {
  background: var(--card-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .comparison-table-container tr.group-header td {
  background: var(--card-subtle);
  color: var(--text-muted);
}
[data-theme="dark"] .mobile-tabs-track {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .tab-btn {
  color: var(--text-muted);
}
[data-theme="dark"] .tab-btn.active {
  background: #f4f4f5;
  color: #09090b;
}

[data-theme="dark"] .custom-vip-grid {
  background: #050507;
  border: 1px solid var(--border-subtle);
}

[data-theme="dark"] .faq-category {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .faq-acc-item {
  background: var(--card-subtle);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .faq-acc-header {
  background: var(--card-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .faq-acc-header:hover {
  background: #27272a;
}

[data-theme="dark"] .eula-card-container {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .eula-tab-btn {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .eula-tab-btn.active {
  background: #f8fafc;
  color: #090d16;
  border-color: #f8fafc;
}
[data-theme="dark"] .eula-tier-badge {
  background: var(--card-subtle);
  color: var(--text-muted);
}

[data-theme="dark"] .doc-content-box,
[data-theme="dark"] .about-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .freebie-card,
[data-theme="dark"] .notice-box,
[data-theme="dark"] .story-section {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}

[data-theme="dark"] .doc-tag,
[data-theme="dark"] .contact-tag,
[data-theme="dark"] .kt-btn-lucu {
  background: #f8fafc;
  color: #090d16 !important;
}

[data-theme="dark"] .btn-download-freebie {
  background: #f8fafc;
  color: #090d16 !important;
}
[data-theme="dark"] .freebie-card:hover .btn-download-freebie {
  background: var(--accent);
  color: #ffffff !important;
}

[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="email"],
[data-theme="dark"] input[type="password"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] select,
[data-theme="dark"] textarea:not(.tester-text-input) {
  background: var(--card-subtle);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] input:focus,
[data-theme="dark"] select:focus,
[data-theme="dark"] textarea:not(.tester-text-input):focus {
  border-color: var(--accent);
}

[data-theme="dark"] .woocommerce-form-login,
[data-theme="dark"] .woocommerce-form-register,
[data-theme="dark"] .woocommerce-checkout,
[data-theme="dark"] .woocommerce-cart-form {
  color: var(--text-main);
}

[data-theme="dark"] .woocommerce-error,
[data-theme="dark"] .woocommerce-info,
[data-theme="dark"] .woocommerce-message {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

/* Empty Cart Section */
.empty-cart-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 60px 32px;
  text-align: center;
  max-width: 800px;
  margin: 50px auto 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}
.empty-cart-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--card-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.empty-cart-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text-main);
}
.empty-cart-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

[data-theme="dark"] .empty-cart-card {
  background: var(--card-bg);
  border-color: var(--border-subtle);
}
[data-theme="dark"] .empty-cart-icon-wrap {
  background: var(--card-subtle);
  color: var(--accent);
}

/* Cross Sell & View All Fonts Button */
.cross-sell-wrap {
  margin: 30px 0 80px;
}
.cross-sell-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.cross-sell-headline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.btn-view-all-fonts {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.btn-view-all-fonts:hover {
  border-color: var(--text-main);
  color: var(--text-main) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
[data-theme="dark"] .btn-view-all-fonts {
  background: var(--card-bg);
  border-color: var(--border-subtle);
  color: var(--text-main);
}
[data-theme="dark"] .btn-view-all-fonts:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}



