@charset "UTF-8";
:root {
  --primary: #ff6600;
  --secondary: #DA0000;
  --tertiary: #ffa331;
  --hover-pr: #00053b;
  --hover-sec: #00b33c;
  --hover-ter: #cc8400;
  --text-primary: #ff6600;
  --text-w: #fff;
  --text: #1C313C;
  --text-g: #677379;
  --link: #ff6600;
  --link-hover: #0c626a;
  --link-visited: #1C313C;
  --link-ui: #1C313C;
  --link-ui-hover: #0c626a;
  --primary-button-bg: #ff6600;
  --primary-button-bg-hover: #1C313C;
  --primary-button-border: #ff6600;
  --primary-button-border-hover: #1C313C;
  --primary-button-color: white;
  --primary-button-color-hover: white;
  --secondary-button-bg: #DA0000;
  --secondary-button-bg-hover: #1C313C;
  --secondary-button-border: #DA0000;
  --secondary-button-border-hover: #1C313C;
  --secondary-button-color: white;
  --secondary-button-color-hover: white;
  --tertiary-button-bg: #ffffff;
  --tertiary-button-bg-hover: #1C313C;
  --tertiary-button-border: #ffffff;
  --tertiary-button-border-hover: #1C313C;
  --tertiary-button-color: #1C313C;
  --tertiary-button-color-hover: #ffffff;
  --white: white;
  --border: #EDF1FA;
  --dark: #1C313C;
  --item: #F8FBFF;
  --secondary-item: #E3EFFF;
  --body-bg: #F9F9F9;
  --body-dark-bg: #0d0707;
  --success: #2E7D32;
  --warning: #ED6C02;
  --danger: #D32F2F;
  --info: #0288D1;
  --header__bg-top: #f8fbff;
  --header__bg-main: rgb(255, 255, 255);
  --header_bg-bottom: #f8fbff;
  --footer__bg: #04151B;
  --footer__color: white;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --sh-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --sh-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --sh-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --sh-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.section--flex {
  display: flex;
  align-items: center;
}

section {
  opacity: 0;
  transform: translateY(16px);
  animation: sectionFadeIn 0.8s ease forwards;
}

@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  section {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
main {
  min-height: 100vh;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
}
@media (max-width: 1419px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

body {
  background: var(--body-bg);
  font-family: "Gilroy", sans-serif;
}

embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5em;
  font-size: 0.95em;
  line-height: 1.4;
}

thead {
  background: rgba(0, 0, 0, 0.04);
}

th,
td {
  padding: 0.6em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-align: left;
  vertical-align: top;
}

th {
  font-weight: 600;
  background: rgba(0, 0, 0, 0.03);
}

tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

caption {
  caption-side: bottom;
  margin-top: 0.5em;
  font-size: 0.85em;
  opacity: 0.7;
}

.table-wrap {
  overflow-x: auto;
}

.search-block {
  position: relative;
  width: 100%;
  flex: 0 1 auto;
  max-width: 660px;
}

#searchform {
  width: 100%;
}
#searchform .search-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
#searchform .search-wrapper input[type=search] {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 14px;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  font-weight: 300;
  background: var(--header_bg-bottom);
  transition: border-color 0.3s ease;
  color: #3e3e3e;
}
#searchform .search-wrapper input[type=search]:focus {
  border-color: var(--primary);
}
#searchform .search-wrapper #searchsubmit {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  color: #6e6e6e;
}
#searchform .search-wrapper #searchsubmit .icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}
#searchform .search-wrapper #searchsubmit:hover .icon {
  color: var(--primary);
}

.search-suggestions {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: 8px;
  z-index: 20;
  padding: 8px 8px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.search-suggestions.is-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-suggestions .search-empty {
  text-align: center;
}
.search-suggestions .search-suggestions__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  background: transparent;
  color: var(--text);
}
.search-suggestions .search-suggestions__close:hover {
  color: var(--primary);
}
.search-suggestions .i-load {
  display: none;
  font-size: 18px;
}
.search-suggestions.is-loading .i-load {
  display: inline-block;
  margin: auto;
  animation: spin 0.8s linear infinite;
}
.search-suggestions .search-suggestions__body {
  max-height: 300px;
  overflow-y: auto;
}
.search-suggestions .search-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-suggestions .search-list .search-item {
  width: 100%;
}
.search-suggestions .search-list .search-item a {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.search-suggestions .search-list .search-item a img {
  max-width: 82px;
  height: 48px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-suggestions .search-list .search-item a:hover {
  background-color: var(--gray-100);
  color: var(--primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.tabs .tabs__tablist {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
.tabs [role=tab] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  line-height: 1.2;
}
.tabs [role=tab] img {
  max-width: 24px;
}
.tabs [role=tab]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.tabs [role=tab][aria-selected=true] {
  background: var(--primary);
  color: var(--text-w);
  border: 1px solid var(--primary);
}
.tabs [role=tab][aria-selected=false] {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.tabs .tabs__panel {
  margin: 0;
}
.tabs .tabs__panel[hidden] {
  display: none;
}
.tabs[data-orientation=vertical] .tabs__tablist {
  flex-direction: column;
  border-bottom: 0;
  border-right: 1px solid var(--primary);
  padding-right: 0.75rem;
  margin-right: 1rem;
}

a {
  color: var(--link);
}
a:visited {
  color: var(--link-visited);
}
a:hover, a:focus, a:active {
  color: var(--link-hover);
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

.link-ui {
  color: var(--link-ui);
  text-decoration: none;
}
.link-ui:hover, .link-ui:focus, .link-ui:active {
  color: var(--link-ui-hover);
}
.link-ui:focus {
  outline: thin dotted;
}
.link-ui:hover, .link-ui:active {
  outline: 0;
}

@keyframes btn-shimmer {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.tertiary-btn,
.tertiary-button, .secondary-btn,
.secondary-button, .btn-inline,
.btn,
button,
.button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  line-height: 1.2;
  padding: 14px 24px;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  font-weight: 600;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.tertiary-btn .icon,
.tertiary-button .icon, .secondary-btn .icon,
.secondary-button .icon, .btn-inline .icon,
.btn .icon,
button .icon,
.button .icon,
input[type=button] .icon,
input[type=reset] .icon,
input[type=submit] .icon {
  width: 22px;
  height: 22px;
}
.tertiary-btn:focus-visible,
.tertiary-button:focus-visible, .secondary-btn:focus-visible,
.secondary-button:focus-visible, .btn-inline:focus-visible,
.btn:focus-visible,
button:focus-visible,
.button:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible,
input[type=submit]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.tertiary-btn::before,
.tertiary-button::before, .secondary-btn::before,
.secondary-button::before, .btn-inline::before,
.btn::before,
button::before,
.button::before,
input[type=button]::before,
input[type=reset]::before,
input[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
}
.tertiary-btn:hover::before,
.tertiary-button:hover::before, .secondary-btn:hover::before,
.secondary-button:hover::before, .btn-inline:hover::before,
.btn:hover::before,
button:hover::before,
.button:hover::before,
input[type=button]:hover::before,
input[type=reset]:hover::before,
input[type=submit]:hover::before {
  animation: btn-shimmer 0.55s ease forwards;
}

.btn-inline,
.btn,
button,
.button,
input[type=button],
input[type=reset],
input[type=submit] {
  border-color: var(--primary-button-border);
  background: var(--primary-button-bg);
  color: var(--primary-button-color);
}
.btn-inline:visited,
.btn:visited,
button:visited,
.button:visited,
input[type=button]:visited,
input[type=reset]:visited,
input[type=submit]:visited {
  color: var(--primary-button-color);
}
.btn-inline:hover,
.btn:hover,
button:hover,
.button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: var(--primary-button-bg-hover);
  color: var(--primary-button-color-hover);
  background: var(--primary-button-bg-hover);
}
.btn-inline:active, .btn-inline:focus,
.btn:active,
.btn:focus,
button:active,
button:focus,
.button:active,
.button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: var(--primary-button-border);
  color: var(--primary-button-color-hover);
  background: var(--primary-button-bg-hover);
}

.secondary-btn,
.secondary-button {
  border-color: var(--secondary-button-border);
  background: var(--secondary-button-bg);
  color: var(--secondary-button-color);
}
.secondary-btn:visited,
.secondary-button:visited {
  color: var(--secondary-button-color);
}
.secondary-btn:hover,
.secondary-button:hover {
  border-color: var(--secondary-button-bg-hover);
  color: var(--secondary-button-color-hover);
  background: var(--secondary-button-bg-hover);
}
.secondary-btn:active, .secondary-btn:focus,
.secondary-button:active,
.secondary-button:focus {
  border-color: var(--secondary-button-border);
  color: var(--secondary-button-color-hover);
  background: var(--secondary-button-bg);
}

.tertiary-btn,
.tertiary-button {
  box-shadow: 0px 0px 18px 9px rgba(102, 102, 102, 0.051);
  border-color: var(--tertiary-button-border);
  background: var(--tertiary-button-bg);
  color: var(--tertiary-button-color);
}
.tertiary-btn:visited,
.tertiary-button:visited {
  color: var(--tertiary-button-color);
}
.tertiary-btn:hover,
.tertiary-button:hover {
  border-color: var(--tertiary-button-bg-hover);
  color: var(--tertiary-button-color-hover);
  background: var(--tertiary-button-bg-hover);
}
.tertiary-btn:active, .tertiary-btn:focus,
.tertiary-button:active,
.tertiary-button:focus {
  border-color: var(--tertiary-button-border);
  color: var(--tertiary-button-color-hover);
  background: var(--tertiary-button-bg);
}

.wpcf7 form {
  display: contents;
}
.wpcf7 p {
  margin: 0;
}
.wpcf7 .wpcf7-form p > br {
  display: none;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: 100%;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 input[type=date],
.wpcf7 input[type=password],
.wpcf7 textarea,
.wpcf7 select {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text, #1f2937);
  background: #f5f7fa;
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 input[type=password]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  color: #adb5bd;
  font-weight: 300;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=number]::placeholder,
.wpcf7 input[type=date]::placeholder,
.wpcf7 input[type=password]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: #adb5bd;
  font-weight: 300;
}
.wpcf7 input[type=text]:hover,
.wpcf7 input[type=email]:hover,
.wpcf7 input[type=tel]:hover,
.wpcf7 input[type=url]:hover,
.wpcf7 input[type=number]:hover,
.wpcf7 input[type=date]:hover,
.wpcf7 input[type=password]:hover,
.wpcf7 textarea:hover,
.wpcf7 select:hover {
  background: #eef1f5;
}
.wpcf7 input[type=text]:focus, .wpcf7 input[type=text]:focus-visible,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=email]:focus-visible,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=tel]:focus-visible,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=url]:focus-visible,
.wpcf7 input[type=number]:focus,
.wpcf7 input[type=number]:focus-visible,
.wpcf7 input[type=date]:focus,
.wpcf7 input[type=date]:focus-visible,
.wpcf7 input[type=password]:focus,
.wpcf7 input[type=password]:focus-visible,
.wpcf7 textarea:focus,
.wpcf7 textarea:focus-visible,
.wpcf7 select:focus,
.wpcf7 select:focus-visible {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb, 26, 111, 196), 0.12);
}
.wpcf7 input[type=text]:disabled,
.wpcf7 input[type=email]:disabled,
.wpcf7 input[type=tel]:disabled,
.wpcf7 input[type=url]:disabled,
.wpcf7 input[type=number]:disabled,
.wpcf7 input[type=date]:disabled,
.wpcf7 input[type=password]:disabled,
.wpcf7 textarea:disabled,
.wpcf7 select:disabled {
  background: #f3f4f6;
  color: #6b7280;
  cursor: not-allowed;
}
.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
  padding-left: 16px;
}
.wpcf7 input[type=submit] {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 10px;
}
.wpcf7 label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text, #1f2937);
  margin-bottom: 6px;
}
.wpcf7 label .required {
  color: var(--primary);
}
.wpcf7 .cf7-field {
  display: flex;
  flex-direction: column;
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-name]::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-tel]::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-email]::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: var(--primary);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: var(--svg);
  -webkit-mask-image: var(--svg);
  z-index: 2;
  pointer-events: none;
  transition: background-color 0.3s ease;
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-name]:focus-within::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-tel]:focus-within::before,
.wpcf7 .wpcf7-form-control-wrap[data-name=your-email]:focus-within::before {
  background-color: var(--text, #1f2937);
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-name] {
  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M8%207a4%204%200%201%200%208%200a4%204%200%200%200-8%200M6%2021v-2a4%204%200%200%201%204-4h4a4%204%200%200%201%204%204v2%22%2F%3E%3C%2Fsvg%3E");
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-tel] {
  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.62%2010.79c1.44%202.83%203.76%205.15%206.59%206.59l2.2-2.2c.28-.28.67-.36%201.02-.25c1.12.37%202.32.57%203.57.57a1%201%200%200%201%201%201V20a1%201%200%200%201-1%201A17%2017%200%200%201%203%204a1%201%200%200%201%201-1h3.5a1%201%200%200%201%201%201c0%201.25.2%202.45.57%203.57c.11.35.03.74-.25%201.02z%22%2F%3E%3C%2Fsvg%3E");
}
.wpcf7 .wpcf7-form-control-wrap[data-name=your-email] {
  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%20%2F%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M22%206c0-1.1-.9-2-2-2H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2zm-2%200l-8%205l-8-5zm0%2012H4V8l8%205l8-5z%22%20%2F%3E%3C%2Fsvg%3E");
}
.wpcf7 .wpcf7-not-valid input,
.wpcf7 .wpcf7-not-valid textarea {
  border-color: #e53e3e !important;
  background: #fff5f5;
}
.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #e53e3e;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  margin: 0;
}
.wpcf7 .wpcf7-response-output {
  margin: 24px 0 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 8px;
  font-size: 13px;
  grid-column: 1/-1;
  border: none;
}
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 .wpcf7-mail-sent-ok {
  background: #f0fdf4;
  border-color: #a7f3d0;
  color: #16a34a;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked {
  background: #fff5f5;
  border-color: #fecaca;
  color: #e53e3e;
}
.wpcf7 input:is(:-webkit-autofill, :-webkit-autofill) {
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: var(--text) !important;
  border: 1px solid var(--primary) !important;
}
.wpcf7 input:is(:autofill, :-webkit-autofill) {
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: var(--text) !important;
  border: 1px solid var(--primary) !important;
}
.wpcf7 .cf7-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 992px) {
  .wpcf7 .cf7-grid-3 {
    grid-template-columns: 1fr;
  }
}
.wpcf7 .cf7-grid-3 .btn {
  width: 100%;
  height: 100%;
  min-height: 54px;
}

.form-section {
  padding: 60px;
  background: linear-gradient(135deg, #4db8e8 0%, #2196c4 100%);
  border-radius: 16px;
}
.form-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.form-section__header {
  text-align: center;
  color: #fff;
}
.form-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.form-section__subtitle {
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}
.form-section__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 640px;
}
.form-section__card .wpcf7 form {
  display: grid;
  gap: 24px;
}
.form-section__card .wpcf7 form .cf7-field--full,
.form-section__card .wpcf7 form .wpcf7-form-control-wrap[data-name=your-message],
.form-section__card .wpcf7 form .wpcf7-submit,
.form-section__card .wpcf7 form input[type=submit] {
  grid-column: 1/-1;
}
@media (max-width: 600px) {
  .form-section {
    padding: 40px 0;
  }
  .form-section__card {
    padding: 20px 16px;
  }
  .form-section__card .wpcf7 form {
    grid-template-columns: 1fr;
  }
  .form-section__card .wpcf7 form .wpcf7-form-control-wrap[data-name=your-message],
  .form-section__card .wpcf7 form input[type=submit] {
    grid-column: 1;
  }
}

.widget-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-area ul li a {
  text-decoration: none;
  color: var(--text);
}
.widget-area ul li a:hover {
  color: var(--primary);
}
.widget-area ul li .children {
  padding-left: 24px;
}

.product-slider {
  position: relative;
  width: 100%;
}
.product-slider__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px;
}
.product-slider__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.product-slider__nav button {
  background: #1F1E2F;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-slider__nav button:hover {
  background: #e0e0e0;
}
.product-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 16px;
  margin: 0;
  list-style: none;
}
.product-slider__track::-webkit-scrollbar {
  display: none;
}
.product-slider__track .product-list__item {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  min-width: 280px;
}
.product-slider__scrollbar {
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.product-slider__drag {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #D30000;
  border-radius: 2px;
  transition: left 0.1s ease-out, width 0.2s ease-out;
}

@media (max-width: 1200px) {
  .product-slider__track .product-list__item {
    flex: 0 0 calc(33.333% - 16px);
  }
}
@media (max-width: 992px) {
  .product-slider__track .product-list__item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 576px) {
  .product-slider__track .product-list__item {
    flex: 0 0 85%;
  }
}
.icon {
  width: 24px;
  height: 24px;
}

body,
input,
select,
optgroup,
textarea {
  color: var(--text);
  font-family: "Gilroy", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

ul,
ol {
  margin: 0 0 1em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

h1 {
  font-size: clamp(4.125rem, 6.6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2.375rem, 3.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: clamp(1.875rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: clamp(1.375rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
}

h6 {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
}

.site-header {
  display: block;
}

.top-header {
  background: var(--header__bg-top);
  padding: 12px;
}
.top-header .top-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--header__bg-top);
  flex-wrap: wrap;
  font-size: 14px;
}
.top-header .top-header__inner .top-header__contact ul {
  display: flex;
  gap: 12px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main_menu_bottom {
  display: flex;
  overflow-x: scroll;
  gap: 32px;
  scrollbar-width: thin;
  scrollbar-color: #d6d6d6 transparent;
}
.main_menu_bottom::-webkit-scrollbar {
  height: 3px;
}
.main_menu_bottom::-webkit-scrollbar-track {
  background: transparent;
}
.main_menu_bottom::-webkit-scrollbar-thumb {
  background-color: #d6d6d6;
  border-radius: 10px;
}
.main_menu_bottom::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary) !important;
}
.main_menu_bottom li {
  border-right: 1px solid #d6d6d6;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 12px;
}
.main_menu_bottom li a {
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 16px;
}
.main_menu_bottom li a:hover {
  color: var(--text-w);
  background-color: var(--primary);
}
.main_menu_bottom .current-menu-item a {
  color: var(--text-w) !important;
  background-color: var(--primary);
}

.main-header {
  background: var(--header__bg-main);
}

.main-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 2rem);
  border-bottom: 1px solid #EDF1FA;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px;
}

.site-branding img {
  max-width: 60px;
}

.site-title a {
  text-decoration: none;
  color: var(--link-pr);
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  font-weight: 400;
}
.site-title a:hover {
  color: var(--hover-pr);
}

.wp-nav-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-button__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1 1 auto;
}
.header-button__inner button {
  height: 48px;
  font-size: 17px;
  padding: 12px 32px;
}

.phone-dropdown {
  display: none;
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow-50);
  padding: 0.5em;
  z-index: 99;
  border-radius: 8px;
}

.contact-btn:hover .phone-dropdown {
  display: block;
}

.phone-btn, .phone-dropdown-item {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  gap: 8px;
  padding: 0.5em;
  text-decoration: none;
  color: var(--text);
}
.phone-btn .icon, .phone-dropdown-item .icon {
  width: 30px;
  height: 30px;
  transition: all ease 0.3s;
}

.phone-icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-btn:hover .icon {
  transform: rotate(180deg);
}

.socials__list {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.5vw, 0.5rem);
}

.socials__item img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.socials__item span {
  width: 30px;
  height: 30px;
}

.socials__item {
  transition: transform 0.25s ease;
}

.socials__item:hover {
  transform: translateY(-4px);
}

.beadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding: 4px;
  background: #EDF1FA;
  font-size: 14px;
  overflow-x: auto;
}
.beadcrumbs a {
  text-decoration: none;
}

.home .beadcrumbs {
  display: none;
}

.trp-language-switcher > div {
  border: none;
  z-index: 999;
}
.trp-language-switcher > div a {
  color: var(--f-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.trp-language-switcher > div a:hover {
  color: var(--accent);
}

.trp-ls-shortcode-current-language {
  width: 80px !important;
}

.fixed_header {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.6901960784);
  backdrop-filter: blur(10px);
  z-index: 999;
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  border-bottom: 1px solid rgb(219, 219, 219);
  transition: top 0.4s ease;
}

.hide {
  top: -100px;
}

.go-top {
  position: fixed;
  right: 124px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: var(--f-white);
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.go-top:visited {
  color: var(--f-white);
}
.go-top:hover {
  background: var(--accent);
}
.go-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.go-top:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

.bottom-header {
  background-color: var(--header_bg-bottom);
  padding: 12px;
}
.bottom-header .main_menu_bottom {
  display: flex;
  gap: 12px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.bottom-header .main_menu_bottom li {
  text-wrap: nowrap;
  font-size: 18px;
}

.mobile-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}
.mobile-header__wrap .mobile-menu {
  justify-content: flex-end;
  align-items: flex-start;
}
.mobile-header__wrap .mobile-menu .mobile-menu__content {
  border-radius: 0px;
  border-bottom-left-radius: 12px;
  height: 90%;
  width: 80%;
}

.mobile-menu__content {
  transform: translateX(250px);
}
.mobile-menu__content--visible .mobile-menu__content__content {
  transform: translateX(0);
  opacity: 1;
}

#mobile_menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column !important;
  gap: 1rem;
}
#mobile_menu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#mobile_menu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: var(--f-dark);
}

.social_share {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  --size: 56px;
  --gap: 10px;
  --bg: #111;
  --fg: #fff;
  --btn-bg: #1f2937;
}
.social_share .share__cb {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.social_share .share__fab {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: transform 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.social_share .share__fab .icon {
  transition: transform 0.25s ease;
  display: inline-block;
}
.social_share .share__fab:active {
  transform: scale(0.96);
}
.social_share .share__list {
  position: absolute;
  inset: auto 0 calc(var(--size) + 0px) 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.social_share .share__list > li {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(0) scale(0.8);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.25s ease;
  transition-delay: calc(var(--i) * 30ms);
}
.social_share .share__btn {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--btn-bg);
  color: var(--fg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.social_share .share__cb:checked ~ .share__list {
  pointer-events: auto;
}
.social_share .share__cb:checked ~ .share__list > li {
  transform: translateY(calc(-1 * var(--i) * (var(--size) + var(--gap)))) scale(1);
  opacity: 1;
}
.social_share .share__cb:checked + .share__fab .icon {
  transform: rotate(180deg);
}
.social_share .share__btn:hover {
  filter: brightness(1.1);
  transform: translateZ(0);
}
@media (prefers-reduced-motion: reduce) {
  .social_share .share__list > li, .social_share .share__fab, .social_share .share__fab .icon {
    transition: none;
  }
}

.button-catalog__inner {
  position: relative;
}

.service-header__nav {
  display: none;
  position: absolute;
  width: 100vh;
}
.service-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--sh-md);
  border-radius: 8px;
}
.service-header__nav ul li {
  padding: 8px 12px;
}
.service-header__nav ul li a {
  text-decoration: none;
}

.button-catalog__inner:hover .service-header__nav {
  display: block;
  z-index: 99;
}

.mobile-header__wrap {
  display: none;
}

@media (max-width: 992px) {
  .top-header,
  .main-header {
    display: none;
  }
  .mobile-header__wrap {
    display: flex;
  }
}
.footer {
  background: var(--footer__bg);
  color: var(--footer__color);
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 40px;
}
@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .footer__col--brand {
    grid-column: 1/-1;
  }
}
.footer__nav-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.5;
  margin: 0 0 4px;
  color: inherit;
}
.footer__nav-wrap {
  position: relative;
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.footer__nav-wrap::-webkit-scrollbar {
  display: none;
}
.footer__nav-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary, #1a6fc4);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.footer__nav-wrap.is-scrollable::before {
  opacity: 1;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
}
.footer__nav-list li {
  margin-bottom: 2px;
}
.footer__nav-list a {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  color: var(--footer__color);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}
.footer__nav-list a:hover {
  opacity: 1;
  padding-left: 4px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-style: normal;
  font-size: 17px;
  opacity: 0.85;
}
.footer__contacts .phone-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.footer__contacts .phone-list a {
  text-decoration: none;
}
.footer__contacts .phone-list a:hover {
  color: var(--primary);
}
.footer__contact-item {
  line-height: 1.4;
}
.footer__contact-item a, .footer__contact-item span {
  color: var(--footer__color);
}
.footer__contact-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__contact-link:hover {
  opacity: 0.7;
}
.footer__social {
  margin-top: 8px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--footer__color);
  text-decoration: none;
  transition: background 0.2s ease;
  margin-right: 8px;
}
.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer__social a svg {
  width: 18px;
  height: 18px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__bottom-nav a {
  font-size: 13px;
  color: var(--footer__color);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__bottom-nav a:hover {
  opacity: 1;
}
.footer__copy {
  font-size: 13px;
  opacity: 0.5;
  white-space: nowrap;
  margin-left: auto;
}

.footer__brand-logo img {
  max-width: 180px;
}

.contacts-bar {
  margin-top: 68px;
}
.contacts-bar__inner {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
}
.contacts-bar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-style: normal;
  margin: 0;
}
.contacts-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contacts-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light, #e8f4fd);
  color: var(--primary);
}
.contacts-bar__icon svg {
  width: 20px;
  height: 20px;
}
.contacts-bar__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contacts-bar__label {
  font-size: 15px;
  font-weight: 600;
}
.contacts-bar__value {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}
.contacts-bar__value:is(a):hover {
  color: var(--primary);
}
.contacts-bar .phone-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.contacts-bar .phone-list a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
.contacts-bar .phone-list a:hover {
  color: var(--primary);
}
@media (max-width: 900px) {
  .contacts-bar__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .contacts-bar__inner {
    padding: 16px;
  }
  .contacts-bar__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.site {
  display: grid;
  grid-template-columns: 25% auto;
  grid-template-areas: "header header" "sidebar main" "footer footer";
}

.site-header {
  grid-area: header;
}

.site-main {
  grid-area: main;
  overflow: hidden; /* Resolves issue with <pre> elements forcing full width. */
}

.widget-area {
  grid-area: sidebar;
}

.site-footer {
  grid-area: footer;
}

.no-sidebar .site {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "header" "main" "footer";
}

.site {
  display: grid;
  grid-template-columns: auto 25%;
  grid-template-areas: "header header" "main sidebar" "footer footer";
}

.site-header {
  grid-area: header;
}

.site-main {
  grid-area: main;
  overflow: hidden; /* Resolves issue with <pre> elements forcing full width. */
}

.widget-area {
  grid-area: sidebar;
}

.site-footer {
  grid-area: footer;
}

.faq__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}
.faq__desc {
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: #fff;
}
.faq__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.faq__accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.faq__accordion summary::-webkit-details-marker {
  display: none;
}
.faq__accordion summary .faq__icon {
  transition: transform 0.3s ease;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.faq__accordion[open] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 1.5rem 1rem;
  animation: fade-in 0.3s ease;
}
.faq__answer [itemprop=text] {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-single {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-single h1 {
  font-size: 48px;
}
.hero-single__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-single[style*="--hero-bg"] .hero-single__bg {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-single__picture, .hero-single__img {
  width: 100%;
  height: 100%;
}
.hero-single__picture {
  display: block;
}
.hero-single__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.02);
}
.hero-single__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}
.hero-single__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-single .container {
  position: relative;
  z-index: 2;
}
.hero-single__title {
  margin: 0;
  color: #fff;
}
.hero-single__subtitle {
  margin-top: 12px;
  max-width: 900px;
  color: inherit;
}
.hero-single__desc {
  margin-top: 16px;
  max-width: 900px;
  color: inherit;
}
.hero-single__desc * {
  color: inherit;
}
.hero-single .kama_breadcrumbs a {
  text-decoration: none;
}
.hero-single--simple {
  min-height: auto;
  padding: 62px 42px;
  background-color: #ffffff;
}
.hero-single--simple .hero-single__overlay {
  display: none;
}
.hero-single--simple .hero-single__inner,
.hero-single--simple .hero-single__title,
.hero-single--simple .hero-single__subtitle,
.hero-single--simple .hero-single__desc {
  color: var(--text);
}
.hero-single--simple .hero-single__meta {
  color: #646970;
}
.hero-single--simple .kama_breadcrumbs {
  color: #646970;
}
.hero-single--simple .kama_breadcrumbs a {
  color: #1a1a1a;
}
.hero-single--simple .kama_breadcrumbs a:hover {
  text-decoration: underline;
}

.hero--slider {
  margin-top: 32px;
}
.hero--slider .hero-splide {
  width: 100%;
  max-width: 1820px;
  margin: auto;
}
.hero--slider .hero__media {
  position: relative;
}
.hero--slider .hero__media .hero__bg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
  max-height: 700px;
  height: 100%;
}
.hero--slider .hero__media .hero__bg--desk {
  display: block;
}
.hero--slider .hero__media .hero__bg--mob {
  display: none;
}
@media (max-width: 467px) {
  .hero--slider .hero__media .hero__bg--desk {
    display: none;
  }
  .hero--slider .hero__media .hero__bg--mob {
    display: block;
  }
}
.hero--slider .hero__media video.hero__bg {
  background: #000;
}
.hero--slider .hero__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 24px;
}
.hero--slider .hero-slide__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  padding: 68px 78px;
  display: inline-flex;
}
@media (max-width: 767px) {
  .hero--slider .hero-slide__content {
    padding: 24px 12px 72px;
  }
}
.hero--slider .content--clm {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hero--slider .content--clm .hero__title {
  margin: 0;
  font-size: clamp(3.625rem, 5.8vw, 3.75rem);
  color: var(--text-w);
}
.hero--slider .content--clm .hero__desc {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  padding: 0;
  margin: 0;
  color: var(--text-w);
}
.hero--slider .content--clm .button, .hero--slider .content--clm button {
  margin-top: auto;
  padding: 12px 42px;
}
@media (max-width: 767px) {
  .hero--slider .content--clm .button, .hero--slider .content--clm button {
    font-size: 14px;
    padding: 12px 28px;
    width: 100%;
  }
}
.hero--slider .hero__extra {
  margin-top: 1rem;
  max-width: 640px;
  max-height: 440px;
}
.hero--slider .hero__extra img {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero--slider .hero__extra {
    display: none;
  }
}
.hero--slider .splide__arrows {
  position: absolute;
  bottom: 3em;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero--slider .splide__arrow {
  background: var(--primary);
  border-color: var(--primary);
}
.hero--slider .splide__arrow:hover {
  background-color: var(--secondary);
}
.hero--slider .splide__arrow svg {
  fill: var(--text);
  width: 1em !important;
}
.hero--slider .splide__arrow--prev {
  left: 5em;
  bottom: 5em;
}
.hero--slider .splide__arrow--next {
  left: 14em;
  bottom: 5em;
}
.hero--slider .splide__pagination {
  bottom: 2em;
  left: 7em;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .hero--slider .splide__pagination {
    left: 8em;
  }
}
.hero--slider .splide__pagination__page.is-active {
  background: var(--primary);
}
.hero--slider .splide__pagination__page {
  background: white;
}
@media (max-width: 767px) {
  .hero--slider .splide__arrow--prev {
    left: 1em;
  }
  .hero--slider .splide__arrow--next {
    right: 1em !important;
    left: auto;
  }
}

.hero-splide__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-splide__arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-arrow {
  /* твой внешний вид кнопок */
}

.hero-splide__pagination {
  display: flex;
  gap: 8px;
}

.hero--slider .splide__track {
  overflow: hidden;
}

.tax-filter {
  margin-top: 20px;
}
.tax-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tax-filter__item {
  margin: 0;
}
.tax-filter__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: var(--text-main);
  background-color: var(--bg-pre);
  border: 1px solid var(--border-input);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.tax-filter__link:hover {
  background-color: var(--bg-screen);
  border-color: var(--border-abbr);
  transform: translateY(-1px);
}
.tax-filter__link:active {
  transform: translateY(0);
}
.tax-filter__link.is-active, .tax-filter__link.active_cat {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.tax-filter__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .tax-filter {
    margin-top: 14px;
  }
  .tax-filter__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-bottom: -6px;
    scrollbar-width: none;
  }
  .tax-filter__list::-webkit-scrollbar {
    display: none;
  }
  .tax-filter__link {
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 12px;
  }
}

.title-section {
  margin-block: 2rem;
}
.title-section__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.title-section__flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.title-section__pre {
  display: block;
  margin: 0 0 0.5rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  line-height: 1;
}
.title-section__title {
  margin: 0 0 0.5rem;
  line-height: 1.2;
  font-size: clamp(2.375rem, 3.8vw, 2.5rem);
  font-weight: 700;
}
.title-section__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.title-section__text p {
  margin: 0 0 0.75em;
}
.title-section__text p:last-child {
  margin-bottom: 0;
}
.title-section--center {
  text-align: center;
}
.title-section--narrow {
  max-width: 60ch;
  margin-inline: auto;
}

.tb-one {
  padding-block: clamp(24px, 4vw, 56px);
}

.tb-one__inner {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(320px, 1fr);
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.tb-one__media {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tb-one__media img,
.tb-one__media picture,
.tb-one__media figure {
  display: block;
  width: 100%;
}

.tb-one__media img {
  height: clamp(220px, 26vw, 320px);
  -o-object-fit: cover;
     object-fit: cover;
}

.tb-one__content {
  max-width: 720px;
}

.tb-one__text {
  margin-top: 0;
  margin-bottom: 18px;
  max-width: 680px;
}

.tb-one__actions {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .tb-one__inner {
    grid-template-columns: 1fr 1fr;
  }
  .tb-one__media img {
    height: clamp(200px, 30vw, 300px);
  }
}
@media (max-width: 768px) {
  .tb-one__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tb-one__content {
    max-width: none;
  }
  .tb-one__media img {
    height: 240px;
  }
}
@media (max-width: 420px) {
  .tb-one__media {
    border-radius: 12px;
  }
  .tb-one__media img {
    height: 210px;
  }
}
.grid-list {
  padding-block: clamp(24px, 4vw, 56px);
}

.grid-list__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

/* карточка: тянется, но не больше 4 в ряд */
.grid-list__item {
  flex: 1 1 calc((100% - 3 * clamp(14px, 2vw, 24px)) / 4);
  min-width: 220px; /* чтобы не становились слишком узкими */
}

/* media */
.grid-list__media {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.grid-list__media img,
.grid-list__media picture,
.grid-list__media figure {
  display: block;
  width: 100%;
}

.grid-list__media img {
  height: 160px; /* как на скрине */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px; /* на случай если img без wrapper */
}

/* title/text */
.grid-list__title {
  margin: 10px 0 6px;
  font-weight: 600;
}

.grid-list__text {
  margin: 0;
  opacity: 0.85; /* лёгкая вторичность, как у описания */
}

/* 3 в ряд */
@media (max-width: 1100px) {
  .grid-list__item {
    flex-basis: calc((100% - 2 * clamp(14px, 2vw, 24px)) / 3);
  }
}
/* 2 в ряд */
@media (max-width: 768px) {
  .grid-list__item {
    flex-basis: calc((100% - 1 * clamp(14px, 2vw, 24px)) / 2);
  }
  .grid-list__media img {
    height: 170px;
  }
}
/* 1 в ряд */
@media (max-width: 420px) {
  .grid-list__item {
    flex-basis: 100%;
    min-width: 0;
  }
  .grid-list__media img {
    height: 190px;
  }
}
.masonry {
  padding-block: clamp(24px, 4vw, 56px);
}

/* контейнер masonry */
.masonry__grid {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: clamp(14px, 2vw, 24px);
       column-gap: clamp(14px, 2vw, 24px);
}

/* элемент */
.masonry__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: clamp(14px, 2vw, 24px);
  border-radius: 14px;
  overflow: hidden;
}

/* изображение */
.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3 колонки */
@media (max-width: 1100px) {
  .masonry__grid {
    -moz-column-count: 3;
         column-count: 3;
  }
}
/* 2 колонки */
@media (max-width: 768px) {
  .masonry__grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
/* 1 колонка */
@media (max-width: 420px) {
  .masonry__grid {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.list-one {
  padding-block: clamp(24px, 4vw, 56px);
}

.list-one__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  margin: 0;
  padding: 0;
}

/* элемент */
.list-one__item {
  flex: 1 1 calc(50% - clamp(12px, 2vw, 20px));
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #f6f9fc;
}

/* номер */
.list-one__num {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

/* текст */
.list-one__title {
  flex: 1;
}

/* mobile */
@media (max-width: 768px) {
  .list-one__item {
    flex-basis: 100%;
  }
}
.lt-block__top {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.lt-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lt-block__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f6f9fc;
}

.lt-block__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #7fb36a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  overflow: hidden;
}

.lt-block__icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.lt-block__item-title {
  font-weight: 600;
}

.lt-block__media {
  border-radius: 14px;
  overflow: hidden;
}

.lt-block__media img,
.lt-block__media picture,
.lt-block__media figure {
  display: block;
  width: 100%;
}

.lt-block__media img {
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

/* BOTTOM WYSIWYG */
.lt-block__bottom {
  margin-top: clamp(18px, 3vw, 28px);
  max-width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .lt-block__top {
    grid-template-columns: 1fr 1fr;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .lt-block__top {
    grid-template-columns: 1fr;
  }
  .lt-block__media img {
    height: 260px;
  }
}
.acf-tabs__tablist,
.acf-tabs__panel {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: 12px;
}
.acf-tabs__tablist .acf-tabs__tab,
.acf-tabs__panel .acf-tabs__tab {
  background: white;
}

.equipment_rental {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.equipment_rental__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
  max-width: 900px;
}
.equipment_rental__list li {
  font-size: clamp(16px, 3vw, 18px);
  display: flex;
  align-items: center;
}
.equipment_rental__list li .icon {
  color: var(--primary);
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.equipment_rental img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: -90px;
}
@media (max-width: 991px) {
  .equipment_rental img {
    margin-top: 0px;
  }
}

.post-grid {
  margin-block: clamp(34px, 5vw, 84px);
}
.post-grid__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 767px) {
  .post-grid__list {
    grid-template-columns: 1fr;
  }
}

.block-header {
  margin-bottom: 32px;
}
.block-header__title {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--text);
}
.block-header__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.wysiwyg-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.wysiwyg-content p {
  margin: 0 0 1em;
}
.wysiwyg-content p:last-child {
  margin-bottom: 0;
}
.wysiwyg-content h2, .wysiwyg-content h3, .wysiwyg-content h4 {
  font-weight: 600;
  margin: 1.5em 0 0.5em;
  line-height: 1.3;
}
.wysiwyg-content ul, .wysiwyg-content ol {
  padding-left: 1.5em;
  margin: 0 0 1em;
}
.wysiwyg-content ul li, .wysiwyg-content ol li {
  margin-bottom: 0.4em;
}
.wysiwyg-content a {
  color: var(--primary);
  text-decoration: underline;
}
.wysiwyg-content a:hover {
  opacity: 0.8;
}
.wysiwyg-content img {
  max-width: 100%;
  border-radius: 8px;
}

.block-description__content {
  max-width: auto;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--sh-sm);
  padding: 32px;
}

.block-characteristics__table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  background-color: var(--white);
}
.block-characteristics__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 14px 24px;
  font-size: 16px;
  align-items: center;
}
.block-characteristics__row:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}
.block-characteristics__row:nth-child(even) {
  background: #f9fafb;
}
.block-characteristics__label {
  font-weight: 500;
  color: var(--text-muted);
}
.block-characteristics__value {
  color: var(--text);
}
@media (max-width: 480px) {
  .block-characteristics__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.block-video__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.block-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.block-video__file {
  width: 100%;
  max-width: 860px;
  border-radius: 12px;
  display: block;
}

.block-application__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .block-application__grid {
    grid-template-columns: 1fr;
  }
}
.block-application__card {
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  background: #fff;
}
.block-application__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light, #e8f4fd);
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.block-application__heading {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}
.block-application__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.block-certificates__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .block-certificates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .block-certificates__grid {
    grid-template-columns: 1fr;
  }
}
.block-certificates__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.block-certificates__item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.block-certificates__preview {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-certificates__preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-certificates__preview--pdf {
  aspect-ratio: 1/1;
}
.block-certificates__pdf-icon {
  width: 56px;
  height: 56px;
}
.block-certificates__name {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.block-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .block-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .block-advantages__grid {
    grid-template-columns: 1fr;
  }
}
.block-advantages__card {
  border: 1px solid #eeeeee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.block-advantages__img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f7fa;
  flex-shrink: 0;
}
.block-advantages__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.block-advantages__card:hover .block-advantages__img {
  transform: scale(1.04);
}
.block-advantages__heading {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
  padding: 16px 16px 0;
}
.block-advantages__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  padding: 0 16px 16px;
}

.block-text-image__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .block-text-image__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.block-text-image__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f7fa;
}
.block-text-image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.block-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: list-counter;
}
@media (max-width: 600px) {
  .block-list__grid {
    grid-template-columns: 1fr;
  }
}
.block-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  background: #fff;
}
.block-list__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-w, #fff);
  font-size: 13px;
  font-weight: 700;
}
.block-list__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.block-list__heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.block-list__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-slider {
  position: relative;
  width: 100%;
  margin-block: 88px;
  overflow: hidden;
}
.product-slider__title {
  margin-bottom: 24px;
}
.product-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  margin: 0;
  list-style: none;
}
.product-slider__track::-webkit-scrollbar {
  display: none;
}
.product-slider__track > li,
.product-slider__track .product-list__item {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  min-width: 220px;
}
.product-slider__action {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.product-slider__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.product-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primary, #1a6fc4);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.product-slider__btn svg {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
}
.product-slider__btn:hover {
  background: var(--primary-dark, #155a9e);
}
.product-slider__btn:active {
  transform: scale(0.94);
}
.product-slider__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.product-slider__btn:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}
.product-slider__btn--scroll {
  position: relative;
}
.product-slider__btn--scroll::after {
  content: "Покрутіть колесико для прокрутки";
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.product-slider__btn--scroll:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (pointer: coarse) {
  .product-slider__btn--scroll {
    display: none;
  }
}
@media (pointer: coarse) {
  .product-slider__btn--scroll {
    display: none;
  }
}
.product-slider__counter {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted, #6b7280);
  min-width: 48px;
  text-align: center;
}
.product-slider__scrollbar {
  flex: 1;
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.product-slider__drag {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary, #1a6fc4);
  border-radius: 2px;
  transition: left 0.1s ease-out, width 0.2s ease-out;
  min-width: 24px;
}
@media (max-width: 1200px) {
  .product-slider__track > li, .product-slider__track .product-list__item {
    flex: 0 0 calc(33.333% - 16px);
  }
}
@media (max-width: 768px) {
  .product-slider__track > li, .product-slider__track .product-list__item {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .product-slider__track > li, .product-slider__track .product-list__item {
    flex: 0 0 85%;
  }
  .product-slider__btn {
    width: 36px;
    height: 36px;
  }
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 800px;
  overflow: hidden;
  background-color: white;
  max-width: 1800px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 8rem);
  width: 100%;
  color: var(--text-w);
  z-index: 2;
}
.hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  border-radius: inherit;
}
.hero--video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: inherit;
}
.hero__content {
  flex: 1 1 48%;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.hero__content .pretitle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
.hero__content p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.hero__content .btn, .hero__content button {
  font-size: clamp(16px, 5vw, 18px);
  width: 220px;
  justify-content: center;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero__visual {
  flex: 1 1 48%;
}
.hero__decor {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__decor {
    display: none;
  }
}
.hero__decor_big {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
  width: 640px;
}
@media (max-width: 992px) {
  .hero {
    border-radius: 0;
  }
  .hero__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .hero__content, .hero__visual {
    flex: unset;
    width: 100%;
  }
  .hero__visual {
    display: none;
  }
}

.about-text {
  margin-block: 48px;
}
.about-text__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}
@media (max-width: 860px) {
  .about-text__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about-text__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-text__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-text__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.about-text__text {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.about-text__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text, #1f2937);
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: gap 0.2s ease;
}
.about-text__link:hover {
  gap: 14px;
}
.about-text__link:hover .about-text__link-icon {
  background: var(--primary);
  color: #fff;
}
.about-text__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light, #e8f4fd);
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.about-text__link-icon svg {
  width: 16px;
  height: 16px;
}
.about-text__counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--primary);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .about-text__counters {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-text__counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 20px;
  background: var(--primary);
  text-align: center;
}
.about-text__counter-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.about-text__counter-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.advantages-block {
  padding-block: 42px;
}
.advantages-block__container {
  background-color: var(--white);
  border-radius: 12px;
  padding: clamp(4px, 5vw, 32px);
}
.advantages-block__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  text-align: center;
}

.adv-card {
  flex: 0 1 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.adv-card__media {
  margin-bottom: 15px;
}
.adv-card__media img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.adv-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.2;
}
.adv-card__text {
  display: none;
}

@media (max-width: 768px) {
  .advantages-block__grid {
    gap: 20px;
  }
  .adv-card {
    flex: 0 1 40%;
  }
}
@media (max-width: 480px) {
  .adv-card {
    flex: 0 1 100%;
  }
}
.contacts-hero {
  margin-top: clamp(24px, 5vw, 68px);
}
.contacts-hero__inner {
  display: flex;
  min-height: 400px;
}
@media (max-width: 768px) {
  .contacts-hero__inner {
    flex-direction: column;
  }
}
.contacts-hero__inner .phone-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contacts-hero__sidebar {
  background: var(--primary);
  color: #fff;
  padding: 40px;
  flex: 0 0 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contacts-hero__title {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.contacts-hero__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 600;
}
.contacts-hero__icon {
  margin-right: 15px;
}
.contacts-hero__icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.contacts-hero__value a {
  color: #fff !important;
  text-decoration: none;
}
.contacts-hero__socials {
  margin-top: 40px;
}
.contacts-hero__socials .social-block {
  justify-content: flex-start;
  gap: 20px;
}
.contacts-hero__socials svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.contacts-hero__map {
  flex: 1;
}
.contacts-hero__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contacts-hero__value {
  color: var(--white);
}

.socials__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--white);
}
.socials__list a:visited {
  color: var(--white);
}
.socials__list a:hover {
  color: black;
}

.contacts-section {
  padding-block: 64px;
}
.contacts-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contacts-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contacts-section__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contacts-section__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.contacts-section__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacts-section__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text, #1f2937);
}
.contacts-section__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted, #6b7280);
  margin: 0;
}
.contacts-section__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-style: normal;
}
.contacts-section__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: var(--white);
  border-radius: 12px;
  padding: 14px;
}
.contacts-section__item .phone-list li a {
  font-size: 17px;
  font-weight: 500;
}
.contacts-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdf5e8;
  color: var(--primary);
}
.contacts-section__icon svg {
  width: 20px;
  height: 20px;
}
.contacts-section__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}
.contacts-section__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.contacts-section__value {
  font-size: 17px;
  color: var(--text);
  line-height: 1.5;
  text-decoration: none;
}
.contacts-section__value:is(a):hover {
  color: var(--primary);
}
.contacts-section .phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contacts-section .phone-link {
  font-size: 14px;
  color: var(--text-muted, #6b7280);
  text-decoration: none;
}
.contacts-section .phone-link:hover {
  color: var(--primary);
}
.contacts-section__right {
  position: sticky;
  top: 80px;
}
.contacts-section__form-wrap {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 480px) {
  .contacts-section__form-wrap {
    padding: 20px 16px;
    border-radius: 12px;
  }
}
.contacts-section__form-wrap .wpcf7 form,
.contacts-section__form-wrap .wpcf7 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts-section__form-wrap .wpcf7-submit {
  width: 100%;
  justify-content: center;
}

.contact-map__embed {
  margin-top: 46px;
}

.lead-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
  margin-block: clamp(24px, 5vw, 80px);
}
.lead-section .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: center;
}
@media (max-width: 991px) {
  .lead-section .container {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
}
.lead-section .img {
  grid-column: 1/2;
  grid-row: 1/3;
  align-self: end;
  display: flex;
  justify-content: center;
}
.lead-section .img img {
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
}
@media (max-width: 991px) {
  .lead-section .img {
    display: none;
  }
}
.lead-section .lead-info {
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: end;
  padding-bottom: 30px;
  padding-top: 40px;
}
@media (max-width: 991px) {
  .lead-section .lead-info {
    grid-column: 1/-1;
    grid-row: auto;
    padding-top: 0;
    text-align: center;
  }
}
.lead-section .title_lead {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}
.lead-section .text_lead {
  font-size: 18px;
  color: #4a4a4a;
  margin: 0 0 30px;
  line-height: 1.5;
}
.lead-section .title_lead-for-contact {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.lead-section .lead-contacts {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .lead-section .lead-contacts {
    justify-content: center;
  }
}
.lead-section .lead-contacts__phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-section .lead-contacts__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 22px;
  transition: color 0.3s ease;
}
.lead-section .lead-contacts__phone:hover {
  color: #e5533d;
}
.lead-section .lead-contacts__phone .icon {
  color: #e5533d;
}
.lead-section .lead-contacts__socials {
  display: flex;
  gap: 15px;
}
.lead-section .lead-contacts__social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.lead-section .lead-contacts__social:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.lead-section .lead-contacts__social-icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
.lead-section .lead-form {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: start;
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .lead-section .lead-form {
    grid-column: 1/-1;
    grid-row: auto;
    margin-bottom: 0;
    padding: 30px 20px;
  }
}
.lead-section .lead-form .delivery-request-form {
  width: 100%;
}
.lead-section .lead-form .delivery-request-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .lead-section .lead-form .delivery-request-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }
}
.lead-section .lead-form .delivery-request-form .form-group {
  display: flex;
  flex-direction: column;
}
.lead-section .lead-form .delivery-request-form .form-label {
  margin-bottom: 6px;
}
.lead-section .lead-form .delivery-request-form .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}
.lead-section .lead-form .delivery-request-form input[type=text],
.lead-section .lead-form .delivery-request-form input[type=tel] {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  color: #1a1a1a;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.lead-section .lead-form .delivery-request-form input[type=text]::-moz-placeholder, .lead-section .lead-form .delivery-request-form input[type=tel]::-moz-placeholder {
  color: #8c8c8c;
}
.lead-section .lead-form .delivery-request-form input[type=text]::placeholder,
.lead-section .lead-form .delivery-request-form input[type=tel]::placeholder {
  color: #8c8c8c;
}
.lead-section .lead-form .delivery-request-form input[type=text]:focus,
.lead-section .lead-form .delivery-request-form input[type=tel]:focus {
  outline: none;
  border-color: #e5533d;
  box-shadow: 0 0 0 3px rgba(229, 83, 61, 0.15);
}
.lead-section .lead-form .delivery-request-form .form-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: relative;
}
.lead-section .lead-form .delivery-request-form .btn-submit {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 50px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.lead-section .lead-form .delivery-request-form .btn-submit:active {
  transform: translateY(2px);
}
.lead-section .lead-form .delivery-request-form .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.lead-section .title-form-lead {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px;
  text-align: center;
}

.form-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #4db8e8 0%, #2196c4 100%);
  border-radius: 16px;
}
.form-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.form-section__header {
  text-align: center;
  color: #fff;
}
.form-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.form-section__subtitle {
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}
.form-section__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 640px;
}
.form-section__card .wpcf7 form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-section__card .wpcf7 form .cf7-field--full,
.form-section__card .wpcf7 form .wpcf7-form-control-wrap[data-name=your-message],
.form-section__card .wpcf7 form .wpcf7-submit,
.form-section__card .wpcf7 form input[type=submit] {
  grid-column: 1/-1;
}
@media (max-width: 600px) {
  .form-section {
    padding: 40px 0;
  }
  .form-section__card {
    padding: 20px 16px;
  }
  .form-section__card .wpcf7 form,
  .form-section__card .wpcf7 {
    grid-template-columns: 1fr;
  }
  .form-section__card .wpcf7 form .wpcf7-form-control-wrap[data-name=your-message],
  .form-section__card .wpcf7 form input[type=submit],
  .form-section__card .wpcf7 .wpcf7-form-control-wrap[data-name=your-message],
  .form-section__card .wpcf7 input[type=submit] {
    grid-column: 1;
  }
}

.cf7-row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 48px;
  color: var(--text);
}
.comments-area h2,
.comments-area .comments-title {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 600;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list > .comment {
  margin-bottom: 24px;
}

.comment-body {
  background: var(--item);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.comment-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.comment-author .fn {
  font-weight: 600;
  color: var(--text);
}
.comment-author .says {
  display: none;
}

.comment-metadata {
  font-size: 13px;
  color: #71717a;
  margin-bottom: 12px;
}
.comment-metadata a {
  color: inherit;
  text-decoration: none;
}
.comment-metadata a:hover {
  color: var(--primary);
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.comment-content p {
  margin: 0 0 12px;
}
.comment-content p:last-child {
  margin-bottom: 0;
}
.comment-content a {
  color: var(--primary);
  text-decoration: underline;
}

.reply {
  margin-top: 12px;
}
.reply a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.reply a:hover {
  text-decoration: underline;
}

.children {
  list-style: none;
  margin: 16px 0 0 32px;
  padding: 0;
  border-left: 2px solid var(--secondary-item);
}
.children .comment {
  margin-top: 16px;
}

.comment-respond {
  margin-top: 40px;
  padding: 24px;
  background: var(--item);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.comment-respond .comment-reply-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.comment-form {
  display: grid;
  gap: 16px;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d4d4d8;
  font-size: 14px;
  color: var(--text);
  background: var(--text-w);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.comment-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}
.form-submit input[type=submit] {
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  background: var(--primary);
  color: var(--text-w);
  font-weight: 600;
  cursor: pointer;
}
.form-submit input[type=submit]:hover {
  opacity: 0.9;
}

.comment-awaiting-moderation {
  font-size: 13px;
  color: #71717a;
  margin-bottom: 8px;
}

.bypostauthor .comment-body {
  border-left: 3px solid var(--primary);
}

.category-card {
  display: flex;
  position: relative;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.category-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  color: var(--primary-text);
}

.category-card__img {
  flex: 0 0 110px;
  height: 110px;
  margin-right: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.category-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 90px;
}

.category-card__name {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text);
}

.category-card__count {
  position: absolute;
  bottom: 0;
  right: 0;
  align-self: flex-end;
  padding: 6px 14px;
  border-top-left-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border-top: 7px solid var(--body-bg);
  border-left: 7px solid var(--body-bg);
  color: var(--text-g);
}

.category-card:hover .category-card__name {
  color: var(--text-primary);
}

.loop-card {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.loop-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.loop-card__media {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.loop-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.loop-card:hover .loop-card__img {
  transform: scale(1.04);
}
.loop-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
}
.loop-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.loop-card__cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(var(--secondary-rgb, 211, 0, 0), 0.08);
  color: var(--secondary, #d30000);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.loop-card__cat:hover {
  background: var(--secondary, #d30000);
  color: #fff;
}
.loop-card__date {
  font-size: 13px;
  color: var(--text-muted, #6b7280);
  white-space: nowrap;
}
.loop-card__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}
.loop-card__link {
  color: var(--text, #1f2937);
  text-decoration: none;
  transition: color 0.2s ease;
}
.loop-card__link:hover {
  color: var(--primary);
}
.loop-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted, #6b7280);
  flex: 1;
}
.loop-card__footer {
  margin-top: auto;
  padding-top: 4px;
}
.loop-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary, #d30000);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.loop-card__more svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.loop-card__more:hover {
  gap: 12px;
}
.loop-card__more:hover svg {
  transform: translateX(2px);
}

.products.columns-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list__item {
  list-style: none;
  margin: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #EFEFEF;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}
.product-card .sale-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 0px;
  border-bottom-right-radius: 6px;
  padding: 4px 12px;
}
.product-card .stock {
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 0 0 0 12px;
  margin: 0;
  opacity: 0.85;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: #E0E0E0;
}

.product-card__img {
  width: 100%;
  height: 220px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  padding: 12px;
}

.product-card__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}
.product-card__title:hover {
  color: var(--primary);
}
.product-card__title:visited {
  color: var(--primary);
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-card__attr {
  font-size: 14px;
  color: #888888;
}

.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 333px;
  padding: 3px;
}

.product-card:hover .product-card__btn {
  transform: translateX(4px);
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card img {
  max-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.service-card__body {
  padding: clamp(6px, 5vw, 24px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card__action {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: auto;
}
.service-card__action span {
  font-size: 18px;
  font-weight: 600;
}
.service-card__action button {
  font-weight: 600;
  font-size: 17px;
}
.service-card h3 {
  margin: 0px;
  padding: 0px;
  color: var(--text);
  font-size: clamp(16px, 5vw, 22px);
}

.modal__content {
  border-radius: 8px;
  overflow: hidden;
}

.modal--catalog .modal__content {
  max-width: 1280px;
  width: 100%;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  height: 800px;
  max-height: 90vh;
}

.catalog-modal {
  display: flex;
  height: 100%;
}
.catalog-modal__aside {
  width: 340px;
  flex-shrink: 0;
  background-color: #f5f7fa;
  padding: 24px 0;
  overflow-y: auto;
  border-right: 1px solid #eeeeee;
}
.catalog-modal__aside-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #9ca3af);
  padding: 0 20px 12px;
  margin: 0;
}
.catalog-modal__cats {
  list-style: none;
  margin: 0;
  padding: 0;
}
.catalog-modal__cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 8px;
  margin: 0 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
  color: var(--text);
}
.catalog-modal__cat-item:hover, .catalog-modal__cat-item.is-active {
  background-color: var(--primary);
  color: var(--text-w, #ffffff);
}
.catalog-modal__cat-item:hover .catalog-modal__cat-arrow, .catalog-modal__cat-item.is-active .catalog-modal__cat-arrow {
  opacity: 1;
}
.catalog-modal__cat-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.catalog-modal__cat-icon svg {
  width: 100%;
  height: 100%;
}
.catalog-modal__cat-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.catalog-modal__cat-arrow {
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.catalog-modal__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
}
.catalog-modal__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px 16px;
  border-bottom: 1px solid #eeeeee;
  flex-shrink: 0;
}
.catalog-modal__panel-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text, #1f2937);
}
.catalog-modal__panel-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.catalog-modal__panel-all:hover {
  opacity: 0.75;
}
.catalog-modal__panel-all svg {
  flex-shrink: 0;
}
.catalog-modal__grid {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.catalog-modal__grid::-webkit-scrollbar {
  width: 4px;
}
.catalog-modal__grid::-webkit-scrollbar-track {
  background: transparent;
}
.catalog-modal__grid::-webkit-scrollbar-thumb {
  background-color: #e5e7eb;
  border-radius: 10px;
}
.catalog-modal__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog-modal__items.is-loading {
  opacity: 0.4;
  pointer-events: none;
}
.catalog-modal__items .product-card__title {
  font-size: 15px;
}
.catalog-modal__items .product-card__img {
  height: 210px;
  margin-bottom: 0px;
}
.catalog-modal__items .category-card {
  padding: 8px;
  border: 1px solid #e1e1e1;
}
.catalog-modal__goto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--primary);
  color: var(--text-w);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.catalog-modal__goto:hover {
  opacity: 0.9;
  color: var(--text-w);
}
.catalog-modal__goto:visited {
  color: var(--text-w);
}
.catalog-modal__goto svg {
  flex-shrink: 0;
}

.modal--mobile-menu {
  align-items: flex-start !important;
  justify-content: flex-end !important;
}
.modal--mobile-menu .modal__content {
  width: 90%;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.mobile-menu__nav {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.mobile-menu__main-panel, .mobile-menu__submenu-panel {
  height: 100%;
  overflow-y: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}
.mobile-menu__main-panel::-webkit-scrollbar, .mobile-menu__submenu-panel::-webkit-scrollbar {
  width: 3px;
}
.mobile-menu__main-panel::-webkit-scrollbar-thumb, .mobile-menu__submenu-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
.mobile-menu__main-panel.is-entering, .mobile-menu__submenu-panel.is-entering {
  animation: mobileMenuSlideIn 0.25s ease forwards;
}
.mobile-menu__main-panel.is-leaving, .mobile-menu__submenu-panel.is-leaving {
  animation: mobileMenuSlideOut 0.25s ease forwards;
}
.mobile-menu__back {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  margin-bottom: 8px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.mobile-menu__back svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mobile-menu__back:hover {
  opacity: 1;
}
.mobile-menu__back:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__list,
.mobile-menu #mobile_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__list .sub-menu,
.mobile-menu #mobile_menu .sub-menu {
  display: none;
}
.mobile-menu__list li,
.mobile-menu #mobile_menu li {
  margin: 0;
}
.mobile-menu__list a,
.mobile-menu #mobile_menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  margin: 0 8px;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.mobile-menu__list a:hover,
.mobile-menu #mobile_menu a:hover {
  background: rgba(255, 255, 255, 0.07);
}
.mobile-menu__list a:focus-visible,
.mobile-menu #mobile_menu a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}
.mobile-menu__list .menu-item-has-children > a::after,
.mobile-menu #mobile_menu .menu-item-has-children > a::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3l5 5-5 5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
}
.mobile-menu__list .menu-item-has-children > a .icon,
.mobile-menu #mobile_menu .menu-item-has-children > a .icon {
  display: none;
}
.mobile-menu__list .current-menu-item > a,
.mobile-menu__list .current_page_item > a,
.mobile-menu__list .current-menu-parent > a,
.mobile-menu #mobile_menu .current-menu-item > a,
.mobile-menu #mobile_menu .current_page_item > a,
.mobile-menu #mobile_menu .current-menu-parent > a {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mobile-menu__footer .btn {
  width: 100%;
  justify-content: center;
}
.mobile-menu__phone {
  font-size: 15px;
}
.mobile-menu__phone a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}
.mobile-menu__phone a:hover {
  opacity: 1;
}
.mobile-menu__social {
  display: flex;
  gap: 12px;
}
.mobile-menu__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-menu__social a:hover {
  background: rgba(255, 255, 255, 0.2);
}
.mobile-menu__social a svg {
  width: 24px;
  height: 24px;
}

@keyframes mobileMenuSlideIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mobileMenuSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-16px);
  }
}
.mobile-menu__footer .phone-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-menu__footer .phone-list a {
  font-style: 17px;
  font-weight: 600;
}
.mobile-menu__footer .socials__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-menu__footer .socials__list a {
  color: var(--primary);
}

.modal--contact .modal__content {
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
  padding: 36px;
}
@media (max-width: 600px) {
  .modal--contact .modal__content {
    padding: 20px 16px;
    border-radius: 12px;
  }
}

.modal-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal-contact__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-contact__title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin: 0;
  color: var(--text, #1f2937);
}
.modal-contact__subtitle {
  font-size: 14px;
  color: var(--text-muted, #6b7280);
  margin: 0;
  line-height: 1.5;
}
.modal-contact__form .wpcf7 form,
.modal-contact__form .wpcf7 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-contact__form .cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.modal-contact__form .cf7-grid .wpcf7-form-control-wrap[data-name=your-message] {
  grid-column: 1/-1;
}
@media (max-width: 480px) {
  .modal-contact__form .cf7-grid {
    grid-template-columns: 1fr;
  }
  .modal-contact__form .cf7-grid .wpcf7-form-control-wrap[data-name=your-message] {
    grid-column: 1;
  }
}
.modal-contact__form .wpcf7-submit {
  width: 100%;
  justify-content: center;
}

nav {
  display: flex;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
nav ul ul {
  display: none;
  position: fixed;
  left: 0;
  width: 100vw;
  padding: 42px;
  background: var(--white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  padding: 1em;
  z-index: 999;
  border-radius: 6px;
}
nav ul ul li {
  padding: 24px;
}
nav ul li {
  position: relative;
}
nav ul li ul {
  left: 0;
}
nav ul li:hover > ul, nav ul li.focus > ul {
  display: flex;
}
nav ul li a {
  color: var(--text);
}
nav ul li a img {
  max-width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
nav ul li a:visited {
  color: var(--text);
}
nav ul li a:hover, nav ul li a:focus, nav ul li a:active {
  color: var(--link-hover);
}
nav ul li a .icon {
  width: 20px;
  height: 20px;
}
nav li {
  position: relative;
}
nav li:hover > ul, nav li.focus > ul {
  display: flex;
}
nav li:hover > a, nav li.focus > a {
  color: var(--link-ui-hover);
}
nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--link-ui);
  text-decoration: none;
  transition: color 0.3s;
}
nav a:hover, nav a.focus {
  color: var(--link-ui);
}
nav a:visited {
  color: var(--link-ui);
}
nav .current_page_item > a,
nav .current-menu-item > a,
nav .current_page_ancestor > a,
nav .current-menu-ancestor > a {
  color: var(--link-ui-hover) !important;
}

.menu-item-has-children:hover > a .submenu_icon,
.menu-item-has-children:focus-within > a .submenu_icon {
  transform: rotate(180deg);
}

@media screen and (max-width: 37.49em) {
  .main-navigation {
    flex-direction: column;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 0;
  }
  .main-navigation ul ul {
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

.submenu_icon {
  width: 14px !important;
  height: 14px !important;
  display: inline-block;
  transition: transform 0.2s ease;
}
.submenu_icon:hover {
  transform: rotate(180deg);
}

.widget {
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}

.ols-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.3s ease;
  color: #333;
}
.ols-cart-trigger:hover {
  opacity: 0.8;
}
.ols-cart-trigger .ols-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ols-cart-trigger .ols-cart-icon svg, .ols-cart-trigger .ols-cart-icon .icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.ols-cart-trigger .ols-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  height: 18px;
  min-width: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}
.ols-cart-trigger .ols-cart-total {
  font-weight: 600;
  font-size: 15px;
}
.ols-cart-trigger--floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  padding: 0;
  justify-content: center;
  z-index: 99;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ols-cart-trigger--floating:hover {
  transform: translateY(-5px) scale(1.05);
  opacity: 1;
}
.ols-cart-trigger--floating .ols-cart-icon svg, .ols-cart-trigger--floating .ols-cart-icon .icon {
  width: 28px;
  height: 28px;
}
.ols-cart-trigger--floating .ols-cart-count {
  top: 0;
  right: 0;
  transform: translate(20%, -20%);
}

.ols-mini-cart {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 70vh;
}
.ols-mini-cart__empty {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 16px;
}
.ols-mini-cart__items {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 15px;
}
.ols-mini-cart__items::-webkit-scrollbar {
  width: 4px;
}
.ols-mini-cart__items::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.ols-mini-cart__items::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.ols-mini-cart__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}
.ols-mini-cart__item:last-child {
  border-bottom: none;
}
.ols-mini-cart__img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
}
.ols-mini-cart__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ols-mini-cart__info {
  flex-grow: 1;
  padding-right: 30px;
}
.ols-mini-cart__name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  line-height: 1.3;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ols-mini-cart__meta {
  font-size: 14px;
  color: #666;
}
.ols-mini-cart__remove {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 22px;
  text-decoration: none !important;
  border-radius: 50%;
  transition: all 0.2s;
}
.ols-mini-cart__remove:hover {
  color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.1);
}
.ols-mini-cart__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.ols-mini-cart__price {
  font-weight: 500;
  font-size: 15px;
  color: #555;
}
.ols-mini-cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  height: 32px;
  overflow: hidden;
}
.ols-mini-cart__qty .ols-qty-btn {
  background: transparent;
  border: none;
  width: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  transition: background 0.2s;
}
.ols-mini-cart__qty .ols-qty-btn:hover {
  background: #f5f5f5;
  color: #111;
}
.ols-mini-cart__qty .ols-qty-input {
  width: 32px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  padding: 0;
  background: transparent;
  pointer-events: none;
}
.ols-mini-cart__qty .ols-qty-input::-webkit-outer-spin-button, .ols-mini-cart__qty .ols-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ols-mini-cart__qty .ols-qty-input {
  -moz-appearance: textfield;
}
.ols-mini-cart.is-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s;
}
.ols-mini-cart__footer {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 2px solid #eaeaea;
  background: #fff;
}
.ols-mini-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.ols-mini-cart__subtotal span {
  color: #666;
}
.ols-mini-cart__subtotal strong {
  font-weight: 700;
  color: #111;
}
.ols-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ols-mini-cart__buttons .btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.ols-mini-cart__buttons .btn--outline {
  background: transparent;
  border: 1px solid #ccc;
  color: #333;
}
.ols-mini-cart__buttons .btn--outline:hover {
  border-color: #333;
  background: #f9f9f9;
}
.ols-mini-cart__buttons .btn--primary {
  background: #111;
  border: 1px solid #111;
  color: #fff;
}
.ols-mini-cart__buttons .btn--primary:hover {
  background: #333;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 0;
  list-style: none;
  margin: 0;
}

@media (min-width: 769px) {
  .category-list__showbtn {
    display: none;
  }
}
@media (max-width: 768px) {
  .product-category-grid li:nth-child(n+7) {
    display: none;
  }
  .product-category-grid.is-expanded li:nth-child(n+7) {
    display: block;
  }
}
.archive-description--woo {
  padding: 32px;
  background-color: var(--white);
  border-radius: 12px;
}

#secondary,
.widget-area {
  width: 268px;
  flex-shrink: 0;
  background-color: var(--white);
  padding: 12px;
  border-radius: 12px;
  position: sticky;
  top: 0px;
}

.widget_product_categories .widget-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, );
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeeee;
}
.widget_product_categories .product-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
}
.widget_product_categories .cat-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}
.widget_product_categories .cat-item a::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3l5 5-5 5' stroke='%231a6fc4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.15s ease;
}
.widget_product_categories .cat-item a:hover {
  background: rgba(213, 146, 73, 0.5176470588);
  color: #21201f;
  padding-left: 16px;
}
.widget_product_categories .cat-item a:hover::after {
  opacity: 1;
}
.widget_product_categories .current-cat > a {
  background: var(--primary);
  color: #fff;
  padding-left: 16px;
}
.widget_product_categories .current-cat > a::after {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3l5 5-5 5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.widget_product_categories .current-cat > a:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 992px) {
  .widget-area {
    display: none;
  }
}
.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(1rem, 1.6vw, 2rem);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(0.5rem, 0.8vw, 1rem);
  margin-top: clamp(1rem, 1.6vw, 2rem);
}

.onsale {
  display: none;
}

.product-tabs {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.product-tabs__list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-tabs__list::-webkit-scrollbar {
  display: none;
}
.product-tabs__link {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted, #6b7280);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.product-tabs__link:hover {
  color: var(--primary);
}
.product-tabs__link.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.product-single__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 32px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .product-single__hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.product-single__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 0px;
}
.product-single__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--primary-light, #e8f4fd);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  transition: background 0.2s ease;
}
.product-single__badge:hover {
  background: var(--primary);
  color: var(--text-w, #fff);
}
.product-single__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}
.product-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  font-size: 13px;
  color: var(--text-muted, #6b7280);
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
}
.product-single__meta-label {
  font-weight: 500;
  color: var(--text);
}
.product-single__advantages {
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 24px;
  background: var(--white);
}
.product-single__advantages-content h1, .product-single__advantages-content h2, .product-single__advantages-content h3, .product-single__advantages-content h4, .product-single__advantages-content h5 {
  margin: 0;
  margin-bottom: 1rem;
}
.product-single__advantages-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-single__advantages-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
}
.product-single__advantages-content li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-color: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.product-single__advantages-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.product-single__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.product-single__actions button {
  width: 100%;
  flex: 1 1 48%;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.product-single__actions .product-single__purchase {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-single__actions .product-single__purchase form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.product-single__actions .product-single__purchase .in-stock, .product-single__actions .product-single__purchase .available-on-backorder {
  display: none;
}
.product-single__actions .secondary-btn {
  flex: 1 1 24%;
}
@media (max-width: 480px) {
  .product-single__actions {
    flex-direction: column;
  }
  .product-single__actions .product-single__action-btn {
    width: 100%;
    justify-content: center;
    flex: 1 1 auto;
    height: 48px;
  }
}
.product-single .price-wrap {
  display: flex;
  align-items: center;
}
.product-single .price-wrap .vid {
  font-weight: 600;
  margin-right: 6px;
}

.price {
  font-weight: 700;
  font-size: 20px !important;
}
.price del {
  color: #999;
  font-size: 0.85em;
  margin-right: 10px;
  text-decoration: line-through;
  opacity: 0.8;
}
.price ins {
  text-decoration: none;
  color: red !important;
}
.price .wc-price-suffix {
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
}

.price ins {
  background-color: transparent !important;
  text-decoration: none;
  color: inherit;
}

.stock {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.stock::before {
  margin-right: 8px;
  font-family: sans-serif;
}
.stock.in-stock {
  background-color: #e8f5e9;
  color: #2e7d32 !important;
}
.stock.in-stock::before {
  content: "✓";
}
.stock.out-of-stock {
  background-color: #ffebee;
  color: #c62828;
}
.stock.out-of-stock::before {
  content: "✕";
}
.stock.available-on-backorder {
  background-color: #fff3e0;
  color: #ef6c00;
}
.stock.available-on-backorder::before {
  content: "⏳";
}

.sale-badge {
  z-index: 99;
  background-color: red;
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 15px;
  padding: 6px;
  border-radius: 4px;
}

.product-block {
  padding-block: 48px;
  scroll-margin-top: 70px;
}
.product-block:first-of-type {
  border-top: none;
}
@media (max-width: 768px) {
  .product-block {
    padding-block: 32px;
    scroll-margin-top: 56px;
  }
}

.product-block--fallback .container {
  background-color: var(--white);
  padding: clamp(6px, 5vw, 32px);
  border-radius: 12px;
}

.product-single__description {
  font-size: 17px;
  margin: 0 auto;
  max-width: 1200px;
}
.product-single__description h3 {
  color: #333;
  padding-left: 15px;
  border-left: 5px solid #ff7f00;
  margin: 30px 0 15px;
  text-transform: uppercase;
  font-size: 2rem;
  margin-top: 4rem;
}
.product-single__description ul {
  list-style: none;
  padding: 0;
}
.product-single__description ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.product-single__description ul li::before {
  content: "●";
  color: #ff7f00;
  position: absolute;
  left: 0;
}
.product-single__description table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-single__description table thead {
  background-color: #ff7f00;
  color: #ffffff;
}
.product-single__description table thead th {
  padding: 12px;
  text-align: left;
}
.product-single__description table tbody tr:nth-child(even) {
  background-color: #fff9f5;
}
.product-single__description table tbody td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.product-single__gallery {
  max-width: 680px;
}
.product-single__gallery .woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  height: auto;
}
.product-single__gallery .woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs li {
  width: 72px;
  height: 72px;
  margin: 0;
  flex-shrink: 0;
}
.product-single__gallery .woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  border: 2px solid transparent;
  background: #f5f7fa;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.product-single__gallery .woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs img:hover {
  border-color: #d1d5db;
}
.product-single__gallery .woocommerce-product-gallery ol.flex-control-nav.flex-control-thumbs img.flex-active {
  border-color: var(--primary);
}
.product-single__gallery .woocommerce-product-gallery__trigger {
  display: none;
}
.product-single__gallery .woocommerce-product-gallery .flex-direction-nav {
  display: none;
}
.product-single__gallery .woocommerce-product-gallery figure {
  margin: 0;
}

.single-post__header {
  padding-top: 2rem;
}
.single-post__title {
  margin: 0 0 0.75rem;
}
.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  opacity: 0.8;
}
.single-post__thumb {
  margin-top: 1.5rem;
}
.single-post__content {
  margin-top: 1.5rem;
}
.single-post__footer {
  margin-top: 2rem;
  padding-bottom: 2rem;
}
.single-post__tags {
  margin-top: 1rem;
}
.single-post__nav {
  margin-top: 2rem;
}
.single-post__comments {
  margin-top: 2.5rem;
}

.post-nav__list {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.post-nav__item {
  flex: 1;
}
.post-nav__item--next {
  text-align: right;
}
.post-nav__link {
  display: block;
  text-decoration: none;
  padding: 1rem;
  border-radius: 12px;
}
.post-nav__label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
}
.post-nav__title {
  display: block;
  font-weight: 600;
}

.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 0em;
}

.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.page-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px;
  color: #555555;
}
.page-about h2 {
  color: #222222;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page-about h2 {
    font-size: 1.75rem;
  }
}
.page-about h3 {
  color: #222222;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 12px;
}
.page-about p {
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 15px;
}
.page-about .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 480px) {
  .page-about .btn {
    width: 100%;
  }
}
.page-about .btn--dark {
  background-color: #222222;
  color: #ffffff;
}
.page-about .btn--dark:hover {
  background-color: #ff7f00;
}
.page-about .btn--light {
  background-color: #f9f9f9;
  color: #222222;
  border: 1px solid #eeeeee;
}
.page-about .btn--light:hover {
  border-color: #ff7f00;
  color: #ff7f00;
}
.page-about .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ff7f00;
  margin-bottom: 12px;
  font-weight: 700;
}
.page-about__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media (max-width: 480px) {
  .page-about__actions {
    flex-direction: column;
    gap: 10px;
  }
}
.page-about__intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .page-about__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.page-about__intro-lead .lead-text {
  font-size: 1.25rem;
  color: #222222;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page-about__intro-lead .lead-text {
    font-size: 1.15rem;
  }
}
.page-about__intro-summary {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .page-about__intro-summary {
    padding: 25px;
  }
}
.page-about__intro-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-about__intro-summary ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #222222;
}
.page-about__intro-summary ul li:last-child {
  margin-bottom: 0;
}
.page-about__intro-summary ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff7f00;
}
.page-about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .page-about__stats {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 60px;
  }
}
.page-about__stats .stat-card {
  padding: 30px 20px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  text-align: center;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}
.page-about__stats .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .page-about__stats .stat-card {
    padding: 20px 15px;
  }
  .page-about__stats .stat-card:hover {
    transform: none;
  }
}
.page-about__stats .stat-card strong {
  display: block;
  font-size: 1.25rem;
  color: #222222;
  margin-bottom: 8px;
}
.page-about__stats .stat-card span {
  font-size: 0.95rem;
  color: #555555;
}
.page-about__features {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .page-about__features {
    margin-bottom: 60px;
  }
}
.page-about__features .section-header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .page-about__features .section-header {
    margin-bottom: 30px;
  }
}
.page-about__features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
@media (max-width: 480px) {
  .page-about__features .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.page-about__features .features-grid .feature-card {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  height: 100%;
}
@media (max-width: 768px) {
  .page-about__features .features-grid .feature-card {
    padding: 25px;
  }
}
.page-about__catalog {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}
@media (max-width: 992px) {
  .page-about__catalog {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page-about__catalog {
    margin-bottom: 60px;
  }
}
.page-about__catalog .catalog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}
@media (max-width: 480px) {
  .page-about__catalog .catalog-list {
    grid-template-columns: 1fr;
  }
}
.page-about__catalog .catalog-list .catalog-item {
  padding: 15px 20px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .page-about__catalog .catalog-list .catalog-item {
    justify-content: center;
  }
}
.page-about__cta {
  text-align: center;
  background-color: #f9f9f9;
  padding: 80px 20px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .page-about__cta {
    padding: 50px 20px;
  }
}
.page-about__cta .cta-copy {
  max-width: 650px;
  margin: 0 auto;
}
.page-about__cta .cta-copy p {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.page-about__cta .page-about__actions {
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page-about__cta .page-about__actions {
    margin-top: 30px;
  }
}

.hub__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.hub-card {
  flex: 1 1 260px;
  padding: 12px 32px;
  border-radius: 8px;
  background: var(--secondary-item);
  font-size: 16px;
}
.hub-card__media img {
  max-width: 228px;
  height: 228px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.hub-card a {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hub-card a:hover {
  color: var(--primary);
}
.hub-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.hub-page__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: 1rem;
}
@media (max-width: 900px) {
  .hub-page__layout {
    grid-template-columns: 1fr;
  }
}
.hub-page__sidebar {
  position: sticky;
  top: 16px;
  align-self: start;
  background: var(--white);
  border-radius: 8px;
}
@media (max-width: 900px) {
  .hub-page__sidebar {
    position: static;
    top: auto;
  }
}
.hub-page__content {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
}

.error-page {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: sans-serif;
}
.error-page__title {
  font-size: 25rem;
  font-weight: 900;
  margin: 0;
  cursor: default;
  color: transparent;
  background-image: url("https://olsbussiness.local/wp-content/uploads/2026/06/1586743_4394-scaled.webp");
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 6px 6px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s ease-out, text-shadow 0.1s ease-out;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

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

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--primary);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--text);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}