@charset "UTF-8";
/* ===== Base ===== */
/* ==================================================
   BREAKPOINTS
================================================== */
/* ==================================================
   ROOT DESIGN TOKENS
================================================== */
:root {
  /* ---------- VIEWPORT ---------- */
  --app-height: 100vh;
  /* ---------- TYPOGRAPHY SCALE ---------- */
  --type-scale: 1;
  --fs-xs: calc(12px * var(--type-scale));
  --fs-sm: calc(14px * var(--type-scale));
  --fs-base:calc(16px * var(--type-scale));
  --fs-md: calc(18px * var(--type-scale));
  --fs-lg: calc(22px * var(--type-scale));
  --fs-xl: calc(28px * var(--type-scale));
  --fs-xxl: calc(40px * var(--type-scale));
  --fw-base: 400;
  --fw-md: 500;
  --fw-lg: 600;
  --fw-xl: 700;
  --lh-xs: 1;
  --lh-base: 1.6;
  --lh-heading: 1.2;
  /* ---------- FONT FAMILIES ---------- */
  --fm-base: "Roboto", sans-serif;
  --fm-xl: "Roboto Condensed", sans-serif;
  --fm-branding: "Roboto Bold Italic", sans-serif;
  /* ---------- COLORS ---------- */
  --main-bg: #FDFBF7;
  --header-bg: rgba(253, 251, 247, 0.6);
  --header-top-bg: #FDFBF7;
  --footer-bg: #ff9a00;
  --badge-bg: #ff3b30;
  --card-bg: #ffffff;
  --main-text-color: #2D3A3A;
  --heading-text-color: #07575b;
  --branding-text-color: #ff4d00;
  --footer-text-color: #F6F6F6;
  --badge-text-color: #ffffff;
  --banner-text-color: #ffffff;
  --button-bg: #ff4d00;
  --button-bg-hover: #07575b;
  --button-text-color: #07575b;
  --button-text-color-hover: #ffffff;
  --link-text-color-hover: #ff4d00;
  /* ---------- SPACING ---------- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  /* ---------- FLUID SPACING ---------- */
  --space-1: clamp(4px, .4vw, 6px);
  --space-2: clamp(8px, .6vw, 10px);
  --space-3: clamp(12px, .9vw, 16px);
  --space-4: clamp(16px, 1.2vw, 22px);
  --space-5: clamp(24px, 1.8vw, 32px);
  --space-6: clamp(32px, 2.4vw, 48px);
  --button-paddings: 7px 14px;
  --heading-top-gap: 8px;
  --form-gap: 10px;
  /* ---------- BORDERS ---------- */
  --border-radius: 8px;
  --border: 1px solid rgba(0, 0, 0, 0.12);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --border-color: #6fb98f;
  /* ---------- FORMS ---------- */
  --form-wrapper-bg: #004445;
  --input-border-radius: 4px;
  --input-height: 38px;
  --input-bg: #ffffff;
  /* ---------- LAYOUT TOKENS ---------- */
  --container: 1240px;
  --gutter: 16px;
  --header-height: 72px;
  /* z-index layers */
  --z-header: 50;
  --z-overlay: 9998;
  --z-panel: 9999;
}

/* ==================================================
   RESPONSIVE TYPOGRAPHY SCALE
================================================== */
@media (min-width: 576px) {
  :root {
    --container: 100%;
  }
}
@media (min-width: 576px) {
  :root {
    --container: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --container: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --container: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container: 1140px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container: 1320px;
  }
}
@media (max-width: 1200px) {
  :root {
    --container: 1140px;
  }
}
@media (max-width: 1030px) {
  :root {
    --container: 960px;
  }
}
@media (max-width: 992px) {
  :root {
    --type-scale: .97;
    --container: 700px;
  }
}
@media (max-width: 768px) {
  :root {
    --type-scale: .93;
    --gutter: 14px;
    --header-height: 64px;
    --container: 640px;
  }
}
@media (max-width: 576px) {
  :root {
    --type-scale: .90;
    --container: 540px;
  }
}
@media (max-width: 430px) {
  :root {
    --type-scale: .88;
    --container: 100%;
  }
}
/* ==================================================
   FLEX
================================================== */
/* ==================================================
   POSITION
================================================== */
/* ==================================================
   TRANSITIONS
================================================== */
/* ==================================================
   HOVER (desktop only)
================================================== */
/* ==================================================
   TEXT UTILITIES
================================================== */
/* ==================================================
   MEDIA HELPERS
================================================== */
@media (max-width: 1030px) {
  :root {
    --container: 1140px;
  }
}
@media (max-width: 992px) {
  :root {
    --container: 960px;
  }
}
@media (max-width: 768px) {
  :root {
    --container: 720px;
  }
}
@media (max-width: 576px) {
  :root {
    --container: 540px;
  }
}
@media (max-width: 430px) {
  :root {
    --container: 100%;
  }
}
/*! 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; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* 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; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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; /* 1 */
  font-size: 1em; /* 2 */
}

/* 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; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  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; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 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; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * 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; /* 1 */
  font: inherit; /* 2 */
}

/* 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;
}

@font-face {
  font-family: "Roboto";
  src: url("../../assets/fonts/Roboto.ttf");
}
@font-face {
  font-family: "Roboto Bold Italic";
  src: url("../../assets/fonts/Roboto Bold Italic.ttf");
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../../assets/fonts/Roboto Condensed.ttf");
}
@font-face {
  font-family: "Roboto Italic";
  src: url("../../assets/fonts/Roboto Italic.ttf");
}
@font-face {
  font-family: "Roboto Medium Italic";
  src: url("../../assets/fonts/Roboto Medium Italic.ttf");
}
h1 {
  font-size: var(--fs-xxl);
  line-height: var(--lh-heading);
  color: var(--heading-text-color);
}

h2 {
  font-size: var(--fs-xl);
  line-height: var(--lh-heading);
  color: var(--heading-text-color);
}

h3 {
  font-size: var(--fs-lg);
  line-height: var(--lh-heading);
  color: var(--heading-text-color);
}

h4 {
  font-size: var(--fs-md);
  line-height: var(--lh-heading);
  color: var(--main-text-color);
}

h5 {
  font-size: var(--fs-base);
  line-height: var(--lh-heading);
  color: var(--main-text-color);
}

p {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--main-text-color);
  margin: 0 0 var(--space-3);
}

a {
  color: inherit;
  text-decoration: none;
}
a :hover {
  color: var(--link-text-color-hover);
}

li {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--main-text-color);
}

.title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.title a {
  text-decoration: none;
  color: white;
}

.page-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-lg);
  line-height: var(--lh-heading);
  margin: 0 0 var(--space-6);
}

.page-subtitle {
  margin: 0;
  opacity: 0.8;
}

.wp-block-heading {
  margin-top: var(--space-6);
}

.post-card__title {
  margin: 0 0 var(--space-2);
  font-size: var(--fs-md);
}
.post-card__title a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
  outline: none;
}

body.admin-bar {
  --admin-bar-h: var(--wp-admin--admin-bar--height, 32px);
}

body:not(.admin-bar) {
  --admin-bar-h: 0px;
}

body {
  width: 100vw;
  min-height: calc(var(--app-height) - var(--admin-bar-h));
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--fm-base);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--main-text-color);
  background: var(--main-bg);
}

main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

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

article, section {
  padding: 80px 0;
}
@media (max-width: 992px) {
  article, section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  article, section {
    padding: 40px 0;
  }
}

/* ==================================================
   ACCESSIBILITY
================================================== */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==================================================
   DISPLAY
================================================== */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

/* ==================================================
   TEXT ALIGN
================================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ==================================================
   POSITION
================================================== */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* ==================================================
   OVERFLOW
================================================== */
.overflow-hidden {
  overflow: hidden;
}

/* ==================================================
   WIDTH
================================================== */
.w-100 {
  width: 100%;
}

/* ==================================================
   RESPONSIVE HELPERS
================================================== */
/* скрыть на мобилке */
@media (max-width: 768px) {
  .d-mobile-none {
    display: none !important;
  }
}
/* скрыть на десктопе */
@media (min-width: 992px) {
  .d-desktop-none {
    display: none !important;
  }
}
/* ===== UI ===== */
/* ==================================================
   BUTTONS
================================================== */
.wp-block-button__link,
button {
  height: var(--input-height);
  background: var(--button-bg);
  color: var(--button-text-color);
  border-radius: var(--input-border-radius);
  padding: var(--button-paddings);
  border: 0;
  text-decoration: none;
}
.wp-block-button__link:hover,
button:hover {
  color: var(--button-text-color-hover);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--button-paddings);
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  font-size: var(--fs-sm);
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-base, 0.25s ease), color var(--transition-base, 0.25s ease), border-color var(--transition-base, 0.25s ease), transform var(--transition-fast, 0.15s ease);
}
.btn:active {
  transform: translateY(1px);
}
.btn:hover {
  background: var(--button-bg-hover);
  color: var(--button-text-color-hover);
}

/** Banner/Slider */
.home-hero__btn {
  background: var(--button-bg);
  color: var(--button-text-color);
  width: auto;
  max-width: 150px;
}
.home-hero__btn:hover {
  background: var(--button-bg-hover);
  color: var(--button-text-color-hover);
}

/* Primary */
.btn--primary {
  background: var(--button-bg);
  color: var(--button-text-color);
}
.btn--primary:hover {
  color: var(--button-text-color-hover);
  background: var(--button-bg-hover);
}

/* Outline */
.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--main-text-color);
}
.btn--outline:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--main-text-color);
}
.btn--ghost:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Full width */
.btn--block {
  width: 100%;
}

/* Small / Large */
.btn--sm {
  padding: 6px 12px;
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: 12px 18px;
  font-size: var(--fs-base);
}

input {
  height: var(--input-height);
  border-radius: var(--input-border-radius);
  background: var(--input-bg);
  color: var(--main-text-color);
  padding: var(--button-paddings);
  border: 0;
  text-decoration: none;
}

input[type=submit] {
  background: var(--button-bg);
  color: var(--button-text-color);
  padding: var(--button-paddings);
  border: 0;
  text-decoration: none;
}

input[type=text],
input[type=email],
input[type=search],
input[type=tel],
input[type=password],
textarea {
  width: 100%;
  height: var(--input-height);
  border-radius: var(--input-border-radius);
  border: var(--border);
  background: var(--input-bg);
  padding: 0 10px;
  outline: none;
}

.header-search__panel form {
  display: flex;
  gap: var(--form-gap);
  margin: 0;
  border: none;
}
.header-search__panel input[type=search] {
  flex: 1 1 auto;
  height: var(--input-height);
  width: 100%;
  padding: 0 10px;
  border: none;
}
.header-search__panel button,
.header-search__panel input[type=submit] {
  height: var(--input-height);
  padding: var(--button-paddings);
}

.icon-search {
  display: block;
  color: currentColor;
}

.icon-close {
  opacity: 0;
  transform: scale(0.9);
}

.header-search__icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.header-search__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  right: -8px;
  bottom: -2px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.nav-toggle__icon {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
  position: relative;
}
.nav-toggle__icon::before, .nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}
.nav-toggle__icon::before {
  top: -7px;
}
.nav-toggle__icon::after {
  top: 7px;
}

.header-cart {
  position: relative;
}

.header-cart__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-text-color);
  font-size: var(--fs-xs);
  line-height: var(--lh-xs);
  font-weight: var(----fw-xl);
  text-align: center;
}
.header-cart__badge:empty, .header-cart__badge[data-count="0"] {
  display: none;
}

/* ==================================================
   SPACING UTILITIES
   (минимальный набор, чтобы не плодить тысячи классов)
================================================== */
/* Margin top */
.mt-1 {
  margin-top: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mt-6 {
  margin-top: var(--space-6);
}

/* Margin bottom */
.mb-1 {
  margin-bottom: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

/* Padding */
.p-3 {
  padding: var(--space-3);
}

.p-4 {
  padding: var(--space-4);
}

.p-5 {
  padding: var(--space-5);
}

/* ===== Layout ===== */
/* ==================================================
   LAYOUT (sections, grid, utilities)
================================================== */
/* Секции: единый вертикальный ритм */
.section {
  padding: var(--space-6) 0;
}

.section--sm {
  padding: var(--space-4) 0;
}

.section--lg {
  padding: calc(var(--space-6) * 1.25) 0;
}

/* Заголовок секции */
.section__title {
  margin-bottom: var(--space-4);
}

/* Ограничение ширины текста */
.content-narrow {
  max-width: 760px;
}

/* Grid helpers */
.grid {
  display: grid;
  gap: var(--space-4);
}

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

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

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

@media (max-width: 992px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
html[data-theme=dark] .card {
  background: rgba(255, 255, 255, 0.04);
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  margin: 0;
  text-align: center;
  color: var(--main-text-color);
  background: var(--header-bg);
  position: relative;
  z-index: 10;
}

.header {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top {
  width: 100%;
  background: var(--header-top-bg);
  color: var(--heading-text-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-top__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header__actions {
  flex: 0 0 auto;
}

.site-header__inner {
  position: relative;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 992px) {
  .site-header__inner {
    padding: 0;
  }
}

.site-branding {
  flex: 0 0 auto;
}

.site-logo__img {
  display: block;
  height: 42px;
  width: auto;
}

.site-logo-link {
  font-family: var(--fm-branding);
  color: var(--branding-text-color);
  text-decoration: none;
}
.site-logo-link:hover {
  color: var(--heading-text-color);
}

.site-title {
  font-size: var(--fs-xxl);
}
.site-title:hover {
  color: inherit;
}

.site-description {
  font-size: var(--fs-base);
  margin-bottom: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--heading-top-gap);
}

.header-action {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: currentColor;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}
.header-action:hover {
  color: var(--link-text-color-hover);
  transform: translateY(-1px);
}
.header-action svg {
  display: block;
}

/* Mobile */
@media (max-width: 901px) {
  .site-header__inner {
    justify-content: flex-end;
    position: relative;
  }
}
.primary-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  color: var(--main-text-color);
  text-align: right;
  flex: 1 1 auto;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.primary-nav a {
  color: var(--main-text-color);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
}
.primary-nav a:hover {
  color: var(--link-text-color-hover);
}
@media (max-width: 992px) {
  .primary-nav {
    display: none;
    width: 100%;
  }
}

/* Бургер */
.nav-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  color: var(--main-text-color);
}
.nav-toggle svg {
  position: absolute;
  inset: 0;
  margin: auto 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9998;
}

/* Panel */
.menu-panel {
  position: fixed;
  top: var(--admin-bar-h);
  right: 0;
  height: calc(var(--app-height) - var(--admin-bar-h));
  width: min(360px, 88vw);
  background: var(--main-bg);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
}

.menu-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-panel__social {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 16px;
}
.menu-panel__social .header-social {
  gap: var(--space-sm);
}

.menu-panel__title {
  font-family: var(--fm-branding);
  color: var(--branding-text-color);
  font-weight: 700;
}

.menu-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 10px;
  color: var(--main-text-color);
}
.menu-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.menu-panel__nav {
  padding: 10px 16px 18px;
  overflow: auto;
}
.menu-panel__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-panel__nav a {
  display: block;
  padding: 12px 10px;
  text-decoration: none;
  border-radius: 12px;
  color: var(--main-text-color);
}
.menu-panel__nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Open state */
body.is-menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.is-menu-open .menu-panel {
  transform: translateX(0);
}
body.is-menu-open .icon-burger {
  opacity: 0;
  transform: scale(0.9);
}
body.is-menu-open .icon-close {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 901px) {
  .menu-overlay,
  .menu-panel {
    display: none !important;
  }
}
footer {
  width: 100%;
  padding: 20px;
  margin: 0;
  text-align: center;
  color: var(--footer-text-color);
  background: var(--footer-bg);
  flex-shrink: 0;
}

.site-footer__copy {
  opacity: 0.2;
}

/* ===== Components ===== */
.header-search {
  position: static;
  display: flex;
  align-items: center;
}

.header-search__toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  padding: 0;
  color: currentColor;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header-search__toggle:hover {
  color: var(--link-text-color-hover);
}

.header-search__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 320px;
  width: 100%;
  background: var(--form-wrapper-bg);
  border: var(--border);
  border-radius: var(--border-radius);
  padding: 12px;
  box-shadow: var(--box-shadow);
  z-index: 50;
}
@media (max-width: 480px) {
  .header-search__panel .header-search__panel {
    min-width: 260px;
  }
}

.header-social {
  display: flex;
  gap: 14px;
}

.header-social__link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  overflow: visible;
}
.header-social__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
  overflow: visible;
}
.header-social__link:hover {
  transform: translateY(-1px);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: currentColor;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header-phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.header-phone:hover {
  color: var(--link-text-color-hover);
}

/* Telegram */
.header-social__link--telegram:hover {
  color: #229ED9;
}

/* Instagram */
.header-social__link--instagram:hover {
  color: #E1306C;
}

/* Facebook */
.header-social__link--facebook:hover {
  color: #1877F2;
}

/* YouTube */
.header-social__link--youtube:hover {
  color: #FF0000;
}

/* Viber */
.header-social__link--viber:hover {
  color: #7360F2;
}

@media (max-width: 901px) {
  .header-top__inner .header-phone,
  .header-top__inner .header-social {
    display: none;
  }
}
/* Cards */
.card {
  background: #fff;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--space-4);
}

.home-hero__banner {
  width: 100vw;
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
}
.home-hero__banner .home-hero__content {
  height: 100%;
  position: relative;
  z-index: 2;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-5);
}
@media (max-width: 768px) {
  .home-hero__banner .home-hero__content {
    padding: 28px;
  }
}
@media (max-width: 576px) {
  .home-hero__banner .home-hero__content {
    width: 100%;
  }
}
.home-hero__banner .home-hero__text {
  width: 70%;
}
@media (max-width: 576px) {
  .home-hero__banner .home-hero__text {
    width: 100%;
  }
}
@media (max-width: 1030px) {
  .home-hero__banner {
    min-height: 420px;
  }
}
@media (max-width: 992px) {
  .home-hero__banner {
    min-height: 320px;
  }
}

.home-hero {
  width: 100%;
  overflow: hidden;
}

.home-hero__slider,
.any-web-swiper,
.swipe {
  width: 100vw;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
@media (max-width: 768px) {
  .home-hero__slider,
  .any-web-swiper,
  .swipe {
    min-height: 320px;
  }
}

.swiper-slide,
.home-hero__slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 600px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .swiper-slide,
  .home-hero__slide {
    min-height: 320px;
  }
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.home-hero__content {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-5);
}
@media (max-width: 768px) {
  .home-hero__content {
    padding: 28px 56px;
  }
}

.home-hero__box {
  max-width: 720px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.home-hero__title {
  font-family: var(--fm-branding);
  color: var(--banner-text-color);
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1.1;
}

.home-hero__text {
  font-family: var(--fm-base);
  color: var(--banner-text-color);
  font-size: clamp(14px, 1.4vw, 18px);
  opacity: 0.95;
}

/* arrows */
.any-web-swiper-prev,
.any-web-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;
  color: var(--heading-text-color);
  background: transparent;
  z-index: 5;
}
@media (hover: hover) and (pointer: fine) {
  .any-web-swiper-prev:hover::before,
  .any-web-swiper-next:hover::before {
    border-top: 2px solid var(--link-text-color-hover);
    border-right: 2px solid var(--link-text-color-hover);
  }
}
.any-web-swiper-prev::before,
.any-web-swiper-next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--heading-text-color);
  border-right: 3px solid var(--heading-text-color);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .any-web-swiper-prev,
  .any-web-swiper-next {
    width: 40px;
    height: 40px;
  }
}

.any-web-swiper-prev {
  left: 12px;
}
.any-web-swiper-prev::before {
  transform: rotate(-135deg);
}

.any-web-swiper-next {
  right: 12px;
}
.any-web-swiper-next::before {
  transform: rotate(45deg);
}

/* pagination */
.any-web-swiper-pagination {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 50px !important;
  height: 5px !important;
  border-radius: 8px !important;
  background-color: #ffffff !important;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    height: 3px !important;
  }
}

.swiper-pagination-bullet-active {
  background-color: var(--header-bg) !important;
}

/* ===== Pages ===== */
.page-header {
  padding: var(--space-4) 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 992px) {
  .posts-grid .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .posts-grid .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: #fff;
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card__body {
  padding: var(--space-4);
}

.post-card__meta {
  font-size: var(--fs-sm);
  opacity: 0.8;
  margin-bottom: var(--space-3);
}

.post-card__more {
  display: inline-block;
  margin-top: var(--space-3);
}

.custom-menu-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
}

.custom-menu-item__content {
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
  padding: 10px;
  max-width: 100%;
}
.custom-menu-item__content .flex-column {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
@media (max-width: 992px) {
  .custom-menu-item__content .flex-column {
    flex: 1 0 100%;
  }
}
.custom-menu-item__content .flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.custom-menu-item__content .mprm-flex-item.mprm-dots {
  border-bottom: 1px dotted #e0e0e0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -ms-flex-preferred-size: 5%;
  flex-basis: 5%;
  margin: 0.25em;
}
.custom-menu-item__content .mprm-price-container {
  margin: unset !important;
}
@media (max-width: 768px) {
  .custom-menu-item__content {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.custom-menu-item__image {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: fit-content;
  height: fit-content;
  object-fit: contain;
  padding: 10px;
}
@media (max-width: 992px) {
  .custom-menu-item__image {
    display: none;
  }
}
.custom-menu-item__image img {
  max-width: 200px;
  max-height: 200px;
  height: auto;
  width: auto;
}

/* ===== WooCommerce ===== */
