/* PSDFA Market core: design system, header, shared components, pages and footer. */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--psdfa-bg);
  color: var(--psdfa-ink);
  font-family: var(--psdfa-font);
  font-size: var(--psdfa-base-font-size);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body.psdfa-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,input,select,textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psdfa-container {
  width: 100%;
  max-width: var(--psdfa-container-max);
  margin-inline: auto;
  padding-inline: var(--psdfa-gutter);
}

.psdfa-site-content {
  min-height: 55vh;
}

.psdfa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8a7000;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.psdfa-btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s;
}

.psdfa-btn svg {
  width: 17px;
}

.psdfa-btn-primary {
  background: var(--psdfa-primary);
  color: #171717;
}

.psdfa-btn-primary:hover {
  background: #f1c000;
  transform: translateY(-1px);
}

.psdfa-btn-secondary {
  background: #fff;
  border-color: var(--psdfa-border);
  color: var(--psdfa-ink);
}

.psdfa-btn-secondary:hover {
  border-color: #c8cbd0;
  background: #fafafa;
}

.psdfa-btn-light {
  background: #fff;
  color: #15171a;
}

.psdfa-btn-link {
  background: transparent;
  color: var(--psdfa-ink);
  border: 0;
}

.psdfa-section {
  padding: 64px 0;
}

.psdfa-section-soft {
  background: #f1f2f4;
  border-block: 1px solid var(--psdfa-border);
}

.psdfa-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
}

.psdfa-section-head h2 {
  font-size: 30px;
  line-height: 1.4;
  margin: 4px 0 3px;
  letter-spacing: -.02em;
}

.psdfa-section-head p {
  margin: 3px 0 0;
  color: var(--psdfa-muted);
  font-size: 13px;
}

.psdfa-section-head-center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.psdfa-section-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #51555c;
}

.psdfa-section-link svg {
  width: 17px;
  transition: .2s;
}

.psdfa-section-link:hover svg {
  transform: translateX(-3px);
}

/* Legacy header presentation removed in PSDFA 0.5.0; header-v3.css owns the header. */

.psdfa-categories-section {
  background: #fff;
}

ul.products.psdfa-products-grid,.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product.psdfa-product-card,.woocommerce-page ul.products li.product.psdfa-product-card {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
}

.psdfa-product-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--psdfa-border);
  border-radius: var(--psdfa-radius);
  overflow: hidden;
  transition: .22s;
}

.psdfa-product-card-inner:hover {
  border-color: #d5d7da;
  box-shadow: 0 16px 38px rgba(16,20,28,.09);
  transform: translateY(-3px);
}

.psdfa-product-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1.55/1;
  overflow: hidden;
  background: #f1f2f3;
}

.psdfa-product-thumb>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: .35s;
}

.psdfa-product-card-inner:hover .psdfa-product-thumb>img {
  transform: scale(1.025);
}

.psdfa-product-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.psdfa-product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 7px;
  background: #111318;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.psdfa-badge-sale {
  background: #e63838;
}

.psdfa-badge-featured {
  background: var(--psdfa-primary);
  color: #111;
}

.psdfa-badge-version {
  margin-right: auto;
  background: rgba(255,255,255,.93);
  color: #41444a;
  border: 1px solid rgba(0,0,0,.06);
}

.psdfa-product-body {
  padding: 15px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.psdfa-product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.psdfa-product-cat {
  font-size: 10px;
  color: #8b8f95;
}

.psdfa-product-rating {
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 3px;
}

.psdfa-product-rating svg {
  width: 13px;
  height: 13px;
  fill: var(--psdfa-primary);
  stroke: #c89f00;
}

.psdfa-product-card h2,.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.75;
  padding: 0;
  margin: 0 0 7px;
  min-height: 49px;
}

.psdfa-product-card h2 a:hover {
  color: #806900;
}

.psdfa-product-excerpt {
  margin: 0 0 12px;
  color: #777b82;
  font-size: 11px;
  line-height: 1.8;
  min-height: 39px;
}

.psdfa-product-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 0;
  border-block: 1px solid #f0f1f2;
}

.psdfa-product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #777b82;
  font-size: 9.5px;
}

.psdfa-product-meta span+span {
  padding-right: 6px;
  border-right: 1px solid #e7e8ea;
}

.psdfa-product-meta svg {
  width: 13px;
  height: 13px;
}

.psdfa-product-meta b {
  color: #555960;
}

.psdfa-product-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 13px;
}

.psdfa-product-price-label {
  font-size: 9px;
  color: #a0a3a9;
}

.psdfa-product-price {
  margin-right: auto;
  text-align: left;
}

.psdfa-product-price .price,.psdfa-product-price {
  font-size: 15px;
  font-weight: 900;
  color: #17191c;
}

.psdfa-product-price del {
  font-size: 10px;
  opacity: .45;
  display: block;
}

.psdfa-product-price ins {
  text-decoration: none;
}

.psdfa-product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  margin-top: 12px;
}

.psdfa-product-buy {
  min-height: 38px;
  border-radius: 9px;
  background: #111318;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 850;
}

.psdfa-product-buy:hover {
  background: #000;
}

.psdfa-product-buy svg {
  width: 14px;
}

.psdfa-product-demo {
  min-height: 38px;
  border-radius: 9px;
  border: 1px solid #dfe1e4;
  background: #fff;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.psdfa-product-demo:hover {
  background: #f5f6f7;
}

.psdfa-update-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--psdfa-primary);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}

.psdfa-update-icon svg {
  width: 27px;
}

.psdfa-update-list {
  border: 1px solid var(--psdfa-border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.psdfa-main {
  padding: 34px 0 65px;
  min-height: 60vh;
}

.psdfa-content-card,.psdfa-page-card {
  background: #fff;
  border: 1px solid var(--psdfa-border);
  border-radius: var(--psdfa-radius);
  padding: 30px;
}

.psdfa-page-card {
  max-width: 1050px;
  margin: auto;
}

.psdfa-page-card h1 {
  margin-top: 0;
}

.entry-content {
  font-size: 14px;
}

.psdfa-post-card {
  background: #fff;
  border: 1px solid var(--psdfa-border);
  border-radius: var(--psdfa-radius);
  padding: 24px;
  margin-bottom: 16px;
}

.psdfa-post-card h2 {
  margin-top: 0;
}

.psdfa-empty {
  background: #fff;
  border: 1px solid var(--psdfa-border);
  border-radius: var(--psdfa-radius);
  padding: 45px;
  text-align: center;
}

.psdfa-search-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 16px;
}

.psdfa-404 {
  max-width: 760px;
  margin: auto;
}

.psdfa-404>span {
  font-size: 82px;
  font-weight: 950;
  color: var(--psdfa-primary);
  text-shadow: 2px 2px #111318;
}

.woocommerce .woocommerce-breadcrumb {
  font-size: 10px;
  color: #8f9399;
  margin: 0 0 18px;
}

.psdfa-product-links {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}

.psdfa-product-links .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 39px;
  border-radius: 9px;
  font-size: 10px;
}

.psdfa-product-links svg {
  width: 14px;
}

.psdfa-purchase-benefits {
  margin-top: 13px;
  border-top: 1px solid var(--psdfa-border);
  padding-top: 12px;
  display: grid;
  gap: 7px;
}

.psdfa-purchase-benefits>div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.psdfa-purchase-benefits>div>svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  background: #f4f5f6;
  flex: 0 0 auto;
}

.psdfa-purchase-benefits span {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.psdfa-purchase-benefits strong {
  font-size: 10px;
}

.psdfa-purchase-benefits small {
  font-size: 9px;
  color: #93979d;
}

.woocommerce div.product .product_meta {
  font-size: 10px;
  color: #898d94;
  border-top: 1px solid var(--psdfa-border);
  padding-top: 12px;
  margin-top: 12px;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 10px;
  background: #fff;
  border: 1px solid var(--psdfa-border);
  border-radius: 20px;
  padding: 24px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0 0 23px;
  border-bottom: 1px solid var(--psdfa-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 10px 13px;
  font-size: 11px;
  color: #73777e;
  border-bottom: 2px solid transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #111;
  border-bottom-color: var(--psdfa-primary);
}

.woocommerce div.product .woocommerce-tabs .panel {
  font-size: 13px;
  line-height: 2;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 23px;
}

.psdfa-changelog,.psdfa-installation-guide {
  background: #fafafa;
  border: 1px solid var(--psdfa-border);
  border-right: 3px solid var(--psdfa-primary);
  border-radius: 10px;
  padding: 16px;
  white-space: normal;
}

.woocommerce form.login,.woocommerce form.register,.woocommerce form.checkout_coupon {
  border: 1px solid var(--psdfa-border);
  border-radius: 16px;
  background: #fff;
}

.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,.woocommerce select {
  border: 1px solid #dfe1e4;
  border-radius: 9px;
  min-height: 42px;
  padding: 8px 10px;
}

.woocommerce button.button,.woocommerce a.button,.woocommerce input.button {
  border-radius: 9px;
}

.woocommerce button.button.alt,.woocommerce a.button.alt,.woocommerce input.button.alt {
  background: #111318;
  color: #fff;
}

.woocommerce-message,.woocommerce-info,.woocommerce-error {
  border-top: 0;
  border-right: 3px solid var(--psdfa-primary);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(16,20,28,.04);
}


.psdfa-mobile-bottom-nav {
  display: none;
}

@media (max-width:1260px) {
  .psdfa-header-main-inner {
    grid-template-columns: 190px minmax(260px,1fr) auto;
    gap: 18px;
  }

  .psdfa-action-copy {
    display: none;
  }

  .psdfa-header-action {
    padding: 4px;
  }

  .psdfa-header-nav-inner {
    grid-template-columns: 205px 1fr;
  }

  .psdfa-nav-quick-links {
    display: none;
  }

  ul.products.psdfa-products-grid,.woocommerce ul.products,.psdfa-search-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

}

@media(max-width:980px){.psdfa-header-main-inner,.psdfa-header-main-inner.psdfa-header-without-search,.psdfa-header-main-inner.psdfa-header-without-actions,.psdfa-header-main-inner.psdfa-header-without-search.psdfa-header-without-actions{grid-template-columns:42px minmax(0,1fr) auto;grid-template-areas:"mobile brand actions"}.psdfa-header-main-inner.psdfa-header-without-nav-toggle{grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"brand actions"}.psdfa-header-main-inner.psdfa-header-without-nav-toggle.psdfa-header-without-actions{grid-template-columns:1fr;grid-template-areas:"brand"}.psdfa-mobile-toggle{grid-area:mobile}.psdfa-brand{grid-area:brand}.psdfa-header-actions{grid-area:actions}.psdfa-header-logo-link,.custom-logo-link{width:min(var(--psdfa-header-logo-width),160px);max-width:100%}.psdfa-header-dropdown-panel{position:fixed;top:86px;right:14px;left:14px;width:auto;max-width:420px;margin-inline:auto}.admin-bar .psdfa-header-dropdown-panel{top:118px}}
@media (max-width:980px) {
  .admin-bar.psdfa-sticky-header .psdfa-site-header {
    top: 46px;
  }


  .psdfa-header-main-inner {
    min-height: 72px;
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
  }

  .psdfa-mobile-toggle,.psdfa-mobile-search-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f4f5f6;
  }

  .psdfa-brand {
    justify-self: start;
  }

  .psdfa-brand-mark {
    width: 40px;
    height: 40px;
  }

  .psdfa-brand-copy strong {
    font-size: 19px;
  }

  .psdfa-header-search-wrap {
    display: none;
  }

  .psdfa-header-nav-row {
    display: none;
  }


  .psdfa-mobile-search-panel {
    position: fixed;
    inset: 0;
    background: rgba(12,14,18,.55);
    backdrop-filter: blur(6px);
    z-index: 200;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 18px 18px;
  }

  .psdfa-mobile-search-panel.open {
    display: flex;
  }

  .psdfa-mobile-search-card {
    background: #fff;
    width: min(620px,100%);
    border-radius: 18px;
    padding: 22px;
    position: relative;
    box-shadow: 0 28px 80px rgba(0,0,0,.24);
  }

  .psdfa-mobile-search-card h3 {
    font-size: 20px;
    margin: 3px 0 15px;
  }

  .psdfa-mobile-search-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 9px;
    background: #f2f3f4;
    display: grid;
    place-items: center;
  }

  .psdfa-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 210;
  }

  .psdfa-mobile-drawer.open {
    display: block;
  }

  .psdfa-mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12,14,18,.55);
    backdrop-filter: blur(4px);
  }

  .psdfa-mobile-drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(360px,90vw);
    background: #fff;
    padding: 16px;
    overflow: auto;
  }

  .psdfa-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--psdfa-border);
    padding-bottom: 12px;
  }

  .psdfa-mobile-drawer-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: #f2f3f4;
    display: grid;
    place-items: center;
  }

  .psdfa-mobile-drawer-search {
    margin: 12px 0 14px;
  }

  .psdfa-mobile-drawer-search .psdfa-product-search {
    padding: 2px;
    border-radius: 10px;
  }

  .psdfa-mobile-drawer-search .psdfa-search-icon {
    width: 38px;
  }

  .psdfa-mobile-drawer-search .psdfa-product-search input[type=search] {
    height: 38px;
    font-size: 12px;
  }

  .psdfa-mobile-drawer-search .psdfa-product-search button {
    display: none;
  }

  .psdfa-header-dropdown[data-mobile-dropdown="0"] .psdfa-header-dropdown-panel,
  .psdfa-header-dropdown[data-mobile-dropdown="0"] .psdfa-header-dropdown-chevron {
    display: none !important;
  }

  .psdfa-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .psdfa-mobile-nav a {
    display: flex;
    padding: 10px 8px;
    border-bottom: 1px solid #f1f2f3;
    font-weight: 750;
  }

  .psdfa-mobile-nav .sub-menu {
    padding-right: 12px;
  }

  .psdfa-mobile-nav .sub-menu a {
    font-weight: 500;
    color: #73777e;
  }

  .psdfa-mobile-categories {
    margin-top: 18px;
  }

  .psdfa-mobile-categories>strong {
    display: block;
    margin-bottom: 7px;
  }

  .psdfa-mobile-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-radius: 7px;
  }

  .psdfa-mobile-categories a:nth-child(even) {
    background: #f7f7f8;
  }

  .psdfa-mobile-categories small {
    color: #999da3;
  }

  .psdfa-has-mobile-bottom-nav {
    padding-bottom: 67px;
  }

  .psdfa-mobile-bottom-nav {
    position: fixed;
    right: 10px;
    left: 10px;
    bottom: 8px;
    z-index: 130;
    height: 58px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(16,20,28,.16);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
    padding: 4px;
  }

  .psdfa-mobile-bottom-nav a,.psdfa-mobile-bottom-nav button {
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 8.5px;
    color: #797d84;
    height: 48px;
    border-radius: 11px;
  }

  .psdfa-mobile-bottom-nav a.active {
    color: #111;
    background: var(--psdfa-primary-soft);
  }

  .psdfa-mobile-bottom-nav svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width:720px) {
  .psdfa-container {
    padding-inline: min(var(--psdfa-gutter), 14px);
  }


  .psdfa-header-main-inner {
    min-height: 66px;
  }

  .custom-logo {
    max-width: 145px;
    max-height: 45px;
  }

  .psdfa-cart-link .psdfa-action-icon {
    background: transparent;
  }

  .psdfa-section {
    padding: 40px 0;
  }

  .psdfa-section-head {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .psdfa-section-head h2 {
    font-size: 22px;
  }

  .psdfa-section-head p {
    font-size: 11px;
  }

  .psdfa-section-link {
    display: none;
  }

  ul.products.psdfa-products-grid,.woocommerce ul.products,.psdfa-search-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 9px;
  }

  .psdfa-product-body {
    padding: 11px;
  }

  .psdfa-product-card h2,.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 11.5px;
    min-height: 43px;
    line-height: 1.8;
  }

  .psdfa-product-excerpt {
    display: none;
  }

  .psdfa-product-meta {
    padding: 8px 0;
  }

  .psdfa-product-meta span {
    font-size: 8px;
  }

  .psdfa-product-meta span:nth-child(2) {
    display: none;
  }

  .psdfa-product-price-label {
    display: none;
  }

  .psdfa-product-price {
    font-size: 12px;
  }

  .psdfa-product-actions {
    grid-template-columns: 1fr;
  }

  .psdfa-product-demo {
    display: none;
  }

  .psdfa-product-buy {
    min-height: 34px;
    font-size: 9px;
  }

  .woocommerce div.product .woocommerce-tabs {
    padding: 15px;
    border-radius: 15px;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow: auto;
    white-space: nowrap;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 10px;
  }

}

@media (max-width:420px) {
  .psdfa-brand-copy small {
    display: none;
  }

  ul.products.psdfa-products-grid,.woocommerce ul.products,.psdfa-search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .psdfa-product-meta span:nth-child(3) {
    display: none;
  }

}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--psdfa-primary);
  outline-offset: 3px;
}

.psdfa-skip-link {
  position: fixed;
  inset-inline-start: var(--psdfa-gutter);
  top: 10px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 9px 14px;
  border-radius: 8px;
  background: #111318;
  color: #fff;
  font-weight: 800;
}

.psdfa-skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .psdfa-auto-hide-header-nav .psdfa-header-nav-row { transition: none; }
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}



/* Accessibility helpers --------------------------------------------------- */
/* WordPress/WooCommerce use this class for descriptive text that must remain
   available to assistive technologies without taking visual layout space. */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.screen-reader-text:focus {
  position: fixed !important;
  inset-block-start: 10px !important;
  inset-inline-start: 10px !important;
  z-index: 100000 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}


/* Light / dark theme switcher */
.psdfa-theme-toggle {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}
.psdfa-theme-toggle-icon,
.psdfa-theme-toggle-header {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--psdfa-border);
  border-radius: 12px;
  background: var(--psdfa-bg);
  color: var(--psdfa-ink);
  transition: background-color .18s ease,border-color .18s ease,transform .18s ease,color .18s ease;
}
.psdfa-theme-toggle-header:hover { transform: translateY(-1px); background: var(--psdfa-surface); }
.psdfa-theme-toggle-icons { display: grid; place-items: center; width: 20px; height: 20px; }
.psdfa-theme-icon { grid-area: 1/1; display: grid; place-items: center; transition: opacity .16s ease,transform .2s ease; }
.psdfa-theme-icon svg { width: 19px; height: 19px; }
.psdfa-theme-icon-sun { opacity: 0; transform: rotate(-35deg) scale(.75); }
html[data-psdfa-theme="dark"] .psdfa-theme-icon-moon { opacity: 0; transform: rotate(35deg) scale(.75); }
html[data-psdfa-theme="dark"] .psdfa-theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }
.psdfa-theme-toggle-navigation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 8px;
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
}
.psdfa-theme-toggle-navigation .psdfa-theme-toggle-icons { width: 17px; height: 17px; }
.psdfa-theme-toggle-navigation svg { width: 16px; height: 16px; }
.psdfa-mobile-drawer-theme { padding: 8px 14px 2px; }
.psdfa-theme-toggle-drawer {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--psdfa-border);
  border-radius: 11px;
  background: var(--psdfa-bg);
  color: var(--psdfa-ink);
  text-align: right;
  font-size: 10.5px;
  font-weight: 850;
}
.psdfa-theme-toggle-drawer .psdfa-theme-toggle-icons { width: 22px; height: 22px; border-radius: 7px; background: var(--psdfa-primary-soft); }
.psdfa-theme-toggle-drawer svg { width: 15px; height: 15px; }
.psdfa-theme-toggle-mobile { display: none; }
html.psdfa-theme-animate body,
html.psdfa-theme-animate .psdfa-site-header,
html.psdfa-theme-animate .psdfa-site-content,
html.psdfa-theme-animate .psdfa-mobile-bottom-nav,
html.psdfa-theme-animate .psdfa-mobile-drawer-panel {
  transition: background-color .22s ease,color .22s ease,border-color .22s ease;
}
@media (max-width:980px) {
  .psdfa-theme-toggle-desktop { display: none !important; }
  .psdfa-theme-toggle-mobile { display: inline-grid; }
  .psdfa-theme-toggle-drawer.psdfa-theme-toggle-mobile { display: flex; }
}
@media (min-width:981px) {
  .psdfa-theme-toggle-mobile { display: none !important; }
}
@media (prefers-reduced-motion:reduce) {
  .psdfa-theme-icon,.psdfa-theme-toggle-header { transition: none !important; }
}

/* Legacy header builder removed in PSDFA 0.5.0. */

/* v0.22.39 — dedicated 404 layout. */
.psdfa-404-page {
  display: flex;
  align-items: center;
  min-height: clamp(520px, 68vh, 760px);
  padding-block: 34px 60px;
}
.psdfa-404-page > .psdfa-container { width: 100%; }
.psdfa-404 {
  width: min(100%, 920px);
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 22px;
}
.psdfa-404-code {
  margin-bottom: 10px;
  color: var(--psdfa-primary);
  font-size: clamp(72px, 9vw, 112px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.06em;
  text-shadow: 2px 2px #111318;
}
.psdfa-404-copy { max-width: 640px; margin-inline: auto; }
.psdfa-404-copy .psdfa-eyebrow { margin-bottom: 6px; }
.psdfa-404-copy h1 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); line-height: 1.5; }
.psdfa-404-copy p { margin: 0; color: var(--psdfa-muted); font-size: 12.5px; line-height: 2; }
.psdfa-404-search { max-width: 680px; margin: 24px auto 0; }
.psdfa-404-search .psdfa-product-search { margin: 0; }
.psdfa-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}
.psdfa-404-actions .psdfa-btn { min-width: 148px; }
@media (max-width: 720px) {
  .psdfa-404-page { min-height: auto; padding-block: 20px 44px; }
  .psdfa-404 { padding: 30px 16px; border-radius: 17px; }
  .psdfa-404-code { font-size: 72px; }
  .psdfa-404-copy p { font-size: 11px; }
  .psdfa-404-actions { display: grid; grid-template-columns: 1fr; }
  .psdfa-404-actions .psdfa-btn { width: 100%; min-width: 0; }
}

/* PSDFA 0.7.83 — fully configurable, mobile-nav-aware back-to-top button. */
.psdfa-back-to-top {
  position: fixed;
  z-index: 10040;
  bottom: var(--psdfa-btt-bottom-desktop, 24px);
  width: var(--psdfa-btt-size-desktop, 46px);
  height: var(--psdfa-btt-size-desktop, 46px);
  padding: 0;
  border: 1px solid var(--psdfa-btt-border, color-mix(in srgb, var(--psdfa-primary) 72%, var(--psdfa-border)));
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--psdfa-btt-bg, var(--psdfa-primary));
  color: var(--psdfa-btt-icon, #111318);
  box-shadow: 0 12px 32px rgba(17,19,24,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(.94);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.psdfa-back-to-top.is-shape-circle { border-radius: 999px; }
.psdfa-back-to-top.is-shape-square { border-radius: 6px; }
.psdfa-back-to-top.is-shape-rounded { border-radius: 14px; }
.psdfa-back-to-top.has-no-shadow { box-shadow: none !important; }
.psdfa-back-to-top.is-desktop-left { left: max(var(--psdfa-btt-side-desktop, 18px), env(safe-area-inset-left)); right: auto; }
.psdfa-back-to-top.is-desktop-right { right: max(var(--psdfa-btt-side-desktop, 18px), env(safe-area-inset-right)); left: auto; }
.psdfa-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
body.psdfa-purchase-open .psdfa-back-to-top,
.psdfa-back-to-top.is-suppressed {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(10px) scale(.94) !important;
}
.psdfa-back-to-top svg { width: min(20px, 48%); height: min(20px, 48%); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.psdfa-back-to-top:hover { background: var(--psdfa-btt-hover, color-mix(in srgb, var(--psdfa-primary) 88%, #fff)); box-shadow: 0 15px 36px rgba(17,19,24,.22); transform: translateY(-2px); }
.psdfa-back-to-top.has-no-shadow:hover { box-shadow: none !important; }
.psdfa-back-to-top:focus-visible { outline: 3px solid color-mix(in srgb, var(--psdfa-btt-bg, var(--psdfa-primary)) 28%, transparent); outline-offset: 3px; }
html[data-psdfa-theme="dark"] .psdfa-back-to-top:not(.has-no-shadow) { box-shadow: 0 12px 34px rgba(0,0,0,.4); }
@media (min-width: 981px) { .psdfa-back-to-top.is-desktop-hidden { display: none !important; } }
@media (max-width: 980px) {
  .psdfa-back-to-top {
    width: var(--psdfa-btt-size-mobile, 42px);
    height: var(--psdfa-btt-size-mobile, 42px);
    bottom: var(--psdfa-btt-mobile-safe-bottom, var(--psdfa-btt-bottom-mobile, 18px));
  }
  .psdfa-back-to-top.is-mobile-hidden { display: none !important; }
  .psdfa-back-to-top.is-mobile-left { left: max(var(--psdfa-btt-side-mobile, 12px), env(safe-area-inset-left)); right: auto; }
  .psdfa-back-to-top.is-mobile-right { right: max(var(--psdfa-btt-side-mobile, 12px), env(safe-area-inset-right)); left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .psdfa-back-to-top { transition: none; }
}

/* 0.22.76 — Chevron pagination consistency. */
.navigation.pagination .nav-links>a,.navigation.comments-pagination .nav-links>a{display:inline-flex;align-items:center;gap:5px}
.navigation.pagination .nav-links>a svg,.navigation.comments-pagination .nav-links>a svg,.woocommerce-pagination a svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

/* PSDFA 0.4 — theme-owned WooCommerce notices and global commerce toasts. */
.psdfa-woo-notice{
  position:relative;display:flex;align-items:flex-start;gap:10px;width:100%;margin:0 0 14px;padding:13px 14px;
  border:1px solid var(--psdfa-border);border-radius:12px;background:#fff;color:#30343a;font-size:11px;line-height:1.9;list-style:none;
  box-shadow:0 7px 22px rgba(17,19,24,.04)
}
.psdfa-woo-notice::before{display:none!important}.psdfa-woo-notice__icon{display:grid;place-items:center;flex:0 0 25px;width:25px;height:25px;border-radius:8px;background:#f1f2f3;color:#34393f;font-size:12px;font-weight:950}.psdfa-woo-notice__icon svg{width:14px;height:14px}.psdfa-woo-notice__body{min-width:0;flex:1}.psdfa-woo-notice__body a{font-weight:900;text-decoration:underline;text-underline-offset:3px}.psdfa-woo-notice.is-success{border-color:#dcebdc;background:#f8fcf8}.psdfa-woo-notice.is-success .psdfa-woo-notice__icon{background:#e5f4e6;color:#2f7337}.psdfa-woo-notice.is-error{border-color:#f0d6d6;background:#fff9f9}.psdfa-woo-notice.is-error .psdfa-woo-notice__icon{background:#fde8e8;color:#aa3232}.psdfa-woo-notice.is-info{border-color:#e4e6e8;background:#fbfbfc}
.psdfa-global-toast-region{position:fixed;z-index:100090;top:22px;left:22px;display:grid;gap:9px;width:min(390px,calc(100vw - 28px));pointer-events:none}
.psdfa-global-toast{display:grid;grid-template-columns:31px minmax(0,1fr) 26px;align-items:center;gap:9px;min-height:58px;padding:10px 11px;border:1px solid #e0e3e5;border-radius:13px;background:#fff;color:#24292e;box-shadow:0 18px 55px rgba(17,19,24,.16);opacity:0;transform:translateY(-10px);transition:opacity .2s ease,transform .2s ease;pointer-events:auto}
.psdfa-global-toast.is-visible{opacity:1;transform:none}.psdfa-global-toast__icon{display:grid;place-items:center;width:31px;height:31px;border-radius:9px;background:#edf6ee;color:#32723a;font-size:15px;font-weight:950}.psdfa-global-toast.is-error .psdfa-global-toast__icon{background:#fff0f0;color:#b33737}.psdfa-global-toast.is-info .psdfa-global-toast__icon{background:#f1f2f4;color:#555b61}.psdfa-global-toast__text{font-size:10.5px;font-weight:750;line-height:1.9}.psdfa-global-toast__close{display:grid;place-items:center;width:26px;height:26px;padding:0;border:0;border-radius:7px;background:transparent;color:#989da2;font-size:18px;cursor:pointer}.psdfa-global-toast__close:hover{background:#f1f2f3;color:#222}.is-cart-updated{animation:psdfa-cart-pulse .65s ease}@keyframes psdfa-cart-pulse{50%{transform:scale(1.06)}}
@media(max-width:640px){.psdfa-global-toast-region{top:12px;left:14px;width:calc(100vw - 28px)}.psdfa-global-toast{min-height:54px}}
@media(prefers-reduced-motion:reduce){.psdfa-global-toast,.is-cart-updated{transition:none;animation:none}}

/* PSDFA subscription products — independent theme presentation. */
.psdfa-plan-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;align-items:stretch;margin:24px 0}.psdfa-plan-card{position:relative;display:flex;flex-direction:column;padding:24px;border:1px solid var(--psdfa-border);border-radius:18px;background:var(--psdfa-surface);box-shadow:0 9px 28px rgba(17,19,24,.04)}.psdfa-plan-card.is-featured{border:2px solid var(--psdfa-primary);box-shadow:0 18px 45px rgba(17,19,24,.09);transform:translateY(-7px)}.psdfa-plan-card__badge{position:absolute;top:-13px;right:22px;padding:5px 11px;border-radius:999px;background:var(--psdfa-primary);color:#111318;font-size:9px;font-weight:950}.psdfa-plan-card h2{margin:0;font-size:18px}.psdfa-plan-card__price{margin:9px 0 15px;color:var(--psdfa-ink);font-size:21px;font-weight:950}.psdfa-plan-card ul{flex:1;margin:0 0 18px;padding-right:20px;color:var(--psdfa-muted);font-size:11px;line-height:2}.psdfa-plan-card .button{display:flex;align-items:center;justify-content:center;width:100%;min-height:44px;border:0;border-radius:10px;background:#111318;color:#fff;font-size:11px;font-weight:900;text-decoration:none}.psdfa-plan-card.is-featured .button{background:var(--psdfa-primary);color:#111318}
@media(max-width:980px){.psdfa-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.psdfa-plan-card.is-featured{transform:none}}@media(max-width:560px){.psdfa-plan-grid{grid-template-columns:1fr}}


/* ================================================================
   PSDFA 0.4.7 — breadcrumb icon separators (clean restart from 0.4.6)
   WooCommerce keeps ownership of breadcrumb data/URLs; PSDFA owns visuals.
   ================================================================ */
.woocommerce .woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0;
  row-gap: 4px;
}

.woocommerce .woocommerce-breadcrumb > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb > a::after {
  content: "";
  display: inline-block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  margin-inline: 7px;
  background-color: #a8adb4;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.woocommerce .woocommerce-breadcrumb > a:hover::after {
  background-color: #8d939b;
}

@media (max-width: 640px) {
  .woocommerce .woocommerce-breadcrumb > a::after {
    flex-basis: 11px;
    width: 11px;
    height: 11px;
    margin-inline: 5px;
  }
}


/* ================================================================
   PSDFA 0.4.8 — Yoast SEO breadcrumb separator compatibility
   Yoast keeps breadcrumb hierarchy/links/schema; PSDFA owns the separator UI.
   ================================================================ */
.psdfa-yoast-breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  margin-inline: 7px;
  color: #a8adb4;
  vertical-align: middle;
  pointer-events: none;
}

.psdfa-yoast-breadcrumb-separator svg {
  display: block;
  width: 12px;
  height: 12px;
}

/* Yoast breadcrumb block / shortcode wrappers. */
.wp-block-yoast-seo-breadcrumbs,
.yoast-breadcrumbs,
.yoast-breadcrumb,
#breadcrumbs {
  line-height: 1.9;
}

@media (max-width: 640px) {
  .psdfa-yoast-breadcrumb-separator {
    width: 11px;
    height: 11px;
    margin-inline: 5px;
  }

  .psdfa-yoast-breadcrumb-separator svg {
    width: 11px;
    height: 11px;
  }
}


/* PSDFA 0.6.8 — mobile breadcrumbs stay on one row and scroll horizontally. */
@media (max-width: 640px) {
  .woocommerce .woocommerce-breadcrumb,
  .yoast-breadcrumbs,
  .yoast-breadcrumb,
  #breadcrumbs {
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    width:100%;
    max-width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-inline:contain;
    scrollbar-width:none;
  }
  .woocommerce .woocommerce-breadcrumb::-webkit-scrollbar,
  .yoast-breadcrumbs::-webkit-scrollbar,
  .yoast-breadcrumb::-webkit-scrollbar,
  #breadcrumbs::-webkit-scrollbar { display:none; }
  .woocommerce .woocommerce-breadcrumb > *,
  .yoast-breadcrumbs > *,
  .yoast-breadcrumb > *,
  #breadcrumbs > * { flex:0 0 auto; }
}

/* ================================================================
   PSDFA 0.7.0 — unified WooCommerce / Yoast breadcrumb presentation
   ================================================================ */
.wp-block-yoast-seo-breadcrumbs,
.yoast-breadcrumbs,
.yoast-breadcrumb,
#breadcrumbs {
  margin: 0 0 18px;
  color: #8f9399;
  font-size: 12px;
  line-height: 1.9;
}
.wp-block-yoast-seo-breadcrumbs a,
.yoast-breadcrumbs a,
.yoast-breadcrumb a,
#breadcrumbs a {
  color: #61666e;
  text-decoration: none;
}
.wp-block-yoast-seo-breadcrumbs a:hover,
.yoast-breadcrumbs a:hover,
.yoast-breadcrumb a:hover,
#breadcrumbs a:hover {
  color: var(--psdfa-ink);
}

@media (max-width: 640px) {
  .woocommerce .woocommerce-breadcrumb,
  .yoast-breadcrumbs,
  .yoast-breadcrumb,
  #breadcrumbs {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .woocommerce .woocommerce-breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    min-width: 100%;
  }

  .yoast-breadcrumbs > span,
  .yoast-breadcrumb > span,
  #breadcrumbs > span {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
  }

  .yoast-breadcrumbs > span > span,
  .yoast-breadcrumb > span > span,
  #breadcrumbs > span > span,
  .yoast-breadcrumbs a,
  .yoast-breadcrumb a,
  #breadcrumbs a,
  .psdfa-yoast-breadcrumb-separator {
    flex: 0 0 auto;
  }
}


/* ================================================================
   PSDFA 0.7.1 — robust one-line Yoast breadcrumb on mobile
   Yoast commonly nests every breadcrumb item inside multiple spans. Force
   those wrappers to stay inline and let only the outer breadcrumb scroll.
   ================================================================ */
@media (max-width: 640px) {
  .yoast-breadcrumbs,
  .yoast-breadcrumb,
  #breadcrumbs {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .yoast-breadcrumbs::-webkit-scrollbar,
  .yoast-breadcrumb::-webkit-scrollbar,
  #breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .yoast-breadcrumbs > span,
  .yoast-breadcrumb > span,
  #breadcrumbs > span {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
  }

  .yoast-breadcrumbs span,
  .yoast-breadcrumb span,
  #breadcrumbs span,
  .yoast-breadcrumbs a,
  .yoast-breadcrumb a,
  #breadcrumbs a,
  .yoast-breadcrumbs .breadcrumb_last,
  .yoast-breadcrumb .breadcrumb_last,
  #breadcrumbs .breadcrumb_last {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
}


/* ================================================================
   PSDFA 0.7.2 — official Yoast block: strict single-row mobile trail
   Yoast's Gutenberg breadcrumb block uses .wp-block-yoast-seo-breadcrumbs.
   Keep only the outer wrapper scrollable; descendants can never wrap.
   ================================================================ */
@media (max-width: 640px) {
  .wp-block-yoast-seo-breadcrumbs,
  .wp-block-yoast-seo-breadcrumbs #breadcrumbs,
  .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumbs,
  .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumb,
  .yoast-breadcrumbs,
  .yoast-breadcrumb,
  #breadcrumbs {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .wp-block-yoast-seo-breadcrumbs::-webkit-scrollbar,
  .wp-block-yoast-seo-breadcrumbs #breadcrumbs::-webkit-scrollbar,
  .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumbs::-webkit-scrollbar,
  .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumb::-webkit-scrollbar,
  .yoast-breadcrumbs::-webkit-scrollbar,
  .yoast-breadcrumb::-webkit-scrollbar,
  #breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .wp-block-yoast-seo-breadcrumbs > span,
  .wp-block-yoast-seo-breadcrumbs #breadcrumbs > span,
  .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumbs > span,
  .wp-block-yoast-seo-breadcrumbs .yoast-breadcrumb > span,
  .yoast-breadcrumbs > span,
  .yoast-breadcrumb > span,
  #breadcrumbs > span {
    display: inline-block !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .wp-block-yoast-seo-breadcrumbs span,
  .wp-block-yoast-seo-breadcrumbs a,
  .wp-block-yoast-seo-breadcrumbs .breadcrumb_last,
  .yoast-breadcrumbs span,
  .yoast-breadcrumb span,
  #breadcrumbs span,
  .yoast-breadcrumbs a,
  .yoast-breadcrumb a,
  #breadcrumbs a,
  .yoast-breadcrumbs .breadcrumb_last,
  .yoast-breadcrumb .breadcrumb_last,
  #breadcrumbs .breadcrumb_last {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .wp-block-yoast-seo-breadcrumbs span:not(.psdfa-yoast-breadcrumb-separator),
  .yoast-breadcrumbs span:not(.psdfa-yoast-breadcrumb-separator),
  .yoast-breadcrumb span:not(.psdfa-yoast-breadcrumb-separator),
  #breadcrumbs span:not(.psdfa-yoast-breadcrumb-separator) {
    display: inline !important;
  }

  .wp-block-yoast-seo-breadcrumbs .psdfa-yoast-breadcrumb-separator,
  .yoast-breadcrumbs .psdfa-yoast-breadcrumb-separator,
  .yoast-breadcrumb .psdfa-yoast-breadcrumb-separator,
  #breadcrumbs .psdfa-yoast-breadcrumb-separator {
    display: inline-flex !important;
    vertical-align: middle;
  }
}

/* ================================================================
   PSDFA 0.7.3 — exact Yoast breadcrumb DOM used by the theme
   Actual output:
   .breadcrumb.breadcrumbs.woo-breadcrumbs > .breadcrumb-trail > span
   Keep the complete trail on one row and scroll only the outer wrapper.
   ================================================================ */
@media (max-width: 640px) {
  .breadcrumb.breadcrumbs.woo-breadcrumbs {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .breadcrumb.breadcrumbs.woo-breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb.breadcrumbs.woo-breadcrumbs .breadcrumb-trail {
    display: inline-block !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
  }

  .breadcrumb.breadcrumbs.woo-breadcrumbs .breadcrumb-trail > span {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    min-width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .breadcrumb.breadcrumbs.woo-breadcrumbs .breadcrumb-trail > span > span,
  .breadcrumb.breadcrumbs.woo-breadcrumbs .breadcrumb-trail > span > a,
  .breadcrumb.breadcrumbs.woo-breadcrumbs .breadcrumb-trail a,
  .breadcrumb.breadcrumbs.woo-breadcrumbs .breadcrumb-trail .breadcrumb_last,
  .breadcrumb.breadcrumbs.woo-breadcrumbs .breadcrumb-trail .psdfa-yoast-breadcrumb-separator {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
}

/* PSDFA 0.7.67 — unified brand-aware WooCommerce notice system. */
.psdfa-woo-notice{
  border-color:color-mix(in srgb,var(--psdfa-primary) 26%,var(--psdfa-border));
  border-right:3px solid var(--psdfa-primary);
  background:color-mix(in srgb,var(--psdfa-primary) 4%,#fff);
  box-shadow:0 14px 34px rgba(17,19,24,.07);
}
.psdfa-woo-notice.is-success{border-color:color-mix(in srgb,var(--psdfa-primary) 28%,var(--psdfa-border));border-right-color:var(--psdfa-primary);background:color-mix(in srgb,var(--psdfa-primary) 5%,#fff)}
.psdfa-woo-notice.is-success .psdfa-woo-notice__icon{background:var(--psdfa-primary);color:#111318}
.psdfa-woo-notice.is-error{border-color:#f0d6d6;border-right-color:#d83b3b;background:#fffafa}
.psdfa-woo-notice.is-info{border-color:color-mix(in srgb,var(--psdfa-primary) 20%,var(--psdfa-border));border-right-color:color-mix(in srgb,var(--psdfa-primary) 70%,#725d00);background:#fffdf4}
.psdfa-woo-notice__body a.wc-forward,.psdfa-woo-notice__body a.added_to_cart{display:none!important}
.psdfa-global-toast-region{right:22px;left:auto}
.psdfa-global-toast{
  position:relative;overflow:hidden;
  grid-template-columns:34px minmax(0,1fr) 28px;
  min-height:62px;padding:11px 12px;
  border:1px solid color-mix(in srgb,var(--psdfa-primary) 25%,#dfe2e5);
  border-right:3px solid var(--psdfa-primary);
  border-radius:14px;background:rgba(255,255,255,.985);
  box-shadow:0 20px 55px rgba(17,19,24,.16),0 3px 10px rgba(17,19,24,.06);
}
.psdfa-global-toast__icon{width:34px;height:34px;border-radius:10px;background:var(--psdfa-primary);color:#111318;font-size:16px}
.psdfa-global-toast.is-error{border-color:#efd4d4;border-right-color:#d83b3b}
.psdfa-global-toast.is-error .psdfa-global-toast__icon{background:#ffe9e9;color:#b52d2d}
.psdfa-global-toast.is-info{border-color:#eadf9b;border-right-color:color-mix(in srgb,var(--psdfa-primary) 70%,#725d00)}
.psdfa-global-toast.is-info .psdfa-global-toast__icon{background:var(--psdfa-primary-soft);color:#6c5600}
.psdfa-global-toast__text{color:#30343a;font-size:11px;font-weight:780;line-height:1.85}
.psdfa-global-toast__close:hover{background:var(--psdfa-primary-soft);color:#5f4d00}
@media(max-width:640px){.psdfa-global-toast-region{right:12px;left:12px;width:auto}.psdfa-global-toast{min-height:58px}}

/* PSDFA 0.7.73 — theme-aware logo baseline. Keep the dark asset hidden even
   when the Dark Mode feature is disabled and dark.css is not enqueued. */
.has-dark-logo > .psdfa-theme-logo-dark{display:none}
.psdfa-theme-logo-light,.psdfa-theme-logo-dark{max-width:100%;height:auto}


/* AsanWP Floating Actions integration: keep the filled launcher icon immune to
   global SVG stroke rules. Service logos are intentionally left untouched. */
.asanwp-floating-actions .floating-toggle .floating-icon svg,
.asanwp-floating-actions .floating-toggle .floating-icon svg *{
  stroke-width:0;
}
