@charset "UTF-8";
/**
 * 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;
}

/* 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
   ========================================================================== */
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: 600;
}

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

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

details summary:focus {
  outline: none;
}
details summary::-webkit-details-marker {
  display: none;
}

.color-gray-500 {
  color: var(--color-gray-scale-gray-500);
}

.color-orange {
  color: var(--color-branding-orange);
}

.color-green {
  color: var(--color-branding-success);
}

.color-red {
  color: var(--color-branding-error);
}

.color-orange-dark {
  color: var(--color-branding-orange-dark);
}

:host,
:root {
  --color-branding-orange: #ffa02f;
  --color-branding-orange-2: #fdf1dc;
  --color-branding-orange-dark: #eb8000;
  --color-branding-orange-light: #fff6eb;
  --color-branding-orange-light-2: #ffecd4;
  --color-branding-black: #1e1e1e;
  --color-branding-black-2: #1a1a1a;
  --color-branding-blue: #2388ff;
  --color-branding-blue-light: #e4f7ff;
  --color-branding-blue-light-2: #ffecd4;
  --color-branding-blue-dark: #001744;
  --color-branding-green-40: #f1fff2;
  --color-branding-success-bright: #83d186;
  --color-branding-success: #00b206;
  --color-branding-success-dark: #2c732f;
  --color-branding-warning: #ff8900;
  --color-branding-error: #e94b48;
  --color-gray-scale-gray-200: #ccc;
  --color-gray-scale-gray-400: #999;
  --color-branding-yellow-400: #ffed93;
  --color-gray-scale-gray–900: #191919;
  --color-gray-scale-gray-900: #191919;
  --color-gray-scale-gray–800: #333333;
  --color-gray-scale-gray–700: #4c4c4c;
  --color-gray-scale-gray–600: #666666;
  --color-gray-scale-gray-500: #808080;
  --color-gray-scale-gray-700: #4d4d4d;
  --color-gray-scale-gray–300: #b3b3b3;
  --color-gray-scale-gray–200: #cccccc;
  --color-gray-scale-gray-100: #e6e6e6;
  --color-gray-scale-gray–100: #e6e6e6;
  --color-gray-scale-gray-50: #f2f2f2;
  --color-gray-scale-white: #ffffff;
  --color-green-gray-scale-900: #002602;
  --color-green-gray-scale-800: #173a19;
  --color-green-gray-scale-700: #2b562e;
  --color-green-gray-scale-600: #406b41;
  --color-green-gray-scale-500: #607f62;
  --color-green-gray-scale-400: #7a997b;
  --color-green-gray-scale-300: #95b297;
  --color-green-gray-scale-200: #b3ccb4;
  --color-green-gray-scale-100: #dae5da;
  --color-green-gray-scale-50: #edf2ed;
  --border-border: #d9d9d9;
  --color-border-border: #d9d9d9;
  --background-background-subdued: #fafafa;
  --text-text-emphasized: #333;
  --text-text: #545454;
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/open-sans-variable/opensans-subset.woff2") format("woff2");
  unicode-range: U+20-7E, U+A1-A3, U+A5, U+A7-AC, U+AE, U+B0, U+B1, U+B4-B8, U+BA, U+BB, U+BF, U+C1, U+C4, U+C9, U+CD, U+D3, U+D4, U+D6, U+DA, U+DC, U+DD, U+DF, U+E1, U+E4, U+E9, U+ED, U+F3, U+F4, U+F6, U+F7, U+FA, U+FC, U+FD, U+10C-10F, U+11A, U+11B, U+139, U+13A, U+13D, U+13E, U+147, U+148, U+154, U+155, U+158, U+159, U+160, U+161, U+164, U+165, U+16E, U+16F, U+17D, U+17E, U+2C6, U+2DA, U+2DC, U+3A9, U+3C0, U+2013, U+2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039, U+203A, U+2044, U+20AC, U+2122, U+2202, U+2206, U+220F, U+2211, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264, U+2265, U+25CA, U+F8FF, U+FB01, U+FB02;
}
:host,
html {
  color: var(--color-branding-black);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body {
  color: var(--color-branding-black);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

h1 {
  font-size: 2.2857142857rem;
  font-weight: 700;
  margin: 0 0 25px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5714285714rem;
    line-height: 140%;
  }
}

h2 {
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--gray-scale-gray-900, #1a1a1a);
  font-size: 1.4285714286rem;
}
@media (max-width: 800px) {
  h2 {
    font-size: 1.2857142857rem;
  }
}

h3 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 16px;
}

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

a {
  color: var(--color-branding-orange);
  text-decoration: none;
}
a:hover, a:active {
  color: var(--color-branding-orange-dark);
}

.rm-link {
  color: var(--color-branding-error);
}
.rm-link:hover {
  color: var(--color-branding-orange-dark);
}

@media (max-width: 700px) {
  .addToCart__text--large {
    display: none;
  }
}

.addToCart__text--small {
  display: none;
}
@media (max-width: 700px) {
  .addToCart__text--small {
    display: inline;
  }
}

.ico-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.relative {
  position: relative;
}

:root {
  scroll-behavior: smooth;
}

.is-hidden {
  display: none !important;
}

:root {
  --base-layout-horizontal-padding: 20px;
}

.base-layout {
  width: 100%;
  padding: 0 var(--base-layout-horizontal-padding, 20px);
}
@media (max-width: 600px) {
  .base-layout {
    --base-layout-horizontal-padding: 10px;
  }
}

.base-layout--overflow-x {
  overflow-x: hidden;
}

.layout-sticky-plakaty {
  width: 100%;
  overflow-x: clip;
  position: sticky;
  top: var(--sticky-header-bottom, 137px);
}

.base-layout--full-height {
  --header-height: 225px;
  min-height: calc(100dvh - var(--header-height));
}

.base-layout__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  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;
}

/*
	Improved screen reader only CSS class
	@author Gaël Poupard
		@note Based on Yahoo!'s technique
		@author Thierry Koblentz
		@see https://www.cssmojo.com/hide-content-from-sighted-users/
	* 1.
		@note Use to only display content when it's focused, or one of its child elements is focused
		@see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
		@note Based on a HTML5 Boilerplate technique, included in Bootstrap
	* 2.
		@note `clip-path` shortest syntax
		@author Yvain Liechti
		@see https://twitter.com/ryuran78/status/778943389819604992
	* 3.
		@note preventing text to be condensed
		author J. Renée Beach
		@see https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
		@note Drupal 8 goes with word-wrap: normal instead
		@see https://www.drupal.org/node/2045151
		@see http://cgit.drupalcode.org/drupal/commit/?id=5b847ea
	* 4.
		@note !important is important
		@note Obviously you wanna hide something
		@author Harry Roberts
		@see https://csswizardry.com/2016/05/the-importance-of-important/
*/
.visually-hidden,
.visually-hidden-focusable:not(:focus, :focus-within) {
  border: 0 !important;
  clip-path: inset(50%) !important; /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  width: 1px !important;
  white-space: nowrap !important; /* 3 */
}

/*
	Prevent visually hidden caption from breaking table's collapsing borders
	@author Louis-Maxime Piton
	@see https://github.com/twbs/bootstrap/pull/37533
*/
.visually-hidden:not(caption),
.visually-hidden-focusable:not(caption):not(:focus, :focus-within) {
  position: absolute !important;
}

/*
	Prevent overflowing children from being focusable.
	@author Django Janny
	@see https://github.com/twbs/bootstrap/pull/41286
*/
.visually-hidden *,
.visually-hidden-focusable:not(:focus, :focus-within) * {
  overflow: hidden !important;
}

.skip-links-block:focus-within {
  position: absolute;
  z-index: 10000;
  padding: 4px;
  background: var(--color-gray-scale-gray-50);
  border: 2px solid var(--border-border);
}

eta-carousel > ul {
  display: contents;
  list-style: none;
}
eta-carousel > ul > li {
  display: contents;
}

.btn {
  align-items: center;
  background: var(--color-branding-orange);
  border-radius: 43px;
  border: 2px solid var(--color-branding-orange);
  color: var(--color-gray-scale-white);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.8571428571rem;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  line-height: 14px;
  min-height: 36px;
  padding: 8px 24px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus, .btn:active {
    color: #fff;
    outline: none;
    background: var(--color-branding-orange-dark);
    border-color: var(--color-branding-orange-dark);
    text-decoration: none;
  }
  .btn:focus {
    outline: 4px solid var(--color-branding-orange-light-2);
  }
}
.btn strong,
.btn span {
  text-align: left;
}
.btn:is([inert]), .btn:is([disabled]) {
  background: var(--color-gray-scale-gray-200);
  border-color: var(--color-gray-scale-gray-200);
}

.btn--spinner > * {
  visibility: hidden;
}
.btn--spinner .btn__spinner {
  display: block;
  visibility: visible;
}

.btn__spinner {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-left-color: #000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.7s linear infinite;
  display: none;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  } /* Otočení o 360 stupňů */
}
.btn--disabled {
  background: var(--color-gray-scale-gray-200);
  border-color: var(--color-gray-scale-gray-200);
  pointer-events: none;
}

.btn--red {
  background: var(--color-branding-black);
  border-color: var(--color-branding-black);
  background: var(--color-branding-error);
  border-color: var(--color-branding-error);
  color: #fff;
}

.btn--black {
  background: var(--color-branding-black);
  border-color: var(--color-branding-black);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-branding-orange);
  color: var(--color-branding-orange);
}
.btn--outline:hover, .btn--outline:focus, .btn--outline:active {
  background: transparent;
  border-color: var(--color-branding-orange-dark);
  color: var(--color-branding-orange-dark);
}

.btn--outline-black {
  background: transparent;
  border-color: var(--color-branding-black);
  color: var(--color-branding-black);
}
.btn--outline-black:hover, .btn--outline-black:focus, .btn--outline-black:active {
  background: transparent;
  border-color: var(--color-branding-black);
  color: var(--color-branding-black);
}

.btn--outline-red {
  background: transparent;
  border-color: var(--color-branding-error);
  color: var(--color-branding-error);
}
.btn--outline-red:hover, .btn--outline-red:focus, .btn--outline-red:active {
  background: transparent;
  border-color: var(--color-branding-orange-dark);
  color: var(--color-branding-orange-dark);
}

.btn--outline2 {
  background: transparent;
  border-color: var(--color-branding-orange);
  color: var(--color-branding-orange);
  transition: color 200ms, background-color 200ms, border-color 200ms;
}
.btn--outline2:hover, .btn--outline2:focus, .btn--outline2:active {
  background: var(--color-branding-orange-dark);
  border-color: var(--color-branding-orange-dark);
  color: var(--color-gray-scale-white);
}

.btn--secondary {
  background: var(--color-branding-orange-light);
  border-color: var(--color-branding-orange-light);
  color: var(--color-branding-black);
}
.btn--secondary:hover, .btn--secondary:focus, .btn--secondary:active {
  background: var(--color-branding-orange-light-2);
  border-color: var(--color-branding-orange-light-2);
  color: var(--color-branding-black);
}

.btn__ico {
  height: 24px;
  margin: -5px;
  width: 24px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn__ico:first-child {
  margin-right: 0;
  margin-left: -10px;
}
.btn__ico:last-child {
  margin-right: -10px;
  margin-left: 0;
}

.btn--sm {
  font-size: 0.8571428571rem;
  line-height: 15px;
  padding: 8px 24px;
}
.btn--sm .btn__ico {
  margin: -10px -5px;
}
.btn--sm .btn__ico:first-child {
  margin-left: -10px;
}
.btn--sm .btn__ico:last-child {
  margin-right: -10px;
}

.btn--md {
  font-size: 1rem;
  line-height: 20px;
  padding: 10px 32px;
}

.btn--mdr {
  font-size: 0.8571428571rem;
  line-height: 20px;
  padding: 10px 32px;
}
@media (max-width: 1000px) {
  .btn--mdr {
    font-size: 0.8571428571rem;
    line-height: 14px;
    min-height: 36px;
    padding: 8px 24px;
  }
}

.btn--lg {
  font-size: 1rem;
  line-height: 24px;
  padding: 12px 30px;
}

.header__top-bar {
  background: var(--color-branding-orange);
  color: var(--color-gray-scale-white);
  text-align: center;
  font-weight: 600;
  position: relative;
}
.header__top-bar a {
  color: var(--color-gray-scale-white);
  text-decoration: underline;
}
.header__top-bar a:hover {
  text-decoration: none;
}

.header__top-bar--black {
  background: var(--Gray-Scale-Gray-900, #1a1a1a);
  color: #fff;
}
.header__top-bar--black a {
  color: var(--Branding-Orange, #ffa02f);
}
.header__top-bar--black .header__top-bar-close {
  color: #fff;
}
.header__top-bar--black .header__top-bar-close svg {
  fill: currentColor;
}

.header__top-bar--hidden {
  display: none;
}

.header__top-bar-content {
  padding: 9px 16px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__top-bar-close {
  width: 24px;
  height: 24px;
  border: unset;
  padding: 0;
  position: absolute;
  top: 9px;
  right: 16px;
  background: transparent;
  cursor: pointer;
}
.header__top-bar-close svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--color-gray-scale-gray–900);
}
.header__top-bar-close:hover {
  fill: var(--color-branding-black);
}

.header__sticky {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--color-gray-scale-white);
}
@media (max-height: 600px) {
  .header__sticky {
    position: relative;
  }
}

.header__logo {
  width: 103px;
  display: block;
  grid-area: logo;
}
.header__logo svg {
  display: block;
}

.header__middle {
  display: grid;
  gap: 12px;
  padding: 12px 0;
  align-items: center;
  justify-content: space-between;
  grid-template: [row1-start] "logo search links" min-content [row1-end]/0.5fr 400px 0.5fr;
}
@media (max-width: 1000px) {
  .header__middle {
    gap: 0;
    padding: 6px 0;
    grid-template: [row1-start] "hamburger logo links" min-content [row1-end]/1fr auto 1fr;
  }
}

@media (max-width: 1000px) {
  .header__middle--show-mobile-search {
    grid-template: [row1-start] "hamburger logo links" min-content [row1-end] [row2-start] "search search search" min-content [row2-end]/1fr auto 1fr;
  }
}

.header__bottom {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  gap: 48px;
  grid-template-columns: 75px auto;
  padding-bottom: 12px;
}
@media (max-width: 1000px) {
  .header__bottom {
    grid-auto-flow: row;
    gap: 0;
    grid-template-columns: unset;
  }
}

.dropdown-menu {
  border-radius: 8px;
  border: 1px solid var(--color-gray-scale-gray–100, #e6e6e6);
  background: #fff;
  box-shadow: 0px 8px 40px 0px rgba(0, 38, 3, 0.08);
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 4;
  display: none;
  top: 100%;
  right: 0;
  width: max-content;
  margin-top: 10px;
}
.dropdown-menu:before {
  content: "";
  height: 12px;
  position: absolute;
  top: -11px;
  left: -10px;
  right: -10px;
}
.dropdown-menu > ul {
  display: contents;
  padding: unset;
  margin: unset;
  list-style: none;
}

.dropdown-menu--open,
.dropdown-menu[aria-hidden=false] {
  display: flex;
}

.dropdown-menu__wrapper {
  position: relative;
}
.dropdown-menu__link,
.dropdown-menu__item {
  display: flex;
  gap: 8px;
  color: var(--color-branding-black);
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-gray-scale-gray–100);
  align-items: center;
  border: none;
  background: transparent;
}
.dropdown-menu__link:last-child,
.dropdown-menu__item:last-child {
  border-bottom: unset;
}

.dropdown-menu__link--compact {
  padding: 6px 16px;
  border: unset;
}

a.dropdown-menu__link,
button.dropdown-menu__link {
  text-decoration: none;
  cursor: pointer;
}
a.dropdown-menu__link:hover,
button.dropdown-menu__link:hover {
  color: var(--color-branding-orange);
}
a.dropdown-menu__link:hover .dropdown-menu__ico,
button.dropdown-menu__link:hover .dropdown-menu__ico {
  color: var(--color-branding-orange);
}

.header-top-navbar {
  background: var(--color-gray-scale-gray–900);
  box-shadow: 0px 1px 0px 0px #e5e5e5;
}
@media (max-width: 1000px) {
  .header-top-navbar {
    display: none;
  }
}

.header-top-navbar__wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 12px;
}

.header-top-navbar__links {
  display: flex;
  height: 21px;
  align-items: center;
  gap: 32px;
}

.header-top-navbar__link {
  display: flex;
  text-decoration: none;
  color: var(--color-gray-scale-white);
  position: relative;
  gap: 4px;
  align-items: center;
  color: var(--color-gray-scale-white);
}
.header-top-navbar__link:hover {
  text-decoration: underline;
}
.header-top-navbar__link:after {
  content: "";
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 3px;
  right: -16px;
}
.header-top-navbar__link:last-child:after {
  display: none;
}
.header-top-navbar__link svg {
  fill: var(--color-gray-scale-white);
}

.header-top-navbar__link--small {
  font-size: 0.8571428571rem;
}

.header-search {
  position: relative;
  max-width: 100%;
  grid-area: search;
}
@media (max-width: 1000px) {
  .header-search {
    display: none;
  }
}
@media (max-width: 1000px) {
  .header__middle--show-mobile-search .header-search {
    display: block;
  }
}
.header-search:has(.header-autocomplete-menu--active) .header-search__overlay {
  display: block;
}

.header-search__overlay {
  display: none;
}
@media (min-width: 1000px) {
  .header-search__overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0, 0, 0);
    opacity: 0.7;
    z-index: 1;
  }
}

.header-search__input-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
  .header-search__input-wrapper {
    margin-right: 52px;
  }
}

.header-search__input {
  font-size: 1rem;
  line-height: 20px;
  padding: 13px 125px 13px 44px;
  width: 100%;
  border: 1px solid var(--color-gray-scale-gray-500);
  border-radius: 200px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 300ms;
}
@media (max-width: 1000px) {
  .header-search__input {
    font-size: 1.1428571429rem;
    line-height: 20px;
    height: 36px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
.header-search__input:focus {
  outline: none;
  border-color: var(--color-gray-scale-gray-900);
  transition: border-color 300ms;
}
.header-search__input::-webkit-search-cancel-button {
  display: none;
}
.header-search__input::-webkit-input-placeholder {
  color: var(--color-gray-scale-gray-500);
}
.header-search__input::-moz-placeholder {
  color: var(--color-gray-scale-gray-500);
}
.header-search__input:focus {
  outline: none;
  border-color: var(--color-gray-scale-gray-900);
}
.header-search__input:focus::-webkit-input-placeholder {
  color: var(--color-gray-scale-gray-100);
}
.header-search__input:focus::-moz-placeholder {
  color: var(--color-gray-scale-gray-100);
}
.header-search__input:not(:placeholder-shown) ~ .header-search__reset-btn {
  display: block;
}

.header-search__reset-btn {
  position: absolute;
  top: 14px;
  right: 105px;
  padding: unset;
  background: unset;
  border: unset;
  cursor: pointer;
  display: none;
}
@media (max-width: 1000px) {
  .header-search__reset-btn {
    top: 9px;
  }
}
.header-search__reset-btn:hover {
  color: var(--color-branding-orange-dark);
}
.header-search__reset-btn svg {
  display: block;
  fill: currentColor;
}

.header-search__mobile-close-btn {
  display: none;
  background: unset;
  border: unset;
  cursor: pointer;
  font-size: 0.8571428571rem;
  font-weight: 700;
  line-height: 1.0714285714rem;
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: 1px;
}
@media (max-width: 1000px) {
  .header-search__mobile-close-btn {
    display: block;
  }
}
.header-search__mobile-close-btn:hover {
  color: var(--color-branding-orange-dark);
}

.header-search__ico {
  position: absolute;
  top: 14px;
  left: 16px;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .header-search__ico {
    top: 8px;
  }
}

.header-search__btn {
  position: absolute;
  top: 0;
  right: 0;
  border: unset;
  font-size: 1rem;
  line-height: 20px;
  font-weight: 700;
  border-radius: 200px;
  padding: 14px 24px;
  background: var(--color-branding-orange);
  color: #fff;
  cursor: pointer;
  width: 95px;
}
@media (max-width: 1000px) {
  .header-search__btn {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.header-search__btn:hover {
  background: var(--color-branding-orange-dark);
}

.header-action {
  display: flex;
  gap: 24px;
  grid-area: links;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .header-action {
    gap: 15px;
  }
}

.header-action__hamburger {
  border: unset;
  background: none;
  padding: 0;
  display: flex;
  gap: 8px;
  font-size: 1.0714285714rem;
  font-weight: 600;
  color: var(--color-branding-black);
  cursor: pointer;
  align-items: center;
  user-select: none;
}
.header-action__hamburger[aria-expanded=false] .header-action__ico-hamburger {
  display: block;
}
.header-action__hamburger[aria-expanded=false] .header-action__ico-close {
  display: none;
}
.header-action__hamburger[aria-expanded=true] .header-action__ico-hamburger {
  display: none;
}
.header-action__hamburger[aria-expanded=true] .header-action__ico-close {
  display: block;
}

.header-action__ico-close {
  display: none;
}

.header-action__hamburger--desktop {
  position: relative;
}
@media (max-width: 1000px) {
  .header-action__hamburger--desktop {
    display: none;
  }
}
.header-action__hamburger--desktop:after {
  content: "";
  width: 1px;
  background: var(--color-gray-scale-gray-50);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -24px;
}

.header-action__hamburger--mobile {
  display: none;
  grid-area: hamburger;
}
@media (max-width: 1000px) {
  .header-action__hamburger--mobile {
    display: flex;
  }
}

.header-action__link {
  display: flex;
  position: relative;
  color: var(--color-branding-black);
  text-decoration: none;
  gap: 12px;
  font-weight: 700;
  align-items: center;
}
.header-action__link svg {
  display: block;
  color: currentColor;
}

@media (max-width: 1000px) {
  .header-action__link--desktop {
    display: none;
  }
}

.header-action__link--mobile {
  display: none;
}
@media (max-width: 1000px) {
  .header-action__link--mobile {
    display: flex;
  }
}

.header-action__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  position: absolute;
  bottom: 50%;
  left: 18px;
  background: var(--color-branding-orange);
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.7142857143rem;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 700px) {
  .header-action__badge {
    left: 10px;
  }
}

@media (max-width: 700px) {
  .action__link-text {
    display: none;
  }
}

.header-product-menu {
  display: grid;
  gap: 20px;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(80px, auto));
  width: 100%;
}
@media (max-width: 1000px) {
  .header-product-menu {
    display: none;
    grid-auto-flow: row;
    grid-template-columns: unset;
    gap: unset;
  }
}

@media (max-width: 1000px) {
  .header-product-menu--show-mobile {
    display: grid;
    position: fixed;
    top: var(--sticky-header-bottom);
    height: calc(100dvh - var(--sticky-header-bottom));
    background: #fff;
    left: var(--base-layout-horizontal-padding);
    right: calc(var(--base-layout-horizontal-padding) + var(--scrollbar-placeholder-width, 0));
    overflow: auto;
    align-content: start;
    width: unset;
  }
}

.header-product-menu__button {
  display: none;
  width: 100%;
}
@media (max-width: 1000px) {
  .header-product-menu__button {
    display: flex;
  }
}
.header-product-menu__button svg {
  fill: var(--color-gray-scale-white);
}

.header-product-menu__button--active svg:last-child,
.header-product-menu__button[aria-expanded=true] svg:last-child {
  transform: rotate(180deg);
}

.header-product-menu__item {
  display: grid;
  grid-auto-flow: column;
  text-decoration: none;
  align-items: center;
  color: var(--color-branding-black);
  font-size: 1.1428571429rem;
  font-weight: 600;
  gap: 8px;
}
@media (max-width: 1000px) {
  .header-product-menu__item {
    justify-content: start;
    padding: 16px;
    border-bottom: 1px solid var(--color-gray-scale-gray–100);
    position: relative;
  }
}
.header-product-menu__item svg {
  fill: currentColor;
}
.header-product-menu__item:hover, .header-product-menu__item:focus {
  color: var(--color-branding-orange-dark);
}
@media (max-width: 1000px) {
  .header-product-menu__item:not(:last-child):after {
    content: url(/img/ico/menu-arrow.svg);
    width: 17px;
    height: 15px;
    position: absolute;
    top: 20px;
    right: 16px;
  }
}

.header-product-menu__item--back-to-root {
  font-weight: 600;
  display: none;
  background: unset;
  border-left: unset;
  border-right: unset;
  border-top: unset;
}
.header-product-menu__item--back-to-root:after {
  display: none;
}

.product-menu_department {
  display: grid;
  align-items: center;
  text-align: center;
}
@media (max-width: 1000px) {
  .product-menu_department {
    text-align: unset;
  }
}
@media (min-width: 1000px) {
  .product-menu_department:hover .product-menu__submenu-wrapper {
    display: grid;
  }
}
@media (max-width: 1000px) {
  .product-menu_department.menu-is-active > .header-product-menu__item {
    background: var(--Gray-Scale-Gray-50, #f2f2f2);
    font-weight: 700;
  }
  .product-menu_department.menu-is-active > .header-product-menu__item:after {
    display: none;
  }
  .product-menu_department.menu-is-active .header-product-menu__item--back-to-root {
    display: grid;
    background: unset;
    font-weight: 600;
  }
  .product-menu_department.menu-is-active .product-menu__submenu-wrapper {
    display: block;
  }
}
@media (max-width: 1000px) {
  .product-menu_department.menu-is-active-trail > .header-product-menu__item {
    display: none;
  }
  .product-menu_department.menu-is-active-trail .product-menu__submenu-wrapper {
    display: block;
  }
  .product-menu_department.menu-is-active-trail .header-product-menu__item--back-to-root {
    display: grid;
    background: unset;
    font-weight: 600;
  }
}

@media (min-width: 1000px) {
  .product-menu_department:hover .header-product-menu__item--l1 {
    position: relative;
  }
  .product-menu_department:hover .header-product-menu__item--l1:before {
    content: "";
    left: -20px;
    right: -15px;
    bottom: -30px;
    position: absolute;
    background: transparent;
    height: 50px;
  }
}

@media (min-width: 1000px) {
  .header-product-menu__item--l1 {
    justify-content: space-evenly;
  }
}

@media (max-width: 1000px) {
  .product-menu__submenu {
    display: none;
  }
}

.product-menu__submenu--l2 {
  display: grid;
  grid-template-columns: 64px auto;
  grid-auto-rows: min-content;
  gap: 24px;
  grid-auto-flow: column;
  align-items: self-start;
}
@media (max-width: 1000px) {
  .product-menu__submenu--l2 {
    display: block;
  }
}
@media (max-width: 1000px) {
  .product-menu__submenu--l2.menu-is-active .product-menu__submenu {
    display: block;
  }
  .product-menu__submenu--l2.menu-is-active > .product-menu__submenu-content > .header-product-menu__item {
    background: var(--Gray-Scale-Gray-50, #f2f2f2);
    font-weight: 700;
  }
  .product-menu__submenu--l2.menu-is-active > .product-menu__submenu-content > .header-product-menu__item:after {
    display: none;
  }
}

@media (min-width: 1000px) {
  .product-menu__submenu-content {
    display: grid;
    gap: 20px;
    grid-auto-flow: row;
    align-self: center;
  }
}

.header-product-menu__menu-item--l2 {
  font-size: 1.1428571429rem;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .header-product-menu__menu-item--l2 {
    font-weight: 600;
  }
}

@media (max-width: 1000px) {
  .product-menu__submenu-img {
    display: none;
  }
}
.product-menu__submenu-img img,
.product-menu__submenu-img svg {
  display: block;
}

.header-product-menu__menu-item--l3 {
  font-weight: normal;
}
.header-product-menu__menu-item--l3:after {
  display: none;
}

.header-product-menu__item--action {
  color: var(--color-branding-orange);
}

.product-menu__submenu-wrapper {
  display: none;
  text-align: left;
}
@media (min-width: 1000px) {
  .product-menu__submenu-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    column-gap: 40px;
    row-gap: 48px;
    z-index: 2;
    padding: 40px;
    border-radius: 10px;
    background: var(--color-gray-scale-white);
    box-shadow: 0px 8px 40px 0px rgba(0, 38, 3, 0.08);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    overflow: auto;
    max-height: calc(100dvh - var(--sticky-header-bottom));
  }
}
.product-menu__submenu-wrapper.is-visible {
  display: grid;
}

@media (max-width: 1000px) {
  .menu-is-inactive {
    display: none;
  }
}

.header-main-menu {
  display: grid;
  grid-auto-flow: row;
  position: absolute;
  border-radius: 8px;
  background: var(--color-gray-scale-white);
  box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  display: none;
}
.header-main-menu > ul {
  display: contents;
  margin: unset;
  padding: unset;
  list-style: none;
}
@media (min-width: 1000px) {
  .header-main-menu {
    bottom: 0px;
    transform: translateY(100%);
    left: -15px;
  }
  .header-main-menu:hover, .header-main-menu[aria-hidden=false] {
    display: grid;
  }
}
@media (max-width: 1000px) {
  .header-main-menu[aria-hidden=false] {
    display: grid;
    position: fixed;
    top: var(--sticky-header-middle);
    height: calc(100dvh - var(--sticky-header-middle));
    background: #fff;
    left: var(--base-layout-horizontal-padding);
    right: calc(var(--base-layout-horizontal-padding) + var(--scrollbar-placeholder-width, 0));
    overflow: auto;
    border-radius: unset;
    box-shadow: unset;
    align-content: start;
    border-top: 1px solid var(--color-gray-scale-gray–100);
  }
}

.header-main-menu__item {
  font-size: 1.1428571429rem;
  color: var(--color-branding-black);
  border-bottom: 1px solid var(--color-gray-scale-gray–100);
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  height: 50px;
}
.header-main-menu__item svg {
  fill: currentColor;
}
.header-main-menu__item a {
  text-decoration: none;
}

a.header-main-menu__item {
  text-decoration: none;
}
a.header-main-menu__item:hover {
  color: var(--color-branding-orange-dark);
}

.header-main-menu__item--mobile-only {
  display: none;
}
@media (max-width: 1000px) {
  .header-main-menu__item--mobile-only {
    display: flex;
  }
}

.header-main-menu__item--login {
  background: var(--color-branding-orange-light);
}

.header-main-menu__contacts {
  padding: 32px 0;
  flex-direction: column;
  gap: 16px;
  display: none;
}
@media (max-width: 1000px) {
  .header-main-menu__contacts {
    display: flex;
  }
}

.header-main-menu__contact {
  display: flex;
  color: var(--color-branding-black);
  font-size: 1.1428571429rem;
  font-weight: 700;
  text-decoration: none;
  gap: 10px;
  padding: 0 16px;
}
.header-main-menu__contact:hover {
  color: var(--color-branding-orange-dark);
}
.header-main-menu__contact svg {
  fill: var(--color-branding-orange);
}
.header-main-menu__contact small {
  color: var(--color-gray-scale-gray-500);
  font-size: 0.8571428571rem;
  font-weight: 400;
  line-height: 1.29;
}

.header-cart-menu {
  padding: 16px;
  position: absolute;
  border-radius: 8px;
  background: var(--color-gray-scale-white);
  box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border: 1px solid var(--color-gray-scale-gray–100);
  width: 300px;
  right: -15px;
  bottom: 0px;
  transform: translateY(100%);
  display: none;
}
.header-cart-menu:hover, .header-cart-menu[aria-hidden=false] {
  display: block;
}

.header-action__link-wrapper {
  position: relative;
}

@media (min-width: 1000px) {
  .header-action__link--cart:hover:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px;
  }
  .header-action__link--cart:hover + .header-cart-menu {
    display: block;
  }
}

.header-cart-menu__items {
  display: grid;
  grid-auto-flow: row;
  gap: 12px;
}

.header-cart-menu__item {
  display: grid;
  column-gap: 16px;
  row-gap: 4px;
  grid-template: "image link link" "image quantity price";
  grid-template-columns: 48px auto 90px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gray-scale-gray–100);
  text-decoration: none;
  color: var(--color-branding-black);
}
.header-cart-menu__item:hover .header-cart-menu__item-link {
  text-decoration: none;
}

.header-cart-menu__item-img {
  grid-area: image;
}

.header-cart-menu__item-link {
  grid-area: link;
  font-size: 0.9285714286rem;
  font-weight: 400;
  text-decoration: underline;
}

.header-cart-menu__item-quantity {
  color: var(--color-gray-scale-gray-400);
  text-align: right;
}

.header-cart-menu__item-price {
  font-weight: 700;
  text-align: right;
}

.header-cart-menu__summary {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

.header-cart-menu__summary-row {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.header-cart-menu__summary-price {
  width: 90px;
  text-align: right;
}

.header-cart-menu__summary-row--without-vat {
  color: var(--color-gray-scale-gray-400);
}

.header-cart-menu__show-cart {
  margin-left: auto;
  margin-top: 16px;
}

.header-autocomplete-menu {
  position: absolute;
  border-radius: 8px;
  background: var(--color-gray-scale-white);
  box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border: 1px solid var(--color-gray-scale-gray–100);
  gap: 0;
  margin-top: 8px;
  display: none;
  max-height: calc(100dvh - var(--sticky-header-middle));
  overflow: auto;
  scrollbar-width: thin;
  grid-template-columns: 100%;
  width: 100%;
}
@media (min-width: 1000px) {
  .header-autocomplete-menu:has(.header-autocomplete-menu__col2) {
    grid-template-columns: 400px minmax(0, 1fr);
    width: 700px;
  }
}
.header-autocomplete-menu::backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: red;
}

.header-autocomplete-menu--active {
  display: grid;
}
@media (max-width: 1000px) {
  .header-autocomplete-menu--active {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: var(--sticky-header-middle);
    height: calc(100dvh - var(--sticky-header-middle));
    left: 0;
    right: var(--scrollbar-placeholder-width, 0);
    margin: unset;
    border: unset;
    box-shadow: unset;
    width: auto;
    padding: 0;
  }
}

.header-autocomplete-menu__col,
.header-autocomplete-menu__col1,
.header-autocomplete-menu__col2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
}
@media (max-width: 1000px) {
  .header-autocomplete-menu__col,
  .header-autocomplete-menu__col1,
  .header-autocomplete-menu__col2 {
    padding-top: 4px;
  }
}

.header-autocomplete-menu__col:last-child {
  padding-bottom: 24px;
}

.header-autocomplete-menu__col2 {
  background: var(--color-gray-scale-gray-50);
  padding-bottom: 24px;
}

.header-autocomplete-menu__category-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.9285714286rem;
}
.header-autocomplete-menu__category-item svg {
  align-self: flex-start;
  fill: currentColor;
  flex-shrink: 0;
}
.header-autocomplete-menu__category-item:hover {
  text-decoration: none;
}

.header-autocomplete-menu__group-heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.header-autocomplete-menu__remove-all-history {
  background: unset;
  border: unset;
  padding: unset;
  cursor: pointer;
  color: var(--color-branding-orange);
}
.header-autocomplete-menu__remove-all-history:hover {
  color: var(--color-gray-scale-gray-700);
}

.header-autocomplete-menu__history-query-group,
.header-autocomplete-menu__category-group {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1000px) {
  .header-autocomplete-menu__history-query-group,
  .header-autocomplete-menu__category-group {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1000px) {
  .header-autocomplete-menu__history-query-group {
    order: 2;
  }
}

.header-autocomplete-menu__popular-query-group,
.header-autocomplete-menu__history-query-group {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
@media (max-width: 1000px) {
  .header-autocomplete-menu__popular-query-group,
  .header-autocomplete-menu__history-query-group {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-autocomplete-menu__query-group-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.header-autocomplete-menu__query-item {
  display: flex;
  border-radius: 100px;
  background: var(--color-gray-scale-gray-50);
  color: var(--color-branding-black);
  padding: 6px 12px;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}
.header-autocomplete-menu__query-item a {
  color: inherit;
}
.header-autocomplete-menu__query-item button {
  display: flex;
  border: unset;
  background: unset;
  padding: unset;
  color: var(--color-branding-orange);
  cursor: pointer;
}
.header-autocomplete-menu__query-item button svg {
  fill: currentColor;
}
.header-autocomplete-menu__query-item button:hover {
  color: var(--color-gray-scale-gray-700);
}
.header-autocomplete-menu__query-item:has(a:hover) {
  background: var(--color-gray-scale-gray-100);
  color: var(--color-branding-black);
}
.header-autocomplete-menu__query-item .item-content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.header-autocomplete-menu__query-item--white {
  background: var(--color-gray-scale-white);
}

a.header-autocomplete-menu__query-item:hover {
  background: var(--color-gray-scale-gray-100);
  color: var(--color-branding-black);
}

.header-autocomplete-menu__product-group {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1000px) {
  .header-autocomplete-menu__product-group {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header-autocomplete-menu__product-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  color: var(--color-branding-black);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-gray-scale-gray–100);
}
.header-autocomplete-menu__product-item:hover {
  color: var(--color-branding-black);
}
.header-autocomplete-menu__product-item:hover .item-link {
  text-decoration: underline;
  color: var(--color-branding-orange-dark);
}
.header-autocomplete-menu__product-item img {
  display: block;
}
.header-autocomplete-menu__product-item .item-link {
  display: block;
}
.header-autocomplete-menu__product-item .item-content-label {
  flex: 0 1 auto;
  color: var(--color-gray-scale-white) !important;
  font-size: 0.7142857143rem;
  line-height: 1.3571428571rem;
  padding: 2px 4px;
  border-radius: 4px;
  background: var(--color-branding-black);
}
.header-autocomplete-menu__product-item .item-content-label.color-orange {
  background: var(--color-branding-warning);
}
.header-autocomplete-menu__product-item .item-content-label.color-blue {
  background: var(--color-branding-blue);
}
.header-autocomplete-menu__product-item .item-content-label.color-red {
  background: var(--color-branding-error);
}
.header-autocomplete-menu__product-item .item-content-old-price {
  text-decoration: line-through;
  color: var(--color-gray-scale-gray-500);
  font-size: 1rem;
  font-weight: 400;
}
.header-autocomplete-menu__product-item .item-content-action-price {
  color: var(--color-branding-orange-dark);
  font-size: 1rem;
  font-weight: 700;
}
.header-autocomplete-menu__product-item .item-content-price {
  font-size: 1rem;
  font-weight: 700;
}
.header-autocomplete-menu__product-item .item-content-price-label {
  display: flex;
  align-items: center;
  font-size: 0.8571428571rem;
  line-height: 1.3571428571rem;
  gap: 4px;
  border-radius: 8px;
  background: var(--color-branding-orange-light);
  padding: 2px 4px;
  color: var(--color-branding-orange-dark);
}
.header-autocomplete-menu__product-item .item-content-price-label strong {
  font-size: 1rem;
}
.header-autocomplete-menu__product-item .item-content-price-label svg {
  flex-shrink: 0;
}
.header-autocomplete-menu__product-item .item-content-warehouse {
  display: flex;
  align-items: center;
  font-size: 0.8571428571rem;
  line-height: 1.29;
  gap: 8px;
}
.header-autocomplete-menu__product-item .item-content-warehouse svg {
  flex-shrink: 0;
}
.header-autocomplete-menu__product-item .item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header-autocomplete-menu__product-item .item-content-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.header-autocomplete-menu__product-item .item-content-rating {
  font-size: 0.8571428571rem;
  display: flex;
  align-self: center;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}
.header-autocomplete-menu__product-item .item-content-rating svg {
  flex-shrink: 0;
  fill: var(--color-branding-warning);
  color: var(--color-branding-warning);
}

.header-autocomplete-menu__close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  padding: unset;
  background: unset;
  border: unset;
}
.header-autocomplete-menu__close-button svg {
  pointer-events: none;
  fill: currentColor;
}
.header-autocomplete-menu__close-button:hover {
  color: var(--color-branding-orange-dark);
}
@media (max-width: 1000px) {
  .header-autocomplete-menu__close-button {
    display: none;
  }
}

.header-autocomplete-menu__empty-section {
  grid-column: 1/-1;
  padding: 24px 16px;
  background: url("/img/autocomplete/empty-decoration.svg") 110% 110% no-repeat;
  background-size: 127px 130px;
}
@media (max-width: 1000px) {
  .header-autocomplete-menu__empty-section {
    padding-top: 150px;
    background: url("/img/autocomplete/empty-decoration.svg") 50% 0 no-repeat;
    background-size: 155px 165px;
  }
}
.header-autocomplete-menu__empty-section h2,
.header-autocomplete-menu__empty-section h3 {
  font-size: 1.1428571429rem;
  margin: 0 0 12px;
  font-weight: 700;
}
.header-autocomplete-menu__empty-section ul {
  margin: 0;
  font-size: 0.9285714286rem;
  line-height: 1.7142857143rem;
  padding-left: 1.7142857143rem;
  max-width: 320px;
}

.header-autocomplete-menu__bottom-group {
  display: flex;
  justify-content: center;
  padding: 16px 16px;
  grid-column: 1/-1;
}
@media (max-width: 1000px) {
  .header-autocomplete-menu__bottom-group .btn {
    width: 100%;
  }
}

.breadcrumbs {
  display: flex;
  gap: 4px;
  padding: 19px 0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 600px) {
  .breadcrumbs {
    font-size: 0.8571428571rem;
    padding: 12px 0;
  }
}
.breadcrumbs eta-carousel {
  display: flex;
  width: 100%;
}
.breadcrumbs eta-carousel::part(button) {
  display: none;
}

.breadcrumbs__item {
  display: flex;
  gap: 4px;
  align-items: center;
  color: var(--color-gray-scale-gray-400);
}
.breadcrumbs__item a {
  color: var(--color-gray-scale-gray-400);
  text-decoration: none;
}
.breadcrumbs__item a:hover {
  color: var(--color-branding-orange);
}
.breadcrumbs__item svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
@media (max-width: 600px) {
  .breadcrumbs__item svg {
    width: 16px;
    height: 16px;
  }
}

.breadcrumbs__item--is-active {
  font-weight: 700;
}
.breadcrumbs__item--is-active span,
.breadcrumbs__item--is-active a {
  color: var(--color-branding-orange);
}

.breadcrumbs__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.breadcrumbs__right {
  padding: 19px 0;
}
@media (max-width: 600px) {
  .breadcrumbs__right {
    display: none;
  }
}
@media (max-width: 600px) {
  .breadcrumbs__right {
    font-size: 0.8571428571rem;
    padding: 12px 0;
  }
}

.form-select {
  width: 100%;
  color: var(---color-branding-black);
  display: flex;
  position: relative;
  font-family: "Open Sans", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
  border: 1px solid var(--color-gray-scale-gray-100);
  border-radius: 6px;
  background: #fff;
}
.form-select::after {
  content: "";
  background: url("../../img/ico/chevron-down.svg");
  width: 16px;
  height: 16px;
  display: block;
  align-self: center;
  margin-right: 16px;
}
.form-select select {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  padding: 14px 42px 14px 16px;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}

.form-row-wrapper {
  display: grid;
  gap: 14px;
}
.form-row-wrapper + .form-row-wrapper--extra-space {
  margin-top: 24px;
}

.form-row-wrapper--extra-space {
  gap: 24px;
}

.form-row {
  display: grid;
  gap: 8px;
  grid-column-start: 1;
  grid-column-end: span 2;
}

.form-row--column1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
@media (max-width: 600px) {
  .form-row--column1 {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}

.form-row--column2 {
  grid-column-start: 2;
  grid-column-end: 2;
}
@media (max-width: 600px) {
  .form-row--column2 {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}

.form-toggle-area {
  display: contents;
}

.form-row-thirds-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 14px;
  grid-column: span 2;
}
.form-row-thirds-wrapper .form-row {
  grid-column: unset;
}

.form-row--checkbox {
  grid-auto-flow: column;
  justify-content: start;
}

.form-row--radio {
  grid-auto-flow: column;
  grid-template-columns: 20px auto;
  column-gap: 14px;
  align-items: center;
}
.form-row--radio .form-radio--delivery {
  margin-top: 10px;
  align-self: start;
}

.form-row__label {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.form-row__label--pretty-text-wrap {
  display: block;
  text-wrap: pretty;
}

.form-row__label--lg {
  font-weight: 600;
  font-size: 1.7142857143rem;
}
@media (max-width: 600px) {
  .form-row__label--lg {
    font-size: 1.2857142857rem;
  }
}

.form-row__label-payment {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 8px;
  align-items: center;
}
.form-row__label-payment .price {
  margin-left: auto;
}
.form-row__label-payment .icon {
  display: flex;
}

.form-row__label-delivery {
  width: 100%;
  font-weight: 600;
  display: grid;
  column-gap: 16px;
  grid-template-columns: 83px auto auto;
  grid-template-areas: "icon label price" "icon date .";
}
@media (max-width: 600px) {
  .form-row__label-delivery {
    grid-template-columns: 83px auto;
    grid-template-areas: "icon price" "label label" "date date";
  }
}
.form-row__label-delivery .icon {
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-row__label-delivery .icon svg,
.form-row__label-delivery .icon img {
  display: block;
}
.form-row__label-delivery .label {
  grid-area: label;
}
.form-row__label-delivery .date {
  grid-area: date;
  font-size: 0.8571428571rem;
  font-weight: 400;
  color: var(--color-gray-scale-gray-500);
}
.form-row__label-delivery .price {
  grid-area: price;
  text-align: right;
}
@media (max-width: 600px) {
  .form-row__label-delivery .price {
    align-self: center;
  }
}
.form-row__label-delivery .selected-pickuppoint {
  grid-area: date;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 400;
}
@media (max-width: 600px) {
  .form-row__label-delivery .selected-pickuppoint {
    padding-top: 8px;
  }
}
.form-row__label-delivery .selected-pickuppoint > * {
  display: flex;
  gap: 4px;
  align-items: center;
}

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

.form-radio-group {
  border: 1px solid var(--color-border-border);
  border-radius: 6px;
}
.form-radio-group .form-row {
  padding: 16px;
  border-bottom: 1px solid var(--color-border-border);
}
.form-radio-group .form-row:last-child {
  border-bottom: none;
}

.form-input {
  position: relative;
}
.form-input input {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--color-gray-scale-gray-700);
  outline: none;
}
.form-input input::placeholder {
  color: var(--color-gray-scale-gray-500);
}
.form-input input:focus {
  border-color: var(--color-gray-scale-gray-900);
}
.form-input input:focus::placeholder {
  opacity: 0.3;
}

.form-input--error input {
  border-color: var(--color-branding-error);
  padding-right: 35px;
}

.form-input__error-message {
  margin-top: 6px;
  font-size: 0.8571428571rem;
  font-weight: 600;
  display: none;
  color: var(--color-branding-error);
}
.form-input--error .form-input__error-message {
  display: block;
}

.form-input__error-ico {
  position: absolute;
  top: 14px;
  right: 11px;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: none;
}
.form-input--error .form-input__error-ico {
  display: block;
}

.form-textarea {
  position: relative;
}
.form-textarea textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--color-gray-scale-gray-100);
  outline: none;
}
.form-textarea textarea::placeholder {
  color: var(--color-gray-scale-gray-500);
}
.form-textarea textarea:focus {
  border-color: var(--color-gray-scale-gray-500);
}
.form-textarea textarea:focus::placeholder {
  opacity: 0.3;
}

.form-input--password input {
  padding-right: 36px;
}

.form-select {
  padding: 12px 32px 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--color-gray-scale-gray–100);
  font-size: 1rem;
  line-height: 24px;
  display: block;
  width: 100%;
  outline: none;
  cursor: pointer;
  appearance: none;
  margin: 0;
  background: #fff url(/img/arrow/drop-small.svg) no-repeat right 8px center/24px;
}
.form-select::-ms-expand {
  display: none;
}
.form-select option {
  color: inherit;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  position: relative;
}
.form-checkbox input {
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
  cursor: pointer;
}
.form-checkbox input:checked + .decoration {
  border-width: 0;
  background: url("/img/ico/check.svg");
}
.form-checkbox input:hover:not([disabled]) + .decoration {
  border-color: var(--color-branding-orange-dark);
}
.form-checkbox input:focus + .decoration {
  outline: 2px solid var(--color-gray-scale-gray-900);
}
.form-checkbox .decoration {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 3px;
  border: 1px solid var(--color-gray-scale-gray-600);
  background: #fff;
}
.form-checkbox:hover .decoration {
  border-color: var(--color-branding-orange);
}

.form-radio {
  width: 20px;
  height: 20px;
  position: relative;
}
.form-radio input {
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.form-radio input:checked + .decoration {
  border-color: var(--color-branding-orange);
}
.form-radio input:checked + .decoration::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: var(--color-branding-orange);
}
.form-radio input:hover:not([disabled]) + .decoration {
  border-color: var(--color-branding-orange-dark);
}
.form-radio input:focus + .decoration {
  outline: 2px solid var(--color-gray-scale-gray-100);
}
.form-radio .decoration {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border: 1px solid var(--color-gray-scale-gray-100);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-radio:hover .decoration {
  border-color: var(--color-branding-orange);
}

.form-input__right-ico {
  position: absolute;
  top: 12px;
  right: 8px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: unset;
  padding: unset;
  background: transparent;
  cursor: pointer;
}
.form-input__right-ico svg {
  fill: var(--color-gray-scale-gray–900);
}
.form-input__right-ico:hover svg, .form-input__right-ico[aria-pressed=true] svg {
  fill: var(--color-branding-orange);
}
.form-input__right-ico:hover svg {
  fill: var(--color-branding-orange-dark);
}
.form-input__right-ico:focus {
  outline: 2px solid var(--color-gray-scale-gray-100);
  border-radius: 4px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.form-wrapper > .form-fieldset {
  margin-bottom: 16px;
}

.form-fieldset {
  padding: 0;
  border: 0;
}

.form-legend {
  font-size: 1.7142857143rem;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .form-legend {
    font-size: 1.2857142857rem;
  }
}
.form-legend + .form-legend {
  margin-top: -16px;
}
.form-legend h1,
.form-legend h2,
.form-legend h3,
.form-legend h4 {
  margin: 0;
  font-size: 1.7142857143rem;
  font-weight: 600;
  line-height: 150%;
}
@media (max-width: 600px) {
  .form-legend h1,
  .form-legend h2,
  .form-legend h3,
  .form-legend h4 {
    font-size: 1.2857142857rem;
  }
}

.form-legend--small {
  color: var(--text-text);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.form-sale-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-column-start: 1;
  grid-column-end: span 2;
}

.form-sale-vouchers {
  grid-column-start: 1;
  grid-column-end: span 2;
}

.plakaty__product-tile {
  grid-row: span 6;
  grid-template-rows: subgrid;
}
.plakaty__product-tile a {
  display: block;
}
.plakaty__product-tile img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.plakaty__product-tile-img--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plakaty__product-tile-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
.plakaty__product-tile-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.plakaty__ears {
  position: relative;
}
@media (max-width: 1400px) {
  .plakaty__ears {
    display: none;
  }
}

.plakaty__left-ear,
.plakaty__right-ear {
  overflow: hidden;
  position: absolute;
  top: 62px;
}

.plakaty__right-ear {
  left: calc(100% + 40px);
}

.plakaty__left-ear {
  right: calc(100% + 40px);
}

.ajax-loading__overlay-element {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10000;
  cursor: wait;
}
.ajax-loading__overlay-element:before {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 40%;
  left: 50%;
  background: url("/img/ico/loader.svg");
  background-size: cover;
  margin: -24px 0 0 -24px;
  animation: ajax-spinner 1000ms infinite;
}

.ajax-loading--pointer-events {
  pointer-events: none;
}

@keyframes ajax-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.footer {
  background: var(--color-gray-scale-gray–900, #1a1a1a);
  color: #fff;
  position: relative;
}
.footer .base-layout__inner {
  position: relative;
}

.footer-links {
  padding: 40px 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  column-gap: 20px;
  row-gap: 32px;
  border-bottom: 1px solid var(--color-gray-scale-gray–200);
}
@media (max-width: 1000px) {
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}
@media (max-width: 700px) {
  .footer-links {
    grid-template-columns: repeat(auto-fit, 100%);
    row-gap: 12px;
    padding: 16px 0 16px;
    border-bottom: 12px;
  }
}

.footer-links__second-level[hidden] {
  display: none;
}
@media (max-width: 700px) {
  .footer-links__second-level[hidden] {
    display: block;
  }
}

.footer-links__show-more {
  border: unset;
  padding: unset;
  margin: unset;
  background: unset;
  color: #fff;
  display: flex;
  font-size: 1rem;
  align-items: center;
  margin-top: 12px;
}
@media (max-width: 700px) {
  .footer-links__show-more {
    display: none;
  }
}
.footer-links__show-more:hover {
  color: var(--color-branding-orange);
  cursor: pointer;
}
.footer-links__show-more:focus {
  outline: 2px solid var(--color-branding-orange);
  border-radius: 2px;
}
.footer-links__show-more svg {
  fill: var(--color-branding-orange);
}
.footer-links__show-more[hidden] {
  display: none;
}

.footer-contacts {
  padding: 10px 0;
}

.footer-links__details1 {
  position: relative;
}
@media (max-width: 700px) {
  .footer-links__details1 {
    border-bottom: 1px solid var(--color-gray-scale-gray–700);
    padding: 0 12px;
  }
}
.footer-links__details1 > input[type=checkbox] {
  display: none;
}
.footer-links__details1 > input[type=checkbox]:checked ~ .footer-links__details-inner {
  display: flex;
}
.footer-links__details1 > input[type=checkbox]:checked ~ svg {
  transform: rotate(180deg);
}
.footer-links__details1 label,
.footer-links__details1 h5 {
  display: block;
  list-style: none;
  color: var(--color-gray-scale-white, #fff);
  margin-bottom: 20px;
  font-size: 1.1428571429rem;
}
@media (max-width: 700px) {
  .footer-links__details1 label,
  .footer-links__details1 h5 {
    padding-bottom: 12px;
    margin-bottom: unset;
  }
}
.footer-links__details1 > svg {
  display: none;
  position: absolute;
  top: 0;
  right: 12px;
  fill: #fff;
  pointer-events: none;
}
@media (max-width: 700px) {
  .footer-links__details1 > svg {
    display: block;
  }
}

.footer-links__details2 > input[type=checkbox] {
  display: none;
}
.footer-links__details2 > input[type=checkbox]:checked ~ .footer-links__details-inner {
  display: flex;
}
.footer-links__details2 > input[type=checkbox]:checked ~ label {
  display: none;
}
.footer-links__details2 label {
  display: flex;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 700px) {
  .footer-links__details2 label {
    display: none;
  }
}
.footer-links__details2 label:hover {
  color: var(--color-branding-orange);
  cursor: pointer;
}
.footer-links__details2 label svg {
  fill: var(--color-branding-orange);
}
.footer-links__details2 .footer-links__details-inner {
  display: none;
}
@media (max-width: 700px) {
  .footer-links__details2 .footer-links__details-inner {
    display: flex;
  }
}

.footer-links__details-inner {
  margin: unset;
  padding: unset;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 700px) {
  .footer-links__details-inner {
    display: none;
    padding-bottom: 12px;
  }
}
.footer-links__details-inner a {
  text-decoration: none;
  color: var(--color-gray-scale-gray-200);
}
.footer-links__details-inner a:hover {
  color: var(--color-branding-orange);
}
.footer-links__details-inner a:focus {
  outline: 2px solid var(--color-branding-orange);
  border-radius: 2px;
}

.footer-bottom {
  display: grid;
  column-gap: 40px;
  padding: 32px 0;
  font-size: 1.1428571429rem;
  grid-template-rows: auto;
  grid-template-areas: "logo title . . badges" "logo contacts social-media . badges" "copyright copyright back2top vendor vendor";
  grid-template-columns: 109px max-content auto auto auto;
  grid-template-rows: 40px 40px auto;
}
@media (max-width: 980px) {
  .footer-bottom {
    grid-template-areas: "logo title . . badges" "logo contacts contacts . badges" "logo social-media social-media . badges" "copyright copyright back2top vendor vendor";
  }
}
@media (max-width: 740px) {
  .footer-bottom {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "logo" "title" "contacts" "social-media" "badges" "back2top" "copyright" "vendor";
  }
}

.footer-bottom__logo {
  grid-area: logo;
  align-self: center;
}
.footer-bottom__logo img {
  display: block;
}
@media (max-width: 740px) {
  .footer-bottom__logo {
    justify-self: center;
  }
}

.footer-bottom__title {
  grid-area: title;
  font-weight: 600;
  align-self: center;
}
@media (max-width: 740px) {
  .footer-bottom__title {
    justify-self: center;
    padding: 16px 0;
  }
}

.footer-bottom__contacts {
  grid-area: contacts;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 740px) {
  .footer-bottom__contacts {
    justify-self: center;
  }
}
.footer-bottom__contacts a {
  display: block;
  padding: 4px 0;
  color: #fff;
  text-underline-offset: 4px;
  text-decoration-color: var(--color-branding-orange);
}
.footer-bottom__contacts a:hover {
  text-decoration: none;
}

.footer-bottom__social-media {
  grid-area: social-media;
  display: flex;
  gap: 8px;
}
@media (max-width: 740px) {
  .footer-bottom__social-media {
    justify-self: center;
    gap: 24px;
    padding: 40px 0;
  }
}
.footer-bottom__social-media a {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--color-gray-scale-white);
}
.footer-bottom__social-media a svg {
  display: block;
  fill: currentColor;
}

.footer-bottom__back2top {
  grid-area: back2top;
}
@media (max-width: 740px) {
  .footer-bottom__back2top {
    position: relative;
  }
  .footer-bottom__back2top:before {
    content: "";
    height: 1px;
    position: absolute;
    top: 50%;
    left: -16px;
    right: -16px;
    background: var(--color-gray-scale-gray-700);
  }
}
@media (max-width: 600px) {
  .footer-bottom__back2top:before {
    left: -10px;
    right: -10px;
  }
}

.footer-bottom__badges {
  grid-area: badges;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
@media (max-width: 740px) {
  .footer-bottom__badges {
    justify-self: center;
    padding-bottom: 20px;
  }
}
@media (max-width: 740px) {
  .footer-bottom__badges svg {
    width: 98px;
    height: 98px;
  }
}

.footer-bottom__copyright,
.footer-bottom__vendor {
  padding: 24px 0;
  color: var(--color-gray-scale-gray–200);
}
@media (max-width: 740px) {
  .footer-bottom__copyright,
  .footer-bottom__vendor {
    justify-self: center;
    padding: 4px 0;
  }
}
.footer-bottom__copyright a,
.footer-bottom__vendor a {
  text-decoration: none;
  color: var(--color-gray-scale-gray–200);
}
.footer-bottom__copyright a:hover,
.footer-bottom__vendor a:hover {
  text-decoration: none;
}
.footer-bottom__copyright a:focus,
.footer-bottom__vendor a:focus {
  outline: 2px solid var(--color-branding-orange);
}

.footer-bottom__copyright {
  grid-area: copyright;
}

.footer-bottom__vendor {
  text-align: right;
  grid-area: vendor;
}

.footer__back2top-link {
  width: 40px;
  height: 40px;
  background: var(--color-branding-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 32px;
  right: -60px;
}
@media (max-width: 1460px) {
  .footer__back2top-link {
    display: none;
  }
}
@media (max-width: 740px) {
  .footer__back2top-link {
    display: flex;
    position: relative;
    top: auto;
    right: auto;
    margin: auto auto;
  }
}
.footer__back2top-link svg {
  fill: #fff;
}

:host,
:root {
  --alert-margin-bottom: 16px;
}

.alert {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: var(--color-branding-blue-light);
  color: var(--color-branding-blue-dark);
  margin-bottom: var(--alert-margin-bottom);
}
.alert .alert__ico {
  fill: currentColor;
}

.alert--center {
  justify-content: center;
}

.alert--green {
  background: var(--color-branding-green-40);
  color: var(--color-branding-success);
}

.alert--orange {
  background: var(--color-branding-orange-light);
  color: var(--color-branding-orange);
}

.alert--lg {
  font-size: 2rem;
  padding: 12px 16px;
}

.alert--md {
  font-size: 1.1428571429rem;
  padding: 12px 16px;
}

.alert--payment-ok {
  color: #fff;
  border-radius: 10px;
  padding: 16px 16px;
  background: var(--branding-success, #00b207);
}
@media (max-width: 600px) {
  .alert--payment-ok {
    padding: 12px 12px;
  }
}

.alert--payment-nok {
  color: #fff;
  border-radius: 10px;
  background: var(--branding-error, #ea4b48);
}

.alert__title {
  font-size: 1.7142857143rem;
  line-height: 36px;
}
@media (max-width: 600px) {
  .alert__title {
    font-size: 1.2857142857rem;
    line-height: 27px;
  }
}

.alert__text {
  font-size: 1rem;
  line-height: 19px;
  margin: 0;
}

.alert__note {
  font-weight: normal;
  color: var(--color-branding-black);
}

.alert__content .alert__text {
  padding-bottom: 6px;
}
.alert__content .alert__content-note {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.alert__reservation {
  font-size: 1.4285714286rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.alert__reservation small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-branding-black);
}

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

.text-price {
  display: inline-flex;
  gap: 4px;
}

.text-price__before {
  color: var(--color-gray-scale-gray-400);
  font-weight: 600;
  text-decoration: line-through;
}

.text-price__current {
  color: var(--color-branding-orange);
  font-weight: 700;
}

.text-warehouse--on-stock-label {
  border-radius: 4px;
  background: rgba(32, 181, 38, 0.2);
  color: var(--color-branding-success);
  display: inline-flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
}

.text-warehouse--gray {
  color: var(--color-gray-scale-gray-400);
}

.text-warehouse--red {
  color: var(--color-branding-error);
}

.text-warehouse--blue {
  color: var(--color-branding-blue);
}

.text-warehouse--orange {
  color: var(--color-branding-orange);
}

.popup .installments-popup h1,
.popup .installments-popup h2 {
  margin: 0 0 27px;
}

.installments-popup__header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 21px;
}

.installments-popup__header-title {
  margin-right: auto;
}

.installments-popup__radio-label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.installments-popup__radio-label-left {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.installments-popup__controls {
  margin: 21px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.installments-popup__legal-notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.installments-popup__note {
  display: flex;
  gap: 8px;
}

.scroll-anchor-target {
  scroll-margin-top: var(--sticky-header-bottom, 137px);
}

.add2Cart-special {
  width: min-content;
  overflow: hidden;
  display: grid;
}

.add2Cart-special__button-variant,
.add2Cart-special__input-variant {
  grid-column: 1/2;
  grid-row: 1/2;
}

.add2Cart-special__input-variant {
  opacity: 0;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
  from {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
  }
  from {
    opacity: 1;
  }
}
.add2Cart-special.hide-input .add2Cart-special__button-variant {
  animation: slideIn 500ms both;
}

.add2Cart-special.hide-input .add2Cart-special__input-variant {
  animation: fadeOut 300ms 300ms both;
}

.add2Cart-special.show-input .add2Cart-special__button-variant {
  animation: slideOut 500ms both;
}

.add2Cart-special.show-input .add2Cart-special__input-variant {
  animation: fadeIn 300ms 300ms both;
}

.add2Cart-special__note {
  color: var(--color-gray-scale-gray-500);
  text-align: center;
  font-size: 0.7857142857rem;
  line-height: 1.5;
  margin-top: 4px;
}

.popup {
  padding: 40px 32px;
  border-radius: 8px;
  width: 600px;
  max-width: calc(100% - 16px);
  border: none;
  --content-modal-gap: 24px;
  outline: none;
  opacity: 0;
  filter: blur(5px);
  translate: 0 5vh;
  transition: overlay display opacity;
  transition-duration: 300ms;
  transition-behavior: allow-discrete;
}
@media (max-width: 600px) {
  .popup {
    padding: 40px 12px;
  }
}
.popup h1,
.popup h2,
.popup h3 {
  margin: 0;
}
.popup h1:has(+ form),
.popup h2:has(+ form),
.popup h3:has(+ form) {
  margin-bottom: 18px;
}
.popup::backdrop {
  opacity: 0;
  background: #000;
  transition: display opacity;
  transition-duration: 300ms;
  transition-behavior: allow-discrete;
}
.popup[open] {
  opacity: 1;
  filter: blur(0px);
  translate: 0 0;
}
.popup[open]::backdrop {
  opacity: 0.7;
}

@starting-style {
  .popup[open] {
    opacity: 0;
    filter: blur(4px);
    translate: 0 10vh;
  }
  .popup[open]::backdrop {
    opacity: 0;
  }
}
.popup__close-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}
.popup__close-btn:hover {
  outline: none;
  fill: var(--color-branding-orange);
}
.popup__close-btn:focus {
  outline: none;
}

#popup-voucher h2,
#popup-voucher-sale h2 {
  text-align: center;
  margin-bottom: 24px;
}
#popup-voucher form,
#popup-voucher-sale form {
  max-width: 280px;
  margin: 0 auto;
}
#popup-voucher .popup-voucher__controls,
#popup-voucher-sale .popup-voucher__controls {
  display: flex;
  justify-content: center;
}

#popup-pickup-points {
  width: 1400px;
  max-height: 90dvh;
}

#popup-installments div.calcInstall {
  max-height: unset !important;
}

#popup-post-offices {
  width: 740px;
}
#popup-post-offices .post-offices {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-top: 11px;
}
#popup-post-offices .post-offices__form-search-input {
  position: relative;
}
#popup-post-offices .post-offices__form-search-input input {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 22px;
  padding: 12px 48px 12px 16px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--color-gray-scale-gray-100);
  outline: none;
}
#popup-post-offices .post-offices__form-search-input input::placeholder {
  color: var(--color-gray-scale-gray-500);
}
#popup-post-offices .post-offices__form-search-input input:focus {
  border-color: var(--color-gray-scale-gray-500);
}
#popup-post-offices .post-offices__form-search-input input:focus::placeholder {
  opacity: 0.3;
}
#popup-post-offices .post-offices__form-search-location {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 12px;
  right: 16px;
}
#popup-post-offices .post-offices__form-search-location svg {
  fill: var(--color-green-gray-scale-900);
  pointer-events: none;
}
#popup-post-offices .post-offices__form-search-location:hover, #popup-post-offices .post-offices__form-search-location:focus {
  outline: none;
}
#popup-post-offices .post-offices__form-search-location:hover svg, #popup-post-offices .post-offices__form-search-location:focus svg {
  fill: var(--color-branding-orange);
}
#popup-post-offices .post-offices__form-search-location[disabled] svg, #popup-post-offices .post-offices__form-search-location.is-disables svg {
  fill: var(--color-branding-orange);
}

.popup--simple-modal {
  padding: 24px;
}

.popup--wide-form {
  width: 984px;
}
.popup--wide-form .form-row--controls {
  max-width: max-content;
  margin: 26px 0 0;
}

.popup--one-line-modal {
  padding: 24px;
  width: max-content;
}

.popup--large-modal {
  padding: 48px 56px;
  width: 746px;
  --content-modal-gap: 40px;
}

.popup--color-green {
  background: #e5f1d0;
  color: var(--color-branding-success);
}

.popup--color-orange {
  background: #ffdeb7;
  color: var(--color-branding-black);
}

.popup--color-yellow {
  background: #ffee94;
  color: var(--color-branding-black);
}

.popup--color-red {
  background: #ffcac9;
  color: var(--color-branding-error);
}

.popup__content {
  display: grid;
  justify-content: start;
  gap: var(--content-modal-gap, 24px);
  grid-template-columns: 100%;
}
.popup__content:has(.popup__content-ico) {
  grid-template-columns: 40px auto;
}

.popup__content-ico {
  grid-column: 1;
}
.popup__content-ico img,
.popup__content-ico svg {
  display: block;
}
.popup__content-ico ~ .popup__content-text {
  grid-column: 2;
}
.popup__content-ico ~ .popup__content-controls {
  grid-column: 2;
}

.popup__content-text {
  padding-right: 8px;
  gap: 8px;
  display: grid;
  grid-auto-flow: row;
  font-size: 1.1428571429rem;
  line-height: 1.8;
  align-items: center;
  width: 100%;
}
.popup__content-text > * {
  margin: 0;
}
.popup__content-text h1,
.popup__content-text h2,
.popup__content-text h3 {
  padding-top: 8px;
  font-size: 1.2857142857rem;
  font-weight: 700;
  lline-height: 1.5;
}
.popup__content-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.popup__password-header {
  text-align: center;
  margin-bottom: 40px;
}
.popup__password-header h1,
.popup__password-header h2,
.popup__password-header h3 {
  font-size: 1.7142857143rem;
  margin: 0 0 24px 0;
}
.popup__password-header p {
  margin: 0 0 24px 0;
}

.popup__password-form {
  max-width: 280px;
  margin: 0 auto;
}
.popup__password-form .form-row--controls {
  max-width: max-content;
  margin: 26px auto 0;
}

.popup--information,
.popup--availability {
  padding: 27px 32px;
}
.popup--information h2,
.popup--availability h2 {
  font-weight: 600;
  margin-bottom: 12px;
}
.popup--information p,
.popup--availability p {
  font-size: 1rem;
}
.popup--information .form-row--controls button,
.popup--availability .form-row--controls button {
  width: max-content;
}

.popup--availability {
  width: 740px;
}
.popup--availability .alert {
  margin: 30px 0;
}
.popup--availability .btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.single-column-common-page {
  padding-bottom: 60px;
}

.single-column-common-page--800 {
  margin: 0 auto;
  max-width: 800px;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.price-box__price-row {
  display: flex;
  column-gap: 8px;
  font-size: 1.1428571429rem;
  align-items: baseline;
}

.price-box__price {
  font-weight: 700;
  font-size: 1.2857142857rem;
}
@media (max-width: 600px) {
  .price-box__price {
    font-size: 1.1428571429rem;
  }
}

.price-box__price--action {
  color: var(--color-branding-orange-dark);
}

.price-box__price--old {
  font-weight: 600;
  color: var(--color-gray-scale-gray-500);
  text-decoration: line-through;
  font-size: 1.1428571429rem;
}

.price-box__price--small {
  font-size: 1rem;
}

.price-box__price--large {
  font-size: 2.2857142857rem;
}
@media (max-width: 600px) {
  .price-box__price--large {
    font-size: 1.7142857143rem;
  }
}

.price-box__badge {
  font-size: 0.7857142857rem;
  line-height: 15px;
  font-weight: 600;
  background: var(--color-gray-scale-gray-100);
  padding: 2px 4px;
  border-radius: 3px;
}

.price-box__badge--large {
  font-size: 1rem;
  line-height: 19px;
}

.price-box__badge--total {
  background: rgba(234, 75, 72, 0.1);
  color: var(--color-branding-error);
}

.price-box__badge--percentage {
  color: #fff;
  background: var(--color-branding-error);
}

.price-box__discount-row {
  display: flex;
  column-gap: 8px;
}

.price-box__note-row {
  color: var(--color-gray-scale-gray-500);
  font-size: 0.7857142857rem;
}

.warehouse-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.warehouse-box__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.warehouse-box__item svg {
  flex: 0 0 auto;
  margin-top: 2px;
}
.warehouse-box__item a {
  color: var(--color-branding-black);
  text-decoration: underline;
}
.warehouse-box__item a:hover {
  color: var(--color-branding-black);
  text-decoration: none;
}
.warehouse-box__item span {
  color: var(--color-branding-black);
}

/**
 * Element type: dialog:modal
 */
.mega-menu {
  --_mega-menu-header-height: 64px;
  --_mega-menu-padding: 12px;
  --_megamenu-focus-outlie-color: var(--color-branding-orange);
  --_megamenu-link-padding: 12px 8px 12px 16px;
  --_mega-menu-link-color: var(--color-branding-black);
  --_mega-menu-link-color-hover: var(--_mega-menu-link-color);
  --_mega-menu-link-arrow-color: var(--_megamenu-focus-outlie-color);
  --_mega-menu-link-hover-bg: #FDF1DC;
  --_mega-menu-border-color: var(--color-gray-scale-gray-100);
  --_mega-menu-animation-duration: 0.2s;
  --_mega-menu-animation-easing: ease-out;
  border: unset;
  padding: 0;
  left: 0;
  height: 100%;
  max-height: unset;
  overscroll-behavior: contain; /* zabrání propadnutí scrollu do těla */
  margin: 0;
  top: 0;
  right: auto;
  position: fixed;
  inset-inline-start: 0;
  opacity: 0;
  transform: translateX(-100%);
  display: none;
}
@media (max-width: 1000px) {
  .mega-menu {
    --_mega-menu-padding: 0 var(--base-layout-horizontal-padding);
    --_megamenu-link-padding: 16px 8px 15px 16px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .mega-menu {
    transition-behavior: allow-discrete;
    transition: opacity var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing), transform var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing), overlay var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing) allow-discrete, display var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing) allow-discrete;
  }
}
@media (max-width: 1000px) {
  .mega-menu {
    top: var(--sticky-header-bottom);
    height: calc(100dvh - var(--sticky-header-bottom));
    width: 100%;
    max-width: 100vw;
    transform: translateY(-10%);
  }
}
.mega-menu::backdrop {
  background-color: rgba(0, 0, 0, 0);
}
@media (prefers-reduced-motion: no-preference) {
  .mega-menu::backdrop {
    transition: background-color var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing), overlay var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing) allow-discrete, display var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing) allow-discrete;
  }
}
@media (max-width: 1000px) {
  .mega-menu::backdrop {
    background: unset;
    transition: none; /* Na mobilu žádný backdrop transition */
  }
}
.mega-menu[open] {
  opacity: 1;
  transform: translateX(0);
  display: block;
}
@media (max-width: 1000px) {
  .mega-menu[open] {
    transform: translateY(0);
  }
}
.mega-menu[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 1000px) {
  .mega-menu[open]::backdrop {
    background: unset;
  }
}
.mega-menu a:hover, .mega-menu a:focus,
.mega-menu button:hover,
.mega-menu button:focus {
  outline: none;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1000px) {
  .mega-menu a:hover, .mega-menu a:focus,
  .mega-menu button:hover,
  .mega-menu button:focus {
    border-radius: 4px;
    outline: 2px solid var(--_megamenu-focus-outlie-color);
    outline-offset: -2px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @starting-style {
    .mega-menu[open] {
      opacity: 0;
      transform: translateX(-100%);
    }
    @media (prefers-reduced-motion: no-preference) and (max-width: 1000px) {
      .mega-menu[open] {
        transform: translateY(-10%);
      }
    }
    .mega-menu[open]::backdrop {
      background-color: rgba(0, 0, 0, 0);
    }
    @media (prefers-reduced-motion: no-preference) and (max-width: 1000px) {
      .mega-menu[open]::backdrop {
        background: unset;
      }
    }
  }
}
body:has(.mega-menu[open]) {
  overflow: hidden;
}

.mega-menu__main-links {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--_mega-menu-border-color);
  padding: var(--_mega-menu-padding);
  position: sticky;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
@media (max-width: 1000px) {
  .mega-menu__main-links {
    width: 100%;
    border: unset;
    grid-column: 1/-1;
    grid-row: 1/-1;
    z-index: 1;
  }
}

.mega-menu__link {
  display: flex;
  color: var(--_mega-menu-link-color);
  padding: var(--_megamenu-link-padding);
  border-radius: 4px;
  gap: 16px;
  min-width: 215px;
  border: unset;
  background: unset;
}
@media (max-width: 1000px) {
  .mega-menu__link {
    border-radius: unset;
    border-bottom: 1px solid var(--_mega-menu-border-color);
    width: 100%;
  }
}
.mega-menu__link > * {
  pointer-events: none;
}
.mega-menu__link:hover {
  color: var(--_mega-menu-link-hover-color);
}
.mega-menu__link[aria-expanded=true] {
  color: var(--_mega-menu-link-hover-color);
  background: var(--_mega-menu-link-hover-bg);
}
.mega-menu__link:not([data-nested-category-id]) .mega-menu__link-ico {
  display: none;
}

.mega-menu__link--mobile-only,
.mega-menu__link--mobile-back {
  display: none;
}
@media (max-width: 1000px) {
  .mega-menu__link--mobile-only,
  .mega-menu__link--mobile-back {
    display: flex;
    border-bottom: unset;
  }
}
@media (max-width: 1000px) {
  .mega-menu__link--mobile-only .mega-menu__link-text,
  .mega-menu__link--mobile-back .mega-menu__link-text {
    font-size: 1rem;
    font-weight: normal;
  }
}

.mega-menu__link-text {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1000px) {
  .mega-menu__link-text {
    font-size: 1rem;
    font-weight: 600;
    min-height: unset;
  }
}
.mega-menu__main-links .mega-menu__link-text {
  min-height: unset;
  font-size: 1.1428571429rem;
  font-weight: 600;
}

.mega-menu__link-thumbnail {
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .mega-menu__link-thumbnail {
    display: none;
  }
}

.mega-menu__back-ico {
  flex-shrink: 0;
  fill: var(--_mega-menu-link-arrow-color);
}

.mega-menu__link-ico {
  flex-shrink: 0;
  margin-left: auto;
  color: var(--_mega-menu-link-arrow-color);
}

.mega-menu__header {
  padding: var(--_mega-menu-padding);
  border-bottom: 1px solid var(--_mega-menu-border-color);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1000px) {
  .mega-menu__header {
    display: none;
  }
}

.mega-menu__close {
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
}
.mega-menu__close svg {
  display: block;
}
.mega-menu__close:hover {
  outline: none !important;
}
.mega-menu__close:hover svg, .mega-menu__close:focus svg {
  fill: var(--color-branding-orange);
}

.mega-menu__logo {
  display: block;
}
.mega-menu__logo img {
  display: block;
}
.mega-menu__logo:hover {
  outline: none !important;
}

.mega-menu__body {
  display: flex;
  overflow-x: auto;
  width: 100%;
}
@media (max-width: 1000px) {
  .mega-menu__body {
    overflow-x: unset;
    display: grid;
    height: calc(100dvh - var(--sticky-header-bottom) - 1px);
  }
}

.mega-menu__nested-sections {
  display: flex;
  height: 100%;
}
@media (max-width: 1000px) {
  .mega-menu__nested-sections {
    display: contents;
  }
}

.mega-menu__nested-section {
  width: 320px;
  padding-inline: var(--_mega-menu-padding);
  border-right: 1px solid var(--_mega-menu-border-color);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-branding-black) var(--color-gray-scale-gray-50);
  display: none;
  opacity: 0;
  transform: translateX(-25%);
  /* Stav při zobrazení */
}
@media (prefers-reduced-motion: no-preference) {
  .mega-menu__nested-section {
    transition-behavior: allow-discrete;
    transition: opacity var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing), transform var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing), overlay var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing) allow-discrete, display var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing) allow-discrete;
  }
}
@media (max-width: 1000px) {
  .mega-menu__nested-section {
    background-color: #fff;
    width: auto;
    grid-column: 1/-1;
    grid-row: 1/-1;
    scrollbar-width: none;
    padding: var(--_mega-menu-padding);
  }
}
.mega-menu__nested-section:is([data-level="2"]) {
  transition: unset;
}
.mega-menu__nested-section[aria-hidden=false] {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.mega-menu__nested-section[data-level="1"] {
  order: 1;
  z-index: 1;
}
.mega-menu__nested-section[data-level="2"] {
  order: 2;
  z-index: 2;
}
.mega-menu__nested-section[data-level="3"] {
  order: 3;
  z-index: 3;
}
.mega-menu__nested-section[data-level="4"] {
  order: 4;
  z-index: 4;
}
.mega-menu__nested-section[data-level="5"] {
  order: 5;
  z-index: 5;
}
.mega-menu__nested-section[data-level="6"] {
  order: 6;
  z-index: 6;
}

@media (prefers-reduced-motion: no-preference) {
  @starting-style {
    .mega-menu__nested-section[aria-hidden=false]:not([data-level="2"]) {
      opacity: 0;
      transform: translateX(-25%);
      transition: opacity var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing), transform var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing), display var(--_mega-menu-animation-duration) var(--_mega-menu-animation-easing) allow-discrete;
    }
  }
}
.mega-menu__nested-section--disable-transition {
  transition: unset !important;
}

.mega-menu__section-header {
  padding: var(--_mega-menu-padding);
  border-bottom: 1px solid var(--_mega-menu-border-color);
  background: #fff;
  position: sticky;
  top: 0;
}
@media (max-width: 1000px) {
  .mega-menu__section-header {
    background: #FDF1DC;
    padding: var(--_megamenu-link-padding);
    border-bottom: unset;
  }
}
.mega-menu__section-header h2,
.mega-menu__section-header h3 {
  font-size: 1.2857142857rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 4px;
}
@media (max-width: 1000px) {
  .mega-menu__section-header h2,
  .mega-menu__section-header h3 {
    font-size: 1.1428571429rem;
  }
}
.mega-menu__section-header a {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .mega-menu__section-header a {
    font-weight: bold;
    color: #A85B00;
    font-size: 1rem;
  }
}
.mega-menu__section-header a:hover, .mega-menu__section-header a:focus {
  text-decoration: none;
  outline: unset;
}
