:root {
  --sayo-ink: #1d2939;
  --sayo-text: #475467;
  --sayo-accent: #ff692e;
  --sayo-brand: #d21b4f;
  --sayo-brand-dark: #7c0527;
  --sayo-surface: #f5f5f4;
  --sayo-mid: #c4c4c4;
  --sayo-line: #d0d5dd;
  --sayo-white: #fff;
  --sayo-black: #000;
  --sayo-shell: 1220px;
  --sayo-gutter: 24px;
  --sayo-header-height: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body.sayo-storefront {
  margin: 0;
  overflow-x: hidden;
  color: var(--sayo-text);
  background: var(--sayo-white);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

body.sayo-menu-is-open {
  overflow: hidden;
}

body.sayo-storefront img,
body.sayo-storefront video {
  display: block;
  max-width: 100%;
  height: auto;
}

body.sayo-storefront a {
  color: inherit;
  text-decoration: none;
}

body.sayo-storefront button,
body.sayo-storefront input,
body.sayo-storefront select,
body.sayo-storefront textarea {
  font: inherit;
  letter-spacing: 0;
}

body.sayo-storefront h1,
body.sayo-storefront h2,
body.sayo-storefront h3,
body.sayo-storefront h4,
body.sayo-storefront h5,
body.sayo-storefront h6 {
  margin-top: 0;
  color: var(--sayo-ink);
  font-weight: 700;
  letter-spacing: 0;
}

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

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

.sayo-skip-link:focus {
  position: fixed;
  z-index: 10001;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--sayo-white);
  background: var(--sayo-ink);
}

.sayo-button,
body.sayo-storefront .button,
body.sayo-storefront button[type="submit"],
body.sayo-storefront input[type="submit"] {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  color: var(--sayo-white);
  background: var(--sayo-accent);
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.sayo-button:hover,
body.sayo-storefront .button:hover,
body.sayo-storefront button[type="submit"]:hover {
  color: var(--sayo-white);
  background: var(--sayo-brand-dark);
  transform: translateY(-1px);
}

.sayo-button--pink {
  background: var(--sayo-brand);
}

.sayo-button--light {
  color: var(--sayo-ink);
  background: var(--sayo-white);
}

.sayo-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sayo-ink);
  font-weight: 700;
  border-bottom: 2px solid var(--sayo-ink);
}

.sayo-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--sayo-header-height);
  background: var(--sayo-white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

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

.sayo-header--compact {
  box-shadow: 0 1px 0 rgba(29, 41, 57, 0.1);
}

.sayo-header__inner {
  width: min(calc(100% - 64px), 1540px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.sayo-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.sayo-logo img {
  width: 94px;
  height: auto;
}

.sayo-header__categories {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 30px;
  color: var(--sayo-ink);
  font-size: 16px;
  font-weight: 600;
}

.sayo-header__categories a,
.sayo-header__text-link {
  position: relative;
  white-space: nowrap;
}

.sayo-header__categories a::after,
.sayo-header__text-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--sayo-brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.sayo-header__categories a:hover::after,
.sayo-header__text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sayo-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.sayo-header__text-link {
  color: var(--sayo-ink);
  font-size: 14px;
  font-weight: 600;
}

.sayo-icon-button,
.sayo-menu-button {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #e4e7ec;
  border-radius: 50%;
  background: var(--sayo-white);
  cursor: pointer;
}

.sayo-icon-button img {
  width: 24px;
  height: 24px;
}

.sayo-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 20px;
  color: var(--sayo-white);
  background: var(--sayo-brand);
  font-size: 11px;
  font-weight: 700;
}

.sayo-menu-button {
  gap: 4px;
  flex-direction: column;
  border-color: transparent;
}

.sayo-menu-button > span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sayo-ink);
}

.sayo-drawer-overlay {
  position: fixed;
  z-index: 1998;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.sayo-menu-drawer {
  position: fixed;
  z-index: 1999;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 92vw);
  padding: 82px 48px 48px;
  color: var(--sayo-ink);
  background: var(--sayo-white);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.sayo-menu-drawer[aria-hidden="false"] {
  transform: translateX(0);
  visibility: visible;
}

.sayo-drawer-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--sayo-line);
  border-radius: 50%;
  color: var(--sayo-ink);
  background: var(--sayo-white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.sayo-menu-drawer__eyebrow,
.sayo-shop__eyebrow,
.sayo-section-heading > p,
.sayo-section-heading > div > p {
  margin: 0 0 12px;
  color: var(--sayo-brand);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.sayo-menu-drawer nav {
  display: grid;
}

.sayo-menu-drawer nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--sayo-line);
  font-size: 28px;
  font-weight: 700;
}

.sayo-menu-drawer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
  font-size: 14px;
  font-weight: 700;
}

.sayo-mobile-nav {
  display: none;
}

.sayo-home-intro {
  min-height: 361px;
  padding: 0 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.sayo-home-intro__year {
  margin: 0 0 42px;
  color: var(--sayo-brand);
  font-size: 100px;
  font-weight: 700;
  line-height: 0.8;
}

.sayo-home-intro h1 {
  margin: 0 0 28px;
  color: var(--sayo-brand);
  font-size: 100px;
  line-height: 0.8;
}

.sayo-home-intro h1 span {
  color: var(--sayo-black);
}

.sayo-home-intro__subtitle {
  margin: 0;
  color: var(--sayo-black);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.sayo-new-products {
  position: relative;
  min-height: 870px;
  margin: 0 2%;
  padding: 100px 6%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 4%;
  background: var(--sayo-brand) url("../images/K05HE-K07HE-2026-New-bg.webp") center / cover no-repeat;
  overflow: hidden;
}

.sayo-new-products__item {
  position: relative;
  height: 670px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}

.sayo-new-products__item span {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 0;
  right: 0;
  color: var(--sayo-white);
  font-size: 76px;
  font-weight: 700;
  text-align: center;
}

.sayo-new-products__item img {
  width: min(100%, 560px);
  max-height: 570px;
  object-fit: contain;
  transition: transform 240ms ease;
}

.sayo-new-products__item:hover img {
  transform: translateY(-8px);
}

.sayo-pcb-hero {
  position: relative;
  min-height: 985px;
  margin: 40px 2% 0;
  padding: 100px 6%;
  display: flex;
  align-items: flex-end;
  color: var(--sayo-white);
  background: var(--sayo-black) url("../images/K64H3MZ_frontpage_1.webp") center / cover no-repeat;
}

.sayo-pcb-hero::before,
.sayo-cm51::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.38);
}

.sayo-pcb-hero__content,
.sayo-cm51__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.sayo-pcb-hero__content > p,
.sayo-cm51__copy > p {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
}

.sayo-pcb-hero h2,
.sayo-cm51 h2 {
  margin: 0 0 34px;
  color: var(--sayo-white);
  font-size: 78px;
  line-height: 0.95;
}

.sayo-pcb-hero h2 span,
.sayo-cm51 h2 span {
  font-size: 44px;
  line-height: 1.15;
}

.sayo-performance {
  border-bottom: 1px solid #eaecf0;
}

.sayo-performance__headline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid #eaecf0;
}

.sayo-performance__headline > div {
  min-height: 340px;
  padding: 70px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.sayo-performance__headline > div + div {
  border-left: 1px solid #eaecf0;
}

.sayo-performance h2 {
  margin-bottom: 18px;
  font-size: 52px;
}

.sayo-performance__headline strong {
  color: #bc1313;
  font-size: 50px;
}

.sayo-performance__headline p {
  margin: 10px 0 0;
  color: var(--sayo-ink);
  font-size: 24px;
  font-weight: 700;
}

.sayo-performance__rates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sayo-performance__rates > div {
  min-height: 190px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sayo-performance__rates > div + div {
  border-left: 1px solid #eaecf0;
}

.sayo-performance__rates strong {
  color: var(--sayo-ink);
  font-size: 48px;
}

.sayo-performance__rates span {
  color: var(--sayo-text);
  font-size: 22px;
}

.sayo-mcu {
  padding: 120px max(24px, calc((100% - var(--sayo-shell)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.sayo-mcu__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.sayo-mcu h2 {
  font-size: 48px;
  line-height: 1.1;
}

.sayo-mcu p {
  margin: 28px 0 0;
  padding-left: 26px;
  border-left: 3px solid var(--sayo-brand);
}

.sayo-models,
.sayo-featured,
.sayo-related-products {
  padding: 100px 0;
  background: var(--sayo-surface);
}

.sayo-section-heading {
  margin-bottom: 48px;
}

.sayo-section-heading h2,
.sayo-related-products > .sayo-shell > h2 {
  margin: 0;
  font-size: 48px;
}

.sayo-section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.sayo-models__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.sayo-model {
  min-width: 0;
  padding: 30px;
  color: var(--sayo-white);
  background: var(--sayo-ink);
  border-radius: 6px;
}

.sayo-model:nth-child(even) {
  color: var(--sayo-ink);
  background: var(--sayo-white);
}

.sayo-model img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.sayo-model h3 {
  margin: 26px 0 12px;
  color: inherit;
  font-size: 30px;
}

.sayo-model p {
  min-height: 106px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.75;
}

.sayo-model span {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.sayo-featured {
  background: var(--sayo-white);
}

.sayo-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
}

.sayo-product-card {
  min-width: 0;
}

.sayo-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--sayo-surface);
}

.sayo-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.sayo-product-card:hover .sayo-product-card__image img {
  transform: scale(1.035);
}

.sayo-product-card__body {
  padding: 18px 2px 0;
}

.sayo-product-card h3 {
  min-height: 54px;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.35;
}

.sayo-product-card__price {
  min-height: 28px;
  color: var(--sayo-ink);
  font-size: 17px;
  font-weight: 700;
}

.sayo-product-card__price del {
  color: #98a2b3;
  font-weight: 500;
}

.sayo-product-card__price ins {
  color: var(--sayo-accent);
  text-decoration: none;
}

.sayo-product-card__action {
  display: inline-block;
  margin-top: 15px;
  color: var(--sayo-ink);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.sayo-cm51 {
  position: relative;
  min-height: 900px;
  margin: 0 2%;
  padding: 100px 8%;
  display: flex;
  align-items: center;
  background: var(--sayo-black) url("../images/CM51_fp_2.jpg") center / cover no-repeat;
}

.sayo-cm51 h3 {
  margin-bottom: 34px;
  color: var(--sayo-white);
  font-size: 24px;
  line-height: 1.45;
}

.sayo-testimonials {
  padding: 110px 0;
  background: var(--sayo-white) url("../images/PCB_testimonials_bg1.jpg") center / cover no-repeat;
}

.sayo-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sayo-testimonials blockquote {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--sayo-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.sayo-testimonials blockquote p {
  min-height: 150px;
  margin: 0 0 28px;
  color: var(--sayo-ink);
  font-size: 17px;
  font-weight: 600;
}

.sayo-testimonials blockquote footer {
  color: var(--sayo-brand);
  font-weight: 700;
}

.sayo-testimonials blockquote footer span {
  display: block;
  margin-top: 5px;
  color: var(--sayo-text);
  font-size: 13px;
  font-weight: 500;
}

.sayo-compatible {
  padding: 100px 0 80px;
  background: var(--sayo-white);
}

.sayo-compatible > .sayo-shell {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 3fr);
  align-items: end;
  gap: 70px;
}

.sayo-compatible h2 {
  margin-bottom: 18px;
  font-size: 48px;
}

.sayo-compatible p {
  max-width: 480px;
  margin: 0;
}

.sayo-compatible img {
  width: 100%;
}

.sayo-shop__header {
  padding: 92px 0 58px;
  background: var(--sayo-surface);
}

.sayo-shop__header h1 {
  margin-bottom: 34px;
  font-size: 64px;
}

.sayo-category-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sayo-category-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--sayo-line);
  border-radius: 999px;
  color: var(--sayo-ink);
  background: var(--sayo-white);
  font-size: 14px;
  font-weight: 700;
}

.sayo-shop__body {
  padding-top: 64px;
  padding-bottom: 100px;
}

.sayo-shop__toolbar {
  min-height: 54px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--sayo-text);
  font-size: 14px;
}

.sayo-shop__toolbar .woocommerce-result-count {
  margin: 0;
}

.sayo-shop__toolbar select {
  min-height: 42px;
  padding: 8px 42px 8px 15px;
  border: 1px solid var(--sayo-line);
  border-radius: 6px;
  color: var(--sayo-ink);
  background: var(--sayo-white);
}

.woocommerce-pagination {
  margin-top: 60px;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  border: 0 !important;
}

.woocommerce-pagination ul.page-numbers li {
  border: 0 !important;
}

.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
  display: grid !important;
  width: 42px;
  height: 42px;
  padding: 0 !important;
  place-items: center;
  border-radius: 50%;
}

.woocommerce-pagination .page-numbers .current {
  color: var(--sayo-white) !important;
  background: var(--sayo-ink) !important;
}

.sayo-product-hero {
  min-height: 1052px;
  padding: 100px 0 60px;
  background: var(--sayo-mid);
}

.sayo-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 24px;
}

.sayo-product-summary {
  max-width: 464px;
  padding-top: 4px;
}

.sayo-product-summary h1 {
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.2;
}

.sayo-product-summary__intro {
  margin-bottom: 48px;
  color: var(--sayo-text);
  font-size: 18px;
  line-height: 1.4;
}

.sayo-product-summary__intro p {
  margin: 0;
}

.sayo-product-summary__range {
  margin-bottom: 28px;
  color: var(--sayo-accent);
  font-size: 20px;
  font-weight: 700;
}

.sayo-product-summary__range .amount {
  color: inherit;
}

.sayo-product-summary .variations_form,
.sayo-product-summary form.cart {
  margin: 0;
}

.sayo-product-summary table.variations {
  width: 100%;
  margin: 0 0 14px;
  border: 0;
  border-collapse: collapse;
}

.sayo-product-summary table.variations tbody,
.sayo-product-summary table.variations tr {
  display: block;
}

.sayo-product-summary table.variations tr {
  min-height: 64px;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(29, 41, 57, 0.08);
}

.sayo-product-summary table.variations th,
.sayo-product-summary table.variations td {
  display: block;
  padding: 8px 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.sayo-product-summary table.variations label {
  color: var(--sayo-text);
  font-weight: 500;
}

.sayo-product-summary table.variations select {
  width: min(100%, 270px);
  height: 43px;
  padding: 0 42px 0 14px;
  border: 2px solid var(--sayo-ink);
  border-radius: 999px;
  color: var(--sayo-ink);
  background: var(--sayo-white);
  font-size: 15px;
  font-weight: 500;
}

.sayo-product-summary .reset_variations {
  display: inline-block;
  margin: 8px 0 0 8px;
  color: var(--sayo-brand);
  font-size: 12px;
}

.sayo-product-summary .woocommerce-variation-description,
.sayo-product-summary .woocommerce-variation-availability {
  font-size: 14px;
}

.sayo-product-summary .woocommerce-variation-price {
  min-height: 42px;
  padding: 8px 0;
  color: var(--sayo-accent);
  font-size: 24px;
  font-weight: 700;
}

.sayo-product-summary .woocommerce-variation-price .price,
.sayo-product-summary .woocommerce-variation-price .amount {
  color: inherit;
}

.sayo-product-summary .woocommerce-variation-add-to-cart,
.sayo-product-summary form.cart:not(.variations_form) {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sayo-product-summary .quantity {
  width: 130px;
  height: 54px;
  display: grid;
  grid-template-columns: 38px 54px 38px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  overflow: hidden;
}

.sayo-product-summary .quantity .qty {
  width: 54px;
  height: 52px;
  padding: 0;
  border: 0;
  color: var(--sayo-ink);
  background: transparent;
  font-weight: 700;
  text-align: center;
  appearance: textfield;
}

.sayo-product-summary .quantity .qty::-webkit-inner-spin-button,
.sayo-product-summary .quantity .qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.sayo-quantity-button {
  width: 38px;
  height: 52px;
  padding: 0;
  border: 0;
  color: var(--sayo-ink);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.sayo-product-summary .single_add_to_cart_button {
  width: 330px;
  height: 54px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--sayo-white);
  background: var(--sayo-accent);
  opacity: 1;
}

.sayo-product-summary .single_add_to_cart_button.disabled {
  opacity: 0.55;
}

.sayo-purchase-help {
  margin-top: 60px;
}

.sayo-purchase-help details {
  border-bottom: 1px solid rgba(29, 41, 57, 0.15);
}

.sayo-purchase-help summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sayo-ink);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.sayo-purchase-help summary::after {
  color: var(--sayo-accent);
  content: "+";
  font-size: 24px;
}

.sayo-purchase-help details[open] summary::after {
  content: "−";
}

.sayo-purchase-help details p {
  margin: 0;
  padding: 0 0 24px;
  font-size: 14px;
}

.sayo-product-gallery {
  width: 100%;
}

.sayo-product-gallery .woocommerce-product-gallery {
  width: 100% !important;
  max-width: 732px;
  margin: 0 !important;
  float: none !important;
}

.sayo-product-gallery .mfn-product-badges {
  display: none;
}

.sayo-product-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.sayo-product-gallery .woocommerce-product-gallery__image {
  min-height: 635px;
  display: grid !important;
  place-items: center;
  background: rgba(255, 255, 255, 0.11);
}

.sayo-product-gallery .woocommerce-product-gallery__image a {
  display: grid;
  width: 100%;
  place-items: center;
}

.sayo-product-gallery .woocommerce-product-gallery__image img {
  width: min(100%, 635px) !important;
  height: min(100%, 635px) !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sayo-product-gallery .flex-control-thumbs {
  margin: 14px 0 0 !important;
  display: flex;
  gap: 8px;
}

.sayo-product-gallery .flex-control-thumbs li {
  width: 72px !important;
}

.sayo-o3c-intro {
  padding: 100px 0;
  text-align: center;
}

.sayo-o3c-intro h2 {
  margin-bottom: 36px;
  font-size: 48px;
}

.sayo-o3c-intro__copy {
  max-width: 1000px;
  margin: 0 auto 58px;
  color: var(--sayo-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.sayo-o3c-intro > .sayo-shell > img {
  width: min(100%, 1000px);
  margin-inline: auto;
}

.sayo-o3c-features {
  background: var(--sayo-surface);
}

.sayo-feature-row {
  width: min(calc(100% - 48px), var(--sayo-shell));
  margin-inline: auto;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: stretch;
}

.sayo-feature-row--reverse {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.sayo-feature-row--reverse > div {
  order: 2;
}

.sayo-feature-row--reverse > img {
  order: 1;
}

.sayo-feature-row > div {
  padding: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.sayo-feature-row h2 {
  margin-bottom: 16px;
  font-size: 32px;
  line-height: 1.1;
}

.sayo-feature-row p {
  margin: 0 0 30px;
}

.sayo-feature-row img,
.sayo-feature-row video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.sayo-feature-row--media-wide {
  padding-top: 60px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.sayo-generic-product-detail {
  padding: 100px 0;
}

.sayo-generic-product-detail h2 {
  font-size: 48px;
}

.sayo-related-products {
  background: var(--sayo-white);
}

.sayo-related-products > .sayo-shell > h2 {
  margin-bottom: 44px;
}

.sayo-page-main {
  min-height: 55vh;
  padding: 90px 0 110px;
}

.sayo-prose {
  max-width: 980px;
}

.sayo-prose--commerce {
  max-width: var(--sayo-shell);
}

.sayo-page-title h1 {
  margin-bottom: 52px;
  font-size: 64px;
}

.sayo-page-content {
  color: var(--sayo-text);
}

.sayo-page-content h2 {
  margin-top: 48px;
  font-size: 36px;
}

.sayo-page-content h3,
.sayo-page-content h4,
.sayo-page-content h5 {
  margin: 38px 0 12px;
  font-size: 24px;
}

.sayo-page-content p,
.sayo-page-content li {
  line-height: 1.7;
}

.sayo-page-content a {
  color: var(--sayo-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sayo-empty-state {
  padding: 80px 24px;
  text-align: center;
}

.sayo-empty-state__code {
  margin: 0;
  color: var(--sayo-brand);
  font-size: 100px;
  font-weight: 700;
}

.sayo-empty-state h1,
.sayo-empty-state h2 {
  font-size: 42px;
}

body.sayo-storefront .woocommerce form .form-row input.input-text,
body.sayo-storefront .woocommerce form .form-row textarea,
body.sayo-storefront .woocommerce form .form-row select,
body.sayo-storefront .select2-container .select2-selection--single {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--sayo-line);
  border-radius: 6px;
  color: var(--sayo-ink);
  background: var(--sayo-white);
}

body.sayo-storefront .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 27px;
}

body.sayo-storefront .select2-container .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 8px;
}

body.sayo-storefront .woocommerce table.shop_table {
  border: 1px solid var(--sayo-line);
  border-radius: 6px;
  border-collapse: separate;
}

body.sayo-storefront .woocommerce table.shop_table th,
body.sayo-storefront .woocommerce table.shop_table td {
  padding: 18px;
}

body.sayo-storefront .woocommerce-info,
body.sayo-storefront .woocommerce-message,
body.sayo-storefront .woocommerce-error {
  border-top-color: var(--sayo-brand);
  background: var(--sayo-surface);
}

body.sayo-storefront .woocommerce-info::before,
body.sayo-storefront .woocommerce-message::before {
  color: var(--sayo-brand);
}

.sayo-footer {
  padding: 100px 0 34px;
  color: var(--sayo-ink);
  background: var(--sayo-mid);
}

.sayo-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.8fr);
  gap: 90px;
}

.sayo-newsletter h2 {
  margin-bottom: 30px;
  font-size: 48px;
  line-height: 1.05;
}

.sayo-newsletter p {
  max-width: 470px;
  margin-bottom: 28px;
}

.sayo-newsletter__form {
  display: flex;
  gap: 10px;
}

.sayo-newsletter__form input {
  width: min(100%, 340px);
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(29, 41, 57, 0.35);
  border-radius: 999px;
  color: var(--sayo-ink);
  background: rgba(255, 255, 255, 0.6);
}

.sayo-newsletter__form button {
  height: 54px;
  min-height: 54px !important;
}

.sayo-form-message {
  font-weight: 700;
}

.sayo-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.sayo-footer__links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sayo-footer__links h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.sayo-footer__links a {
  font-size: 14px;
}

.sayo-footer__links a:hover {
  color: var(--sayo-brand-dark);
}

.sayo-footer__bottom {
  margin-top: 100px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(29, 41, 57, 0.2);
  font-size: 14px;
}

.sayo-footer__bottom p {
  margin: 0;
}

.sayo-footer__bottom img {
  max-width: 330px;
}

@media (max-width: 1380px) {
  .sayo-header__categories {
    display: none;
  }

  .sayo-header__inner {
    justify-content: space-between;
  }

  .sayo-mcu {
    gap: 40px;
  }

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

  .sayo-model img {
    height: 420px;
  }
}

@media (max-width: 959px) {
  :root {
    --sayo-header-height: 96px;
  }

  .sayo-header__text-link {
    display: none;
  }

  .sayo-home-intro__year,
  .sayo-home-intro h1 {
    font-size: 80px;
  }

  .sayo-new-products {
    min-height: 650px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .sayo-new-products__item {
    height: 510px;
  }

  .sayo-new-products__item span {
    font-size: 58px;
  }

  .sayo-pcb-hero {
    min-height: 760px;
  }

  .sayo-pcb-hero h2,
  .sayo-cm51 h2 {
    font-size: 60px;
  }

  .sayo-performance h2 {
    font-size: 40px;
  }

  .sayo-mcu {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sayo-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sayo-product-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }

  .sayo-product-summary .single_add_to_cart_button {
    width: 230px;
  }

  .sayo-product-gallery .woocommerce-product-gallery__image {
    min-height: 480px;
  }

  .sayo-feature-row > div {
    padding: 35px;
  }

  .sayo-footer__top {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

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

@media (max-width: 767px) {
  :root {
    --sayo-header-height: 87px;
  }

  body.sayo-storefront {
    padding-bottom: 70px;
    font-size: 14px;
    line-height: 1.36;
  }

  .sayo-shell,
  .sayo-feature-row {
    width: calc(100% - 66px);
  }

  .sayo-header--hidden {
    transform: translateY(-100%);
  }

  .sayo-header__inner {
    width: calc(100% - 28px);
    gap: 7px;
  }

  .sayo-logo {
    margin-right: auto;
  }

  .sayo-logo img {
    width: 76px;
  }

  .sayo-header__actions {
    gap: 4px;
  }

  .sayo-icon-button,
  .sayo-menu-button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .sayo-icon-button img {
    width: 20px;
    height: 20px;
  }

  .sayo-menu-button > span:not(.screen-reader-text) {
    width: 21px;
  }

  .sayo-menu-drawer {
    padding: 74px 30px 110px;
  }

  .sayo-menu-drawer nav a {
    padding: 15px 0;
    font-size: 23px;
  }

  .sayo-mobile-nav {
    position: fixed;
    z-index: 1500;
    right: 0;
    bottom: 0;
    left: 0;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e4e7ec;
    background: var(--sayo-white);
  }

  .sayo-mobile-nav a {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    color: var(--sayo-ink);
    font-size: 10px;
    font-weight: 600;
  }

  .sayo-mobile-nav a > span {
    height: 22px;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 700;
  }

  .sayo-home-intro {
    min-height: 347px;
    padding: 28px 20px;
  }

  .sayo-home-intro__year {
    margin-bottom: 40px;
    font-size: 61px;
    line-height: 0.8;
  }

  .sayo-home-intro h1 {
    margin-bottom: 26px;
    font-size: 61px;
    line-height: 0.8;
  }

  .sayo-home-intro__subtitle {
    font-size: 24px;
    line-height: 1;
  }

  .sayo-new-products {
    min-height: 1000px;
    margin-inline: 2%;
    padding: 60px 7% 30px;
    grid-template-columns: 1fr;
    gap: 10px;
    background-image: url("../images/K05HE-K07HE-2026-New-m-bg.webp");
  }

  .sayo-new-products__item {
    height: 440px;
  }

  .sayo-new-products__item span {
    top: 0;
    font-size: 58px;
  }

  .sayo-new-products__item img {
    max-height: 360px;
  }

  .sayo-pcb-hero {
    min-height: 688px;
    margin-top: 20px;
    padding: 60px 33px;
    background-position: 64% center;
  }

  .sayo-pcb-hero__content,
  .sayo-cm51__copy {
    max-width: 100%;
  }

  .sayo-pcb-hero h2,
  .sayo-cm51 h2 {
    font-size: 46px;
  }

  .sayo-pcb-hero h2 span,
  .sayo-cm51 h2 span {
    font-size: 28px;
  }

  .sayo-performance__headline,
  .sayo-performance__rates {
    grid-template-columns: 1fr;
  }

  .sayo-performance__headline > div {
    min-height: 255px;
    padding: 44px 33px;
  }

  .sayo-performance__headline > div + div,
  .sayo-performance__rates > div + div {
    border-top: 1px solid #eaecf0;
    border-left: 0;
  }

  .sayo-performance h2 {
    font-size: 38px;
  }

  .sayo-performance__headline strong {
    font-size: 32px;
  }

  .sayo-performance__headline p {
    font-size: 16px;
  }

  .sayo-performance__rates > div {
    min-height: 130px;
  }

  .sayo-performance__rates strong {
    font-size: 34px;
  }

  .sayo-performance__rates span {
    font-size: 16px;
  }

  .sayo-mcu {
    padding: 60px 33px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sayo-mcu__image img {
    max-height: 420px;
  }

  .sayo-mcu h2 {
    font-size: 34px;
  }

  .sayo-mcu p {
    padding-left: 18px;
  }

  .sayo-models,
  .sayo-featured,
  .sayo-related-products {
    padding: 60px 0;
  }

  .sayo-section-heading {
    margin-bottom: 30px;
  }

  .sayo-section-heading h2,
  .sayo-related-products > .sayo-shell > h2 {
    font-size: 32px;
  }

  .sayo-section-heading--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .sayo-models__grid {
    grid-template-columns: 1fr;
  }

  .sayo-model {
    padding: 24px;
  }

  .sayo-model img {
    height: 330px;
  }

  .sayo-model p {
    min-height: auto;
  }

  .sayo-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .sayo-product-card h3 {
    min-height: 40px;
    font-size: 15px;
  }

  .sayo-product-card__price {
    min-height: 23px;
    font-size: 13px;
  }

  .sayo-product-card__action {
    margin-top: 10px;
    font-size: 11px;
  }

  .sayo-cm51 {
    min-height: 640px;
    padding: 60px 33px;
    background-position: 60% center;
  }

  .sayo-cm51 h3 {
    font-size: 17px;
  }

  .sayo-testimonials {
    padding: 70px 0;
  }

  .sayo-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .sayo-testimonials blockquote {
    padding: 26px;
  }

  .sayo-testimonials blockquote p {
    min-height: 0;
  }

  .sayo-compatible {
    padding: 60px 0;
  }

  .sayo-compatible > .sayo-shell {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .sayo-compatible h2 {
    font-size: 32px;
  }

  .sayo-shop__header {
    padding: 60px 0 40px;
  }

  .sayo-shop__header h1 {
    margin-bottom: 26px;
    font-size: 42px;
  }

  .sayo-category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sayo-category-tabs a {
    flex: 0 0 auto;
  }

  .sayo-shop__body {
    padding-top: 36px;
    padding-bottom: 70px;
  }

  .sayo-shop__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .sayo-shop__toolbar select {
    width: 100%;
  }

  .sayo-product-hero {
    min-height: 1149px;
    padding: 60px 0 40px;
  }

  .sayo-product-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sayo-product-summary {
    max-width: 100%;
  }

  .sayo-product-summary h1 {
    margin-bottom: 16px;
    font-size: 29px;
    line-height: 1.2;
  }

  .sayo-product-summary__intro {
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.45;
  }

  .sayo-product-summary__range {
    font-size: 18px;
  }

  .sayo-product-summary table.variations tr {
    min-height: 60px;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .sayo-product-summary table.variations label {
    font-size: 13px;
  }

  .sayo-product-summary table.variations select {
    width: 100%;
    font-size: 13px;
  }

  .sayo-product-summary .woocommerce-variation-price {
    font-size: 20px;
  }

  .sayo-product-summary .single_add_to_cart_button {
    width: calc(100% - 136px);
    min-width: 160px;
  }

  .sayo-purchase-help {
    margin-top: 38px;
  }

  .sayo-purchase-help summary {
    min-height: 60px;
    font-size: 16px;
  }

  .sayo-product-gallery .woocommerce-product-gallery {
    max-width: 100%;
  }

  .sayo-product-gallery .woocommerce-product-gallery__image {
    min-height: 309px;
  }

  .sayo-product-gallery .woocommerce-product-gallery__image img {
    width: min(100%, 309px) !important;
    height: min(100%, 309px) !important;
  }

  .sayo-o3c-intro {
    padding: 60px 0;
  }

  .sayo-o3c-intro h2 {
    font-size: 32px;
  }

  .sayo-o3c-intro__copy {
    margin-bottom: 40px;
    font-size: 14px;
  }

  .sayo-feature-row,
  .sayo-feature-row--reverse,
  .sayo-feature-row--media-wide {
    padding-bottom: 40px;
    grid-template-columns: 1fr;
  }

  .sayo-feature-row > div,
  .sayo-feature-row--reverse > div,
  .sayo-feature-row--reverse > img {
    order: initial;
  }

  .sayo-feature-row > div {
    padding: 30px 0;
  }

  .sayo-feature-row h2 {
    font-size: 19px;
  }

  .sayo-feature-row img,
  .sayo-feature-row video {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .sayo-generic-product-detail {
    padding: 60px 0;
  }

  .sayo-generic-product-detail h2 {
    font-size: 34px;
  }

  .sayo-page-main {
    padding: 60px 0 80px;
  }

  .sayo-page-title h1 {
    margin-bottom: 34px;
    font-size: 42px;
  }

  body.sayo-storefront .woocommerce table.shop_table_responsive tr td,
  body.sayo-storefront .woocommerce-page table.shop_table_responsive tr td {
    padding: 12px;
  }

  .sayo-footer {
    padding: 60px 0 24px;
  }

  .sayo-footer__top {
    gap: 56px;
  }

  .sayo-newsletter h2 {
    font-size: 36px;
  }

  .sayo-newsletter__form {
    align-items: stretch;
    flex-direction: column;
  }

  .sayo-newsletter__form input,
  .sayo-newsletter__form button {
    width: 100%;
  }

  .sayo-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
  }

  .sayo-footer__bottom {
    margin-top: 62px;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}

@media (max-width: 420px) {
  .sayo-home-intro__year,
  .sayo-home-intro h1 {
    font-size: 51px;
  }

  .sayo-home-intro__subtitle {
    font-size: 20px;
  }

  .sayo-footer__links {
    grid-template-columns: 1fr;
  }

  .sayo-product-summary .quantity {
    width: 116px;
    grid-template-columns: 34px 48px 34px;
  }

  .sayo-product-summary .quantity .qty {
    width: 48px;
  }

  .sayo-quantity-button {
    width: 34px;
  }

  .sayo-product-summary .single_add_to_cart_button {
    width: calc(100% - 122px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
