html {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  max-width: 100vw;
  overflow-x: clip;
  margin: 0;
  background: #ffffff;
  color: #0f1b3d;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  line-height: 1.15;
  color: #0f1b3d;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: none;
  border-radius: 100px;
  background: #ff8c00;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  background: #e67c00;
}
.btn:active {
  transform: translateY(1px);
}
.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn--outline {
  background: transparent;
  color: #ff8c00;
  border: 1px solid #ff8c00;
}
.btn--outline:hover {
  background: #ff8c00;
  color: #ffffff;
}

.section-eyebrow {
  display: inline-block;
  color: #ff8c00;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000000;
  min-height: 110px;
  color: #ffffff;
  background: linear-gradient(180deg, #263B87 0%, #283167 100%);
  transition: background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  background: #0b1f4a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled .site-header__inner {
  min-height: 72px;
}
.site-header.is-scrolled .site-header__search,
.site-header.is-scrolled .site-header__user {
  width: 46px;
  height: 46px;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 24px;
  pointer-events: none;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  min-height: 110px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .site-header__inner {
    padding: 0 20px;
  }
}
.site-header__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.site-header__logo img {
  display: block;
  height: 32px;
  width: auto;
}
.site-header__logo-text {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.site-header__logo img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__menu > li {
  position: relative;
  display: flex;
  align-items: center;
}
.site-header__menu a {
  display: inline-block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.4px;
  color: #ffffff;
  white-space: nowrap;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease;
}
.site-header__menu a:hover, .site-header__menu a:focus-visible {
  opacity: 0.7;
}
.site-header__menu > .current-menu-item > a,
.site-header__menu > .current-menu-ancestor > a {
  font-weight: 700;
}
.site-header__utils {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.site-header__lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.site-header__lang-btn[aria-expanded=true] .site-header__lang-icon {
  transform: rotate(180deg);
}
.site-header__lang-label {
  text-transform: uppercase;
  color: #ffffff;
}
.site-header__lang-icon {
  display: block;
  color: #ffffff;
  transition: transform 0.2s ease;
}
.site-header__lang-list {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  min-width: 88px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 27, 61, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}
.site-header__lang-list li {
  margin: 0;
}
.site-header__lang-list a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.4px;
  color: #0f1b3d;
  text-transform: uppercase;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-header__lang-list a:hover, .site-header__lang-list a:focus-visible {
  background: rgba(255, 140, 0, 0.1);
  color: #ff8c00;
}
.site-header__lang.is-open .site-header__lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0s;
}
.site-header__search, .site-header__user {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.site-header__search:hover, .site-header__search:focus-visible, .site-header__user:hover, .site-header__user:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}
.site-header__search svg, .site-header__user svg {
  display: block;
}
.site-header__burger {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}
@media (max-width: 1200px) {
  .site-header__burger {
    display: block;
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}
.mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  display: flex;
  flex-direction: column;
  background: #0b1f4a;
  color: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open .mobile-nav__drawer {
  transform: translateX(0);
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.mobile-nav__logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.mobile-nav__logo img {
  display: block;
  height: 32px;
  width: auto;
}
.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.mobile-nav__close:hover, .mobile-nav__close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.mobile-nav__close svg {
  display: block;
}
.mobile-nav__nav {
  padding: 16px 8px 32px;
}
.mobile-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__menu li {
  position: relative;
}
.mobile-nav__menu > li > a {
  display: block;
  padding: 14px 16px;
  border-radius: 6px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-nav__menu > li > a:hover, .mobile-nav__menu > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ff8c00;
}
.mobile-nav__menu > .current-menu-item > a,
.mobile-nav__menu > .current-menu-ancestor > a {
  font-weight: 700;
  color: #ff8c00;
}
.mobile-nav__menu .sub-menu {
  list-style: none;
  margin: 0 0 4px 12px;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav__menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.mobile-nav__menu .sub-menu a:hover, .mobile-nav__menu .sub-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ff8c00;
}

body.is-mobile-nav-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}
@media (max-width: 900px) {
  .site-footer {
    padding: 48px 0 0;
  }
}
.site-footer__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.site-footer__inner {
  display: grid;
  grid-gap: 32px;
  gap: 32px;
  grid-template-columns: 1fr 274px 296px 296px;
  padding-bottom: 40px;
}
@media (max-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site-footer__logo {
  display: inline-block;
}
.site-footer__logo img {
  display: block;
  height: 32px;
  width: auto;
}
.site-footer__logo-text {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.site-footer__address {
  font-style: normal;
}
.site-footer__address p {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 14px;
  line-height: 22.4px;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__col {
  display: flex;
  flex-direction: column;
}
.site-footer__heading {
  margin: 0 0 16px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__list li {
  margin-bottom: 8px;
}
.site-footer__list a {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 15px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}
.site-footer__list a:hover {
  color: #ff8c00;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__contact p {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 15px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__email a {
  color: #ffffff;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.site-footer__email a:hover {
  color: #ff8c00;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 600px) {
  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer__copy {
  margin: 0;
}
.site-footer__legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.site-footer__legal-list a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.site-footer__legal-list a:hover {
  color: #ff8c00;
}

.breadcrumbs {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs a {
  color: #6b7280;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumbs a:hover, .breadcrumbs a:focus-visible {
  color: #ff8c00;
}
.breadcrumbs span[aria-current=page],
.breadcrumbs .breadcrumb_last {
  color: #1a1a1a;
}
.breadcrumbs .breadcrumb_separator {
  color: #9ca3af;
  padding: 0 4px;
}
.breadcrumbs__sep {
  display: inline-block;
  color: #9ca3af;
  flex-shrink: 0;
}

.site-search {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
}
.site-search[hidden] {
  display: none;
}
.site-search__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 27, 61, 0.55);
}
.site-search__panel {
  position: relative;
  max-width: 720px;
  margin: 12vh auto 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 27, 61, 0.3);
  overflow: hidden;
}
@media (max-width: 600px) {
  .site-search__panel {
    margin: 0;
    height: 100%;
    border-radius: 0;
  }
}
.site-search__form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #eef1f6;
}
.site-search__form svg {
  color: #8892a6;
  flex-shrink: 0;
}
.site-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 18px;
  color: #0f1b3d;
}
.site-search__input::-moz-placeholder {
  color: #8892a6;
}
.site-search__input::placeholder {
  color: #8892a6;
}
.site-search__close {
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: #8892a6;
  cursor: pointer;
}
.site-search__close:hover {
  color: #ff8c00;
}
.site-search__results {
  max-height: 60vh;
  overflow-y: auto;
  padding: 8px 0;
}
@media (max-width: 600px) {
  .site-search__results {
    max-height: calc(100% - 70px);
  }
}
.site-search__group {
  padding: 6px 0;
}
.site-search__group-title {
  margin: 0;
  padding: 6px 20px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8892a6;
}
.site-search__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-search__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 20px;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #0f1b3d;
}
.site-search__item:hover, .site-search__item:focus-visible {
  background: #f5f7fb;
}
.site-search__item-title {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: #1a1a1a;
}
.site-search__item-meta {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #8892a6;
}
.site-search__empty, .site-search__status {
  margin: 0;
  padding: 24px 20px;
  text-align: center;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 15px;
  color: #8892a6;
}

body.site-search-open {
  overflow: hidden;
}

.ask-product {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ask-product[hidden] {
  display: none;
}
.ask-product__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(15, 27, 61, 0.55);
}
.ask-product__dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 27, 61, 0.3);
  padding: 32px;
}
@media (max-width: 600px) {
  .ask-product__dialog {
    padding: 24px;
  }
}
.ask-product__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.ask-product__close:hover {
  color: #ff8c00;
}
.ask-product__title {
  margin: 0 0 20px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #1a1a1a;
}
.ask-product .wpcf7-form p {
  margin: 0 0 14px;
}
.ask-product .wpcf7-form br {
  display: none;
}
.ask-product .wpcf7-form label {
  display: block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #0f1b3d;
}
.ask-product .wpcf7-form input[type=text],
.ask-product .wpcf7-form input[type=email],
.ask-product .wpcf7-form input[type=tel],
.ask-product .wpcf7-form input[type=url],
.ask-product .wpcf7-form select,
.ask-product .wpcf7-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 10px 14px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  background: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4a5673;
}
.ask-product .wpcf7-form input[type=text]:focus,
.ask-product .wpcf7-form input[type=email]:focus,
.ask-product .wpcf7-form input[type=tel]:focus,
.ask-product .wpcf7-form input[type=url]:focus,
.ask-product .wpcf7-form select:focus,
.ask-product .wpcf7-form textarea:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}
.ask-product .wpcf7-form textarea {
  height: auto;
  resize: vertical;
}
.ask-product .wpcf7-form input[type=submit] {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 12px 32px;
  border: none;
  border-radius: 100px;
  background: #ff8c00;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ask-product .wpcf7-form input[type=submit]:hover {
  background: #e67c00;
}
.ask-product .wpcf7-not-valid-tip {
  color: #991b1b;
  font-size: 13px;
  margin-top: 4px;
}
.ask-product .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.ask-product .wpcf7-form.invalid .wpcf7-response-output,
.ask-product .wpcf7-form.unaccepted .wpcf7-response-output {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #991b1b;
}
.ask-product .wpcf7-form.sent .wpcf7-response-output {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #166534;
}

.ask-product .wpcf7-form input[name=produkt] {
  background: #f5f7fb;
  font-weight: 700;
  color: #1a1a1a;
}

body.ask-product-open {
  overflow: hidden;
}

.product-info__ask {
  align-self: flex-start;
  margin-top: 4px;
}

.product-page .breadcrumbs {
  margin: 12px 0 40px;
}
.product-page {
  margin: 100px 0 90px;
}
@media (max-width: 900px) {
  .product-page {
    margin: 100px 0 60px;
  }
}
.product-page__layout {
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr);
  grid-gap: 44px;
  gap: 44px;
  align-items: start;
}
@media (max-width: 1200px) {
  .product-page__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.product-page__layout--no-sidebar {
  grid-template-columns: minmax(0, 1fr);
}
.product-page__right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 900px) {
  .product-page__right {
    gap: 32px;
  }
}

.product-sidebar__title {
  margin: 0 0 16px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #333;
  text-transform: uppercase;
}
.product-sidebar__nav, .product-sidebar__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-sidebar__sub {
  padding-left: 16px;
}
.product-sidebar__item {
  display: block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}
.product-sidebar__item:not(.is-open) > .product-sidebar__sub {
  display: none;
}
.product-sidebar__item.is-active > .product-sidebar__row > .product-sidebar__link {
  color: #ff8c00;
}
.product-sidebar__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.product-sidebar__link {
  flex: 1 1 auto;
  color: #333;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.15s ease;
}
.product-sidebar__link:hover, .product-sidebar__link:focus-visible {
  color: #ff8c00;
}
.product-sidebar__toggle {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: color 0.15s ease;
}
.product-sidebar__toggle::before, .product-sidebar__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease;
}
.product-sidebar__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.product-sidebar__toggle:hover, .product-sidebar__toggle:focus-visible {
  color: #ff8c00;
}
.product-sidebar__item.is-open > .product-sidebar__row > .product-sidebar__toggle::after {
  opacity: 0;
}

.product-main {
  display: grid;
  grid-template-columns: 464px minmax(0, 1fr);
  grid-gap: 48px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 1200px) {
  .product-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.product-gallery {
  position: relative;
}
.product-gallery__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  background: #ff8c00;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-gallery__main {
  aspect-ratio: 464/360;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-gallery__main img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  flex-shrink: 0;
  width: 85px;
  height: 85px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-gallery__thumb:hover, .product-gallery__thumb:focus-visible {
  border-color: #ff8c00;
}
.product-gallery__thumb.is-active {
  border-color: #ff8c00;
  box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.15);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-info__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #1a1a1a;
}
.product-info__price-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.product-info__price-table thead tr {
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}
.product-info__price-table tbody tr {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.product-info__price-table th, .product-info__price-table td {
  height: 44px;
  padding: 0 16px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #1a1a1a;
  vertical-align: middle;
}
.product-info__price-th {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  text-align: left;
}
.product-info__price-th--num {
  text-align: right;
}
.product-info__price-label {
  font-weight: 400;
}
.product-info__price-net, .product-info__price-gross {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}
.product-info__price-footnote {
  margin: 8px 0 0;
  padding: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #888;
}
.product-info__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-info__features-label {
  display: inline-block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #1a1a1a;
  text-transform: uppercase;
}
.product-info__features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-info__features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #1a1a1a;
}
.product-info__features-list .check-icon {
  background: #f59e0b;
}
.product-info__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  transition: filter 0.15s ease;
}
.product-info__guarantee, .product-info__guarantee:link, .product-info__guarantee:visited {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #ffffff;
}
.product-info__guarantee:hover, .product-info__guarantee:focus-visible {
  filter: brightness(1.05);
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff8c00;
  color: #ffffff;
  border-radius: 50%;
}
.check-icon svg {
  display: block;
}

.product-tabs {
  margin: 0;
}
.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .product-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.product-tabs__tab {
  position: relative;
  padding: 4px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #888;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.product-tabs__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: #ff8c00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.product-tabs__tab:hover, .product-tabs__tab:focus-visible {
  color: #1a1a1a;
}
.product-tabs__tab.is-active {
  color: #1a1a1a;
  font-weight: 700;
}
.product-tabs__tab.is-active::after {
  transform: scaleX(1);
}
.product-tabs__panel {
  display: none;
}
.product-tabs__panel.is-active {
  display: block;
  animation: product-tab-fade 0.25s ease;
}
.product-tabs__prose {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
}
.product-tabs__prose p {
  margin: 0 0 16px;
}
.product-tabs__prose p:last-child {
  margin-bottom: 0;
}
.product-tabs__prose strong {
  color: #1a1a1a;
}
.product-tabs__specs {
  width: 100%;
  border-collapse: collapse;
}
.product-tabs__specs tr {
  border-bottom: 1px solid #e5e7eb;
}
.product-tabs__specs tr:last-child {
  border-bottom: 0;
}
.product-tabs__specs td {
  padding: 16px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 24px;
  vertical-align: top;
}
.product-tabs__specs-label {
  width: 340px;
  color: #6b7280;
  text-transform: uppercase;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 900px) {
  .product-tabs__specs-label {
    width: auto;
  }
}
.product-tabs__specs-value {
  color: #1a1a1a;
}
.product-tabs__specs-footnote {
  margin: 16px 0 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 14px;
  line-height: normal;
  color: #888;
}
.product-tabs__modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 900px) {
  .product-tabs__modules {
    grid-template-columns: 1fr;
  }
}
.product-tabs__files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #f5f7fb;
  border-radius: 12px;
}
.module-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
}
.module-card__icon img {
  display: block;
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.module-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.module-card__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #1a1a1a;
}
.module-card__desc {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #6b7280;
}

.file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #f5f7fb;
  border-radius: 12px;
}
.file-row__meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.file-row__icon {
  flex-shrink: 0;
  color: #6b7280;
}
.file-row__label {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-row__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: #ff8c00;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: background 0.15s ease;
}
.file-row__btn:hover, .file-row__btn:focus-visible {
  background: #e67c00;
}
.file-row__btn svg {
  display: block;
}

.product-partners {
  margin-top: 0;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}
.product-partners__title {
  margin: 0 0 20px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #1a1a1a;
}
.product-partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-partners__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: normal;
}
.product-partners__name {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  color: #1a1a1a;
}
.product-partners__link {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 25.6px;
  color: #ff8c00;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.product-partners__link:hover, .product-partners__link:focus-visible {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.product-related {
  margin-top: 0;
}
.product-related__title {
  margin: 0 0 24px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .product-related__title {
    font-size: 24px;
  }
}
.product-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 1200px) {
  .product-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .product-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-related__grid {
    grid-template-columns: 1fr;
  }
}

.related-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.related-card:hover, .related-card:focus-visible {
  border-color: #ff8c00;
  box-shadow: 0 6px 18px rgba(15, 27, 61, 0.08);
  transform: translateY(-2px);
}
.related-card__media {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.related-card__media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.related-card__title {
  flex: 1;
  margin: 0 0 20px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: #1a1a1a;
  text-align: center;
}
.related-card__cta {
  align-self: center;
  min-width: 130px;
  text-align: center;
  justify-content: center;
}

@keyframes product-tab-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-archive__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.product-archive__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .product-archive__title {
    font-size: 26px;
  }
}

.product-archive__desc {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #6b7280;
}

.product-archive__empty {
  padding: 40px 20px;
  text-align: center;
  color: #8892a6;
  border: 1px dashed #e5e7eb;
  border-radius: 12px;
}

.product-archive__intro-title {
  margin: 0 0 12px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .product-archive__intro-title {
    font-size: 20px;
  }
}
.product-archive__intro-text {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #6b7280;
}
.product-archive__intro-text > :first-child {
  margin-top: 0;
}
.product-archive__intro-text > :last-child {
  margin-bottom: 0;
}
.product-archive__intro-text p {
  margin: 0 0 12px;
}
.product-archive__intro-text a {
  color: #ff8c00;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.product-archive__intro-text a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.view-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
}
.view-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.view-toggle__btn:hover {
  color: #ff8c00;
}
.view-toggle__btn.is-active {
  background: #ff8c00;
  color: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}
.product-grid.is-list {
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.product-card:hover {
  border-color: #ff8c00;
  box-shadow: 0 6px 18px rgba(15, 27, 61, 0.08);
  transform: translateY(-2px);
}
.product-card__media {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
}
.product-card__media img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card__media-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f7fb;
  border-radius: 6px;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  background: #ff8c00;
  color: #ffffff;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px 24px;
  border-top: 1px solid #f0f1f4;
}
.product-card__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}
.product-card__title a {
  color: #1a1a1a;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.15s ease;
}
.product-card__title a:hover {
  color: #ff8c00;
}
.product-card__desc {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
}
.product-card__actions {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-card__btn {
  padding: 10px 20px;
  font-size: 14px;
}

.product-grid.is-list .product-card {
  flex-direction: row;
  align-items: stretch;
}
.product-grid.is-list .product-card .product-card__media {
  flex: 0 0 220px;
  aspect-ratio: 1/1;
}
.product-grid.is-list .product-card .product-card__body {
  border-top: 0;
  border-left: 1px solid #f0f1f4;
  justify-content: center;
}
@media (max-width: 600px) {
  .product-grid.is-list .product-card {
    flex-direction: column;
  }
  .product-grid.is-list .product-card .product-card__media {
    flex-basis: auto;
    aspect-ratio: 1/1;
  }
  .product-grid.is-list .product-card .product-card__body {
    border-left: 0;
    border-top: 1px solid #f0f1f4;
  }
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #1a1a1a;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 15px;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.pagination .page-numbers:hover {
  border-color: #ff8c00;
  color: #ff8c00;
}
.pagination .page-numbers.current {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #ffffff;
}
.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

.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;
}

.post-single {
  margin: 130px 0 90px;
}
@media (max-width: 900px) {
  .post-single {
    margin: 100px 0 60px;
  }
}
.post-single .breadcrumbs {
  margin: 0 0 32px;
}
.post-single__inner {
  max-width: none;
  margin: 0;
}
.post-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 12px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #6b7280;
}
.post-single__meta a {
  color: #ff8c00;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.post-single__meta a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.post-single__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .post-single__title {
    font-size: 30px;
  }
}
.post-single__media {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
}
.post-single__media img {
  display: block;
  width: 100%;
  height: auto;
}
.post-single__content {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: #4a5673;
}
.post-single__content > :first-child {
  margin-top: 0;
}
.post-single__content > :last-child {
  margin-bottom: 0;
}
.post-single__content p {
  margin: 0 0 20px;
}
.post-single__content h2, .post-single__content h3, .post-single__content h4 {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
}
.post-single__content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}
.post-single__content h3 {
  font-size: 23px;
  margin: 32px 0 12px;
}
.post-single__content h4 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.post-single__content ul, .post-single__content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.post-single__content li {
  margin-bottom: 8px;
}
.post-single__content a {
  color: #ff8c00;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.post-single__content a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.post-single__content strong, .post-single__content b {
  font-weight: 700;
}
.post-single__content blockquote {
  margin: 0 0 24px;
  padding: 8px 0 8px 20px;
  border-left: 3px solid #ff8c00;
  font-size: 19px;
  line-height: 1.6;
  color: #0f1b3d;
}
.post-single__content img {
  max-width: 100%;
  height: auto;
}
.post-single__content figure {
  margin: 0 0 24px;
}
.post-single__content .wp-block-image img {
  border-radius: 12px;
}
.post-single__content figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #8892a6;
  text-align: center;
}
.post-single__content .wp-block-table {
  margin: 0 0 24px;
  overflow-x: auto;
}
.post-single__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.post-single__content th, .post-single__content td {
  padding: 12px 16px;
  border: 1px solid #e6e9f0;
  text-align: left;
}
.post-single__content thead th {
  background: #f5f7fb;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  color: #1a1a1a;
}
.post-single__content .wp-block-columns {
  margin: 0 0 24px;
  gap: 24px;
}
.post-single__pages {
  margin-top: 24px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
}
.post-single__pages a {
  color: #ff8c00;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.post-others {
  margin: 0 0 90px;
}
@media (max-width: 900px) {
  .post-others {
    margin-bottom: 60px;
  }
}
.post-others__title {
  margin: 0 0 32px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .post-others__title {
    font-size: 24px;
  }
}

.blog-archive {
  margin: 130px 0 90px;
}
@media (max-width: 900px) {
  .blog-archive {
    margin: 100px 0 60px;
  }
}
.blog-archive .breadcrumbs {
  margin: 0 0 24px;
}
.blog-archive__head {
  margin-bottom: 40px;
}
.blog-archive__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: #1a1a1a;
}
@media (max-width: 900px) {
  .blog-archive__title {
    font-size: 30px;
  }
}
.blog-archive__desc {
  margin-top: 12px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5673;
}

.product-page .breadcrumbs {
  margin: 12px 0 40px !important;
}
/*# sourceMappingURL=style.css.map */
