/*
Theme patch: FontKong Newborn Responsive Rebuild v3.3
Purpose: one predictable responsive layer loaded after legacy style.css.
*/

:root {
  --fkv3-dark: #1f2324;
  --fkv3-dark-deep: #171a1b;
  --fkv3-panel: #272c2d;
  --fkv3-panel-hover: #2d3334;
  --fkv3-green: #25ef66;
  --fkv3-orange: #ff621d;
  --fkv3-white: #ffffff;
  --fkv3-paper: #f7f7f4;
  --fkv3-paper-2: #efefeb;
  --fkv3-ink: #191d1b;
  --fkv3-ink-soft: #5f6762;
  --fkv3-muted: #9aa29d;
  --fkv3-line-dark: rgba(255,255,255,.10);
  --fkv3-line: #e6e8e4;
  --fkv3-radius: 14px;
  --fkv3-shadow: 0 18px 50px rgba(10,16,13,.08);
  --fkv3-shell: 1240px;
}

html {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip !important;
  background: var(--fkv3-white) !important;
  color: var(--fkv3-ink);
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body *, body *::before, body *::after { box-sizing: border-box; }
body button, body input, body select, body textarea { font-family: "Manrope", Arial, sans-serif !important; }
body h1, body h2, body h3, body h4, body h5, body h6 { font-family: "Space Grotesk", "Manrope", Arial, sans-serif !important; }
body img { display: block; max-width: 100%; height: auto; }
body a { text-decoration: none; }
[hidden] { display: none !important; }

.fkv3-main {
  width: 100%;
  min-width: 0;
  overflow: clip;
}

.fkv3-shell {
  width: min(calc(100% - 48px), var(--fkv3-shell));
  margin-inline: auto;
  min-width: 0;
}

.fkv3-narrow {
  width: min(calc(100% - 48px), 860px);
  margin-inline: auto;
  min-width: 0;
}

.fkv3-eyebrow,
.fkv3-section-heading > span {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--fkv3-green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.fkv3-section-heading { margin: 0; }
.fkv3-section-heading h1,
.fkv3-section-heading h2 {
  margin: 0;
  color: var(--fkv3-ink);
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.fkv3-section-heading p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--fkv3-ink-soft);
  font-size: 13px;
  line-height: 1.65;
}
.fkv3-section-heading--center { text-align: center; }
.fkv3-section-heading--center p { margin-inline: auto; }
.fkv3-section-heading--dark h1,
.fkv3-section-heading--dark h2 { color: #fff; }
.fkv3-section-heading--dark p { color: #9fa7a2; }

.fkv3-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.fkv3-button:hover { transform: translateY(-1px); }
.fkv3-button--green { background: var(--fkv3-green); color: #101411 !important; }
.fkv3-button--green:hover { background: #fff; color: #111 !important; }
.fkv3-button--dark { background: #191d1b; color: #fff !important; }
.fkv3-button--dark:hover { background: #2a302d; color: #fff !important; }
.fkv3-button--ghost { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.025); color: #fff !important; }
.fkv3-button--ghost:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); }

/* -------------------------------------------------------------------------
   Header
------------------------------------------------------------------------- */
.fkv3-skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 7px;
  background: #fff;
  color: #111 !important;
  transform: translateY(-160%);
}
.fkv3-skip-link:focus { transform: translateY(0); }

.fkv3-header {
  position: sticky;
  z-index: 9997;
  top: 0;
  width: 100%;
  background: #1f2324;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background .2s ease, border-color .2s ease;
}
.fkv3-header::before { display: none; }
body.admin-bar .fkv3-header { top: 32px; }
.fkv3-header.is-scrolled {
  box-shadow: none;
  border-bottom-color: rgba(255,255,255,.1);
}

.fkv3-header-shell {
  width: min(calc(100% - 40px), var(--fkv3-shell));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 170px minmax(0,1fr) auto;
  gap: 24px;
  align-items: center;
  min-width: 0;
}
.fkv3-brand { display: inline-flex; align-items: center; width: fit-content; }
.fkv3-brand img { width: 142px; max-height: 46px; object-fit: contain; }
.fkv3-desktop-nav { display: flex; min-width: 0; justify-content: center; }
.fkv3-nav-list,
.fkv3-mobile-list,
.fkv3-mobile-menu .fkv3-nav-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.fkv3-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.fkv3-nav-list li,
.fkv3-mobile-list li { margin: 0 !important; padding: 0 !important; list-style: none !important; }
.fkv3-nav-list li::before,
.fkv3-mobile-list li::before { display: none !important; content: none !important; }
.fkv3-nav-list a {
  display: inline-flex !important;
  align-items: center;
  min-height: 38px;
  padding: 0 12px !important;
  border-radius: 8px;
  color: #cbd1cd !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  white-space: nowrap;
  text-decoration: none !important;
}
.fkv3-nav-list a:hover,
.fkv3-nav-list .current-menu-item > a,
.fkv3-nav-list .current_page_item > a {
  color: #fff !important;
  background: rgba(37,239,102,.10) !important;
}

.fkv3-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.fkv3-icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 9px;
  background: transparent;
  color: #dce2de !important;
  appearance: none;
  cursor: pointer;
}
.fkv3-icon-button:hover,
.fkv3-icon-button.is-active {
  border-color: rgba(37,239,102,.45);
  background: rgba(37,239,102,.06);
  color: var(--fkv3-green) !important;
}
.fkv3-icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fkv3-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--fkv3-dark);
  border-radius: 999px;
  background: var(--fkv3-green);
  color: #0e120f;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
}
.fkv3-menu-toggle { display: none; }
.fkv3-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 3px;
  background: currentColor;
  transition: transform .2s ease;
}
.fkv3-menu-toggle span:first-child { transform: translateY(-4px); }
.fkv3-menu-toggle span:last-child { transform: translateY(4px); }
.fkv3-menu-toggle.is-active span:first-child { transform: rotate(45deg); }
.fkv3-menu-toggle.is-active span:last-child { transform: rotate(-45deg); }

.fkv3-search-panel,
.fkv3-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(23,26,27,.995);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: max-height .25s ease, opacity .2s ease;
}
.fkv3-search-panel.is-open,
.fkv3-mobile-menu.is-open { max-height: 720px; opacity: 1; pointer-events: auto; }
.fkv3-search-shell { width: min(calc(100% - 40px), 900px); margin-inline: auto; padding: 18px 0 22px; }
.fkv3-search-form {
  display: grid;
  grid-template-columns: 20px minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 11px;
  background: #242829;
}
.fkv3-search-form svg { width: 19px; height: 19px; fill: none; stroke: #9da59f; stroke-width: 1.8; }
.fkv3-search-form input {
  min-width: 0;
  height: 42px;
  padding: 0;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 14px;
}
.fkv3-search-form button {
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--fkv3-green);
  color: #111;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}
.fkv3-mobile-menu { display: none; }
.fkv3-mobile-shell { width: min(calc(100% - 32px), 760px); margin-inline: auto; padding: 18px 0 24px; }
.fkv3-mobile-list a,
.fkv3-mobile-menu .fkv3-nav-list a {
  display: flex !important;
  align-items: center;
  min-height: 46px;
  padding: 0 4px !important;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #edf1ee !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}
.fkv3-mobile-menu .fkv3-nav-list { display: block; }
.fkv3-mobile-quicklinks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.fkv3-mobile-quicklinks a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  color: #d9dfdb !important;
  font-size: 11px;
  font-weight: 700;
}

/* -------------------------------------------------------------------------
   Homepage
------------------------------------------------------------------------- */
.fkv3-hero {
  width: 100%;
  overflow: clip;
  background:
    radial-gradient(circle at 78% 26%, rgba(37,239,102,.10), transparent 32%),
    linear-gradient(180deg, #202425 0%, #1c2021 100%);
  color: #fff;
}
.fkv3-hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(340px,.8fr);
  gap: 64px;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 66px;
}
.fkv3-hero-copy { min-width: 0; }
.fkv3-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #f6f7f5;
  font-size: clamp(56px, 6.3vw, 92px);
  font-weight: 700;
  line-height: .90;
  letter-spacing: -.065em;
}
.fkv3-hero-copy h1 strong { color: var(--fkv3-green); font-weight: inherit; }
.fkv3-hero-copy p {
  max-width: 530px;
  margin: 22px 0 26px;
  color: #a4aca6;
  font-size: 14px;
  line-height: 1.65;
}
.fkv3-hero-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.fkv3-hero-art {
  min-width: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fkv3-hero-art img { width: min(100%, 440px); max-height: 360px; object-fit: contain; }

.fkv3-category-browser {
  width: 100%;
  overflow: clip;
  padding: 58px 0 64px;
  background: var(--fkv3-dark);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}
.fkv3-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 30px;
}
.fkv3-category-card {
  position: relative;
  min-width: 0;
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 10px;
  background: #272c2d;
  color: #fff !important;
  overflow: hidden;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.fkv3-category-card:hover,
.fkv3-category-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(37,239,102,.28);
  background: #2d3334;
}
.fkv3-category-card img {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: auto;
  max-width: 64px;
  max-height: 56px;
  object-fit: contain;
}
.fkv3-category-name {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
  color: #f5f7f4;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}
.fkv3-category-arrow {
  grid-column: 2;
  grid-row: 2;
  color: var(--fkv3-green);
  font-size: 15px;
  line-height: 1;
}
.fkv3-category-index {
  position: absolute;
  top: 12px;
  right: 14px;
  color: #686f6b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}
.fkv3-category-card:first-child img { filter: none; }

.fkv3-home-products,
.fkv3-catalog {
  width: 100%;
  padding: 66px 0 76px;
  background: #fff;
  color: var(--fkv3-ink);
}
.fkv3-heading-row,
.fkv3-catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.fkv3-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: #1e2421 !important;
  font-size: 11px;
  font-weight: 800;
}
.fkv3-text-link span { transition: transform .2s ease; }
.fkv3-text-link:hover span { transform: translateX(3px); }

.fkv3-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px 20px;
  min-width: 0;
}
.fkv3-product-card { min-width: 0; margin: 0; }
.fkv3-product-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  border: 1px solid #e9ece7;
  border-radius: 9px;
  background: #f4f5f1;
  color: inherit !important;
}
.fkv3-product-image > img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  transition: transform .25s ease;
}
.fkv3-product-card:hover .fkv3-product-image > img { transform: scale(1.015); }
.fkv3-product-hover {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(20,24,22,.86);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.fkv3-product-card:hover .fkv3-product-hover { opacity: 1; transform: translateY(0); }
.fkv3-product-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  align-items: start;
  padding-top: 11px;
}
.fkv3-product-copy { min-width: 0; }
.fkv3-product-copy h3 {
  margin: 0;
  color: var(--fkv3-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -.02em;
}
.fkv3-product-copy h3 a { color: inherit !important; }
.fkv3-product-categories {
  margin-top: 5px;
  overflow: hidden;
  color: #7c837f;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fkv3-product-price {
  min-width: 84px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 8px;
  background: #eff0ec;
  color: #171b19;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.fkv3-product-price .woocommerce-Price-amount { color: inherit; font-size: inherit; font-weight: inherit; }
.fkv3-product-price del { opacity: .42; }
.fkv3-home-products-cta { margin-top: 34px; text-align: center; }

.fkv3-showcase {
  width: 100%;
  overflow: clip;
  padding: 58px 0 66px;
  background: var(--fkv3-dark);
  color: #fff;
}
.fkv3-showcase-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.fkv3-carousel-buttons { display: flex; gap: 7px; }
.fkv3-carousel-buttons button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.fkv3-carousel-buttons button:hover { border-color: var(--fkv3-green); color: var(--fkv3-green); }
.fkv3-showcase-track {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 30%);
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: #646c67 transparent;
}
.fkv3-showcase-card {
  scroll-snap-align: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: #252a2b;
}
.fkv3-showcase-card img { width: 100%; aspect-ratio: 1.4/1; object-fit: cover; }

/* -------------------------------------------------------------------------
   Catalog / category intros / pagination
------------------------------------------------------------------------- */
.fkv3-collection-intro {
  padding: 64px 0 60px;
  background: #fafaf8;
  border-bottom: 1px solid var(--fkv3-line);
  color: var(--fkv3-ink);
  text-align: center;
}
.fkv3-collection-intro h1 {
  margin: 0 0 18px;
  color: var(--fkv3-ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.045em;
}
.fkv3-collection-intro p {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--fkv3-ink-soft);
  font-size: 14px;
  line-height: 1.8;
}
.fkv3-file-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 22px; }
.fkv3-file-pills span {
  padding: 6px 9px;
  border: 1px solid #dde0dc;
  border-radius: 999px;
  background: #fff;
  color: #5e6561;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}
.fkv3-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 40px;
}
.fkv3-pagination .page-numbers {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #dedfdb;
  border-radius: 7px;
  background: #fff;
  color: #2b302d !important;
  font-size: 10px;
  font-weight: 800;
}
.fkv3-pagination .page-numbers.current,
.fkv3-pagination .page-numbers:hover { background: #202523; border-color: #202523; color: #fff !important; }
.fkv3-empty-state { padding: 56px 0; text-align: center; }
.fkv3-empty-state h1,
.fkv3-empty-state h2,
.fkv3-empty-state h3 { margin: 0 0 10px; color: var(--fkv3-ink); }
.fkv3-empty-state p { margin: 0 auto 20px; color: var(--fkv3-ink-soft); }

/* -------------------------------------------------------------------------
   Single Product — reset legacy product layout and fix cart button collapse
------------------------------------------------------------------------- */
body.single-product { background: #fff !important; color: var(--fkv3-ink); }
.fk24-product-page {
  width: 100% !important;
  padding: 26px 0 72px !important;
  background: #fff !important;
  color: var(--fkv3-ink) !important;
}
.fk24-product-wrap {
  width: min(calc(100% - 48px), 1320px) !important;
  margin: 0 auto !important;
  min-width: 0 !important;
}
.fk24-breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 0 0 20px !important;
  color: #949b96 !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
}
.fk24-breadcrumb a { color: #69706c !important; }
.fk24-breadcrumb-sep { color: #c0c4c1; }
.fk24-product-layout {
  display: grid !important;
  grid-template-columns: minmax(0,1.55fr) minmax(360px,.76fr) !important;
  gap: clamp(36px, 4.2vw, 64px) !important;
  align-items: start !important;
  min-width: 0 !important;
}
.fk24-product-main,
.fk24-buy-panel-wrap { min-width: 0 !important; }
.fk24-product-gallery { margin: 0 0 18px !important; }
.fk24-main-image-wrap {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  border: 1px solid #e7eae6 !important;
  border-radius: 10px !important;
  background: #f4f5f1 !important;
  outline: none !important;
}
.fk24-main-image-wrap img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  object-fit: contain !important;
  transition: opacity .16s ease !important;
}
.fk24-main-image-wrap img.is-loading { opacity: .45; }
.fk24-gallery-arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 5 !important;
  width: 48px !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255,255,255,.42) !important;
  border-radius: 50% !important;
  background: rgba(18,22,20,.72) !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: translateY(-50%) !important;
  cursor: pointer !important;
  transition: background .18s ease, opacity .18s ease, transform .18s ease !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}
.fk24-gallery-arrow--prev { left: 18px !important; }
.fk24-gallery-arrow--next { right: 18px !important; }
.fk24-gallery-arrow svg {
  width: 22px !important;
  height: 22px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.fk24-gallery-arrow:hover,
.fk24-gallery-arrow:focus-visible {
  background: rgba(18,22,20,.9) !important;
  outline: 2px solid rgba(255,255,255,.7) !important;
  outline-offset: 2px !important;
}
.fk24-gallery-arrow[hidden] { display: none !important; }
.fk24-product-thumbs {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 10px !important;
  overflow: visible !important;
}
.fk24-product-thumbs .woocommerce-product-gallery__image,
.fk24-product-thumbs > * {
  width: 72px !important;
  height: 56px !important;
  flex: 0 0 72px !important;
  float: none !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid #e2e5e1 !important;
  border-radius: 7px !important;
  background: #f5f6f3 !important;
  opacity: .78 !important;
  cursor: pointer !important;
}
.fk24-product-thumbs .is-active,
.fk24-product-thumbs > *:hover { border-color: #242a27 !important; opacity: 1 !important; }
.fk24-product-thumbs img { width: 100% !important; height: 100% !important; object-fit: cover !important; margin: 0 !important; }

.fk24-product-meta-strip {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  margin-top: 18px !important;
  border-top: 1px solid var(--fkv3-line) !important;
  border-bottom: 1px solid var(--fkv3-line) !important;
}
.fk24-product-meta-strip > div { min-width: 0; padding: 15px 16px !important; }
.fk24-product-meta-strip > div + div { border-left: 1px solid var(--fkv3-line) !important; }
.fk24-product-meta-strip span {
  display: block !important;
  margin-bottom: 5px !important;
  color: #929894 !important;
  font-size: 8px !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}
.fk24-product-meta-strip strong,
.fk24-product-meta-strip a { color: #252b28 !important; font-size: 11px !important; font-weight: 700 !important; line-height: 1.4 !important; }

.fk24-tester,
.fk24-product-details { padding-top: 48px !important; }
.fk24-section-head { margin: 0 0 20px !important; }
.fk24-section-head > span,
.fk24-related-head > span {
  display: block !important;
  margin-bottom: 8px !important;
  color: #8b928d !important;
  font-size: 8px !important;
  font-weight: 850 !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
}
.fk24-section-head h2,
.fk24-related-head h2 {
  margin: 0 !important;
  color: #1d221f !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
}
.fk24-tester-controls {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) auto !important;
  gap: 10px !important;
  align-items: center !important;
}
.fk24-tester-controls input {
  width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  padding: 0 14px !important;
  border: 1px solid #dfe3de !important;
  border-radius: 8px !important;
  outline: 0 !important;
  background: #fff !important;
  color: #252a27 !important;
  box-shadow: none !important;
  font-size: 12px !important;
}
.fk24-size-options { display: flex !important; align-items: center !important; gap: 5px !important; }
.fk24-size-options button {
  min-width: 48px !important;
  height: 38px !important;
  padding: 0 8px !important;
  border: 1px solid #dfe2de !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: #606762 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}
.fk24-size-options button.is-active,
.fk24-size-options button:hover { border-color: #222724 !important; background: #222724 !important; color: #fff !important; }
.fk24-tester-preview {
  width: 100% !important;
  min-height: 150px !important;
  margin-top: 12px !important;
  padding: 28px 0 !important;
  overflow-wrap: anywhere !important;
  border-top: 1px solid var(--fkv3-line) !important;
  border-bottom: 1px solid var(--fkv3-line) !important;
  color: #1c211f !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-synthesis: none !important;
  font-kerning: normal !important;
  font-feature-settings: "liga" 1, "kern" 1 !important;
  line-height: 1.16 !important;
}
.fk24-rich-text { color: #414844 !important; font-size: 13px !important; line-height: 1.85 !important; }
.fk24-rich-text p { margin: 0 0 14px !important; color: inherit !important; }
.fk24-rich-text ul,
.fk24-rich-text ol { padding-left: 20px !important; }
.fk24-rich-text li { margin-bottom: 6px !important; color: inherit !important; }
.fk24-rich-text a { color: #137d3b !important; text-decoration: underline !important; }

.fk24-buy-panel {
  position: sticky !important;
  top: 92px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.admin-bar .fk24-buy-panel { top: 124px !important; }
.fk24-buy-topline {
  margin: 0 0 10px !important;
  color: #7f8782 !important;
  font-size: 8px !important;
  font-weight: 850 !important;
  letter-spacing: .16em !important;
}
.fk24-buy-panel h1 {
  margin: 0 0 18px !important;
  color: #181d1a !important;
  font-size: clamp(34px, 3.2vw, 48px) !important;
  font-weight: 700 !important;
  line-height: .98 !important;
  letter-spacing: -.05em !important;
}
.fk24-creator-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 0 0 18px !important;
  border-bottom: 1px solid var(--fkv3-line) !important;
}
.fk24-creator-row img { width: 48px !important; height: 38px !important; object-fit: contain !important; }
.fk24-creator-row strong { display: block !important; color: #282e2a !important; font-size: 11px !important; }
.fk24-creator-row span { display: block !important; margin-top: 2px !important; color: #8e9590 !important; font-size: 9px !important; }
.fk24-short-desc { padding: 15px 0 0 !important; color: #666e69 !important; font-size: 11px !important; line-height: 1.65 !important; }
.fk24-short-desc p { margin: 0 !important; color: inherit !important; }
.fk24-license-heading {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 22px 0 7px !important;
}
.fk24-license-heading > span { color: #2b302d !important; font-size: 13px !important; font-weight: 850 !important; }
.fk24-license-heading a { color: #4f5752 !important; font-size: 11px !important; font-weight: 750 !important; text-decoration: underline !important; }

.fk25-license-selector { display: block !important; width: 100% !important; border-top: 1px solid var(--fkv3-line) !important; }
.fk25-license-option {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  display: grid !important;
  grid-template-columns: 18px minmax(0,1fr) auto !important;
  gap: 9px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--fkv3-line) !important;
  color: #2b302d !important;
  cursor: pointer !important;
}
.fk25-license-option input { position: absolute !important; opacity: 0 !important; pointer-events: none !important; }
.fk25-license-dot {
  width: 14px !important;
  height: 14px !important;
  display: inline-block !important;
  border: 1px solid #abb2ad !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: inset 0 0 0 3px #fff !important;
}
.fk25-license-option.is-selected .fk25-license-dot { border-color: var(--fkv3-green) !important; background: var(--fkv3-green) !important; }
.fk25-license-name { min-width: 0 !important; color: #2b322e !important; font-size: 13px !important; font-weight: 700 !important; line-height: 1.4 !important; }
.fk25-license-name small {
  display: inline-block !important;
  margin-left: 6px !important;
  padding: 3px 5px !important;
  border-radius: 999px !important;
  background: #e9fcef !important;
  color: #177e3d !important;
  font-size: 8px !important;
  font-weight: 850 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}
.fk25-license-price { color: #161c18 !important; font-size: 15px !important; font-weight: 850 !important; white-space: nowrap !important; }
.fk25-license-option.is-disabled { opacity: .42 !important; cursor: not-allowed !important; }

.fk26-license-usage {
  margin-top: 15px !important;
  padding: 19px 20px !important;
  border: 1px solid #e4e7e3 !important;
  border-radius: 9px !important;
  background: #f7f8f5 !important;
}
.fk26-license-usage-head { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 12px !important; margin-bottom: 12px !important; padding-bottom: 10px !important; border-bottom: 1px solid #e2e5e1 !important; }
.fk26-license-usage-head strong { color: #252c28 !important; font-size: 13px !important; font-weight: 850 !important; }
.fk26-license-usage-head span { color: #727a75 !important; font-size: 10px !important; font-weight: 750 !important; text-transform: uppercase !important; letter-spacing: .06em !important; text-align: right !important; }
.fk26-license-description,
.fk26-license-description p { margin: 0 !important; color: #414a44 !important; font-size: 13px !important; line-height: 1.7 !important; }
.fk26-license-description p + p { margin-top: 9px !important; }
.fk26-license-description ul,
.fk26-license-description ol { margin: 10px 0 0 !important; padding-left: 20px !important; }
.fk26-license-description li { margin: 6px 0 !important; color: #414a44 !important; font-size: 13px !important; line-height: 1.65 !important; }
.fk26-license-description strong { color: #252c28 !important; font-weight: 800 !important; }
.fk26-license-usage-list { margin: 0 !important; padding: 0 !important; list-style: none !important; }
.fk26-license-usage-list li {
  position: relative !important;
  margin: 7px 0 !important;
  padding-left: 20px !important;
  color: #424a45 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  list-style: none !important;
}
.fk26-license-usage-list li::before { position: absolute !important; left: 0 !important; top: 0 !important; font-weight: 900 !important; }
.fk26-license-usage-list li.is-yes::before { content: "✓" !important; color: #20ad53 !important; }
.fk26-license-usage-list li.is-no::before { content: "×" !important; color: #dc4c4c !important; }
.fk25-selected-total {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 16px 0 9px !important;
  padding-top: 13px !important;
  border-top: 1px solid var(--fkv3-line) !important;
}
.fk25-selected-total span { color: #69716c !important; font-size: 11px !important; font-weight: 700 !important; }
.fk25-selected-total strong { color: #161b18 !important; font-size: 23px !important; font-weight: 850 !important; }

/* Critical screenshot bug: legacy CSS collapsed Add to cart into a narrow vertical pill. */
.fk24-purchase-form,
.fk24-purchase-form form.cart,
.fk26-custom-variable,
.fk26-variable-cart { width: 100% !important; max-width: none !important; margin: 0 !important; padding: 0 !important; }
.fk26-variable-cart-row,
.fk24-purchase-form > form.cart:not(.variations_form):not(.fk26-variable-cart) {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 74px minmax(0,1fr) !important;
  gap: 8px !important;
  align-items: stretch !important;
  margin: 0 !important;
}
.fk24-purchase-form .quantity,
.fk26-variable-cart .quantity { width: 74px !important; min-width: 74px !important; margin: 0 !important; float: none !important; }
.fk24-purchase-form .quantity input.qty,
.fk26-variable-cart input.qty {
  width: 74px !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 8px !important;
  border: 1px solid #dfe2de !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #1d231f !important;
  text-align: center !important;
}
.fk24-purchase-form .single_add_to_cart_button,
.fk26-variable-cart .single_add_to_cart_button,
body.single-product button.single_add_to_cart_button {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 18px !important;
  float: none !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #1c211e !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  line-height: 48px !important;
  letter-spacing: .01em !important;
  text-align: center !important;
  text-transform: none !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  transform: none !important;
  overflow: hidden !important;
}
.fk24-purchase-form .single_add_to_cart_button:hover,
.fk26-variable-cart .single_add_to_cart_button:hover { background: #2a302c !important; }
.fk24-purchase-form .single_add_to_cart_button:disabled,
.fk26-variable-cart .single_add_to_cart_button:disabled { opacity: .45 !important; cursor: not-allowed !important; }
.fk24-purchase-form form.variations_form .variations { width: 100% !important; margin: 0 0 10px !important; }
.fk24-purchase-form form.variations_form select { width: 100% !important; min-height: 44px !important; }
.fk24-purchase-form .woocommerce-variation-price { margin: 8px 0 !important; }

.fk24-buy-benefits { display: grid !important; gap: 10px !important; margin-top: 18px !important; padding-top: 16px !important; border-top: 1px solid var(--fkv3-line) !important; }
.fk24-buy-benefits > div { display: grid !important; grid-template-columns: 18px minmax(0,1fr) !important; gap: 9px !important; align-items: start !important; }
.fk24-buy-benefits svg { width: 16px !important; height: 16px !important; fill: none !important; stroke: #6f7772 !important; stroke-width: 1.6 !important; }
.fk24-buy-benefits strong { display: block !important; color: #343a36 !important; font-size: 9px !important; }
.fk24-buy-benefits small { display: block !important; margin-top: 1px !important; color: #8c938e !important; font-size: 8px !important; line-height: 1.4 !important; }
.fk24-buy-benefits a { color: inherit !important; }

.fk24-related {
  margin-top: 74px !important;
  padding-top: 48px !important;
  border-top: 1px solid var(--fkv3-line) !important;
}
.fk24-related-head { margin-bottom: 28px !important; text-align: center !important; }
.fk24-related-grid {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: 28px 20px !important;
  align-items: start !important;
}
.fk24-related-grid .fkv3-product-card { min-width: 0 !important; height: 100% !important; }
.fk24-related-grid .fkv3-product-image { border-radius: 10px !important; }
.fk24-related-grid .fkv3-product-row {
  grid-template-columns: minmax(0,1fr) auto !important;
  gap: 14px !important;
  align-items: start !important;
  padding-top: 12px !important;
}
.fk24-related-grid .fkv3-product-copy { min-width: 0 !important; display: flex !important; flex-direction: column !important; justify-content: flex-start !important; min-height: 62px !important; }
.fk24-related-grid .fkv3-product-copy h3 { font-size: 15px !important; }
.fk24-related-grid .fkv3-product-categories { margin-top: 6px !important; font-size: 9px !important; }
.fk24-related-grid .fkv3-product-price {
  min-width: 84px !important;
  min-height: 42px !important;
  padding: 9px 14px !important;
  font-size: 16px !important;
}

/* -------------------------------------------------------------------------
   License + Embroidery License pages
------------------------------------------------------------------------- */
.fkv3-license-hero {
  padding: 78px 0 74px;
  background: linear-gradient(180deg, #202425, #191d1e);
  color: #fff;
  text-align: center;
}
.fkv3-license-hero .fkv3-eyebrow { color: var(--fkv3-green); }
.fkv3-license-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.05em;
}
.fkv3-license-hero p { max-width: 720px; margin: 20px auto 0; color: #aab2ac; font-size: 15px; line-height: 1.75; }

.fkv31-license-directory { padding: 72px 0 82px; background: #fff; color: var(--fkv3-ink); }
.fkv31-license-intro { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.fkv31-license-intro h2 { margin: 8px 0 10px; color: #1d231f; font-size: clamp(30px, 4vw, 44px); line-height: 1.05; letter-spacing: -.04em; }
.fkv31-license-intro p { margin: 0; color: #69716c; font-size: 14px; line-height: 1.75; }
.fkv31-license-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.fkv31-license-card {
  min-width: 0;
  padding: 26px 28px 28px;
  border: 1px solid #e2e6e1;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(19,25,21,.025);
}
.fkv31-license-card-head { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 12px; align-items: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid #eceeea; }
.fkv31-license-number { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 9px; background: #202622; color: var(--fkv3-green); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.fkv31-license-card h2 { margin: 0; color: #1d231f; font-size: 23px; line-height: 1.12; letter-spacing: -.025em; }
.fkv31-license-list { margin: 0; padding: 0; list-style: none; }
.fkv31-license-list li { position: relative; margin: 9px 0; padding-left: 24px; color: #48514b; font-size: 13px; line-height: 1.65; }
.fkv31-license-list li::before { content: "✓"; position: absolute; left: 0; top: .02em; color: #1baa50; font-weight: 900; }
.fkv31-license-help {
  display: grid;
  grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr);
  gap: 42px;
  align-items: center;
  margin-top: 30px;
  padding: 30px 32px;
  border-radius: 13px;
  background: #f2f4f0;
}
.fkv31-license-help h2 { margin: 8px 0 0; color: #1e2420; font-size: 28px; line-height: 1.08; letter-spacing: -.035em; }
.fkv31-license-help p { margin: 0 0 16px; color: #59625c; font-size: 13px; line-height: 1.75; }

.fkv31-eula-page { background: #fff; color: var(--fkv3-ink); }
.fkv31-eula-hero { padding: 72px 0 64px; background: linear-gradient(180deg, #202425, #191d1e); color: #fff; text-align: center; }
.fkv31-eula-hero .fkv3-eyebrow { color: var(--fkv3-green); }
.fkv31-eula-hero h1 { max-width: 980px; margin: 8px auto 0; color: #fff; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
.fkv31-eula-kicker { margin: 20px 0 0; color: #c8cfca; font-size: 11px; font-weight: 850; letter-spacing: .18em; }
.fkv31-eula-body { padding: 66px 0 82px; }
.fkv31-eula-layout { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: clamp(38px, 5vw, 72px); align-items: start; }
.fkv31-eula-nav { position: sticky; top: 104px; display: grid; gap: 4px; padding: 18px; border: 1px solid #e2e6e1; border-radius: 11px; background: #f8f9f6; }
body.admin-bar .fkv31-eula-nav { top: 136px; }
.fkv31-eula-nav strong { margin-bottom: 8px; color: #222824; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.fkv31-eula-nav a { padding: 8px 9px; border-radius: 7px; color: #68716b !important; font-size: 11px; line-height: 1.35; }
.fkv31-eula-nav a:hover { background: #edf1ec; color: #167c3c !important; }
.fkv31-eula-document { min-width: 0; max-width: 880px; }
.fkv31-eula-document p,
.fkv31-eula-alpha li { color: #414a44; font-size: 14px; line-height: 1.85; }
.fkv31-eula-document p { margin: 0 0 17px; }
.fkv31-eula-document a { color: #147f3b !important; text-decoration: underline; text-underline-offset: 2px; }
.fkv31-eula-intro { padding: 0 0 34px; border-bottom: 1px solid #e6e9e5; }
.fkv31-eula-section { scroll-margin-top: 110px; padding: 38px 0 6px; border-bottom: 1px solid #e6e9e5; }
.fkv31-eula-section:last-child { border-bottom: 0; }
.fkv31-eula-section-title { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 12px; align-items: center; margin-bottom: 18px; }
.fkv31-eula-section-title > span { width: 44px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; background: #202622; color: var(--fkv3-green); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.fkv31-eula-section h2 { margin: 0; color: #202622; font-size: 24px; line-height: 1.15; letter-spacing: -.02em; }
.fkv31-eula-alpha { margin: 4px 0 22px; padding-left: 28px; }
.fkv31-eula-alpha li { margin: 10px 0; padding-left: 6px; }
.fkv31-eula-alpha li::marker { color: #16833e; font-weight: 800; }

/* -------------------------------------------------------------------------
   Generic pages, contact, blog, 404
------------------------------------------------------------------------- */
.fkv3-standard-page,
.fkv3-contact-page,
.fkv3-blog-page,
.fkv3-404-page { padding: 70px 0 78px; background: #fff; color: var(--fkv3-ink); }
.fkv3-standard-article > h1 {
  margin: 0 0 28px;
  color: #1a1f1c;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -.045em;
}
.fkv3-standard-image { margin-bottom: 28px; overflow: hidden; border-radius: 10px; }
.fkv3-rich-text { color: #48504b; font-size: 14px; line-height: 1.85; }
.fkv3-rich-text p { margin: 0 0 16px; color: inherit !important; }
.fkv3-rich-text h2,
.fkv3-rich-text h3,
.fkv3-rich-text h4 { margin: 32px 0 12px; color: #202622; }
.fkv3-rich-text a { color: #157f3c !important; text-decoration: underline; }

.fkv3-contact-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 70px; align-items: start; }
.fkv3-contact-copy { padding-top: 8px; }
.fkv3-contact-copy h1 { margin: 0; color: #1a1f1c; font-size: clamp(40px, 5vw, 62px); line-height: 1; letter-spacing: -.05em; }
.fkv3-contact-copy p { max-width: 520px; margin: 18px 0; color: #606863; font-size: 14px; line-height: 1.75; }
.fkv3-contact-email { color: #178640 !important; font-size: 13px; font-weight: 800; }
.fkv3-contact-form {
  padding: 28px;
  border: 1px solid #e4e7e2;
  border-radius: 12px;
  background: #fafaf8;
}
.fkv3-contact-form p { margin-bottom: 14px; }
.fkv3-contact-form label { display: block; width: 100%; color: #323834; font-size: 11px; font-weight: 700; }
.fkv3-contact-form input:not([type="submit"]),
.fkv3-contact-form textarea,
.fkv3-contact-form select {
  width: 100%;
  min-height: 44px;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #dce0db;
  border-radius: 8px;
  background: #fff;
  color: #1f2521;
  outline: 0;
}
.fkv3-contact-form textarea { min-height: 150px; resize: vertical; }
.fkv3-contact-form input[type="submit"] {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #1b201d;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.fkv3-blog-page .fkv3-section-heading { margin-bottom: 42px; }
.fkv3-blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px 24px; align-items: stretch; }
.fkv3-blog-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e8e3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18,24,20,.04);
}
.fkv3-blog-card.is-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(280px,.95fr);
}
.fkv3-blog-image { display: block; overflow: hidden; background: #f4f5f1; }
.fkv3-blog-image img { width: 100%; height: 100%; aspect-ratio: 1.5/1; object-fit: cover; transition: transform .25s ease; }
.fkv3-blog-image--placeholder {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #f6f7f3, #ecefe8);
  color: #667069;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.02em;
  text-align: center;
}
.fkv3-blog-card:hover .fkv3-blog-image img { transform: scale(1.015); }
.fkv3-blog-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; }
.fkv3-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  color: #8b928e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.fkv3-blog-meta a { color: inherit !important; text-decoration: none !important; }
.fkv3-blog-card h2 { margin: 0; font-size: 26px; line-height: 1.12; letter-spacing: -.035em; }
.fkv3-blog-card h2 a { color: #1e2420 !important; }
.fkv3-blog-excerpt { color: #68706b; font-size: 13px; line-height: 1.78; }
.fkv3-blog-excerpt p { margin: 0; color: inherit !important; }
.fkv3-blog-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #181e1a !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
}
.fkv3-post-page { background: #fff; color: var(--fkv3-ink); }
.fkv3-post-hero { padding: 68px 0 34px; }
.fkv3-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: #67706a !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.fkv3-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: #7f8782;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fkv3-post-meta a { color: inherit !important; text-decoration: none !important; }
.fkv3-post-hero h1 {
  margin: 0;
  color: #1a1f1c;
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.05em;
}
.fkv3-post-image { margin-top: 28px; overflow: hidden; border-radius: 16px; background: #f4f5f1; }
.fkv3-post-image img { width: 100%; aspect-ratio: 1.75/1; object-fit: cover; display: block; }
.fkv3-post-body { padding: 0 0 82px; }
.fkv3-post-body .fkv3-rich-text { color: #48504b; font-size: 15px; line-height: 1.95; }
.fkv3-post-body .fkv3-rich-text h2,
.fkv3-post-body .fkv3-rich-text h3,
.fkv3-post-body .fkv3-rich-text h4 { margin: 34px 0 12px; color: #1d231f; line-height: 1.2; }
.fkv3-post-nav {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #e6e9e4;
}
.fkv3-post-nav a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid #dfe4de;
  border-radius: 12px;
  color: #1d231f !important;
  font-size: 12px;
  font-weight: 800;
}

.fkv3-404-page { min-height: 58vh; display: flex; align-items: center; }
.fkv3-404-page .fkv3-empty-state h1 { font-size: clamp(46px, 7vw, 76px); line-height: 1; letter-spacing: -.05em; }
.fkv3-404-page .fkv3-hero-actions { justify-content: center; }
.fkv3-404-page .fkv3-button--green:hover { background: #1f2521; color: #fff !important; }

/* Old long-form templates that remain in the patch inherit a readable canvas. */
body:not(.home):not(.single-product) .container.text-justify,
body:not(.home):not(.single-product) .license,
body:not(.home):not(.single-product) .embroidery-license,
body:not(.home):not(.single-product) .eula,
body:not(.home):not(.single-product) .controlpanel {
  color: #444c47;
}
body:not(.home):not(.single-product) .container.text-justify { margin-top: 0 !important; padding-top: 60px !important; padding-bottom: 60px !important; }

/* -------------------------------------------------------------------------
   WooCommerce common pages
------------------------------------------------------------------------- */
.woocommerce-cart .fkv3-main,
.woocommerce-checkout .fkv3-main,
.woocommerce-account .fkv3-main { background: #fff; color: #252b27; }
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding: 54px 0 70px;
}
.woocommerce table.shop_table { border-color: #e2e5e1 !important; border-radius: 10px !important; overflow: hidden; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 8px !important;
  background: #1d231f !important;
  color: #fff !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: #303732 !important; color: #fff !important; }

/* -------------------------------------------------------------------------
   Footer
------------------------------------------------------------------------- */
.fkv3-footer {
  width: 100%;
  overflow: clip;
  background: var(--fkv3-dark-deep);
  color: #d8ded9;
  border-top: 1px solid rgba(255,255,255,.06);
}
.fkv3-footer-grid {
  display: grid;
  grid-template-columns: minmax(250px,1.35fr) .75fr .8fr minmax(260px,1.1fr);
  gap: 52px;
  padding: 56px 0 46px;
}
.fkv3-footer-brand img { width: 138px; max-height: 46px; object-fit: contain; }
.fkv3-footer-brand h2 { margin: 17px 0 10px; color: #fff; font-size: 27px; line-height: 1.02; letter-spacing: -.04em; }
.fkv3-footer-brand p { max-width: 340px; margin: 0; color: #8f9892; font-size: 10px; line-height: 1.7; }
.fkv3-footer-label { display: block; margin-bottom: 15px; color: #6f7772; font-size: 8px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.fkv3-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.fkv3-footer-column a { color: #aab2ad !important; font-size: 10px; line-height: 1.45; }
.fkv3-footer-column a:hover { color: var(--fkv3-green) !important; }
.fkv3-footer-contact h3 { max-width: 320px; margin: 0 0 9px; color: #fff; font-size: 20px; line-height: 1.12; letter-spacing: -.03em; }
.fkv3-footer-contact p { max-width: 330px; margin: 0 0 12px; color: #87908a; font-size: 9px; line-height: 1.65; }
.fkv3-footer-email { display: inline-flex; gap: 6px; color: var(--fkv3-green) !important; font-size: 10px; font-weight: 800; }
.fkv3-socials { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.fkv3-socials a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.09); border-radius: 8px; color: #a5ada8 !important; }
.fkv3-socials a:hover { border-color: rgba(37,239,102,.35); color: var(--fkv3-green) !important; }
.fkv3-footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #69716c;
  font-size: 8px;
}

/* -------------------------------------------------------------------------
   Inline search shortcode
------------------------------------------------------------------------- */
.fkv3-inline-search { display: grid; grid-template-columns: minmax(0,1fr) 42px; width: 100%; max-width: 560px; }
.fkv3-inline-search input { min-width: 0; height: 42px; padding: 0 12px; border: 1px solid #dce0db; border-radius: 8px 0 0 8px; }
.fkv3-inline-search button { border: 0; border-radius: 0 8px 8px 0; background: #1d231f; color: #fff; }

/* -------------------------------------------------------------------------
   Responsive
------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .fkv3-header-shell { grid-template-columns: 150px minmax(0,1fr) auto; gap: 14px; }
  .fkv3-brand img { width: 132px; }
  .fkv3-nav-list a { padding-inline: 9px !important; font-size: 11px !important; }
  .fkv3-hero-grid { grid-template-columns: minmax(0,1fr) minmax(300px,.72fr); gap: 42px; }
  .fkv3-footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 34px; }
  .fkv3-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 1023px) {
  .fkv3-header-shell { min-height: 68px; grid-template-columns: minmax(0,1fr) auto; }
  .fkv3-desktop-nav { display: none; }
  .fkv3-menu-toggle { display: inline-flex; }
  .fkv3-mobile-menu { display: block; }
  .fkv3-brand img { width: 130px; }

  .fkv3-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 24px; padding-top: 58px; padding-bottom: 58px; text-align: center; }
  .fkv3-hero-copy p { margin-inline: auto; }
  .fkv3-hero-actions { justify-content: center; }
  .fkv3-hero-art { min-height: 220px; }
  .fkv3-hero-art img { width: min(100%, 360px); max-height: 260px; }

  .fkv3-category-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
  .fkv3-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fkv3-showcase-track { grid-auto-columns: minmax(280px, 46%); }

  .fk24-product-layout { grid-template-columns: 1fr !important; gap: 42px !important; }
  .fk24-buy-panel { position: relative !important; top: auto !important; }
  body.admin-bar .fk24-buy-panel { top: auto !important; }
  .fk24-buy-panel-wrap { max-width: 720px !important; }
  .fk24-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }

  .fkv3-contact-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 782px) {
  body.admin-bar .fkv3-header { top: 46px; }
}

@media (max-width: 767px) {
  .fkv3-shell,
  .fkv3-narrow { width: min(calc(100% - 28px), var(--fkv3-shell)); }
  .fkv3-header-shell { width: calc(100% - 22px); }
  .fkv3-account { display: none; }
  .fkv3-icon-button { width: 38px; height: 38px; flex-basis: 38px; }
  .fkv3-search-shell { width: calc(100% - 24px); padding-top: 14px; }
  .fkv3-search-form { grid-template-columns: 19px minmax(0,1fr); }
  .fkv3-search-form button { grid-column: 1 / -1; width: 100%; }
  .fkv3-mobile-quicklinks { grid-template-columns: 1fr; }

  .fkv3-hero-grid { padding-top: 48px; padding-bottom: 48px; }
  .fkv3-hero-copy h1 { font-size: clamp(46px, 13vw, 64px); letter-spacing: -.055em; }
  .fkv3-hero-art { min-height: 180px; }
  .fkv3-hero-art img { width: min(100%, 300px); max-height: 210px; }

  .fkv3-category-browser { padding: 48px 0 52px; }
  .fkv3-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fkv3-category-card { min-height: 124px; }

  .fkv3-home-products,
  .fkv3-catalog { padding: 52px 0 60px; }
  .fkv3-heading-row,
  .fkv3-showcase-head { align-items: flex-start; }
  .fkv3-text-link { display: none; }
  .fkv3-product-grid { gap: 24px 12px; }
  .fkv3-product-copy h3 { font-size: 12px; }
  .fkv3-product-price { min-width: 74px; min-height: 38px; padding: 8px 11px; font-size: 14px; }
  .fkv3-product-hover { display: none; }

  .fkv3-showcase { padding: 48px 0 54px; }
  .fkv3-showcase-track { grid-auto-columns: minmax(260px, 78%); }

  .fkv3-collection-intro { padding: 50px 0 48px; }
  .fkv3-collection-intro p { font-size: 13px; }

  .fk24-product-page { padding-top: 18px !important; padding-bottom: 56px !important; }
  .fk24-product-wrap { width: calc(100% - 24px) !important; }
  .fk24-product-meta-strip { grid-template-columns: 1fr !important; }
  .fk24-product-meta-strip > div { padding: 12px 0 !important; }
  .fk24-product-meta-strip > div + div { border-left: 0 !important; border-top: 1px solid var(--fkv3-line) !important; }
  .fk24-tester,
  .fk24-product-details { padding-top: 40px !important; }
  .fk24-section-head h2,
  .fk24-related-head h2 { font-size: 26px !important; }
  .fk24-tester-controls { grid-template-columns: 1fr !important; }
  .fk24-size-options { max-width: 100% !important; overflow-x: auto !important; padding-bottom: 2px !important; }
  .fk24-size-options button { flex: 0 0 auto !important; }
  .fk24-tester-preview { min-height: 120px !important; }
  .fk24-buy-panel h1 { font-size: clamp(32px, 10vw, 44px) !important; }
  .fk24-related { margin-top: 58px !important; padding-top: 38px !important; }

  .fkv3-license-hero { padding: 58px 0 54px; }
  .fkv31-license-directory { padding: 54px 0 62px; }
  .fkv31-license-grid { grid-template-columns: 1fr; }
  .fkv31-license-help { grid-template-columns: 1fr; gap: 14px; }
  .fkv31-eula-body { padding: 52px 0 62px; }
  .fkv31-eula-layout { grid-template-columns: 1fr; gap: 24px; }
  .fkv31-eula-nav { position: relative; top: auto; grid-template-columns: repeat(3,minmax(0,1fr)); }
  body.admin-bar .fkv31-eula-nav { top: auto; }
  .fkv31-eula-nav strong { grid-column: 1 / -1; }

  .fkv3-standard-page,
  .fkv3-contact-page,
  .fkv3-blog-page,
  .fkv3-404-page { padding: 52px 0 60px; }
  .fkv3-contact-form { padding: 20px; }
  .fkv3-blog-grid { grid-template-columns: 1fr; }

  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce,
  .woocommerce-account .woocommerce { width: calc(100% - 28px); padding-top: 40px; }

  .fkv3-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding: 48px 0 38px; }
  .fkv3-footer-brand,
  .fkv3-footer-contact { grid-column: 1 / -1; }
  .fkv3-footer-bottom { min-height: 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 3px; padding: 14px 0; line-height: 1.55; }
}

@media (max-width: 560px) {
  .fkv3-shell,
  .fkv3-narrow { width: calc(100% - 22px); }
  .fkv3-header-shell { width: calc(100% - 16px); }
  .fkv3-brand img { width: 112px; }
  .fkv3-header-actions { gap: 4px; }
  .fkv3-icon-button { width: 36px; height: 36px; flex-basis: 36px; border-radius: 8px; }
  .fkv3-cart-count { top: -4px; right: -4px; }

  .fkv3-hero-copy h1 { font-size: clamp(42px, 14vw, 56px); }
  .fkv3-hero-copy p { font-size: 12px; }
  .fkv3-hero-art { min-height: 150px; }
  .fkv3-hero-art img { width: min(100%, 250px); }
  .fkv3-button { min-height: 44px; padding-inline: 17px; }

  .fkv3-category-card { min-height: 116px; padding: 14px; }
  .fkv3-category-card img { max-width: 54px; max-height: 48px; }
  .fkv3-category-name { font-size: 10px; }

  .fkv3-product-grid { grid-template-columns: 1fr; gap: 28px; }
  .fkv3-product-copy h3 { font-size: 15px; }
  .fkv3-product-categories { font-size: 8px; }
  .fkv3-product-price { min-width: 78px; font-size: 15px; }

  .fkv3-showcase-head { flex-direction: column; }
  .fkv3-showcase-track { grid-auto-columns: 88%; }

  .fk24-product-thumbs .woocommerce-product-gallery__image,
  .fk24-product-thumbs > * { width: 62px !important; height: 48px !important; flex-basis: 62px !important; }
  .fk26-variable-cart-row,
  .fk24-purchase-form > form.cart:not(.variations_form):not(.fk26-variable-cart) { grid-template-columns: 66px minmax(0,1fr) !important; }
  .fk24-purchase-form .quantity,
  .fk26-variable-cart .quantity,
  .fk24-purchase-form .quantity input.qty,
  .fk26-variable-cart input.qty { width: 66px !important; min-width: 66px !important; }
  .fk24-related-grid { grid-template-columns: 1fr !important; }

  .fkv31-license-card { padding: 22px 20px 24px; }
  .fkv31-license-help { padding: 22px 20px; }
  .fkv31-eula-nav { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 14px; }
  .fkv31-eula-document p,
  .fkv31-eula-alpha li { font-size: 13px; line-height: 1.8; }
  .fkv31-eula-section-title { grid-template-columns: 40px minmax(0,1fr); }
  .fkv31-eula-section-title > span { width: 40px; }
  .fkv31-eula-section h2 { font-size: 21px; }

  .fkv3-footer-grid { grid-template-columns: 1fr; }
  .fkv3-footer-brand,
  .fkv3-footer-contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   FontKong Typography Refinement v3.2
   Goal: stronger hierarchy, better readability and consistent UI type scale.
   This block intentionally lives at the end of the rebuild stylesheet so it
   can override legacy theme values without introducing another CSS file.
   ========================================================================== */

:root {
  --fkv3-ui-font: "Manrope", Arial, sans-serif;
  --fkv3-heading-font: "Space Grotesk", "Manrope", Arial, sans-serif;
}

/* Global UI typography */
body {
  font-family: var(--fkv3-ui-font) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  letter-spacing: -0.006em;
}
body button,
body input,
body select,
body textarea { font-family: var(--fkv3-ui-font) !important; }
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--fkv3-heading-font) !important;
  text-wrap: balance;
}

/* Header: slightly larger and calmer */
.fkv3-nav-list a {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}
.fkv3-mobile-menu .fkv3-nav-list a,
.fkv3-mobile-list a {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
}

/* Shared headings */
.fkv3-eyebrow,
.fkv3-section-heading > span,
.fk24-section-head > span,
.fk24-related-head > span {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: .145em !important;
}
.fkv3-section-heading h1,
.fkv3-section-heading h2 {
  font-weight: 650 !important;
  line-height: 1.02 !important;
  letter-spacing: -.038em !important;
}
.fkv3-section-heading p {
  font-size: 14px !important;
  line-height: 1.72 !important;
}

/* Category + product cards */
.fkv3-category-name {
  font-size: 11.5px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}
.fkv3-product-copy h3 {
  font-size: 14px !important;
  font-weight: 720 !important;
  line-height: 1.34 !important;
  letter-spacing: -.018em !important;
}
.fkv3-product-categories {
  font-size: 9.5px !important;
  line-height: 1.4 !important;
  letter-spacing: .11em !important;
}
.fkv3-product-price {
  font-size: 16px !important;
  font-weight: 850 !important;
}

/* Product meta strip */
.fk24-product-meta-strip span {
  font-size: 9.5px !important;
  letter-spacing: .12em !important;
}
.fk24-product-meta-strip strong,
.fk24-product-meta-strip a {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
}

/* -------------------------------------------------------------------------
   Type Tester — UI stays clean, preview always keeps the product font.
------------------------------------------------------------------------- */
.fk24-tester { padding-top: 54px !important; }
.fk24-section-head { margin-bottom: 22px !important; }
.fk24-section-head h2,
.fk24-related-head h2 {
  font-size: 34px !important;
  font-weight: 650 !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
}
.fk24-tester-controls {
  gap: 12px !important;
  align-items: stretch !important;
}
.fk24-tester-controls input {
  height: 50px !important;
  padding: 0 16px !important;
  border-radius: 9px !important;
  color: #202622 !important;
  font-family: var(--fkv3-ui-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
}
.fk24-tester-controls input::placeholder { color: #949b96 !important; }
.fk24-size-options { gap: 7px !important; }
.fk24-size-options button {
  min-width: 54px !important;
  height: 50px !important;
  padding: 0 11px !important;
  border-radius: 9px !important;
  font-family: var(--fkv3-ui-font) !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  letter-spacing: -.005em !important;
}
.fk24-tester-preview {
  min-height: 176px !important;
  margin-top: 14px !important;
  padding: 30px 0 34px !important;
  color: #171c19 !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: normal !important;
  line-height: 1.22 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
  font-variant-ligatures: common-ligatures discretionary-ligatures contextual !important;
  font-feature-settings: "liga" 1, "dlig" 1, "clig" 1, "calt" 1, "kern" 1 !important;
}

/* -------------------------------------------------------------------------
   Product title + license selection — make the purchasing hierarchy readable.
------------------------------------------------------------------------- */
.fk24-buy-topline {
  font-size: 10px !important;
  line-height: 1.35 !important;
  letter-spacing: .14em !important;
}
.fk24-buy-panel h1 {
  font-size: clamp(36px, 3.2vw, 50px) !important;
  font-weight: 650 !important;
  line-height: 1.01 !important;
  letter-spacing: -.04em !important;
  text-wrap: pretty !important;
}
.fk24-creator-row strong { font-size: 12.5px !important; line-height: 1.35 !important; }
.fk24-creator-row span { font-size: 10.5px !important; line-height: 1.4 !important; }
.fk24-short-desc {
  font-size: 13.5px !important;
  line-height: 1.72 !important;
}
.fk24-license-heading { margin-top: 25px !important; margin-bottom: 8px !important; }
.fk24-license-heading > span {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: -.015em !important;
}
.fk24-license-heading a {
  font-size: 11.5px !important;
  font-weight: 700 !important;
}
.fk25-license-option {
  min-height: 58px !important;
  grid-template-columns: 18px minmax(0,1fr) auto !important;
  gap: 11px !important;
  padding: 13px 0 !important;
}
.fk25-license-name {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  letter-spacing: -.012em !important;
}
.fk25-license-name small {
  margin-left: 7px !important;
  padding: 3px 6px !important;
  font-size: 8.5px !important;
  line-height: 1.25 !important;
}
.fk25-license-price {
  font-size: 17px !important;
  font-weight: 800 !important;
  letter-spacing: -.018em !important;
}
.fk26-license-usage {
  margin-top: 17px !important;
  padding: 22px 22px !important;
  border-radius: 10px !important;
}
.fk26-license-usage-head {
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
}
.fk26-license-usage-head strong {
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: -.012em !important;
}
.fk26-license-usage-head span {
  font-size: 10.5px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}
.fk26-license-description,
.fk26-license-description p,
.fk26-license-description li,
.fk26-license-usage-list li {
  color: #3c453f !important;
  font-size: 14.5px !important;
  line-height: 1.72 !important;
}
.fk26-license-description li,
.fk26-license-usage-list li { margin-top: 7px !important; margin-bottom: 7px !important; }
.fk25-selected-total span {
  font-size: 12.5px !important;
  font-weight: 700 !important;
}
.fk25-selected-total strong {
  font-size: 27px !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
}
.fk24-purchase-form .single_add_to_cart_button,
.fk26-variable-cart .single_add_to_cart_button {
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
}
.fk24-buy-benefits strong { font-size: 11.5px !important; line-height: 1.4 !important; }
.fk24-buy-benefits small { font-size: 10.5px !important; line-height: 1.5 !important; }

/* -------------------------------------------------------------------------
   License page typography.
------------------------------------------------------------------------- */
.fkv3-license-hero h1 {
  font-weight: 650 !important;
  line-height: 1.01 !important;
  letter-spacing: -.042em !important;
}
.fkv3-license-hero p {
  max-width: 760px !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
}
.fkv31-license-intro h2 {
  font-weight: 650 !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
}
.fkv31-license-intro p {
  font-size: 15px !important;
  line-height: 1.75 !important;
}
.fkv31-license-card h2 {
  font-size: 25px !important;
  font-weight: 650 !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
}
.fkv31-license-list li {
  margin: 10px 0 !important;
  padding-left: 26px !important;
  color: #3f4942 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
.fkv31-license-list li::before { top: .06em !important; font-size: 13px !important; }
.fkv31-license-help h2 {
  font-size: 30px !important;
  font-weight: 650 !important;
  line-height: 1.1 !important;
}
.fkv31-license-help p {
  font-size: 14.5px !important;
  line-height: 1.75 !important;
}

/* -------------------------------------------------------------------------
   Embroidery EULA typography — legal text must be comfortable to read.
------------------------------------------------------------------------- */
.fkv31-eula-hero h1 {
  font-weight: 650 !important;
  line-height: 1.03 !important;
  letter-spacing: -.038em !important;
}
.fkv31-eula-kicker {
  font-size: 11.5px !important;
  line-height: 1.5 !important;
}
.fkv31-eula-layout {
  grid-template-columns: 240px minmax(0,1fr) !important;
}
.fkv31-eula-nav strong {
  font-size: 11.5px !important;
  line-height: 1.35 !important;
}
.fkv31-eula-nav a {
  font-size: 12.5px !important;
  line-height: 1.45 !important;
}
.fkv31-eula-document { max-width: 860px !important; }
.fkv31-eula-document p,
.fkv31-eula-alpha li {
  color: #38423b !important;
  font-size: 15.5px !important;
  line-height: 1.9 !important;
  letter-spacing: -0.004em !important;
}
.fkv31-eula-document p { margin-bottom: 19px !important; }
.fkv31-eula-section h2 {
  font-size: 27px !important;
  font-weight: 650 !important;
  line-height: 1.15 !important;
  letter-spacing: -.024em !important;
}
.fkv31-eula-section-title > span {
  font-size: 11px !important;
  font-weight: 800 !important;
}
.fkv31-eula-alpha li { margin-top: 11px !important; margin-bottom: 11px !important; }

/* Generic long-form content */
.fkv3-rich-text,
.fk24-rich-text {
  font-size: 14.5px !important;
  line-height: 1.85 !important;
}
.fkv3-blog-meta { font-size: 10px !important; }
.fkv3-blog-card h2 { font-size: 24px !important; font-weight: 650 !important; }
.fkv3-blog-excerpt { font-size: 13.5px !important; line-height: 1.72 !important; }

/* Footer: previous version was too tiny */
.fkv3-footer-brand h2 {
  font-size: 29px !important;
  font-weight: 650 !important;
  line-height: 1.05 !important;
}
.fkv3-footer-brand p {
  font-size: 12px !important;
  line-height: 1.7 !important;
}
.fkv3-footer-label {
  font-size: 9.5px !important;
  line-height: 1.4 !important;
  letter-spacing: .13em !important;
}
.fkv3-footer-column a {
  font-size: 12px !important;
  line-height: 1.5 !important;
}
.fkv3-footer-contact h3 {
  font-size: 22px !important;
  font-weight: 650 !important;
  line-height: 1.12 !important;
}
.fkv3-footer-contact p {
  font-size: 11.5px !important;
  line-height: 1.7 !important;
}
.fkv3-footer-email { font-size: 11.5px !important; }
.fkv3-footer-bottom {
  font-size: 10px !important;
  line-height: 1.55 !important;
}

@media (max-width: 1180px) {
  .fkv3-nav-list a { font-size: 12px !important; }
}

@media (max-width: 1023px) {
  .fkv31-eula-layout { grid-template-columns: 1fr !important; }
}

@media (max-width: 767px) {
  body { font-size: 15.5px !important; }

  .fk24-tester { padding-top: 44px !important; }
  .fk24-section-head h2,
  .fk24-related-head h2 { font-size: 30px !important; }
  .fk24-tester-controls input { height: 48px !important; font-size: 13.5px !important; }
  .fk24-size-options button { height: 44px !important; min-width: 54px !important; }
  .fk24-tester-preview {
    min-height: 145px !important;
    padding-top: 26px !important;
    padding-bottom: 28px !important;
    line-height: 1.2 !important;
  }

  .fk24-buy-panel h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.03 !important;
  }
  .fk25-license-name { font-size: 14px !important; }
  .fk25-license-price { font-size: 16px !important; }
  .fk26-license-description,
  .fk26-license-description p,
  .fk26-license-description li,
  .fk26-license-usage-list li { font-size: 14px !important; }

  .fkv3-license-hero h1 { font-size: clamp(40px, 11vw, 58px) !important; }
  .fkv3-license-hero p { font-size: 14.5px !important; }
  .fkv31-license-card h2 { font-size: 23px !important; }
  .fkv31-license-list li { font-size: 14px !important; }

  .fkv31-eula-hero h1 { font-size: clamp(36px, 9.5vw, 50px) !important; }
  .fkv31-eula-document p,
  .fkv31-eula-alpha li {
    font-size: 14.5px !important;
    line-height: 1.85 !important;
  }
  .fkv31-eula-section h2 { font-size: 24px !important; }
}

@media (max-width: 560px) {
  .fkv3-category-name { font-size: 11px !important; }
  .fkv3-product-copy h3 { font-size: 15px !important; }
  .fkv3-product-categories { font-size: 9px !important; }

  .fk24-size-options {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    width: 100% !important;
    gap: 6px !important;
    overflow: visible !important;
  }
  .fk24-size-options button {
    width: 100% !important;
    min-width: 0 !important;
    padding-inline: 6px !important;
  }

  .fk26-license-usage { padding: 19px 17px !important; }
  .fk26-license-usage-head { align-items: flex-start !important; }
  .fk26-license-usage-head span { max-width: 46% !important; }

  .fkv31-license-list li { padding-left: 24px !important; }
  .fkv31-eula-nav a { font-size: 12px !important; }
  .fkv3-footer-column a { font-size: 12.5px !important; }
}

/* ==========================================================================
   FontKong Newborn v3.3 — branding, license directory & checkout hardening
   ========================================================================== */

/* Custom logo support */
.fkv3-brand-image,
.fkv3-brand .custom-logo {
  width: 142px;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}
.fkv3-footer-logo {
  width: 138px;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
}

/* Homepage hero: flat, clean, no watermark/shadow treatment. */
.fkv3-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--fkv3-hero-custom, #1c2021);
}
.fkv3-hero::before,
.fkv3-hero::after { display: none; }
.fkv3-hero-grid {
  min-height: clamp(500px, 58vw, 650px);
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.82fr);
  gap: clamp(42px, 6vw, 88px);
  padding-top: clamp(74px, 8vw, 104px);
  padding-bottom: clamp(74px, 8vw, 104px);
}
.fkv3-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(60px, 6.7vw, 104px);
  line-height: .88;
  letter-spacing: -.072em;
}
.fkv3-hero-copy p { max-width: 560px; margin-top: 26px; font-size: 15px; }
.fkv33-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #8f9892;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fkv33-hero-meta span { position: relative; padding-left: 14px; }
.fkv33-hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fkv3-green);
  transform: translateY(-50%);
}
.fkv3-hero-art {
  position: relative;
  min-height: 360px;
  isolation: isolate;
}
.fkv3-hero-art::before,
.fkv3-hero-art::after,
.fkv33-hero-orbit,
.fkv33-hero-mark { display: none !important; }
.fkv3-hero-art img {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  max-height: 420px;
  filter: none;
}

/* Five-license directory synchronized with the current product license names. */
.fkv31-license-grid--five { align-items: stretch; }
.fkv31-license-grid--five .fkv31-license-card:last-child { grid-column: 1 / -1; }
.fkv31-license-card { position: relative; }
.fkv31-license-card.is-popular {
  border-color: var(--fkv3-green);
  box-shadow: 0 16px 40px rgba(19,25,21,.07);
}
.fkv31-license-title-wrap { min-width: 0; }
.fkv31-license-title-line { display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; }
.fkv31-license-popular {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--fkv3-green);
  color: #101411;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fkv31-license-subtitle {
  max-width: 720px;
  margin: 7px 0 0;
  color: #737c76;
  font-size: 12px;
  line-height: 1.55;
}
.fkv31-license-usage-label {
  margin: 0 0 12px;
  color: #222824;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fkv31-license-list--no { margin-top: 16px; padding-top: 14px; border-top: 1px dashed #e0e4df; }
.fkv31-license-list--no li::before { content: "×"; color: #d13c3c; font-size: 17px; line-height: 1; }

/*
 * WooCommerce checkout hardening.
 * Bootstrap also owns a .form-row class, which can collapse WooCommerce input
 * wrappers to a few pixels. These rules explicitly restore WooCommerce field
 * geometry and give checkout a clean two-column desktop layout.
 */
.woocommerce-checkout .fkv3-standard-page,
.woocommerce-cart .fkv3-standard-page,
.woocommerce-account .fkv3-standard-page { padding: 0; }

.woocommerce-checkout .fkv3-standard-page .fkv3-narrow,
.woocommerce-cart .fkv3-standard-page .fkv3-narrow,
.woocommerce-account .fkv3-standard-page .fkv3-narrow {
  width: min(calc(100% - 48px), 1160px);
  max-width: none;
}

.woocommerce-checkout .fkv3-standard-article > .fkv3-eyebrow,
.woocommerce-checkout .fkv3-standard-article > h1,
.woocommerce-cart .fkv3-standard-article > .fkv3-eyebrow,
.woocommerce-cart .fkv3-standard-article > h1,
.woocommerce-account .fkv3-standard-article > .fkv3-eyebrow,
.woocommerce-account .fkv3-standard-article > h1 { display: none; }

.woocommerce-checkout .fkv3-rich-text,
.woocommerce-cart .fkv3-rich-text,
.woocommerce-account .fkv3-rich-text { font-size: 14px; line-height: 1.55; }

.woocommerce-checkout .woocommerce {
  width: 100%;
  max-width: none;
  padding: 48px 0 76px;
}

.woocommerce-checkout .woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(420px,1.12fr);
  grid-template-rows: auto;
  gap: 34px 44px;
  align-items: start;
}

.woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  margin: 0;
}
.woocommerce-checkout #customer_details .col-1 {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  padding: 26px !important;
  border: 1px solid #e2e6e1;
  border-radius: 14px;
  background: #fafbf8;
}
.woocommerce-checkout #customer_details .col-2 { display: none !important; }
.woocommerce-checkout .woocommerce-billing-fields > h3 {
  margin: 0 0 22px;
  color: #1c221e;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px 14px;
}
.woocommerce-checkout #billing_email_field { grid-column: 1 / -1; }

.woocommerce-checkout .woocommerce form .form-row {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  float: none !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-checkout .woocommerce form .form-row label {
  display: block !important;
  width: 100% !important;
  margin: 0 0 7px !important;
  color: #3a423d !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
}
.woocommerce-checkout .woocommerce form .form-row .required { color: #cf3535 !important; }
.woocommerce-checkout .woocommerce form .form-row .woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}
.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce-checkout .woocommerce form .form-row textarea,
.woocommerce-checkout .woocommerce form .form-row select,
.woocommerce-checkout .select2-container .select2-selection {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 50px !important;
  padding: 0 14px !important;
  border: 1px solid #d8ddd7 !important;
  border-radius: 9px !important;
  outline: none !important;
  background: #fff !important;
  color: #1d231f !important;
  box-shadow: none !important;
  font-size: 14px !important;
  line-height: 50px !important;
}
.woocommerce-checkout .woocommerce form .form-row textarea {
  min-height: 110px !important;
  padding-top: 12px !important;
  line-height: 1.55 !important;
}
.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
.woocommerce-checkout .woocommerce form .form-row textarea:focus,
.woocommerce-checkout .woocommerce form .form-row select:focus {
  border-color: var(--fkv3-green) !important;
  box-shadow: 0 0 0 3px rgba(37,239,102,.10) !important;
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 4px 0 0 !important;
  color: #1c221e;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  margin-top: 54px;
  padding: 20px;
  border: 1px solid #e2e6e1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(19,25,21,.045);
}
.woocommerce-checkout #order_review table.shop_table {
  width: 100% !important;
  margin: 0 0 18px !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}
.woocommerce-checkout #payment {
  border-radius: 10px !important;
  background: #f5f7f3 !important;
}
.woocommerce-checkout #payment .place-order { padding: 18px !important; }
.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 50px;
  border-radius: 9px !important;
  background: var(--fkv3-green) !important;
  color: #101411 !important;
  font-weight: 850 !important;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle { margin-bottom: 22px; }
.woocommerce-checkout .woocommerce-info {
  border-top-color: var(--fkv3-green) !important;
  border-radius: 10px;
  background: #f5f7f4 !important;
}
.woocommerce-checkout .woocommerce-info::before { color: #188444 !important; }
.woocommerce-checkout form.checkout_coupon {
  margin: -8px 0 24px !important;
  border-color: #e0e4df !important;
  border-radius: 10px !important;
}

/* WooCommerce Blocks fallback: keep modern checkout fields usable too. */
.wc-block-checkout input,
.wc-block-checkout textarea,
.wc-block-checkout select {
  min-height: 48px;
  min-width: 0;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .fkv31-license-grid--five .fkv31-license-card:last-child { grid-column: auto; }
  .fkv31-license-grid--five { grid-template-columns: 1fr; }

  .woocommerce-checkout .woocommerce form.checkout { display: block; }
  .woocommerce-checkout #order_review_heading { margin-top: 34px !important; }
  .woocommerce-checkout #order_review { margin-top: 14px; }
}

@media (max-width: 680px) {
  .fkv3-hero-grid { min-height: 0; gap: 42px; padding-top: 64px; padding-bottom: 66px; }
  .fkv3-hero-copy h1 { font-size: clamp(48px, 14vw, 66px); }
  .fkv33-hero-meta { gap: 8px 14px; margin-top: 22px; }
  .fkv3-hero-art { min-height: 230px; }
  .fkv33-hero-orbit { width: min(78vw, 360px); filter: blur(10px); }
  .fkv3-hero-art::before { width: min(82vw, 320px); height: min(82vw, 320px); right: 2%; top: 4%; }
  .fkv3-hero-art::after { width: min(54vw, 190px); height: min(54vw, 190px); left: 10%; bottom: 0; }
  .fkv33-hero-mark { right: 1%; bottom: -4%; }

  .woocommerce-checkout .fkv3-standard-page .fkv3-narrow,
  .woocommerce-cart .fkv3-standard-page .fkv3-narrow,
  .woocommerce-account .fkv3-standard-page .fkv3-narrow { width: calc(100% - 24px); }
  .woocommerce-checkout .woocommerce { padding: 30px 0 56px; }
  .woocommerce-checkout #customer_details .col-1 { padding: 20px !important; }
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper { grid-template-columns: 1fr; }
  .woocommerce-checkout #billing_email_field { grid-column: auto; }
  .woocommerce-checkout #order_review { padding: 14px; overflow-x: auto; }
  .woocommerce-checkout .woocommerce-billing-fields > h3,
  .woocommerce-checkout #order_review_heading { font-size: 25px !important; }
}


@media (max-width: 1080px) {
  .fkv3-blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .fkv3-blog-card.is-featured { grid-column: span 2; }
}

@media (max-width: 760px) {
  .fk24-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 20px 16px !important; }
  .fk24-related-grid .fkv3-product-price { min-width: 78px !important; min-height: 40px !important; font-size: 15px !important; }
  .fkv3-blog-grid { grid-template-columns: 1fr; }
  .fkv3-blog-card.is-featured { grid-column: auto; grid-template-columns: 1fr; }
  .fkv3-post-nav { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .fk24-related-grid { grid-template-columns: 1fr !important; }
  .fkv3-blog-body { padding: 18px 18px 20px; }
  .fkv3-blog-card h2 { font-size: 22px; }
  .fkv3-post-hero { padding-top: 54px; }
  .fkv3-post-body .fkv3-rich-text { font-size: 14px; line-height: 1.85; }
}

@media (max-width: 680px) {
  .fk24-gallery-arrow { width: 42px !important; height: 42px !important; }
  .fk24-gallery-arrow--prev { left: 10px !important; }
  .fk24-gallery-arrow--next { right: 10px !important; }
}


/* ==========================================================================
   FontKong Newborn v3.3.7 — checkout polish + adjustable logo sizing
   ========================================================================== */

/* Product creator logo follows the Customizer width variable when available. */
.fk24-creator-row img {
  width: var(--fkv3-creator-logo-width, 48px) !important;
  height: auto !important;
  max-height: 68px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

/* Main brand logo follows the Customizer width variable. */
.fkv3-brand-image,
.fkv3-brand .custom-logo {
  width: var(--fkv3-logo-width, 142px) !important;
  height: auto !important;
  max-height: 52px !important;
}
.fkv3-footer-logo {
  width: calc(var(--fkv3-logo-width, 142px) * .97) !important;
  height: auto !important;
  max-height: 52px !important;
}

/* Checkout: calmer two-column layout with one clear card per task. */
.woocommerce-checkout .woocommerce {
  padding: 54px 0 82px !important;
}
.woocommerce-checkout .woocommerce form.checkout {
  grid-template-columns: minmax(0,.92fr) minmax(430px,1.08fr) !important;
  gap: 36px 42px !important;
}
.woocommerce-checkout #customer_details .col-1 {
  padding: 30px !important;
  border: 1px solid #e4e8e3 !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}
.woocommerce-checkout .woocommerce-billing-fields > h3,
.woocommerce-checkout #order_review_heading {
  color: #171d19 !important;
  font-size: 30px !important;
  font-weight: 750 !important;
  letter-spacing: -.04em !important;
}
.woocommerce-checkout .woocommerce-billing-fields > h3 { margin-bottom: 26px !important; }
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  gap: 20px 16px !important;
}
.woocommerce-checkout .woocommerce form .form-row label {
  margin-bottom: 8px !important;
  color: #303833 !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}
.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce-checkout .woocommerce form .form-row textarea,
.woocommerce-checkout .woocommerce form .form-row select,
.woocommerce-checkout .select2-container .select2-selection {
  min-height: 52px !important;
  padding-inline: 16px !important;
  border: 1px solid #dce1db !important;
  border-radius: 10px !important;
  background: #fff !important;
  font-size: 15px !important;
  line-height: 52px !important;
}
.woocommerce-checkout #order_review_heading {
  margin-top: 3px !important;
}
.woocommerce-checkout #order_review {
  margin-top: 57px !important;
  padding: 24px !important;
  border: 1px solid #e4e8e3 !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}
.woocommerce-checkout #order_review table.shop_table {
  margin-bottom: 20px !important;
  overflow: hidden !important;
  border: 1px solid #e1e5df !important;
  border-radius: 12px !important;
  background: #fff !important;
}
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
  padding: 14px 16px !important;
  border-color: #e4e7e2 !important;
  color: #2a312d !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  vertical-align: middle !important;
}
.woocommerce-checkout #order_review table.shop_table thead th {
  color: #222925 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}
.woocommerce-checkout #order_review table.shop_table tfoot th,
.woocommerce-checkout #order_review table.shop_table tfoot td {
  font-weight: 800 !important;
}

/* Payment section: remove the stacked gray/purple boxes and make it one clean surface. */
.woocommerce-checkout #payment {
  overflow: hidden !important;
  margin-top: 4px !important;
  border: 1px solid #e1e5df !important;
  border-radius: 12px !important;
  background: #fafbf9 !important;
  box-shadow: none !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #e4e7e2 !important;
  background: transparent !important;
  list-style: none !important;
}
.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0 !important;
  padding: 18px !important;
  border: 0 !important;
  background: transparent !important;
  line-height: 1.45 !important;
}
.woocommerce-checkout #payment ul.payment_methods li > input[type="radio"] {
  margin: 0 9px 0 0 !important;
  vertical-align: middle !important;
}
.woocommerce-checkout #payment ul.payment_methods li > label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  color: #252c28 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  vertical-align: middle !important;
}
.woocommerce-checkout #payment ul.payment_methods li > label img,
.woocommerce-checkout #payment .payment_method_paypal img {
  width: auto !important;
  max-width: 112px !important;
  max-height: 28px !important;
  margin: 0 0 0 4px !important;
  object-fit: contain !important;
}
.woocommerce-checkout #payment div.payment_box {
  position: relative !important;
  width: auto !important;
  margin: 14px 0 0 !important;
  padding: 13px 14px !important;
  border: 1px solid #e1e5df !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: #59615c !important;
  box-shadow: none !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.woocommerce-checkout #payment div.payment_box::before { display: none !important; }
.woocommerce-checkout #payment div.payment_box p {
  margin: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.woocommerce-checkout #payment .place-order {
  margin: 0 !important;
  padding: 20px 18px 18px !important;
  background: transparent !important;
}
.woocommerce-checkout #payment .woocommerce-privacy-policy-text {
  margin-bottom: 16px !important;
  color: #606963 !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}
.woocommerce-checkout #payment .woocommerce-privacy-policy-text p { margin-bottom: 0 !important; }
.woocommerce-checkout #place_order {
  min-height: 52px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  letter-spacing: .01em !important;
}
.woocommerce-checkout #place_order:hover { filter: brightness(.96); }

@media (max-width: 1040px) {
  .woocommerce-checkout .woocommerce form.checkout {
    grid-template-columns: minmax(0,.9fr) minmax(390px,1.1fr) !important;
    gap: 30px !important;
  }
}

@media (max-width: 900px) {
  .woocommerce-checkout .woocommerce form.checkout { display: block !important; }
  .woocommerce-checkout #order_review_heading { margin-top: 34px !important; }
  .woocommerce-checkout #order_review { margin-top: 14px !important; }
}

@media (max-width: 680px) {
  .woocommerce-checkout .woocommerce { padding: 28px 0 56px !important; }
  .woocommerce-checkout #customer_details .col-1,
  .woocommerce-checkout #order_review { padding: 18px !important; border-radius: 13px !important; }
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper { grid-template-columns: 1fr !important; }
  .woocommerce-checkout #billing_email_field { grid-column: auto !important; }
  .woocommerce-checkout .woocommerce-billing-fields > h3,
  .woocommerce-checkout #order_review_heading { font-size: 26px !important; }
  .woocommerce-checkout #order_review table.shop_table th,
  .woocommerce-checkout #order_review table.shop_table td { padding: 12px !important; font-size: 13px !important; }
  .woocommerce-checkout #payment ul.payment_methods li { padding: 16px !important; }
  .woocommerce-checkout #payment .place-order { padding: 18px 16px 16px !important; }
}


/* ==========================================================================\n   FontKong Newborn v3.3.8 — cart UX + blank initial checkout identity\n   ========================================================================== */

/* Cart canvas: compact, clear and aligned with the rest of the storefront. */
.woocommerce-cart .woocommerce {
  width: 100% !important;
  max-width: none !important;
  padding: 38px 0 76px !important;
}
.woocommerce-cart .woocommerce-cart-form {
  margin: 0 !important;
}
.woocommerce-cart form.woocommerce-cart-form table.shop_table.cart {
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid #e1e5df !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: none !important;
}
.woocommerce-cart form.woocommerce-cart-form table.shop_table.cart th,
.woocommerce-cart form.woocommerce-cart-form table.shop_table.cart td {
  padding: 16px 14px !important;
  border-top: 1px solid #e7eae5 !important;
  border-right: 0 !important;
  color: #2b322e !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  vertical-align: middle !important;
}
.woocommerce-cart form.woocommerce-cart-form table.shop_table.cart thead th {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  border-top: 0 !important;
  background: #f7f8f5 !important;
  color: #222925 !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
}
.woocommerce-cart table.shop_table.cart .product-remove {
  width: 48px !important;
  padding-left: 14px !important;
  padding-right: 8px !important;
  text-align: center !important;
}
.woocommerce-cart table.shop_table.cart .product-remove a.remove {
  width: 30px !important;
  height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto !important;
  border: 1px solid #e0e4df !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #b73535 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}
.woocommerce-cart table.shop_table.cart .product-remove a.remove:hover {
  border-color: #d65353 !important;
  background: #fff4f4 !important;
  color: #a92525 !important;
}
.woocommerce-cart table.shop_table.cart .product-thumbnail {
  width: 76px !important;
  padding-left: 6px !important;
  padding-right: 10px !important;
}
.woocommerce-cart table.shop_table.cart .product-thumbnail img {
  width: 58px !important;
  height: 58px !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 8px !important;
  object-fit: cover !important;
}
.woocommerce-cart table.shop_table.cart .product-name {
  min-width: 280px !important;
  padding-left: 8px !important;
}
.woocommerce-cart table.shop_table.cart .product-name a {
  color: #202722 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
}
.woocommerce-cart table.shop_table.cart .product-name a:hover {
  color: #167a39 !important;
}
.woocommerce-cart table.shop_table.cart .product-price,
.woocommerce-cart table.shop_table.cart .product-quantity,
.woocommerce-cart table.shop_table.cart .product-subtotal {
  width: 120px !important;
  text-align: center !important;
  white-space: nowrap !important;
  font-size: 14px !important;
  font-weight: 750 !important;
}
.woocommerce-cart table.shop_table.cart .product-subtotal {
  text-align: right !important;
  padding-right: 20px !important;
}
.woocommerce-cart .fkv38-cart-qty {
  min-width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #dde2dc !important;
  border-radius: 8px !important;
  background: #f8f9f6 !important;
  color: #2c332f !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}
.woocommerce-cart table.shop_table.cart .quantity {
  display: inline-flex !important;
  justify-content: center !important;
}
.woocommerce-cart table.shop_table.cart .quantity .qty {
  width: 64px !important;
  min-height: 38px !important;
  margin: 0 auto !important;
  border: 1px solid #dce1db !important;
  border-radius: 8px !important;
  background: #fff !important;
  text-align: center !important;
}

/* Actions row becomes a deliberate toolbar instead of a loose table row. */
.woocommerce-cart table.shop_table.cart td.actions {
  padding: 14px !important;
  background: #fafbf9 !important;
}
.woocommerce-cart table.shop_table.cart td.actions .coupon {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.woocommerce-cart table.shop_table.cart td.actions .coupon label {
  display: none !important;
}
.woocommerce-cart table.shop_table.cart td.actions .coupon .input-text {
  width: 220px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 13px !important;
  border: 1px solid #dce1db !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #242b27 !important;
  font-size: 13px !important;
}
.woocommerce-cart table.shop_table.cart td.actions .button {
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #1d231f !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}
.woocommerce-cart table.shop_table.cart td.actions .button:disabled,
.woocommerce-cart table.shop_table.cart td.actions .button[disabled] {
  background: #d7dcd7 !important;
  color: #7a827c !important;
  opacity: 1 !important;
}

/* Totals card: right aligned on desktop, compact and easy to scan. */
.woocommerce-cart .cart-collaterals {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 34px !important;
}
.woocommerce-cart .cart-collaterals .cart_totals {
  width: min(100%, 520px) !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-cart .cart_totals h2 {
  margin: 0 0 14px !important;
  color: #1c231e !important;
  font-size: 30px !important;
  font-weight: 750 !important;
  line-height: 1.05 !important;
  letter-spacing: -.04em !important;
}
.woocommerce-cart .cart_totals table.shop_table {
  margin: 0 !important;
  border: 1px solid #e1e5df !important;
  border-radius: 12px !important;
  background: #fff !important;
  overflow: hidden !important;
}
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
  padding: 14px 16px !important;
  border-top: 1px solid #e7eae5 !important;
  color: #2b322e !important;
  font-size: 14px !important;
  vertical-align: middle !important;
}
.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
  border-top: 0 !important;
}
.woocommerce-cart .cart_totals table.shop_table th {
  width: 42% !important;
  font-weight: 800 !important;
}
.woocommerce-cart .cart_totals table.shop_table td {
  text-align: right !important;
  font-weight: 750 !important;
}
.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  background: #fafbf9 !important;
  font-size: 16px !important;
  font-weight: 850 !important;
}
.woocommerce-cart .wc-proceed-to-checkout {
  padding: 14px 0 0 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100% !important;
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 20px !important;
  border-radius: 10px !important;
  background: #1d231f !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #303732 !important;
}

@media (max-width: 900px) {
  .woocommerce-cart .woocommerce { padding-top: 28px !important; }
  .woocommerce-cart form.woocommerce-cart-form { overflow-x: auto !important; }
  .woocommerce-cart form.woocommerce-cart-form table.shop_table.cart { min-width: 760px !important; }
  .woocommerce-cart .cart-collaterals .cart_totals { width: 100% !important; }
}

@media (max-width: 680px) {
  .woocommerce-cart .woocommerce { padding: 22px 0 54px !important; }
  .woocommerce-cart table.shop_table.cart td.actions .coupon {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
  }
  .woocommerce-cart table.shop_table.cart td.actions .coupon .input-text { width: 100% !important; }
  .woocommerce-cart .cart_totals h2 { font-size: 26px !important; }
}


/* -------------------------------------------------------------------------
   FontKong Newborn v3.3.9 — cart / checkout step progress
------------------------------------------------------------------------- */
.fkv38-checkout-steps-wrap {
  margin: 6px 0 26px;
}

.woocommerce-checkout .fkv38-checkout-steps-wrap {
  margin-top: 2px;
}

.woocommerce-order-received .fkv38-checkout-steps-wrap {
  margin-top: 8px;
}

.fkv38-checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  padding: 12px 0 8px;
}

.fkv38-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.fkv38-step-line {
  position: absolute;
  top: 22px;
  left: calc(50% + 24px);
  width: calc(100% - 34px);
  height: 1px;
  background: #d9dfd9;
}

.fkv38-step:last-child .fkv38-step-line {
  display: none;
}

.fkv38-step-dot {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8ded8;
  border-radius: 50%;
  background: #fff;
  color: #69726c;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.fkv38-step-dot i {
  font-size: 13px;
}

.fkv38-step-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fkv38-step-copy strong {
  color: #1a1f1c;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.fkv38-step-copy small {
  color: #78817c;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .02em;
}

.fkv38-step.is-active .fkv38-step-dot {
  border-color: #2be65e;
  background: #2be65e;
  color: #101411;
}

.fkv38-step.is-active .fkv38-step-copy strong,
.fkv38-step.is-complete .fkv38-step-copy strong {
  color: #121714;
}

.fkv38-step.is-complete .fkv38-step-dot {
  border-color: #1b211d;
  background: #1b211d;
  color: #fff;
}

.fkv38-step.is-complete .fkv38-step-line,
.fkv38-step.is-active .fkv38-step-line {
  background: #c8d0ca;
}

@media (max-width: 900px) {
  .fkv38-checkout-steps {
    gap: 14px;
  }

  .fkv38-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .fkv38-step-dot {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .fkv38-step-line {
    top: 20px;
    left: calc(50% + 20px);
    width: calc(100% - 28px);
  }

  .fkv38-step-copy strong {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .fkv38-checkout-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 4px;
  }

  .fkv38-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .fkv38-step-dot {
    width: 38px;
    height: 38px;
  }

  .fkv38-step-line {
    left: 18px;
    top: calc(100% - 6px);
    width: 1px;
    height: 18px;
  }

  .fkv38-step:last-child .fkv38-step-line {
    display: none;
  }
}


/* ==========================================================================
   FontKong Newborn v3.4.0 — full responsive pass
   Hero + Cart + Checkout + Order received
   ========================================================================== */

/* Prevent legacy Bootstrap/WooCommerce widths from creating horizontal drift. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.woocommerce-cart .fkv3-standard-page .fkv3-narrow,
.woocommerce-checkout .fkv3-standard-page .fkv3-narrow,
.woocommerce-account .fkv3-standard-page .fkv3-narrow {
  width: min(calc(100% - 32px), 1240px) !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: auto !important;
}

/* -----------------------------
   HOME HERO — fluid at every size
   ----------------------------- */
.fkv3-hero-grid {
  width: min(calc(100% - 48px), var(--fkv3-shell)) !important;
  min-height: 0 !important;
}

.fkv3-hero-copy,
.fkv3-hero-art {
  min-width: 0 !important;
}

.fkv3-hero-copy h1 {
  overflow-wrap: normal;
  word-break: normal;
}

.fkv3-hero-art {
  height: auto !important;
}

.fkv3-hero-art img {
  display: block !important;
  width: min(100%, 500px) !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

@media (max-width: 1023px) {
  .fkv3-hero-grid {
    width: min(calc(100% - 40px), 760px) !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding-top: 52px !important;
    padding-bottom: 54px !important;
    text-align: center !important;
  }

  .fkv3-hero-copy {
    max-width: 680px !important;
    margin-inline: auto !important;
  }

  .fkv3-hero-copy h1 {
    max-width: 680px !important;
    margin-inline: auto !important;
    font-size: clamp(50px, 9vw, 72px) !important;
    line-height: .92 !important;
    letter-spacing: -.055em !important;
  }

  .fkv3-hero-copy p {
    max-width: 560px !important;
    margin: 20px auto 24px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .fkv3-hero-actions,
  .fkv33-hero-meta {
    justify-content: center !important;
  }

  .fkv3-hero-art {
    min-height: 0 !important;
  }

  .fkv3-hero-art img {
    width: min(72vw, 390px) !important;
  }
}

@media (max-width: 680px) {
  .fkv3-hero-grid {
    width: calc(100% - 28px) !important;
    gap: 26px !important;
    padding-top: 38px !important;
    padding-bottom: 42px !important;
    text-align: left !important;
  }

  .fkv3-hero-copy {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .fkv3-hero .fkv3-eyebrow {
    margin-bottom: 9px !important;
    font-size: 9px !important;
    letter-spacing: .13em !important;
  }

  .fkv3-hero-copy h1 {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(40px, 12.7vw, 56px) !important;
    line-height: .93 !important;
    letter-spacing: -.052em !important;
  }

  .fkv3-hero-copy p {
    max-width: 520px !important;
    margin: 18px 0 20px !important;
    font-size: 13.5px !important;
    line-height: 1.62 !important;
  }

  .fkv3-hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    width: 100% !important;
  }

  .fkv3-hero-actions .fkv3-button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 0 12px !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 11px !important;
  }

  .fkv33-hero-meta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    justify-content: start !important;
    margin-top: 20px !important;
    font-size: 9.5px !important;
  }

  .fkv3-hero-art {
    width: 100% !important;
    min-height: 0 !important;
    padding: 4px 0 0 !important;
  }

  .fkv3-hero-art img {
    width: min(100%, 360px) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 420px) {
  .fkv3-hero-grid {
    width: calc(100% - 22px) !important;
    padding-top: 30px !important;
    padding-bottom: 34px !important;
  }

  .fkv3-hero-copy h1 {
    font-size: clamp(36px, 12.5vw, 48px) !important;
  }

  .fkv3-hero-actions {
    grid-template-columns: 1fr !important;
  }

  .fkv3-hero-art img {
    width: min(94vw, 330px) !important;
  }
}

/* -----------------------------
   CHECKOUT PROGRESS
   Keep it compact on phones rather than a long vertical stack.
   ----------------------------- */
@media (max-width: 680px) {
  .fkv38-checkout-steps-wrap {
    margin: 0 0 18px !important;
  }

  .fkv38-checkout-steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 6px 0 8px !important;
  }

  .fkv38-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 7px !important;
    text-align: center !important;
  }

  .fkv38-step-dot {
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    font-size: 12px !important;
  }

  .fkv38-step-line {
    display: block !important;
    top: 17px !important;
    left: calc(50% + 17px) !important;
    width: calc(100% - 34px) !important;
    height: 1px !important;
  }

  .fkv38-step:last-child .fkv38-step-line {
    display: none !important;
  }

  .fkv38-step-copy {
    gap: 1px !important;
  }

  .fkv38-step-copy strong {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .fkv38-step-copy small {
    display: none !important;
  }
}

/* -----------------------------
   CART — desktop/tablet remains a table; phone becomes native cards.
   ----------------------------- */
@media (max-width: 900px) {
  .woocommerce-cart .woocommerce {
    padding: 20px 0 54px !important;
  }

  .woocommerce-cart form.woocommerce-cart-form {
    overflow: visible !important;
  }

  .woocommerce-cart form.woocommerce-cart-form table.shop_table.cart {
    min-width: 0 !important;
    width: 100% !important;
  }

  .woocommerce-cart .cart-collaterals {
    margin-top: 26px !important;
  }
}

@media (max-width: 680px) {
  .woocommerce-cart .fkv3-standard-page .fkv3-narrow {
    width: calc(100% - 22px) !important;
  }

  .woocommerce-cart form.woocommerce-cart-form table.shop_table.cart {
    display: block !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .woocommerce-cart table.shop_table.cart thead {
    display: none !important;
  }

  .woocommerce-cart table.shop_table.cart tbody {
    display: block !important;
    width: 100% !important;
  }

  .woocommerce-cart table.shop_table.cart tr.cart_item {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 40px 68px minmax(0, 1fr) !important;
    gap: 0 10px !important;
    margin: 0 0 12px !important;
    padding: 14px !important;
    border: 1px solid #e1e5df !important;
    border-radius: 13px !important;
    background: #fff !important;
  }

  .woocommerce-cart table.shop_table.cart tr.cart_item > td {
    width: auto !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .woocommerce-cart table.shop_table.cart tr.cart_item > td::before {
    float: none !important;
    margin: 0 !important;
    color: #747d77 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
  }

  .woocommerce-cart table.shop_table.cart .product-remove {
    grid-column: 1 !important;
    grid-row: 1 !important;
    padding: 0 !important;
    justify-content: flex-start !important;
  }

  .woocommerce-cart table.shop_table.cart .product-remove::before,
  .woocommerce-cart table.shop_table.cart .product-thumbnail::before,
  .woocommerce-cart table.shop_table.cart .product-name::before {
    display: none !important;
  }

  .woocommerce-cart table.shop_table.cart .product-remove a.remove {
    width: 32px !important;
    height: 32px !important;
  }

  .woocommerce-cart table.shop_table.cart .product-thumbnail {
    grid-column: 2 !important;
    grid-row: 1 !important;
    padding: 0 !important;
  }

  .woocommerce-cart table.shop_table.cart .product-thumbnail img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 8px !important;
  }

  .woocommerce-cart table.shop_table.cart .product-name {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-items: flex-start !important;
    padding: 0 !important;
  }

  .woocommerce-cart table.shop_table.cart .product-name a {
    font-size: 13.5px !important;
    line-height: 1.42 !important;
    overflow-wrap: anywhere !important;
  }

  .woocommerce-cart table.shop_table.cart .product-price,
  .woocommerce-cart table.shop_table.cart .product-quantity,
  .woocommerce-cart table.shop_table.cart .product-subtotal {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 0 !important;
    justify-content: space-between !important;
    border-top: 1px solid #edf0ec !important;
    text-align: right !important;
    font-size: 13px !important;
  }

  .woocommerce-cart table.shop_table.cart .product-price {
    margin-top: 14px !important;
  }

  .woocommerce-cart table.shop_table.cart .product-price::before {
    content: "Price" !important;
  }

  .woocommerce-cart table.shop_table.cart .product-quantity::before {
    content: "Quantity" !important;
  }

  .woocommerce-cart table.shop_table.cart .product-subtotal::before {
    content: "Subtotal" !important;
  }

  .woocommerce-cart table.shop_table.cart .quantity,
  .woocommerce-cart table.shop_table.cart .fkv38-cart-qty {
    margin-left: auto !important;
  }

  .woocommerce-cart table.shop_table.cart tr:not(.cart_item) td.actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 10px !important;
    padding: 12px !important;
    border: 1px solid #e1e5df !important;
    border-radius: 12px !important;
    background: #fafbf9 !important;
  }

  .woocommerce-cart table.shop_table.cart td.actions .coupon {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
  }

  .woocommerce-cart table.shop_table.cart td.actions .coupon .input-text {
    width: 100% !important;
    min-width: 0 !important;
  }

  .woocommerce-cart table.shop_table.cart td.actions > .button {
    width: 100% !important;
    float: none !important;
  }

  .woocommerce-cart .cart-collaterals {
    display: block !important;
    margin-top: 24px !important;
  }

  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
  }

  .woocommerce-cart .cart_totals h2 {
    margin-bottom: 12px !important;
    font-size: 25px !important;
  }

  .woocommerce-cart .cart_totals table.shop_table th,
  .woocommerce-cart .cart_totals table.shop_table td {
    padding: 13px 14px !important;
    font-size: 13px !important;
  }

  .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    min-height: 50px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .woocommerce-cart table.shop_table.cart tr.cart_item {
    grid-template-columns: 34px 58px minmax(0, 1fr) !important;
    gap: 0 8px !important;
    padding: 12px !important;
  }

  .woocommerce-cart table.shop_table.cart .product-thumbnail img {
    width: 56px !important;
    height: 56px !important;
  }

  .woocommerce-cart table.shop_table.cart .product-name a {
    font-size: 12.5px !important;
  }

  .woocommerce-cart table.shop_table.cart td.actions .coupon {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-cart table.shop_table.cart td.actions .coupon .button {
    width: 100% !important;
  }
}

/* -----------------------------
   CHECKOUT — no horizontal scroll, one task per card on phones.
   ----------------------------- */
@media (max-width: 900px) {
  .woocommerce-checkout .woocommerce {
    padding: 20px 0 56px !important;
  }

  .woocommerce-checkout .woocommerce form.checkout {
    display: block !important;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    width: 100% !important;
    min-width: 0 !important;
  }

  .woocommerce-checkout #order_review_heading {
    margin: 30px 0 12px !important;
  }

  .woocommerce-checkout #order_review {
    margin: 0 !important;
  }
}

@media (max-width: 680px) {
  .woocommerce-checkout .fkv3-standard-page .fkv3-narrow {
    width: calc(100% - 22px) !important;
  }

  .woocommerce-checkout #customer_details .col-1 {
    padding: 18px !important;
    border-radius: 13px !important;
  }

  .woocommerce-checkout .woocommerce-billing-fields > h3,
  .woocommerce-checkout #order_review_heading {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .woocommerce-checkout .woocommerce-billing-fields > h3 {
    margin-bottom: 20px !important;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .woocommerce-checkout .woocommerce form .form-row input.input-text,
  .woocommerce-checkout .woocommerce form .form-row textarea,
  .woocommerce-checkout .woocommerce form .form-row select,
  .woocommerce-checkout .select2-container .select2-selection {
    min-height: 50px !important;
    padding-inline: 14px !important;
    font-size: 16px !important; /* avoids iOS zoom */
    line-height: 50px !important;
  }

  .woocommerce-checkout #order_review {
    padding: 16px !important;
    overflow: visible !important;
    border-radius: 13px !important;
  }

  .woocommerce-checkout #order_review table.shop_table {
    width: 100% !important;
    table-layout: fixed !important;
    margin-bottom: 16px !important;
  }

  .woocommerce-checkout #order_review table.shop_table th,
  .woocommerce-checkout #order_review table.shop_table td {
    padding: 11px 10px !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    overflow-wrap: anywhere !important;
  }

  .woocommerce-checkout #order_review table.shop_table th.product-name,
  .woocommerce-checkout #order_review table.shop_table td.product-name {
    width: 68% !important;
  }

  .woocommerce-checkout #order_review table.shop_table th.product-total,
  .woocommerce-checkout #order_review table.shop_table td.product-total {
    width: 32% !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  .woocommerce-checkout #payment {
    border-radius: 10px !important;
  }

  .woocommerce-checkout #payment ul.payment_methods li {
    padding: 14px !important;
  }

  .woocommerce-checkout #payment ul.payment_methods li > label {
    max-width: calc(100% - 26px) !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    font-size: 13px !important;
  }

  .woocommerce-checkout #payment ul.payment_methods li > label img,
  .woocommerce-checkout #payment .payment_method_paypal img {
    max-width: 96px !important;
    max-height: 25px !important;
  }

  .woocommerce-checkout #payment div.payment_box {
    margin-top: 12px !important;
    padding: 12px !important;
    font-size: 12.5px !important;
  }

  .woocommerce-checkout #payment .place-order {
    padding: 16px 14px 14px !important;
  }

  .woocommerce-checkout #payment .woocommerce-privacy-policy-text {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  .woocommerce-checkout #place_order {
    width: 100% !important;
    min-height: 50px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 420px) {
  .woocommerce-checkout #customer_details .col-1,
  .woocommerce-checkout #order_review {
    padding: 14px !important;
  }

  .woocommerce-checkout #order_review table.shop_table th,
  .woocommerce-checkout #order_review table.shop_table td {
    padding: 10px 8px !important;
    font-size: 12px !important;
  }

  .woocommerce-checkout #order_review table.shop_table th.product-name,
  .woocommerce-checkout #order_review table.shop_table td.product-name {
    width: 64% !important;
  }

  .woocommerce-checkout #order_review table.shop_table th.product-total,
  .woocommerce-checkout #order_review table.shop_table td.product-total {
    width: 36% !important;
  }
}

/* -----------------------------
   ORDER RECEIVED / DONE — keep completion page readable on mobile.
   ----------------------------- */
.woocommerce-order-received .woocommerce-order {
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 680px) {
  .woocommerce-order-received .woocommerce-order-overview {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    border: 1px solid #e1e5df !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .woocommerce-order-received .woocommerce-order-overview li {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid #e8ebe7 !important;
    font-size: 10px !important;
  }

  .woocommerce-order-received .woocommerce-order-overview li:last-child {
    border-bottom: 0 !important;
  }

  .woocommerce-order-received table.shop_table {
    width: 100% !important;
    table-layout: fixed !important;
  }

  .woocommerce-order-received table.shop_table th,
  .woocommerce-order-received table.shop_table td {
    padding: 10px !important;
    font-size: 12px !important;
    overflow-wrap: anywhere !important;
  }
}


/* -------------------------------------------------------------------------
   FontKong Newborn v3.4.1 — centered checkout progress alignment
------------------------------------------------------------------------- */
.fkv38-checkout-steps-wrap > .fkv3-shell {
  display: flex;
  justify-content: center;
}

.fkv38-checkout-steps {
  width: min(100%, 980px) !important;
  margin-inline: auto !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: start !important;
}

.fkv38-step {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  text-align: center !important;
  min-width: 0 !important;
}

.fkv38-step-dot {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
  margin: 0 auto !important;
}

.fkv38-step-line {
  display: block !important;
  top: 22px !important;
  left: calc(50% + 22px) !important;
  width: calc(100% - 44px) !important;
  height: 1px !important;
}

.fkv38-step:last-child .fkv38-step-line {
  display: none !important;
}

.fkv38-step-copy {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 3px !important;
  text-align: center !important;
}

.fkv38-step-copy strong,
.fkv38-step-copy small {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

@media (max-width: 680px) {
  .fkv38-checkout-steps {
    width: 100% !important;
    padding-inline: 2px !important;
  }

  .fkv38-step {
    gap: 6px !important;
  }

  .fkv38-step-dot {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  .fkv38-step-line {
    top: 17px !important;
    left: calc(50% + 17px) !important;
    width: calc(100% - 34px) !important;
  }

  .fkv38-step-copy strong {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .fkv38-step-copy small {
    font-size: 8.5px !important;
    line-height: 1.25 !important;
  }
}


/* -------------------------------------------------------------------------
   FontKong Newborn v3.4.4 — deterministic latest order + curated popular tab
------------------------------------------------------------------------- */
.fkv3-catalog-heading.has-tabs {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.fkv344-catalog-tabs {
  display: inline-flex;
  align-items: stretch;
  gap: 5px;
  padding: 4px;
  border: 1px solid #e0e4df;
  border-radius: 10px;
  background: #f5f6f2;
}

.fkv344-catalog-tabs a {
  min-width: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 9px 13px;
  border-radius: 7px;
  color: #667069 !important;
  text-decoration: none !important;
  transition: background .16s ease, color .16s ease;
}

.fkv344-catalog-tabs a span {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.fkv344-catalog-tabs a small {
  color: #8b938e;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.25;
}

.fkv344-catalog-tabs a.is-active {
  background: #202523;
  color: #fff !important;
}

.fkv344-catalog-tabs a.is-active small {
  color: #bfc7c1;
}

@media (max-width: 760px) {
  .fkv3-catalog-heading.has-tabs {
    display: grid;
    align-items: stretch;
    gap: 18px;
  }

  .fkv344-catalog-tabs {
    width: 100%;
  }

  .fkv344-catalog-tabs a {
    min-width: 0;
    flex: 1 1 50%;
  }
}

@media (max-width: 420px) {
  .fkv344-catalog-tabs a {
    padding: 9px 10px;
  }
  .fkv344-catalog-tabs a small {
    font-size: 8px;
  }
}
