.sytec-skip-link {
  position: fixed;
  z-index: 100000;
  top: -100px;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: var(--sytec-radius-medium);
  background: var(--sytec-color-primary);
  color: var(--sytec-color-secondary);
}

.sytec-skip-link:focus {
  top: 1rem;
}

.sytec-site-header {
  z-index: 100;
}

.sytec-site-header:not(.sytec-builder-header) {
  border-bottom: 1px solid var(--sytec-color-border);
  background: var(--sytec-header-background, var(--sytec-color-primary));
  color: var(--sytec-header-text, var(--sytec-color-secondary));
  box-shadow: var(--sytec-shadow-small);
}

.sytec-header-inner {
  display: flex;
  min-height: var(--sytec-header-height);
  align-items: center;
  gap: var(--sytec-header-gap);
}

.sytec-brand {
  min-width: 0;
  flex: 0 1 auto;
}

.custom-logo-link {
  display: inline-flex;
}

.custom-logo {
  width: auto;
  max-width: var(--sytec-logo-width);
  max-height: 56px;
}

.sytec-site-title {
  color: var(--sytec-header-link, var(--sytec-color-secondary));
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.sytec-primary-navigation {
  min-width: 0;
  margin-inline-start: auto;
}

.sytec-menu,
.sytec-footer-menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.sytec-menu li {
  position: relative;
}

.sytec-menu a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: var(--sytec-radius-small);
  color: var(--sytec-header-link, var(--sytec-color-secondary));
  font-weight: 650;
  text-decoration: none;
}

.sytec-menu a:hover,
.sytec-menu .current-menu-item > a,
.sytec-menu .current_page_item > a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sytec-header-link, var(--sytec-color-secondary));
}

.sytec-menu .sub-menu {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  display: none;
  width: 220px;
  margin: 0;
  padding: 0.5rem;
  border: 1px solid var(--sytec-color-border);
  border-radius: var(--sytec-radius-medium);
  background: var(--sytec-color-secondary);
  box-shadow: var(--sytec-shadow-medium);
  list-style: none;
}

.sytec-menu .sub-menu a {
  color: var(--sytec-color-primary);
}

.sytec-secondary-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: color-mix(in srgb, var(--sytec-header-background), #000 16%);
}

.sytec-secondary-menu {
  display: flex;
  min-height: 34px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  list-style: none;
}

.sytec-secondary-menu a {
  color: var(--sytec-header-link);
  font-size: 0.8rem;
  text-decoration: none;
}

.sytec-menu-admin-hint {
  margin-inline-start: auto;
  color: var(--sytec-header-link);
  font-size: 0.8rem;
}

.sytec-menu li:hover > .sub-menu,
.sytec-menu li:focus-within > .sub-menu {
  display: block;
}

.sytec-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sytec-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sytec-header-link);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.sytec-icon-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  min-height: 42px;
  padding: 0.55rem;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--sytec-header-link);
}

.sytec-icon-button:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: var(--sytec-header-link);
  transform: none;
}

.sytec-icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sytec-cart-link__count {
  display: inline-grid;
  min-width: 1.5rem;
  height: 1.5rem;
  padding-inline: 0.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--sytec-color-accent);
  color: var(--sytec-color-secondary);
  font-size: 0.75rem;
}

.sytec-menu-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  padding: 10px 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.sytec-menu-toggle:hover,
.sytec-menu-toggle:active {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  transform: none;
}

.sytec-menu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.sytec-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--sytec-transition), opacity var(--sytec-transition);
}

.sytec-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sytec-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.sytec-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sytec-mobile-navigation {
  z-index: 1001;
  border-top: 1px solid var(--sytec-color-border);
  background: var(--sytec-color-secondary);
  color: var(--sytec-color-text);
}

.sytec-mobile-navigation[hidden] {
  display: none;
}

.sytec-mobile-navigation__header {
  display: flex;
  padding: 1rem var(--sytec-container-padding);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sytec-color-border);
}

.sytec-mobile-navigation__title {
  color: var(--sytec-color-primary);
  font-weight: 800;
}

.sytec-mobile-close,
.sytec-submenu-toggle {
  width: 42px;
  min-height: 42px;
  padding: 0.4rem;
  border-color: var(--sytec-color-border);
  background: transparent;
  color: var(--sytec-color-primary);
  box-shadow: none;
}

.sytec-mobile-navigation__content {
  padding: 0 var(--sytec-container-padding) 1.5rem;
}

.sytec-menu--mobile {
  display: block;
  padding-block: 0.75rem 1rem;
}

.sytec-menu--mobile a {
  padding-block: 0.8rem;
  color: var(--sytec-color-primary);
}

.sytec-menu--mobile .sub-menu {
  position: static;
  display: none;
  width: auto;
  margin-inline-start: 1rem;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.sytec-menu--mobile .menu-item-has-children {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.sytec-menu--mobile .menu-item-has-children > .sub-menu {
  grid-column: 1 / -1;
}

.sytec-menu--mobile .menu-item-has-children.is-submenu-open > .sub-menu {
  display: block;
}

.sytec-submenu-toggle::before {
  content: "+";
  font-size: 1.3rem;
}

.sytec-submenu-toggle[aria-expanded="true"]::before {
  content: "−";
}

.sytec-mobile-quick-links {
  display: flex;
  padding-top: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  border-top: 1px solid var(--sytec-color-border);
}

.sytec-mobile-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.sytec-mobile-layout-drawer .sytec-mobile-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  overflow-y: auto;
  border: 0;
  box-shadow: var(--sytec-shadow-medium);
}

.sytec-header-search {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--sytec-color-secondary);
}

.sytec-header-search .sytec-search-form {
  margin-block: 0;
  padding-block: 1rem;
}

.sytec-page-header,
.sytec-entry-header {
  max-width: 820px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.sytec-entry-featured {
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: var(--sytec-radius-large);
}

.sytec-entry-content > * {
  max-width: 820px;
  margin-inline: auto;
}

.sytec-entry-content > .alignwide,
.sytec-entry-content > .alignfull {
  max-width: none;
}

.sytec-front-page__media img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.sytec-front-page .sytec-page-content {
  width: 100%;
  max-width: none;
  padding-block: 0;
}

.sytec-front-page .alignfull {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.sytec-front-page .alignwide {
  width: min(100% - (var(--sytec-container-padding) * 2), var(--sytec-container-width));
  margin-inline: auto;
}

.sytec-home-hero__image img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 2;
  border-radius: var(--sytec-radius-large);
  object-fit: cover;
}

.sytec-home-card,
.sytec-home-category-card {
  height: 100%;
}

.sytec-home-card > :last-child,
.sytec-home-category-card > :last-child,
.sytec-home-benefits .wp-block-column > :last-child {
  margin-bottom: 0;
}

.sytec-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.sytec-card {
  overflow: hidden;
  border: 1px solid var(--sytec-color-border);
  border-radius: var(--sytec-radius-large);
  background: var(--sytec-color-secondary);
  box-shadow: var(--sytec-shadow-small);
}

.sytec-entry-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.sytec-entry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.sytec-entry-card:hover .sytec-entry-card__media img {
  transform: scale(1.025);
}

.sytec-entry-card__body {
  padding: 1.4rem;
}

.sytec-entry-card h2 {
  font-size: 1.45rem;
}

.sytec-entry-card h2 a {
  color: inherit;
  text-decoration: none;
}

.sytec-entry-meta {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--sytec-color-muted);
  font-size: 0.9rem;
}

.sytec-text-link {
  font-weight: 750;
}

.sytec-empty-state,
.sytec-error-page {
  max-width: 680px;
  margin-inline: auto;
  padding-block: clamp(4rem, 12vw, 9rem);
  text-align: center;
}

.sytec-error-page__code {
  margin: 0;
  color: var(--sytec-color-accent);
  font-size: clamp(4rem, 18vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
}

.sytec-search-form {
  max-width: 620px;
  margin: 1.5rem auto;
  text-align: start;
}

.sytec-search-form__row {
  display: flex;
  gap: 0.65rem;
}

.sytec-comments {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sytec-color-border);
}

.sytec-comment-list {
  padding: 0;
  list-style: none;
}

.sytec-comment-list .comment {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--sytec-color-border);
  border-radius: var(--sytec-radius-medium);
}

.sytec-site-footer {
  flex: 0 0 auto;
  padding-top: var(--sytec-footer-spacing);
  background: var(--sytec-footer-background, var(--sytec-color-primary));
  color: var(--sytec-footer-text, #cbd5e1);
}

.sytec-site-footer a,
.sytec-site-title--footer,
.sytec-site-footer h2 {
  color: var(--sytec-footer-link, var(--sytec-color-secondary));
}

.sytec-footer-intro {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.sytec-footer-brand {
  max-width: 440px;
}

.sytec-footer-logo {
  width: auto;
  max-width: min(var(--sytec-logo-width), 100%);
  max-height: 70px;
  margin-bottom: 1rem;
}

.sytec-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.sytec-footer-menu {
  align-items: flex-start;
  flex-direction: column;
}

.sytec-footer-bottom {
  display: flex;
  margin-top: 2.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sytec-footer-newsletter {
  margin-top: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.sytec-pattern-placeholder {
  min-height: 220px;
  padding: 3rem;
  border: 1px dashed var(--sytec-color-border);
  border-radius: var(--sytec-radius-large);
}

.sytec-footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.sytec-footer-widget__title {
  font-size: 1.1rem;
}

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

.page-numbers {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  padding: 0.45rem;
  place-items: center;
  border: 1px solid var(--sytec-color-border);
  border-radius: var(--sytec-radius-small);
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--sytec-color-accent);
  background: var(--sytec-color-accent);
  color: var(--sytec-color-secondary);
}

.sytec-notice,
.notice,
.wp-block-post-comments-form .comment-form-cookies-consent {
  padding: 1rem;
  border-inline-start: 4px solid var(--sytec-color-accent);
  background: var(--sytec-color-surface);
}

/* Header Builder 3 × 3. */
.sytec-builder-header {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

body:not(.sytec-header-overlay) .sytec-builder-header--has-sticky,
body:not(.sytec-header-overlay) .sytec-builder-header--has-sticky .sytec-builder-header__device--desktop {
  display: contents;
}

body.sytec-header-overlay .sytec-builder-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  width: 100%;
}

.sytec-builder-header__device--mobile {
  display: none;
}

.sytec-header-row {
  min-width: 0;
  border-bottom: var(--sytec-row-divider-size, 1px) solid var(--sytec-row-border);
  background: var(--sytec-row-background);
  color: var(--sytec-row-text);
  transition: transform var(--sytec-transition);
}

.sytec-header-row--shadow {
  box-shadow: 0 1px var(--sytec-row-shadow-size, 3px) color-mix(in srgb, var(--sytec-row-shadow-color, #000) 12%, transparent);
}

.sytec-header-row--sticky {
  position: sticky;
  z-index: 102;
  top: var(--sytec-row-sticky-offset, 0px);
}

body.sytec-header-overlay .sytec-header-row--sticky {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
}

.sytec-header-row__inner {
  width: 100%;
  max-width: var(--sytec-header-container-width, 1200px);
  margin-inline: auto;
  display: grid;
  min-height: var(--sytec-row-height);
  padding-inline: var(--sytec-container-padding);
  grid-template-columns: var(--sytec-row-columns);
  align-items: center;
  transition: min-height var(--sytec-transition);
}

.sytec-header-row[data-scroll-behavior="shrink"].is-scrolled .sytec-header-row__inner {
  min-height: max(44px, calc(var(--sytec-row-height) * 0.78));
}

.sytec-header-row[data-scroll-behavior="hide"].is-scroll-hidden {
  transform: translateY(-100%);
}

.sytec-header-row__inner.sytec-container {
  width: 100%;
  max-width: var(--sytec-header-container-width, 1200px);
  margin-inline: auto;
  padding-inline: 0;
}

.sytec-header-zone {
  display: flex;
  min-width: 0;
  padding-inline: 0.3rem;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.35rem, 1.25vw, var(--sytec-header-gap));
}

.sytec-header-zone:first-child {
  padding-inline-start: 0;
}

.sytec-header-zone:last-child {
  padding-inline-end: 0;
}

.sytec-header-zone--align-start {
  justify-content: flex-start;
}

.sytec-header-zone--align-center {
  justify-content: center;
}

.sytec-header-zone--align-end {
  justify-content: flex-end;
}

.sytec-header-element {
  min-width: 0;
  flex: 0 0 auto;
  color: inherit;
}

.sytec-header-element a {
  color: var(--sytec-row-link);
}

.sytec-header-element--spacer {
  min-width: var(--sytec-spacer-min);
  flex-grow: var(--sytec-spacer-grow);
}

.sytec-header-spacer {
  display: block;
}

.sytec-builder-logo,
.sytec-builder-logo .custom-logo-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.6rem;
}

.sytec-builder-logo .custom-logo {
  width: min(var(--sytec-element-logo-width), 100%);
  max-width: var(--sytec-element-logo-width);
  max-height: var(--sytec-element-logo-height);
  object-fit: contain;
}

.sytec-builder-logo__title {
  font-weight: 750;
  white-space: nowrap;
}

.sytec-builder-navigation {
  min-width: 0;
  padding: var(--sytec-menu-container-padding-block, 0px) var(--sytec-menu-container-padding-inline, 0px);
  border-width: var(--sytec-menu-container-border-width, 0px);
  border-style: var(--sytec-menu-container-border-style, solid);
  border-color: var(--sytec-menu-container-border-color, transparent);
  border-radius: var(--sytec-menu-container-radius, 0px);
  outline: 0;
  background: var(--sytec-menu-container-background, transparent);
  box-shadow: var(--sytec-menu-container-shadow, none);
}

.sytec-mobile-navigation[data-sytec-menu-id] {
  padding: var(--sytec-menu-container-padding-block, 0px) var(--sytec-menu-container-padding-inline, 0px);
  border-width: var(--sytec-menu-container-border-width, 0px);
  border-style: var(--sytec-menu-container-border-style, solid);
  border-color: var(--sytec-menu-container-border-color, transparent);
  border-radius: var(--sytec-menu-container-radius, 0px);
  outline: 0;
  background: var(--sytec-menu-container-background, transparent);
  box-shadow: var(--sytec-menu-container-shadow, none);
}

.sytec-builder-menu {
  gap: var(--sytec-menu-gap);
  flex-wrap: wrap;
  justify-content: var(--sytec-menu-alignment, center);
}

.sytec-builder-menu--vertical {
  align-items: stretch;
  flex-direction: column;
}

.sytec-builder-menu > li > a {
  white-space: nowrap;
}

[data-builder-element="primary_menu"],
[data-builder-element="secondary_menu"],
[data-builder-element="mobile_menu"] {
  margin: var(--sytec-menu-margin, 0);
  color: var(--sytec-menu-color, var(--sytec-row-link, var(--sytec-header-link)));
  font-family: var(--sytec-menu-font-family, var(--sytec-body-font-family, var(--sytec-font-primary)));
  font-size: var(--sytec-menu-font-size-desktop, var(--sytec-body-size-desktop, 16px));
  font-style: var(--sytec-menu-font-style, normal);
  font-weight: var(--sytec-menu-font-weight, 650);
  line-height: var(--sytec-menu-line-height, 1.4);
  letter-spacing: var(--sytec-menu-letter-spacing, normal);
  text-transform: var(--sytec-menu-text-transform, none);
}

[data-builder-element="primary_menu"] .sytec-builder-menu {
  display: flex;
  justify-content: var(--sytec-menu-alignment, center);
}

[data-builder-element="secondary_menu"] .sytec-builder-menu {
  justify-content: var(--sytec-menu-alignment, center);
}

[data-builder-element="mobile_menu"] .sytec-builder-menu,
[data-builder-element="mobile_menu"].sytec-mobile-navigation .sytec-menu {
  justify-content: var(--sytec-menu-alignment, center);
}

[data-builder-element="primary_menu"] .sytec-menu,
[data-builder-element="secondary_menu"] .sytec-menu,
[data-builder-element="mobile_menu"] .sytec-menu {
  gap: var(--sytec-menu-gap, 12px);
}

[data-builder-element="primary_menu"] .sytec-builder-navigation,
[data-builder-element="secondary_menu"] .sytec-builder-navigation,
[data-builder-element="mobile_menu"] .sytec-builder-navigation {
  width: var(--sytec-menu-instance-width, auto);
}

[data-builder-element="primary_menu"] .sytec-menu > li > a,
[data-builder-element="secondary_menu"] .sytec-menu > li > a,
[data-builder-element="mobile_menu"] .sytec-menu > li > a {
  display: flex;
  margin: 0;
  padding: var(--sytec-menu-padding-block, 8px) var(--sytec-menu-padding-inline, 10px);
  align-items: center;
  border: var(--sytec-menu-border-width, 0) var(--sytec-menu-border-style, solid) var(--sytec-menu-border-color, transparent);
  border-radius: var(--sytec-menu-radius, 6px);
  background: var(--sytec-menu-background, transparent);
  box-shadow: var(--sytec-menu-shadow, none);
  color: var(--sytec-menu-color, var(--sytec-row-link, var(--sytec-header-link)));
  font: inherit;
  gap: var(--sytec-menu-icon-gap, 6px);
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  transition:
    background-color var(--sytec-transition),
    box-shadow var(--sytec-transition),
    color var(--sytec-transition);
}

[data-builder-element="primary_menu"] .sytec-menu > li > a:hover,
[data-builder-element="secondary_menu"] .sytec-menu > li > a:hover,
[data-builder-element="mobile_menu"] .sytec-menu > li > a:hover {
  background: var(--sytec-menu-hover-background, rgba(255,255,255,.1));
  box-shadow: var(--sytec-menu-hover-shadow, none);
  color: var(--sytec-menu-hover-color, var(--sytec-menu-color, var(--sytec-row-link)));
}

[data-builder-element="primary_menu"] .sytec-menu :is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, .current_page_item) > a,
[data-builder-element="secondary_menu"] .sytec-menu :is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, .current_page_item) > a,
[data-builder-element="mobile_menu"] .sytec-menu :is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, .current_page_item) > a {
  background: var(--sytec-menu-active-background, rgba(255,255,255,.1));
  color: var(--sytec-menu-active-color, var(--sytec-menu-color, var(--sytec-row-link)));
}

[data-builder-element="primary_menu"] .sytec-menu a:focus-visible,
[data-builder-element="secondary_menu"] .sytec-menu a:focus-visible,
[data-builder-element="mobile_menu"] .sytec-menu a:focus-visible {
  color: var(--sytec-menu-focus-color, var(--sytec-menu-hover-color, var(--sytec-menu-color)));
}

[data-builder-element="primary_menu"] .sytec-menu .sub-menu,
[data-builder-element="secondary_menu"] .sytec-menu .sub-menu,
[data-builder-element="mobile_menu"] .sytec-menu .sub-menu {
  top: calc(100% + var(--sytec-submenu-offset, 0px));
  min-width: var(--sytec-submenu-min-width, 220px);
  width: max-content;
  max-width: min(90vw, 640px);
  padding: var(--sytec-submenu-padding, 8px);
  border: var(--sytec-submenu-border-width, 1px) solid var(--sytec-submenu-border-color, var(--sytec-color-border));
  border-radius: var(--sytec-submenu-radius, 8px);
  background: var(--sytec-submenu-background, #fff);
  box-shadow: var(--sytec-submenu-shadow, var(--sytec-shadow-medium));
}

[data-builder-element="primary_menu"] .sytec-menu .sub-menu li + li,
[data-builder-element="secondary_menu"] .sytec-menu .sub-menu li + li,
[data-builder-element="mobile_menu"] .sytec-menu .sub-menu li + li {
  margin-top: var(--sytec-submenu-vertical-gap, 2px);
}

[data-builder-element="primary_menu"] .sytec-menu .sub-menu a,
[data-builder-element="secondary_menu"] .sytec-menu .sub-menu a,
[data-builder-element="mobile_menu"] .sytec-menu .sub-menu a {
  color: var(--sytec-submenu-color, var(--sytec-color-primary));
}

[data-builder-element="primary_menu"] .sytec-menu .sub-menu a:hover,
[data-builder-element="secondary_menu"] .sytec-menu .sub-menu a:hover,
[data-builder-element="mobile_menu"] .sytec-menu .sub-menu a:hover {
  color: var(--sytec-submenu-hover-color, var(--sytec-menu-hover-color, var(--sytec-color-accent)));
}

[data-builder-element="primary_menu"] .menu-item-has-children:is(:hover, :focus-within, .is-submenu-open) > .sub-menu,
[data-builder-element="secondary_menu"] .menu-item-has-children:is(:hover, :focus-within, .is-submenu-open) > .sub-menu,
[data-builder-element="mobile_menu"] .menu-item-has-children:is(:hover, :focus-within, .is-submenu-open) > .sub-menu,
[data-builder-element="primary_menu"] .sytec-submenu-toggle[aria-expanded="true"] + .sub-menu,
[data-builder-element="secondary_menu"] .sytec-submenu-toggle[aria-expanded="true"] + .sub-menu,
[data-builder-element="mobile_menu"] .sytec-submenu-toggle[aria-expanded="true"] + .sub-menu {
  display: block;
}

[data-builder-element="mobile_menu"].sytec-mobile-navigation {
  background: var(--sytec-mobile-menu-background, #fff);
}

[data-builder-element="mobile_menu"].sytec-mobile-navigation .sytec-menu--mobile {
  gap: var(--sytec-mobile-menu-item-gap, 0);
  text-align: var(--sytec-mobile-menu-alignment, left);
}

[data-builder-element="mobile_menu"].sytec-mobile-navigation .sytec-menu--mobile > li > a {
  min-height: var(--sytec-mobile-menu-item-height, 48px);
  border-bottom: 1px solid var(--sytec-mobile-menu-divider, var(--sytec-color-border));
}

[data-builder-element="mobile_menu"].sytec-mobile-navigation .sytec-menu--mobile .sub-menu {
  position: static;
  width: auto;
  max-width: none;
  margin-inline-start: 1rem;
}

[data-builder-element="mobile_menu"][data-submenu-accordion="false"] .sytec-menu--mobile .sub-menu {
  display: block;
}

[data-sytec-menu-id] {
  margin: var(--sytec-menu-margin, 0);
  color: var(--sytec-menu-color, var(--sytec-row-link, var(--sytec-header-link)));
  font-family: var(--sytec-menu-font-family, var(--sytec-body-font-family, var(--sytec-font-primary)));
  font-size: var(--sytec-menu-font-size-desktop, var(--sytec-body-size-desktop, 16px));
  font-style: var(--sytec-menu-font-style, normal);
  font-weight: var(--sytec-menu-font-weight, 650);
  line-height: var(--sytec-menu-line-height, 1.4);
  letter-spacing: var(--sytec-menu-letter-spacing, normal);
  text-transform: var(--sytec-menu-text-transform, none);
}

[data-sytec-menu-id] .sytec-menu,
[data-sytec-menu-id] .sytec-footer-menu {
  display: flex;
  gap: var(--sytec-menu-gap, 12px);
  justify-content: var(--sytec-menu-alignment, center);
}

[data-sytec-menu-id] .sytec-menu > li,
[data-sytec-menu-id] .sytec-footer-menu > li {
  margin: 0;
}

[data-sytec-menu-id] .sytec-menu > li > a,
[data-sytec-menu-id] .sytec-footer-menu > li > a {
  display: flex;
  margin: 0;
  padding: var(--sytec-menu-padding-block, 8px) var(--sytec-menu-padding-inline, 10px);
  align-items: center;
  border: var(--sytec-menu-border-width, 0) var(--sytec-menu-border-style, solid) var(--sytec-menu-border-color, transparent);
  border-radius: var(--sytec-menu-radius, 6px);
  background: var(--sytec-menu-background, transparent);
  box-shadow: var(--sytec-menu-shadow, none);
  color: var(--sytec-menu-color, inherit);
  font: inherit;
  gap: var(--sytec-menu-icon-gap, 6px);
}

[data-sytec-menu-id] .sytec-menu > li > a:hover,
[data-sytec-menu-id] .sytec-footer-menu > li > a:hover {
  background: var(--sytec-menu-hover-background, transparent);
  box-shadow: var(--sytec-menu-hover-shadow, none);
  color: var(--sytec-menu-hover-color, var(--sytec-menu-color, inherit));
}

[data-sytec-menu-id] :is(.sytec-menu, .sytec-footer-menu) :is(.current-menu-item, .current-menu-parent, .current-menu-ancestor, .current_page_item) > a {
  background: var(--sytec-menu-active-background, transparent);
  color: var(--sytec-menu-active-color, var(--sytec-menu-color, inherit));
}

[data-sytec-menu-id] :is(.sytec-menu, .sytec-footer-menu) a:focus-visible {
  color: var(--sytec-menu-focus-color, var(--sytec-menu-hover-color, var(--sytec-menu-color, inherit)));
}

[data-sytec-menu-id] :is(.sytec-menu, .sytec-footer-menu) .sub-menu {
  min-width: var(--sytec-submenu-min-width, 220px);
  padding: var(--sytec-submenu-padding, 8px);
  border: var(--sytec-submenu-border-width, 1px) solid var(--sytec-submenu-border-color, var(--sytec-color-border));
  border-radius: var(--sytec-submenu-radius, 8px);
  background: var(--sytec-submenu-background, #fff);
  box-shadow: var(--sytec-submenu-shadow, var(--sytec-shadow-medium));
}

[data-sytec-menu-id] :is(.sytec-menu, .sytec-footer-menu) .sub-menu li + li {
  margin-top: var(--sytec-submenu-vertical-gap, 2px);
}

[data-sytec-menu-id] :is(.sytec-menu, .sytec-footer-menu) .sub-menu a {
  color: var(--sytec-submenu-color, var(--sytec-color-primary));
}

[data-sytec-menu-id] :is(.sytec-menu, .sytec-footer-menu) .sub-menu a:hover {
  color: var(--sytec-submenu-hover-color, var(--sytec-menu-hover-color, var(--sytec-color-accent)));
}

[data-sytec-menu-id] .menu-item-has-children[aria-expanded="true"] > .sub-menu,
[data-sytec-menu-id] .menu-item-has-children > [aria-expanded="true"] + .sub-menu {
  display: block;
}

.sytec-mobile-layout-drawer [data-builder-element="mobile_menu"].sytec-mobile-navigation {
  width: min(88vw, var(--sytec-mobile-menu-width, 390px));
}

@media (max-width: 1024px) {
  [data-builder-element="primary_menu"],
  [data-builder-element="secondary_menu"],
  [data-builder-element="mobile_menu"],
  [data-sytec-menu-id] {
    font-size: var(--sytec-menu-font-size-tablet, var(--sytec-body-size-tablet, 16px));
  }
}

@media (max-width: 767px) {
  [data-builder-element="primary_menu"],
  [data-builder-element="secondary_menu"],
  [data-builder-element="mobile_menu"],
  [data-sytec-menu-id] {
    font-size: var(--sytec-menu-font-size-mobile, var(--sytec-body-size-mobile, 16px));
  }
}

.sytec-header-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sytec-header-element__label {
  line-height: 1.2;
  white-space: nowrap;
}

.sytec-account-link,
.sytec-header-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.sytec-account-link--icon_text,
.sytec-account-link--text {
  width: auto;
  padding-inline: 0.65rem;
}

.sytec-cart-component {
  position: relative;
  width: auto;
  min-width: 42px;
  padding-inline: 0.55rem;
}

.sytec-cart-link__count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 1.25rem;
  height: 1.25rem;
  padding-inline: 0.22rem;
  border: 2px solid var(--sytec-row-background);
  font-size: 0.65rem;
  line-height: 1;
  transform: translate(24%, -20%);
}

.sytec-cart-component[data-show-zero="false"] .sytec-cart-link__count.is-zero {
  display: none;
}

.sytec-cart-link__subtotal {
  margin-inline-start: 0.35rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.sytec-header-element--search {
  position: relative;
}

.sytec-search-toggle {
  width: auto;
  min-width: 42px;
  gap: 0.4rem;
}

.sytec-header-search--dropdown {
  position: absolute;
  z-index: 105;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(520px, 90vw);
  border: 1px solid var(--sytec-color-border);
  border-radius: var(--sytec-radius-medium);
  box-shadow: var(--sytec-shadow-medium);
}

.sytec-header-search--dropdown .sytec-container {
  width: 100%;
}

.sytec-header-search--modal {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  padding: 2rem;
  place-items: center;
  background: rgba(15, 23, 42, 0.82);
}

.sytec-header-search--modal[hidden],
.sytec-header-search--dropdown[hidden] {
  display: none;
}

.sytec-header-search--modal .sytec-container {
  width: min(680px, 100%);
  padding: 1.5rem;
  border-radius: var(--sytec-radius-large);
  background: var(--sytec-color-secondary);
}

.sytec-header-search-inline {
  width: min(360px, 30vw);
}

.sytec-header-search-inline .sytec-search-form {
  margin: 0;
}

.sytec-header-button {
  display: inline-flex;
  min-height: 42px;
  padding: 0.55rem 1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sytec-color-accent);
  border-radius: var(--sytec-button-radius);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.sytec-header-button--primary {
  background: var(--sytec-color-accent);
  color: var(--sytec-color-secondary) !important;
}

.sytec-header-button--outline {
  background: transparent;
}

.sytec-header-button--link {
  border-color: transparent;
}

.sytec-header-button--small {
  min-height: 36px;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
}

.sytec-header-button--large {
  min-height: 50px;
  padding: 0.75rem 1.25rem;
}

.sytec-header-element--button-custom {
  display: flex;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.sytec-header-element--button-align-left {
  justify-content: flex-start;
}

.sytec-header-element--button-align-center {
  justify-content: center;
}

.sytec-header-element--button-align-right {
  justify-content: flex-end;
}

.sytec-header-button--custom {
  width: auto;
  min-width: var(--sytec-header-button-min-width);
  min-height: var(--sytec-header-button-min-height);
  padding: var(--sytec-header-button-padding);
  border-width: var(--sytec-header-button-stroke-size);
  border-style: var(--sytec-header-button-stroke-style);
  border-color: var(--sytec-header-button-stroke-color);
  border-radius: var(--sytec-header-button-radius);
  background: var(--sytec-header-button-background);
  box-shadow: var(--sytec-header-button-shadow);
  color: var(--sytec-header-button-text) !important;
  font-family: var(--sytec-header-button-font);
  font-size: var(--sytec-header-button-font-size);
  font-style: var(--sytec-header-button-font-style);
  font-weight: var(--sytec-header-button-font-weight);
  letter-spacing: var(--sytec-header-button-letter-spacing);
  line-height: var(--sytec-header-button-line-height);
  text-transform: var(--sytec-header-button-transform);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.sytec-header-element--button-width-full .sytec-header-button--custom {
  width: 100%;
}

.sytec-header-button--custom:hover,
.sytec-header-button--custom:focus-visible {
  border-color: var(--sytec-header-button-stroke-hover);
  background: var(--sytec-header-button-background-hover);
  box-shadow: var(--sytec-header-button-shadow-hover);
  color: var(--sytec-header-button-text-hover) !important;
  transform: var(--sytec-header-button-hover-transform);
}

@media (prefers-reduced-motion: reduce) {
  .sytec-header-button--custom {
    transition: none;
  }

  .sytec-header-button--custom:hover,
  .sytec-header-button--custom:focus-visible {
    transform: none;
  }
}

.sytec-header-text,
.sytec-header-safe-html,
.sytec-header-shortcode {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.sytec-header-separator {
  display: block;
  width: var(--sytec-separator-width);
  height: var(--sytec-separator-height);
  margin-inline: var(--sytec-separator-margin);
  background: var(--sytec-separator-color);
}

.sytec-header-socials {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sytec-social-gap);
}

.sytec-header-socials--align-left {
  justify-content: flex-start;
}

.sytec-header-socials--align-center {
  justify-content: center;
}

.sytec-header-socials--align-right {
  justify-content: flex-end;
}

.sytec-header-socials__link {
  --sytec-social-effective-color: var(--sytec-social-item-color, var(--sytec-social-color));
  --sytec-social-effective-hover: var(--sytec-social-item-hover, var(--sytec-social-hover));
  --sytec-social-effective-size: var(--sytec-social-item-size, var(--sytec-social-size));
  display: inline-grid;
  width: var(--sytec-social-effective-size);
  height: var(--sytec-social-effective-size);
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  color: var(--sytec-social-effective-color);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.sytec-header-socials__link:hover,
.sytec-header-socials__link:focus-visible {
  color: var(--sytec-social-effective-hover);
}

.sytec-header-socials__link:hover {
  transform: translateY(-1px);
}

.sytec-header-socials--style-circle .sytec-header-socials__link,
.sytec-header-socials--style-rounded .sytec-header-socials__link {
  width: var(--sytec-social-background-size);
  height: var(--sytec-social-background-size);
  background: color-mix(in srgb, currentColor 14%, transparent);
}

.sytec-header-socials--style-circle .sytec-header-socials__link {
  border-radius: 50%;
}

.sytec-header-socials--style-rounded .sytec-header-socials__link {
  border-radius: var(--sytec-social-radius);
}

.sytec-social-icon {
  display: block;
  width: var(--sytec-social-effective-size);
  height: var(--sytec-social-effective-size);
  fill: currentColor;
}

.sytec-block-compatibility-notice {
  box-sizing: border-box;
  width: min(100%, 820px);
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--sytec-radius-medium, 8px);
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
