:root {
  --pdfom-primary: #d52f31;
  --pdfom-brand: #222d65;
  --pdfom-link: #4e54c8;
  --pdfom-heading: #373f50;
  --pdfom-text: #4b566b;
  --pdfom-muted: #667085;
  --pdfom-canvas: #f6f9fc;
  --pdfom-surface: #ffffff;
  --pdfom-surface-muted: #f3f5f9;
  --pdfom-border: #e3e9ef;
  --pdfom-danger: #dc3545;
  --pdfom-radius: 0.4375rem;
  --pdfom-radius-control: 0.3125rem;
  --pdfom-sidebar: 22rem;
  --pdfom-header: 5rem;
  --pdfom-content-max: 100rem;
  --pdfom-shadow: 0 0.35rem 1.3rem rgb(34 45 101 / 8%);
  --pdfom-focus: 0 0 0 3px rgb(78 84 200 / 28%);
  --pdfom-layer-header: 40;
  --pdfom-layer-sidebar: 50;
  --pdfom-layer-scrim: 45;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--pdfom-text);
  background: var(--pdfom-canvas);
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.sidebar-open {
  overflow: hidden;
}

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

a {
  color: var(--pdfom-link);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: #1b22b0;
}

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

button,
[type="button"],
[type="submit"],
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 44px;
  border: 1px solid var(--pdfom-brand);
  border-radius: var(--pdfom-radius-control);
  background: var(--pdfom-brand);
  color: var(--pdfom-surface);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #182153;
  border-color: #182153;
  color: var(--pdfom-surface);
}

button:active,
.button:active,
.woocommerce a.button:active,
.woocommerce button.button:active {
  transform: translateY(1px);
}

button:disabled,
input:disabled,
select:disabled,
.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--pdfom-link);
  outline-offset: 3px;
  box-shadow: var(--pdfom-focus);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  color: var(--pdfom-heading);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
}

h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.75rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--pdfom-border);
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dae1e7;
  border-radius: var(--pdfom-radius-control);
  background: var(--pdfom-surface);
  padding: 0.65rem 0.9rem;
  box-shadow: inset 0 1px 2px rgb(55 63 80 / 4%);
}

textarea {
  min-height: 8rem;
}

::placeholder {
  color: #68758c;
  opacity: 1;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.8rem 1rem;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  background: var(--pdfom-surface);
  border-radius: var(--pdfom-radius-control);
}

.site {
  min-height: 100vh;
  min-height: 100dvh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--pdfom-layer-header);
  height: var(--pdfom-header);
  background: var(--pdfom-surface);
  border-bottom: 1px solid var(--pdfom-border);
  box-shadow: 0 2px 10px rgb(34 45 101 / 5%);
}

.site-header__inner {
  max-width: 120rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.875rem;
  display: grid;
  grid-template-columns: 8.5rem minmax(20rem, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.site-header__brand {
  min-width: 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--pdfom-brand);
  font-weight: 700;
  line-height: 1.05;
}

.site-brand:hover {
  color: var(--pdfom-brand);
}

.site-brand__image {
  width: 7.5rem;
  max-height: 4.25rem;
  object-fit: contain;
}

.site-brand__mark {
  min-width: 2.6rem;
  padding: 0.4rem;
  background: var(--pdfom-primary);
  border-radius: var(--pdfom-radius-control);
  color: var(--pdfom-surface);
  font-size: 0.9rem;
  text-align: center;
}

.site-brand__text {
  max-width: 7rem;
}

.product-search {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) 14rem auto;
}

.product-search__field {
  position: relative;
}

.product-search__field .dashicons {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  transform: translateY(-50%);
  color: var(--pdfom-muted);
}

.product-search__field input {
  border-radius: var(--pdfom-radius-control) 0 0 var(--pdfom-radius-control);
  padding-left: 2.7rem;
}

.product-search__category {
  border-left: 0;
  border-radius: 0;
}

.product-search__submit {
  border-radius: 0 var(--pdfom-radius-control) var(--pdfom-radius-control) 0;
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-tool {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--pdfom-text);
}

.header-tool:hover {
  color: var(--pdfom-link);
}

.header-tool__icon {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: var(--pdfom-surface-muted);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.header-tool__copy {
  min-width: 4rem;
  color: var(--pdfom-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.header-tool__copy small {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--pdfom-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.header-tool__cart {
  position: relative;
}

.header-tool__cart strong {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--pdfom-primary);
  color: var(--pdfom-surface);
  display: grid;
  place-items: center;
  font-family: "Rubik", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
}

.menu-toggle,
.sidebar-close {
  display: none;
  width: 44px;
  padding: 0;
  border-color: var(--pdfom-border);
  background: var(--pdfom-surface-muted);
  color: var(--pdfom-heading);
}

.site-sidebar {
  position: fixed;
  top: var(--pdfom-header);
  bottom: 0;
  left: 0;
  z-index: var(--pdfom-layer-sidebar);
  width: var(--pdfom-sidebar);
  border-right: 1px solid var(--pdfom-border);
  background: var(--pdfom-surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.site-sidebar__top {
  padding: 1.5rem 1.875rem 1rem;
}

.site-sidebar__heading {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--pdfom-brand);
  font-weight: 500;
}

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav ul {
  margin: 0;
  padding: 0 0 0 1.2rem;
  list-style: none;
}

.sidebar-nav li {
  position: relative;
  margin: 0;
}

.sidebar-nav a {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.65rem;
  border-radius: var(--pdfom-radius-control);
  color: var(--pdfom-text);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.sidebar-nav a:hover,
.sidebar-nav .current-menu-item > a,
.sidebar-nav .current-cat > a {
  background: var(--pdfom-surface-muted);
  color: var(--pdfom-brand);
}

.site-sidebar__contact {
  border-top: 1px solid var(--pdfom-border);
  padding: 1.5rem 1.875rem 2rem;
}

.contact-row {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-row > .dashicons {
  color: var(--pdfom-brand);
  font-size: 1.3rem;
}

.contact-row small {
  display: block;
  color: var(--pdfom-muted);
  font-size: 0.75rem;
}

.contact-row a {
  color: var(--pdfom-text);
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}

.site-sidebar__follow {
  margin: 1.25rem 0 0.65rem;
  color: var(--pdfom-heading);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links a {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--pdfom-border);
  border-radius: var(--pdfom-radius-control);
  background: var(--pdfom-surface-muted);
  color: var(--pdfom-text);
  display: grid;
  place-items: center;
}

.social-links a:hover {
  background: var(--pdfom-link);
  border-color: var(--pdfom-link);
  color: var(--pdfom-surface);
}

.content-with-sidebar {
  min-height: calc(100vh - var(--pdfom-header));
  min-height: calc(100dvh - var(--pdfom-header));
  margin-left: var(--pdfom-sidebar);
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 3rem;
}

.content-with-sidebar > * {
  width: 100%;
  max-width: var(--pdfom-content-max);
  margin-left: auto;
  margin-right: auto;
}

.how-it-works {
  padding: 0.5rem 0 2rem;
}

.section-title {
  margin-bottom: 1.75rem;
}

.section-title--center {
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--pdfom-border);
  border-radius: var(--pdfom-radius);
  background: var(--pdfom-surface);
  overflow: hidden;
}

.purchase-step {
  min-height: 14rem;
  padding: 2rem clamp(1.25rem, 2.4vw, 2.5rem);
  position: relative;
}

.purchase-step + .purchase-step {
  border-left: 1px solid var(--pdfom-border);
}

.purchase-step__number {
  display: block;
  margin-bottom: 1rem;
  color: var(--pdfom-border);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.purchase-step h2 {
  font-size: 1.05rem;
  line-height: 1.45;
}

.purchase-step p {
  color: var(--pdfom-muted);
  font-size: 0.875rem;
}

.manuals-section {
  padding-top: 1rem;
}

.catalog-heading {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--pdfom-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.catalog-heading h2 {
  margin: 0;
}

.button--outline {
  min-height: 38px;
  border-color: var(--pdfom-heading);
  background: transparent;
  color: var(--pdfom-heading);
  font-size: 0.8125rem;
}

.button--outline:hover {
  background: var(--pdfom-heading);
  border-color: var(--pdfom-heading);
}

.products,
.woocommerce ul.products {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.products .product,
.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  padding: 0 0 1.25rem;
  border-radius: var(--pdfom-radius);
  background: var(--pdfom-surface);
  box-shadow: var(--pdfom-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.woocommerce ul.products li.product a img,
.products .product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  background: var(--pdfom-surface);
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.products .product .woocommerce-loop-product__title {
  padding: 0.15rem 1.15rem 0;
  color: var(--pdfom-heading);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.woocommerce ul.products li.product .price,
.products .product .price {
  margin: auto 1.15rem 0.8rem;
  color: #cc3333;
  font-size: 0.95rem;
  font-weight: 500;
}

.woocommerce ul.products li.product .button,
.products .product .button {
  min-height: 38px;
  margin: 0 1.15rem;
  border-color: var(--pdfom-primary);
  background: var(--pdfom-primary);
  font-size: 0.8rem;
}

.woocommerce ul.products li.product .button:hover,
.products .product .button:hover {
  border-color: #d52f31;
  background: #d52f31;
}

.woocommerce span.onsale {
  min-width: 3rem;
  min-height: 2rem;
  border-radius: 0 var(--pdfom-radius-control) var(--pdfom-radius-control) 0;
  background: var(--pdfom-primary);
  line-height: 2rem;
}

.content-page,
.commerce-page {
  padding-top: 1.5rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--pdfom-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.8125rem;
}

.breadcrumbs a {
  color: var(--pdfom-muted);
}

.rank-math-breadcrumb p {
  margin: 0;
}

.page-heading {
  margin-bottom: 1.5rem;
}

.page-heading h1 {
  margin-bottom: 0.4rem;
}

.archive-description {
  max-width: 65ch;
  color: var(--pdfom-muted);
}

.content-surface,
.woocommerce-surface,
.comments-area {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border-radius: var(--pdfom-radius);
  background: var(--pdfom-surface);
  box-shadow: var(--pdfom-shadow);
}

.entry-content {
  overflow-wrap: anywhere;
}

.entry-content > * {
  max-width: 76ch;
}

.entry-content > .alignwide {
  max-width: 100%;
}

.entry-content > .alignfull {
  width: calc(100% + 4rem);
  max-width: none;
  margin-left: -2rem;
}

.entry-meta {
  color: var(--pdfom-muted);
  font-size: 0.8125rem;
}

.entry-media {
  margin: 1.5rem 0;
}

.entry-media img {
  border-radius: var(--pdfom-radius);
}

.post-list {
  display: grid;
  gap: 1.25rem;
}

.post-card {
  padding: 1rem;
  border-radius: var(--pdfom-radius);
  background: var(--pdfom-surface);
  box-shadow: var(--pdfom-shadow);
  display: grid;
  grid-template-columns: minmax(12rem, 19rem) 1fr;
  gap: 1.5rem;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  border-radius: var(--pdfom-radius-control);
  object-fit: cover;
}

.post-card__body {
  align-self: center;
}

.post-card__title a {
  color: var(--pdfom-heading);
}

.pagination,
.nav-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-numbers {
  min-width: 42px;
  min-height: 42px;
  padding: 0.55rem;
  border: 1px solid var(--pdfom-border);
  border-radius: var(--pdfom-radius-control);
  background: var(--pdfom-surface);
  display: grid;
  place-items: center;
}

.page-numbers.current {
  background: var(--pdfom-brand);
  border-color: var(--pdfom-brand);
  color: var(--pdfom-surface);
}

.notice-panel,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--pdfom-border);
  border-left: 4px solid var(--pdfom-link);
  border-radius: var(--pdfom-radius-control);
  background: var(--pdfom-surface);
}

.woocommerce-error {
  border-left-color: var(--pdfom-danger);
}

.commerce-page .woocommerce-surface {
  overflow: hidden;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(22rem, 1.1fr);
  gap: 1.5rem;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
  margin: 0;
}

.woocommerce div.product div.summary {
  padding: 1rem;
}

.woocommerce div.product .product_title {
  font-size: clamp(1.7rem, 3vw, 2rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #cc3333;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.woocommerce div.product form.cart .button,
.woocommerce .checkout-button,
.woocommerce #place_order {
  border-color: var(--pdfom-primary);
  background: var(--pdfom-primary);
  box-shadow: 0 0.5rem 1.125rem -0.5rem rgb(254 64 66 / 55%);
}

.woocommerce div.product form.cart .button:hover,
.woocommerce .checkout-button:hover,
.woocommerce #place_order:hover {
  border-color: #d52f31;
  background: #d52f31;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-color: var(--pdfom-border);
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-color: var(--pdfom-border);
  border-radius: var(--pdfom-radius);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--pdfom-border);
  border-radius: var(--pdfom-radius-control);
  display: flex;
  align-items: center;
}

.error-page,
.empty-state {
  max-width: 52rem !important;
  text-align: center;
}

.error-page__code {
  margin: 0;
  color: var(--pdfom-border);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 500;
  line-height: 1;
}

.error-page .product-search,
.empty-state .product-search {
  max-width: 46rem;
  margin: 1.5rem auto;
}

.site-footer {
  margin-left: var(--pdfom-sidebar);
  color: rgb(255 255 255 / 68%);
  background: #48494b;
}

.site-footer__main {
  max-width: var(--pdfom-content-max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-brand .site-brand {
  color: var(--pdfom-surface);
}

.footer-brand .site-brand__image {
  width: min(11rem, 75%);
  max-height: 10rem;
}

.footer-widget__title {
  margin-bottom: 1.125rem;
  color: var(--pdfom-surface);
  font-size: 1.0625rem;
  font-weight: 500;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a {
  min-height: 44px;
  color: rgb(255 255 255 / 68%);
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.footer-menu a:hover {
  color: var(--pdfom-surface);
}

.footer-tags .tag-cloud-link {
  min-height: 44px;
  margin: 0 0.35rem 0.45rem 0;
  padding: 0.375rem 0.5625rem;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 0.1875rem;
  color: var(--pdfom-surface);
  display: inline-flex;
  align-items: center;
}

.site-footer__bottom {
  min-height: 5rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: var(--pdfom-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__bottom p {
  margin: 0;
}

.social-links--footer a {
  border-color: rgb(255 255 255 / 25%);
  background: transparent;
  color: var(--pdfom-surface);
}

.sidebar-scrim {
  display: none;
}

.admin-bar .site-header {
  top: 32px;
}

.admin-bar .site-sidebar {
  top: calc(var(--pdfom-header) + 32px);
}

@media (max-width: 1240px) {
  .site-header__inner {
    grid-template-columns: 7.5rem minmax(18rem, 1fr) auto;
    gap: 0.9rem;
    padding-inline: 1rem;
  }

  .header-tool__copy {
    display: none;
  }

  .product-search {
    grid-template-columns: minmax(10rem, 1fr) 11rem auto;
  }

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

@media (max-width: 1023px) {
  .site-header__inner {
    grid-template-columns: 44px 7.5rem minmax(12rem, 1fr) auto;
  }

  .menu-toggle,
  .sidebar-close {
    display: inline-grid;
    place-items: center;
  }

  .site-sidebar {
    top: 0;
    width: min(22rem, 88vw);
    transform: translateX(-102%);
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-scrim {
    position: fixed;
    inset: 0;
    z-index: var(--pdfom-layer-scrim);
    background: rgb(34 45 101 / 52%);
  }

  .sidebar-scrim:not([hidden]) {
    display: block;
  }

  .content-with-sidebar,
  .site-footer {
    margin-left: 0;
  }

  .admin-bar .site-sidebar {
    top: 0;
  }

  .no-js .menu-toggle,
  .no-js .sidebar-close {
    display: none;
  }

  .no-js .site-sidebar {
    position: relative;
    top: auto;
    bottom: auto;
    width: 100%;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--pdfom-border);
    transform: none;
  }
}

@media (max-width: 767px) {
  :root {
    --pdfom-header: 4.375rem;
  }

  .site-header__inner {
    grid-template-columns: 44px minmax(5.5rem, 1fr) auto;
    gap: 0.55rem;
    padding-inline: 0.75rem;
  }

  .site-header__search {
    position: absolute;
    top: var(--pdfom-header);
    left: 0;
    right: 0;
    padding: 0.6rem 0.75rem;
    border-top: 1px solid var(--pdfom-border);
    border-bottom: 1px solid var(--pdfom-border);
    background: var(--pdfom-surface);
  }

  .site-header {
    margin-bottom: 4.1rem;
  }

  .product-search {
    grid-template-columns: minmax(8rem, 1fr) auto;
  }

  .product-search__category {
    display: none;
  }

  .site-header__tools {
    gap: 0.25rem;
  }

  .header-tool__icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .site-brand__image {
    width: 6rem;
    max-height: 3.5rem;
  }

  .site-brand__text {
    display: none;
  }

  .content-with-sidebar {
    padding: 1.25rem 1rem 2.25rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .purchase-step {
    min-height: 0;
    padding: 1.4rem;
  }

  .purchase-step + .purchase-step {
    border-top: 1px solid var(--pdfom-border);
    border-left: 0;
  }

  .purchase-step__number {
    margin-bottom: 0.65rem;
    font-size: 3rem;
  }

  .catalog-heading {
    align-items: flex-start;
  }

  .products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .products .product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .price,
  .products .product .price {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    margin-left: 0;
    margin-right: 0;
  }

  .woocommerce ul.products li.product .button,
  .products .product .button {
    margin-inline: 0.8rem;
    white-space: normal;
  }

  .post-card,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 549px) {
  .products,
  .woocommerce ul.products,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .catalog-heading {
    flex-direction: column;
  }

  .button--outline {
    width: 100%;
  }

  .products .product,
  .woocommerce ul.products li.product {
    display: grid;
    grid-template-columns: 42% 1fr;
    padding-bottom: 0;
  }

  .woocommerce ul.products li.product a:first-child,
  .products .product a:first-child {
    grid-row: 1 / span 4;
  }

  .woocommerce ul.products li.product a img,
  .products .product img {
    height: 100%;
    min-height: 11rem;
  }

  .woocommerce ul.products li.product .button,
  .products .product .button {
    margin: 0 0.8rem 0.8rem;
  }

  .content-surface,
  .woocommerce-surface,
  .comments-area {
    padding: 1rem;
  }

  .entry-content > .alignfull {
    width: calc(100% + 2rem);
    margin-left: -1rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* Source-parity pass: preserve the current Flatsome child presentation. */
@font-face {
  font-family: "cartzilla-icons";
  src:
    url("../fonts/cartzilla-icons.woff") format("woff"),
    url("../fonts/cartzilla-icons.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}

[class^="ci-"],
[class*=" ci-"] {
  display: inline-block;
  font-family: "cartzilla-icons" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
}

.ci-search::before {
  content: "\e972";
}

.ci-cart::before {
  content: "\e91a";
}

.site-header {
  position: fixed;
  right: 0;
  left: 0;
  height: 80px;
  border-bottom: 0;
  box-shadow: 0 2px 10px rgb(34 45 101 / 7%);
}

.site-header__inner {
  width: 100%;
  max-width: none;
  padding: 0 30px;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 15px;
}

.site-header__brand {
  width: 120px;
}

.site-brand__image {
  width: 120px;
  max-height: 80px;
}

.site-header__search {
  width: 60%;
}

.product-search {
  grid-template-columns: minmax(0, 1fr) 224px;
}

.product-search__field input {
  height: 44px;
  padding-left: 3rem;
  border-radius: 4px 0 0 4px;
  box-shadow: none;
}

.product-search__category {
  width: 224px;
  height: 44px;
  padding-right: 3rem;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background-color: #fff;
  font-size: 0.9375rem;
}

.product-search__submit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4b566b;
}

.product-search__submit:hover {
  border: 0;
  background: transparent;
  color: #373f50;
}

.site-header__tools {
  gap: 1.35rem;
}

.header-account {
  min-height: 44px;
  color: #4b566b;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.header-cart {
  min-height: 48px;
  color: #4b566b;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.header-cart__icon {
  position: relative;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: #f3f5f9;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.header-cart__icon strong {
  position: absolute;
  top: -0.3125rem;
  right: -0.3125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fe4042;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: center;
}

.header-cart__price {
  color: #4b566b;
  font-size: 0.875rem;
}

.site-sidebar {
  top: 80px;
  z-index: 99;
  padding-bottom: 7rem;
  transform: none;
  transition: none;
}

.menu-toggle,
.sidebar-close {
  display: none;
}

.site-sidebar__top {
  padding: 0 30px 16px;
}

.site-sidebar__heading {
  min-height: 56px;
  margin-bottom: 0;
}

.sidebar-tabs {
  width: 100%;
  height: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sidebar-tab {
  min-height: 56px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #4b566b;
  font-size: 1rem;
  font-weight: 500;
}

.sidebar-tab:hover {
  border-color: transparent;
  background: transparent;
  color: #222d65;
}

.sidebar-tab.is-active {
  border-bottom-color: #222d65;
  color: #222d65;
}

.sidebar-panel[hidden] {
  display: none;
}

.sidebar-nav li {
  padding-right: 20px;
  padding-left: 10px;
}

.sidebar-nav ul {
  padding-left: 1.375rem;
}

.sidebar-nav a {
  min-height: 0;
  padding: 1rem 0;
  border-radius: 0;
  color: #4b566b;
  font-size: 1rem;
  line-height: 1.2;
}

.sidebar-nav ul a {
  font-size: 0.875rem;
  font-weight: 400;
}

.sidebar-nav a:hover,
.sidebar-nav .current-menu-item > a,
.sidebar-nav .current-cat > a {
  background: transparent;
  color: #4e54c8;
}

.site-sidebar__contact {
  padding: 30px;
}

.content-with-sidebar {
  margin-left: 22rem;
  padding: 110px 30px 30px;
}

.content-with-sidebar > * {
  max-width: none;
}

.how-it-works {
  padding: 0 0 30px;
}

.how-it-works .section-title {
  margin-bottom: 30px;
  padding-top: 0.5rem;
  font-size: 1.75rem;
}

.steps-grid {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.purchase-step {
  min-height: 112px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 33.333% 66.667%;
  align-items: center;
}

.purchase-step + .purchase-step {
  border-left: 0;
}

.purchase-step:nth-child(2) {
  border-right: 1px solid #e3e9ef;
  border-left: 1px solid #e3e9ef;
}

.purchase-step__number {
  margin: 0;
  color: #e3e9ef;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.purchase-step p {
  margin: 0;
  color: #373f50;
  font-size: 1rem;
}

.manuals-section {
  padding: 30px 0;
}

.catalog-heading {
  margin: 0 15px 20px;
  padding: 0 0 1.5rem;
}

.catalog-heading h2 {
  padding-top: 1rem;
  font-size: 1.75rem;
}

.button--outline {
  min-height: 34px;
  padding: 0.425rem 1rem;
  border-color: #0a0000;
  border-radius: 0.1875rem;
  color: #0a0000;
  font-size: 0.8125rem;
  font-weight: 400;
}

.products,
.woocommerce ul.products {
  padding: 0 5px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 19.6px;
}

.products .product,
.woocommerce ul.products li.product {
  padding-bottom: 30px;
  border-radius: 8px;
  box-shadow: none;
}

.woocommerce ul.products li.product a img,
.products .product img {
  aspect-ratio: 300 / 388;
  object-fit: contain;
}

.product-card-category {
  margin: 0;
  padding: 1.2rem 1.2rem 0;
  color: #7d879c;
  font-size: 0.75rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.products .product .woocommerce-loop-product__title {
  min-height: 4.1rem;
  padding: 0.15rem 1.2rem 0;
  font-size: 0.875rem;
  line-height: 1.45;
}

.woocommerce ul.products li.product .price,
.products .product .price {
  margin: 0 1.2rem 0.8rem;
  color: #cc3333;
}

.woocommerce ul.products li.product .button,
.products .product .button {
  min-height: 32px;
  margin: 0 1.2rem;
  padding: 0.35rem 0.65rem;
  border: 0;
  border-radius: 0.25rem;
  background: #fe4042;
  font-size: 0.8rem;
  font-weight: 400;
}

@media (hover: hover) and (pointer: fine) {
  .woocommerce ul.products li.product .button,
  .products .product .button {
    display: none;
  }

  .woocommerce ul.products li.product:hover .button,
  .products .product:hover .button {
    display: inline-flex;
  }
}

.site-footer {
  margin-left: 22rem;
  background: #48494b;
}

.site-footer__main {
  max-width: none;
  padding: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.site-footer__main > * {
  padding: 0 15px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  display: block;
}

.footer-logo__image {
  width: 60%;
  margin: 0 auto;
}

.footer-widget__title {
  margin-bottom: 1.125rem;
  font-size: 1.0625rem;
}

.footer-menu {
  margin-top: 30px;
}

.footer-menu a {
  min-height: 0;
  padding: 0.25rem 0;
}

.footer-tags {
  padding-top: 0;
}

.footer-tags .tag-cloud-link {
  min-height: 0;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.375rem 0.5625rem;
  border-color: #e3e9ef;
}

.site-footer__bottom {
  min-height: 92px;
  padding: 30px;
  background: #202020;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-copyright {
  color: rgb(255 255 255 / 72%);
  text-align: center;
}

.social-links--footer {
  justify-content: center;
}

.social-links--footer a {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #1c5a60;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.payment-icons span {
  min-width: 2.25rem;
  min-height: 1.5rem;
  padding: 0.18rem 0.28rem;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 0.2rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 600;
}

.single-product .woocommerce-surface {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.single-product .woocommerce div.product {
  gap: 1rem;
}

.single-product .woocommerce div.product div.images {
  padding: 1.5rem;
  border-radius: 0.4375rem;
  background: #fff;
}

.single-product .woocommerce div.product div.summary {
  margin-left: 1rem;
  padding: 3rem;
  border-radius: 0.4375rem;
  background: #fff;
}

.single-product .woocommerce div.product .woocommerce-tabs {
  padding: 1.5rem;
  border-radius: 0.4375rem;
  background: #fff;
}

.single-product .woocommerce div.product .related,
.single-product .woocommerce div.product .upsells {
  padding: 1.5rem 0 0;
}

.single-product .related > h2,
.single-product .upsells > h2 {
  font-size: 1.75rem;
  text-align: center;
  text-transform: none;
}

.single-product .single_add_to_cart_button {
  border-color: #fe4042;
  border-radius: 0.3125rem;
  background: #fe4042;
  box-shadow: 0 0.5rem 1.125rem -0.5rem rgb(254 64 66 / 70%);
  font-weight: 400;
}

.single-product .single_add_to_cart_button::before {
  margin-right: 0.5rem;
  content: "\e91a";
  font-family: "cartzilla-icons";
  font-weight: normal;
}

.single-product .product_title {
  margin-bottom: 0.75rem;
  color: #373f50;
  font-size: 2rem;
  font-weight: 500;
}

.admin-bar .site-header {
  top: 32px;
}

.admin-bar .site-sidebar {
  top: 112px;
}

@media (max-width: 1240px) and (min-width: 850px) {
  .site-header__inner {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    padding: 0 30px;
  }

  .site-header__search {
    width: 75%;
  }

}

@media (max-width: 849px) {
  :root {
    --pdfom-header: 110px;
  }

  .site-header {
    height: 110px;
  }

  .site-header__inner {
    height: 70px;
    padding: 0 15px;
    grid-template-columns: 44px minmax(90px, 1fr) auto;
  }

  .menu-toggle,
  .sidebar-close {
    display: inline-grid;
    place-items: center;
  }

  .site-header__brand {
    width: auto;
  }

  .site-header__brand .site-brand {
    display: flex;
    justify-content: center;
  }

  .site-brand__image {
    width: 120px;
    max-height: 70px;
  }

  .site-header__search {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    width: 100%;
    padding: 0 15px;
    background: #f1f1f1;
  }

  .product-search {
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .product-search__category {
    width: 150px;
    display: block;
  }

  .header-account {
    display: none;
  }

  .header-cart__price {
    display: none;
  }

  .site-sidebar {
    top: 0;
    width: min(22rem, 88vw);
    padding-bottom: 0;
    transform: translateX(-102%);
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .site-sidebar.is-open {
    transform: translateX(0);
  }

  .content-with-sidebar {
    margin-left: 0;
    padding: 140px 15px 30px;
  }

  .site-footer {
    margin-left: 0;
  }

  .admin-bar .site-sidebar {
    top: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .purchase-step {
    min-height: 128px;
    padding: 15px 0;
  }

  .purchase-step:nth-child(2) {
    border: 0;
    border-top: 1px solid #e3e9ef;
    border-bottom: 1px solid #e3e9ef;
  }

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

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }

  .single-product .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .single-product .woocommerce div.product div.summary {
    margin-top: 20px;
    margin-left: 0;
    padding: 16px;
  }
}

@media (max-width: 549px) {
  .products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .site-footer__main,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catalog-heading h2 {
    font-size: 1.25rem;
  }

  .button--outline {
    font-size: 0.65rem;
  }

  .product-card-category {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .products .product .woocommerce-loop-product__title {
    min-height: 5.2rem;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
  }

  .woocommerce ul.products li.product .price,
  .products .product .price {
    margin-right: 0.8rem;
    margin-left: 0.8rem;
  }
}

@media print {
  .site-header,
  .site-sidebar,
  .site-footer,
  .sidebar-scrim {
    display: none !important;
  }

  .content-with-sidebar {
    margin: 0;
    padding: 0;
  }
}
