:root {
  --tf-accent: #0675ff;
  --tf-wrap: 980px;
  --tf-ink: #090b10;
  --tf-muted: #596071;
  --tf-line: #e7eaf0;
  --tf-soft: #f6f9ff;
  --tf-card: #ffffff;
  --tf-radius: 8px;
  --tf-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  --tf-header-height: 84px;
  --tf-section-space: 24px;
  --tf-section-gap: 0px;
  --tf-menu-bg: #0675ff;
  --tf-menu-text: #ffffff;
  --tf-post-category-size: 10px;
  --tf-post-meta-size: 9px;
  --tf-post-category-title-gap: 4px;
  --tf-post-title-meta-gap: 10px;
  --tf-featured-post-title-size: 20px;
  --tf-compact-post-title-size: 18px;
  --tf-related-post-title-size: 18px;
  --tf-single-post-title-size: 42px;
  --tf-post-content-font-size: 16px;
  --tf-post-paragraph-margin: 14px;
  --tf-social-button-height: 42px;
  --tf-social-button-gap: 10px;
  --tf-social-icon-size: 18px;
  --tf-social-min-width: 164px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7f7f7;
  color: var(--tf-ink);
  font-family: "Josefin Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}
body, button, input, textarea, select { font-family: "Josefin Sans", Arial, sans-serif; }
a { color: var(--tf-accent); text-decoration: none; }
a:hover { text-decoration: none; }
a:focus,
a:active {
  background-color: transparent;
  text-decoration: none;
}
a:not(.button):not(.wp-block-button__link):not(.shop-link):not(.cart-link):not(.tool-card):active {
  color: var(--tf-accent);
}
img { max-width: 100%; height: auto; display: block; }
svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.12; font-weight: 700; letter-spacing: 0; }
h1 { font-size: clamp(1.85rem, 3.45vw, 2.62rem); }
h2 { font-size: clamp(1.48rem, 2.7vw, 1.9rem); }
h3 { font-size: 1.14rem; }
p { margin: 0 0 14px; color: #2f3542; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.site-shell {
  width: min(var(--tf-wrap), calc(100% - 34px));
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--tf-shadow);
}

.site-main { min-height: 520px; }
.site-header {
  min-height: var(--tf-header-height);
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-bottom: 1px solid var(--tf-line);
  background: #fff;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #05070b;
  background: transparent;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .16s ease, transform .16s ease;
}
.site-brand:hover,
.site-brand:focus,
.site-brand:active {
  background: transparent;
  text-decoration: none;
}
.site-brand:active {
  color: var(--tf-accent);
  opacity: .72;
  transform: scale(.985);
}
.custom-logo-link.site-brand {
  gap: 0;
  padding-right: 0;
  background: transparent;
}
.custom-logo-link img {
  width: auto;
  max-width: 190px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.icon-button, .cart-link {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #05070b;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}
.cart-link { color: #05070b; }
.shop-link {
  min-width: 72px;
  height: 38px;
  padding: 0 18px;
  border: 1px solid var(--tf-accent);
  border-radius: 8px;
  color: var(--tf-accent);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-count {
  position: absolute;
  right: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--tf-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.cart-count.is-empty { display: none; }
.cart-text { display: none; }
.menu-toggle.is-open svg { opacity: 0; }
.menu-toggle.is-open::before,
.menu-toggle.is-open::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.menu-toggle.is-open::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.is-open::after { transform: translate(-50%, -50%) rotate(-45deg); }

.primary-nav {
  display: none;
  padding: 10px 24px 16px;
  border-bottom: 1px solid var(--tf-line);
  background: var(--tf-menu-bg);
  color: var(--tf-menu-text);
}
.primary-nav.is-open { display: block; }
.primary-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.primary-nav li { border-bottom: 1px solid rgba(255, 255, 255, .22); }
.primary-nav li:last-child { border-bottom: 0; }
.primary-nav a { color: var(--tf-menu-text); font-weight: 500; display: block; padding: 11px 0; }
.primary-nav .sub-menu { display: grid; padding: 0 0 8px 18px; }
.primary-nav .sub-menu li { border-bottom: 0; }
.primary-nav .sub-menu a { color: var(--tf-menu-text); opacity: .84; padding: 7px 0; font-size: .95rem; }
.search-panel {
  padding: 18px 30px;
  border-bottom: 1px solid var(--tf-line);
  background: #fff;
}
.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.search-form label { flex: 1; }
.search-field {
  width: 100%;
  height: 52px;
  border: 0;
  padding: 0 18px;
  outline: 0;
  font-size: 1rem;
}

.home-section, .page-block, .article-page, .related-posts, .comments-shell, .author-box {
  padding: var(--tf-section-space) 32px;
}
.home-section {
  padding-top: calc(var(--tf-section-space) * .9);
  padding-bottom: calc(var(--tf-section-space) * .9);
}
.site-main > * + * {
  margin-top: var(--tf-section-gap);
}
.home-section + .home-section, .page-block + .page-block {
  border-top: 1px solid var(--tf-line);
}
.section-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  text-align: center;
}
.tools-section .section-heading { margin-bottom: 1px; }
.home-section:not(.latest-posts):not(.tools-section) .section-heading { margin-bottom: 2px; }
.section-heading a { font-size: 1rem; font-weight: 600; }
.latest-posts {
  padding-bottom: calc(var(--tf-section-space) * .99);
}
.latest-posts > h2 { text-align: center; margin-bottom: 16px; }
.latest-posts .load-posts {
  min-width: 168px;
  height: 37px;
  margin-top: 39px;
  padding: 0 22px;
  font-size: .8rem;
  gap: 11px;
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 12px;
}
.tool-card {
  flex: 0 1 calc((100% - 60px) / 6);
  width: 100%;
  max-width: calc((100% - 60px) / 6);
  min-height: 144px;
  border: 1px solid #dfe4eb;
  border-radius: var(--tf-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--tf-ink);
  background: #fff;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.06);
  position: relative;
  padding: 14px 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tool-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15, 23, 42, .1); }
.tool-card.is-hidden { display: none; }
.tool-icon {
  width: clamp(42px, 5vw, 54px);
  height: clamp(42px, 5vw, 54px);
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--tool-color), color-mix(in srgb, var(--tool-color) 72%, #001d68));
}
.tool-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.tool-icon svg { width: 62%; height: 62%; stroke-width: 2; }
.tool-title { max-width: 150px; color: #070a10; text-align: center; font-size: clamp(.78rem, 1.15vw, .95rem); font-weight: 700; line-height: 1.18; }
.tool-desc {
  max-width: 170px;
  margin-top: -6px;
  color: var(--tf-muted);
  font-size: clamp(.68rem, .95vw, .78rem);
  line-height: 1.28;
  text-align: center;
}
.spark { position: absolute; color: color-mix(in srgb, var(--tool-color) 25%, #fff); font-size: 18px; }
.spark-a { left: 36px; top: 22px; }
.spark-b { right: 40px; top: 24px; }
.outline-button {
  min-width: 210px;
  height: 46px;
  margin: 24px auto 0;
  padding: 0 28px;
  border: 2px solid var(--tf-accent);
  border-radius: var(--tf-radius);
  color: var(--tf-accent);
  background: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
}
.outline-button[hidden] { display: none; }
.outline-button.is-complete {
  border-color: #d9dee7;
  color: var(--tf-muted);
  cursor: default;
}

.featured-post-list { display: grid; gap: 17px; }
.featured-post {
  display: grid;
  grid-template-columns: 275px 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tf-line);
}
.featured-post:last-child { border-bottom: 0; }
.featured-thumb img, .thumb-placeholder {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--tf-radius);
  background: linear-gradient(135deg, #021668, #0879ff);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 18px;
}
.post-category, .post-category a, .product-cat, .product-cat a {
  color: var(--tf-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.single-post-view > .post-category,
.single-post-view > .post-category a {
  font-size: var(--tf-post-category-size);
  line-height: 1.2;
  margin-bottom: var(--tf-post-category-title-gap);
}
.featured-post h3 {
  font-size: var(--tf-featured-post-title-size);
  font-weight: 700;
  margin-bottom: var(--tf-post-title-meta-gap);
}
.compact-post h3 {
  font-size: var(--tf-compact-post-title-size);
  font-weight: 700;
  margin-bottom: var(--tf-post-title-meta-gap);
}
.featured-post h3 a, .compact-post h3 a { color: var(--tf-ink); font-weight: 700; }
.latest-blogs .featured-copy {
  display: block;
}
.latest-blogs .featured-copy .post-category,
.latest-blogs .featured-copy h3,
.latest-blogs .featured-copy .post-meta {
  margin: 0;
}
.latest-blogs .featured-copy .post-category {
  margin-bottom: var(--tf-post-category-title-gap);
}
.latest-blogs .featured-copy h3 {
  margin-bottom: var(--tf-post-title-meta-gap);
}
.home-section .featured-copy h3,
.home-section .compact-post h3 {
  margin-bottom: var(--tf-post-title-meta-gap);
}
.home-section .post-category,
.home-section .post-category a {
  font-size: var(--tf-post-category-size);
  line-height: 1.15;
  margin-bottom: var(--tf-post-category-title-gap);
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--tf-muted);
}
.post-meta span { display: inline-flex; align-items: center; gap: 8px; }
.post-meta svg { width: 16px; height: 16px; }
.featured-post .post-meta,
.compact-post .post-meta {
  gap: 8px;
  font-size: var(--tf-post-meta-size);
  line-height: 1.1;
}
.featured-post .post-meta span,
.compact-post .post-meta span {
  gap: 4px;
}
.featured-post .post-meta svg,
.compact-post .post-meta svg {
  width: 8px;
  height: 8px;
}
.single-post-view .post-meta {
  gap: 10px;
  font-size: .78rem;
  line-height: 1.2;
}
.single-post-view .post-meta span { gap: 5px; }
.single-post-view .post-meta svg { width: 12px; height: 12px; }
.compact-post-list { display: grid; gap: 16px; }
.compact-post {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 14px;
  align-items: center;
}
.compact-thumb img, .compact-thumb .thumb-placeholder {
  width: 125px;
  aspect-ratio: 1.45 / 1;
  border-radius: var(--tf-radius);
  object-fit: cover;
  font-size: .85rem;
}
.compact-post h3 { margin-bottom: var(--tf-post-title-meta-gap); }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--tf-muted);
  font-size: .96rem;
}
.breadcrumbs a { font-weight: 600; }
.single-post-view h1 {
  font-size: clamp(1.85rem, 4vw, var(--tf-single-post-title-size));
  font-weight: 700;
}
.article-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--tf-radius);
  margin-bottom: 28px;
}
.single-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 4px 0 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--tf-line);
}
.share-row,
.social-row {
  display: flex;
  align-items: center;
  gap: var(--tf-social-button-gap);
}
.share-row {
  color: #252a35;
}
.share-pill {
  min-width: var(--tf-social-min-width);
  min-height: var(--tf-social-button-height);
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e3e6ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #fff;
  color: #05070b;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  white-space: nowrap;
  transition: border-color .16s ease, color .16s ease, transform .16s ease;
}
.share-pill:hover,
.share-pill:focus,
.share-pill:active {
  background: #fff;
  color: var(--tf-accent);
  border-color: #d8dde6;
  text-decoration: none;
}
.share-pill:active {
  transform: translateY(1px);
}
.share-pill-icon {
  height: var(--tf-social-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tf-accent);
  flex: 0 0 auto;
}
.share-pill-icon::after {
  content: "";
  width: 1px;
  height: 18px;
  margin-left: 17px;
  background: #e3e6ec;
}
.share-pill svg,
.share-pill img {
  width: var(--tf-social-icon-size);
  height: var(--tf-social-icon-size);
  object-fit: contain;
}
.share-pill-label {
  min-width: 0;
}
.share-facebook .share-pill-icon { color: #4267b2; }
.share-whatsapp .share-pill-icon { color: #25d366; }
.share-instagram .share-pill-icon { color: #e4405f; }
.share-youtube .share-pill-icon { color: #ff0000; }
.share-shop .share-pill-icon { color: var(--tf-accent); }
.share-mail .share-pill-icon { color: #596071; }
.share-copy .share-pill-icon,
.share-link .share-pill-icon { color: #05070b; }
.share-row button.share-pill {
  font-family: inherit;
}
.post-share-row {
  justify-content: flex-start;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--tf-line);
}
.post-share-row .share-pill {
  min-width: 104px;
  min-height: 34px;
  padding: 0 10px;
  gap: 9px;
  font-size: .76rem;
}
.post-share-row .share-pill-icon {
  height: 14px;
}
.post-share-row .share-pill-icon::after {
  height: 14px;
  margin-left: 9px;
}
.post-share-row .share-pill svg,
.post-share-row .share-pill img {
  width: 14px;
  height: 14px;
}
.entry-content {
  color: #2f3542;
  font-size: var(--tf-post-content-font-size);
}
.entry-content p { margin-bottom: var(--tf-post-paragraph-margin); }
.entry-content h2, .entry-content h3 { margin-top: 28px; color: var(--tf-ink); }
.entry-content img { border-radius: var(--tf-radius); }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid var(--tf-line); padding: 12px; }

.related-posts { border-top: 1px solid var(--tf-line); }
.related-posts h2 { font-size: 1.52rem; font-weight: 700; }
.related-posts h2 span { color: var(--tf-accent); }
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.related-card {
  color: var(--tf-ink);
  padding-bottom: 0;
}
.related-card .post-category { display: none; }
.related-card h3 {
  font-size: var(--tf-related-post-title-size);
  font-weight: 700;
  margin-bottom: var(--tf-post-title-meta-gap);
}
.related-card h3 a {
  color: var(--tf-ink);
  font-weight: 700;
}

.comments-shell {
  border-top: 1px solid var(--tf-line);
  background: #f6faff;
}
.comments-area {
  padding: 18px;
  border: 1px solid #d8eaff;
  border-radius: var(--tf-radius);
  background: #f6faff;
}
.comments-title-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.comment-form {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}
.comment-form p {
  margin: 0;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-comment textarea {
  width: 100%;
  border: 1px solid #cfe2ff;
  border-radius: var(--tf-radius);
  background: #fff;
  color: var(--tf-ink);
  font-size: 1rem;
  outline: 0;
  box-shadow: none;
}
.comment-form-author input,
.comment-form-email input {
  min-height: 42px;
  padding: 0 14px;
}
.comment-form-comment textarea {
  min-height: 88px;
  padding: 14px;
  resize: vertical;
}
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-comment textarea:focus {
  border-color: var(--tf-accent);
}
.comment-form-url {
  display: none;
}
.comment-notes,
.logged-in-as {
  color: var(--tf-muted);
  font-size: .88rem;
}
.comment-form .form-submit {
  margin-top: 4px;
}
.form-submit .submit, .button, button.single_add_to_cart_button {
  min-height: 46px;
  border: 0;
  border-radius: var(--tf-radius);
  background: var(--tf-accent);
  color: #fff;
  padding: 0 18px;
  font-weight: 600;
  cursor: pointer;
}
.comment-list { padding-left: 0; list-style: none; }
.comment-body { padding: 16px 0; border-bottom: 1px solid var(--tf-line); }
.author-box {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 32px 32px;
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  background: #fff;
}
.author-box img { border-radius: 50%; }
.author-box h2 { font-size: 1.2rem; margin-bottom: 4px; font-weight: 700; }
.author-box h3 { color: var(--tf-accent); margin-bottom: 8px; }

.woo-page h1 { margin-bottom: 10px; }
.shop-subtitle { color: var(--tf-muted); margin-bottom: 28px; }
.shop-controls {
  display: grid;
  grid-template-columns: 1.25fr .6fr .55fr;
  gap: 18px;
  margin-bottom: 28px;
}
.shop-controls .search-form, .woocommerce-product-search {
  display: flex;
  border: 1px solid #d9dee7;
  border-radius: var(--tf-radius);
  overflow: hidden;
}
.woocommerce-product-search input[type="search"] {
  flex: 1;
  border: 0;
  min-height: 52px;
  padding: 0 16px;
  outline: 0;
  font-size: 1rem;
}
.woocommerce-product-search button {
  width: 52px;
  border: 0;
  background: transparent;
  font-size: 0;
}
.woocommerce-product-search button::before { content: "⌕"; font-size: 25px; color: #05070b; }
.select-like, .woocommerce-ordering select {
  min-height: 52px;
  width: 100%;
  border: 1px solid #d9dee7;
  border-radius: var(--tf-radius);
  background: #fff;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #161a22;
  font-weight: 500;
  font-size: 1rem;
}
.product-cat-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: var(--tf-shop-cat-gap, 6px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tf-line);
  margin-bottom: 22px;
}
.product-cat-strip a {
  min-height: var(--tf-shop-cat-size, 50px);
  border-radius: var(--tf-radius);
  color: var(--tf-ink);
  display: grid;
  place-items: center;
  gap: 3px;
  text-align: center;
  font-weight: 500;
  font-size: .78rem;
  line-height: 1.15;
  padding: 6px 4px;
}
.product-cat-strip a.active {
  background: var(--tf-soft);
  color: var(--tf-accent);
}
.product-cat-strip svg { width: 19px; height: 19px; stroke-width: 2.1; }
.woocommerce-result-count { color: var(--tf-muted); margin: 0 0 22px; }
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
  padding: 0;
  margin: 0;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product {
  float: none;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch;
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 0 0 10px !important;
  position: relative;
  text-align: center;
  box-shadow: none;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  color: inherit;
  display: block;
  text-align: center;
  width: 100%;
}
.woocommerce ul.products li.product .product-media { display: grid; place-items: center; position: relative; margin-bottom: 8px; }
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: var(--tf-radius);
  margin: 0 auto;
}
.badge {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  color: #1f2630;
  border-radius: 6px;
  padding: 5px 13px;
  border: 1px solid #dfe4eb;
  background: #fff;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.badge.sale, .badge.new { background: #fff; }
.woocommerce-loop-product__title {
  color: var(--tf-accent);
  font-size: 1rem !important;
  line-height: 1.2 !important;
  font-weight: 700;
  min-height: 0;
  padding: 0 !important;
  margin: 0 0 1px !important;
}
.product-cat { display: none; }
.product-rating { display: flex; justify-content: center; min-height: 0; margin: 0; }
.product-rating:empty { display: none; }
.star-rating, .woocommerce .star-rating {
  color: #ffb800;
  font-size: .88rem;
  margin: 0 auto 6px !important;
}
.woocommerce ul.products li.product .product-price { margin: 0 !important; line-height: 1; }
.product-price .price, .woocommerce ul.products li.product .price {
  color: var(--tf-ink);
  display: block;
  font-size: .84rem;
  font-weight: 600;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price del { color: #1f2630; opacity: 1; font-weight: 400; margin-right: 8px; }
.product-price .price ins,
.woocommerce ul.products li.product .price ins,
.woocommerce-cart .wc-block-grid__product-price ins {
  text-decoration: none;
}
.woocommerce ul.products li.product .product-cart-float {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1px !important;
}
.woocommerce ul.products li.product .product-cart-float .button {
  width: min(128px, 100%) !important;
  min-width: 0 !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  padding: 0 17px !important;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .86rem !important;
  line-height: 1.2;
  font-weight: 600;
  background: #2e363d !important;
  border: 1px solid #2e363d !important;
  color: #fff !important;
  box-shadow: none;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  flex: 0 0 auto;
}
.woocommerce ul.products li.product .product-cart-float .button::before,
.woocommerce ul.products li.product .product-cart-float .button::after {
  content: none;
}
.woocommerce ul.products li.product .product-cart-float .added_to_cart {
  display: none !important;
}
.woocommerce-cart .cross-sells ul.products,
.woocommerce-cart .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px 18px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-cart .wc-block-grid__products::before,
.woocommerce-cart .wc-block-grid__products::after { display: none; }
.woocommerce-cart .wc-block-grid__product {
  float: none;
  width: 100% !important;
  border: 0 !important;
  max-width: none !important;
  justify-self: stretch;
  margin: 0 !important;
  border-radius: 0;
  background: #f8fafc !important;
  padding: 0 0 10px !important;
  position: relative;
  text-align: center;
  box-shadow: none;
}
.woocommerce-cart .cross-sells ul.products li.product {
  background: #f8fafc !important;
}
.woocommerce-cart .wc-block-grid__product-link {
  color: inherit;
  display: block;
  text-align: center;
  width: 100%;
  text-decoration: none;
}
.woocommerce-cart .wc-block-grid__product-image {
  margin: 0 0 8px !important;
  position: relative;
}
.woocommerce-cart .wc-block-grid__product-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: var(--tf-radius);
}
.woocommerce-cart .wc-block-grid__product-title {
  color: var(--tf-accent);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  min-height: 0;
  padding: 0 !important;
  margin: 0 0 1px !important;
}
.woocommerce-cart .wc-block-grid__product-price {
  color: var(--tf-ink);
  font-size: .84rem;
  line-height: 1;
  font-weight: 600;
  margin: 0 !important;
}
.woocommerce-cart .wc-block-grid__product-add-to-cart {
  margin-top: 11.5px;
}
.woocommerce-cart .wc-block-grid__product-add-to-cart .wp-block-button__link {
  width: min(128px, 100%) !important;
  min-width: 0 !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  padding: 0 17px !important;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #2e363d !important;
  border: 1px solid #2e363d !important;
  color: #fff !important;
  font-size: .86rem !important;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
}
.woocommerce-cart .cross-sells ul.products li.product .woocommerce-loop-product__title {
  margin-bottom: 1px !important;
}
.woocommerce-cart .cross-sells ul.products li.product .product-cart-float {
  margin-top: 11.5px !important;
}
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  height: 42px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--tf-ink);
  background: #fff;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--tf-accent);
  color: #fff;
}
.single-product-shell div.product {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 34px;
}
.single-product-shell div.product div.images, .single-product-shell div.product div.summary {
  float: none;
  width: auto;
}
.single-product-shell .product_title { font-size: 2.35rem; font-weight: 700; }
.single-product-shell .summary .price { color: var(--tf-ink); font-size: 1.45rem; font-weight: 600; }

.site-footer {
  border-top: 1px solid var(--tf-line);
  width: 100%;
  padding: 34px 24px 40px;
  text-align: center;
}
.site-footer .site-brand { justify-content: center; font-size: 2rem; margin-bottom: 16px; }
.footer-copy {
  max-width: 420px;
  margin: 0 auto 20px;
  color: var(--tf-muted);
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: calc((var(--tf-social-min-width) * 3) + 16px);
  overflow: visible;
  padding: 0;
  margin: 0 auto 20px;
}
.footer-social-pill {
  flex: 0 1 calc((100% - 16px) / 3);
  width: auto;
  max-width: var(--tf-social-min-width);
  min-width: 0;
  min-height: 34px;
  padding: 0 9px;
  gap: 8px;
  font-size: .74rem;
  justify-content: center;
  text-align: center;
}
.footer-social-pill .share-pill-icon {
  height: 14px;
}
.footer-social-pill .share-pill-icon::after {
  height: 14px;
  margin-left: 8px;
}
.footer-social-pill svg,
.footer-social-pill img {
  width: 14px;
  height: 14px;
}
.footer-social-pill .share-pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-menu { display: flex; justify-content: center; gap: 18px; list-style: none; margin: 0 0 14px; padding: 0; }
.copyright { color: var(--tf-muted); margin: 0; }

.nav-links, .woocommerce-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.page-numbers {
  min-width: 42px;
  height: 42px;
  border: 1px solid #dfe4eb;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--tf-ink);
}
.page-numbers.current { background: var(--tf-accent); color: #fff; border-color: var(--tf-accent); }

@media (max-width: 900px) {
  body { background: #fff; }
  .site-shell { width: 100%; border-radius: 0; border-left: 0; border-right: 0; box-shadow: none; }
  .site-header { min-height: min(var(--tf-header-height), 96px); padding: 0 20px; gap: 10px; grid-template-columns: 40px 1fr auto; }
  .site-brand { font-size: 1.55rem; gap: 9px; }
  .custom-logo-link img { max-width: 168px; max-height: 46px; }
  .tools-grid { gap: 10px; }
  .tool-card {
    flex-basis: calc((100% - 40px) / 5);
    max-width: calc((100% - 40px) / 5);
  }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; gap: 14px; }
  .shop-controls { grid-template-columns: 1fr; }
  .product-cat-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .single-meta-row { align-items: flex-start; flex-direction: column; }
  .single-product-shell div.product { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  body { font-size: 14px; }
  .home-section, .page-block, .article-page, .related-posts, .comments-shell, .author-box { padding: max(20px, calc(var(--tf-section-space) * .75)) 24px; }
  .site-header { padding: 0 18px; }
  .search-toggle { display: none; }
  .site-brand { font-size: 1.42rem; }
  .tools-grid { gap: 8px; }
  .tool-card {
    flex-basis: calc((100% - 16px) / 3);
    max-width: calc((100% - 16px) / 3);
    min-height: 116px;
    padding: 10px 6px;
    gap: 8px;
  }
  .tool-icon { width: 40px; height: 40px; border-radius: 11px; }
  .tool-icon svg { width: 25px; height: 25px; }
  .tool-title { font-size: .72rem; line-height: 1.14; }
  .tool-desc { font-size: .62rem; line-height: 1.18; }
  .spark-a { left: 25px; top: 18px; }
  .spark-b { right: 25px; top: 18px; }
  .compact-post { grid-template-columns: 112px 1fr; gap: 14px; }
  .compact-thumb img, .compact-thumb .thumb-placeholder { width: 112px; }
  .featured-post h3 { font-size: min(var(--tf-featured-post-title-size), 21px); }
  .post-meta { gap: 12px; font-size: .9rem; }
  .featured-post .post-meta, .compact-post .post-meta { gap: 8px; font-size: .55rem; }
  .related-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products, .woocommerce-cart .wc-block-grid__products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 17px 14px !important; }
  .product-cat-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--tf-shop-cat-gap, 6px); }
  .product-cart-float { margin-top: 1px; }
  .post-share-row { justify-content: flex-start; }
  .social-row { max-width: 320px; }
  .footer-social-pill { flex-basis: calc((100% - 16px) / 3); }
  .post-share-row .share-pill { min-width: 96px; padding: 0 8px; gap: 7px; font-size: .72rem; }
  .author-box { grid-template-columns: 1fr; margin: 0 24px 24px; text-align: center; }
  .author-box img { margin: 0 auto; }
}
