/* vendor/normalize.css */
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */html {
    font-family:sans-serif;
    line-height:1.15;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%
}
body {
    margin:0
}
article,
aside,
footer,
header,
nav,
section {
    display:block
}
h1 {
    font-size:2em;
    margin:.67em 0
}
figcaption,
figure,
main {
    display:block
}
figure {
    margin:1em 40px
}
hr {
    box-sizing:content-box;
    height:0;
    overflow:visible
}
pre {
    font-family:monospace,monospace;
    font-size:1em
}
a {
    background-color:transparent;
    -webkit-text-decoration-skip:objects
}
a:active,
a:hover {
    outline-width:0
}
abbr[title] {
    border-bottom:0;
    text-decoration:underline;
    text-decoration:underline dotted
}
b,
strong {
    font-weight:inherit
}
b,
strong {
    font-weight:bolder
}
code,
kbd,
samp {
    font-family:monospace,monospace;
    font-size:1em
}
dfn {
    font-style:italic
}
mark {
    background-color:#ff0;
    color:#000
}
small {
    font-size:80%
}
sub,
sup {
    font-size:75%;
    line-height:0;
    position:relative;
    vertical-align:baseline
}
sub {
    bottom:-.25em
}
sup {
    top:-.5em
}
audio,
video {
    display:inline-block
}
audio:not([controls]) {
    display:none;
    height:0
}
img {
    border-style:none
}
svg:not(:root) {
    overflow:hidden
}
button,
input,
optgroup,
select,
textarea {
    font-family:sans-serif;
    font-size:100%;
    line-height:1.15;
    margin:0
}
button,
input {
    overflow:visible
}
button,
select {
    text-transform:none
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance:button
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style:none;
    padding:0
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline:1px dotted ButtonText
}
fieldset {
    border:1px solid silver;
    margin:0 2px;
    padding:.35em .625em .75em
}
legend {
    box-sizing:border-box;
    color:inherit;
    display:table;
    max-width:100%;
    padding:0;
    white-space:normal
}
progress {
    display:inline-block;
    vertical-align:baseline
}
textarea {
    overflow:auto
}
[type="checkbox"],
[type="radio"] {
    box-sizing:border-box;
    padding:0
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height:auto
}
[type="search"] {
    -webkit-appearance:textfield;
    outline-offset:-2px
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance:none
}
::-webkit-file-upload-button {
    -webkit-appearance:button;
    font:inherit
}
details,
menu {
    display:block
}
summary {
    display:list-item
}
canvas {
    display:inline-block
}
template {
    display:none
}
[hidden] {
    display:none
}

/* base/variables.css */
/**
 * variables.css
 * CSS Custom Properties (Variables)
 * Extracted from index.html
 */

:root {
    /* Colors */
    --color-primary: #3dcb98;
    --color-primary-light: #1fefa5;
    --color-gradient: linear-gradient(130deg, #1fefa5 0%, #3dcb98 100%);

    --color-dark: #262626;
    --color-gray: #a5acbf;
    --color-light-gray: #edeff4;
    --color-border: #dee1ea;
    --color-white: #fff;

    --color-error: #f44336;
    --color-warning: #fec107;
    --color-star: #fec107;

    /* Typography */
    --font-family: "sofia-pro", sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-medium: 18px;
    --font-size-large: 20px;
    --font-size-h4: 24px;
    --font-size-h3: 30px;
    --font-size-h2: 42px;
    --font-size-h1: 80px;

    --line-height-base: 1.666;
    --line-height-tight: 1;
    --line-height-heading: 1.4;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 35px;

    /* Layout */
    --container-max-width: 1260px;
    --container-padding: 30px;

    /* Border Radius */
    --radius-small: 5px;
    --radius-medium: 10px;
    --radius-large: 30px;
    --radius-pill: 100px;

    /* Shadows */
    --shadow-light: 7px 39px 80px rgba(38, 38, 38, 0.1);
    --shadow-button: 7px 39px 40px rgba(38, 38, 38, 0.1);
    --shadow-input: 3px 15px 30px rgba(38, 38, 38, 0.1);

    /* Transitions */
    --transition-standard: 0.3s all;

    /* Breakpoints (for reference in media queries) */
    --breakpoint-xs: 480px;
    --breakpoint-sm: 650px;
    --breakpoint-md: 767px;
    --breakpoint-lg: 991px;
    --breakpoint-xl: 1220px;
}

/* Responsive Typography Adjustments */
@media (max-width: 991px) {
    :root {
        --font-size-h1: 60px;
        --font-size-h2: 35px;
        --font-size-h3: 24px;
        --font-size-h4: 20px;
        --container-padding: 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --font-size-h1: 45px;
        --container-padding: 15px;
    }
}

/* base/reset.css */
/**
 * reset.css
 * Extracted from index.html
 */

* {
    box-sizing:border-box;
    padding:0;
    margin:0
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-size:16px;
    color:#a5acbf;
    line-height:1.666;
    font-weight:400;
    font-family:"sofia-pro",sans-serif;
}

body.disable-scroll {
    overflow:hidden
}

a {
    text-decoration:none;
    color:#3dcb98;
    transition:.3s all
}

a:hover {
    color:#262626
}

:focus-visible {
    outline: 2px solid #0f766e !important;
    outline-offset: 2px !important;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 10000;
    padding: 12px 20px;
    background: #262626;
    color: #fff;
    border-radius: 5px;
    transition: top .2s;
}

.skip-link:focus {
    top: 10px;
    color: #fff;
}

ul,
ol {
    margin-bottom:35px
}

ul:last-child,
ol:last-child {
    margin-bottom:0
}

ul {
    list-style-type:none
}

figure {
    margin:0
}
/* base/typography.css */
/**
 * Typography Base Styles
 * Headings, paragraphs, and text utilities - BASE STYLES ONLY
 *
 * @package AutoNaKluc
 */

/* ==========================================================================
   HEADINGS
   ========================================================================== */

h1,
h2,
h3,
h4,
h5 {
    line-height:1.2;
    margin:0 0 25px;
    font-weight:900;
    color:#262626
}

/* H1 / Page Title */
h1,
.page-title {
    font-size:80px;
    line-height:1.1
}

h1 small,
.page-title small {
    font-size:71px
}

/* H2 / Section Title */
h2,
.section-title {
    font-size:42px
}

h2 small,
.section-title small {
    font-size:18px
}

/* H3 */
h3 {
    font-size:30px
}

/* H4 */
h4 {
    font-size:24px
}

/* ==========================================================================
   TEXT ELEMENTS
   ========================================================================== */

p,
ul,
ol {
    margin-bottom:35px
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom:0
}

p {
    font-weight:700
}

strong {
    font-weight:700;
    color:#262626
}

ul {
    list-style-type:none
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.primary-gradient {
    background:linear-gradient(130deg,#1fefa5 0,#3dcb98 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent
}

.title-center{

    .section-title{
        text-align: center!important;
        font-size: 36px;
    }
}
.section-title{

    &.mid{
        font-size: 55px;
        max-width: 55%;
    }
}
/* layout/container.css */
/**
 * container.css
 * Extracted from index.html
 */

.content-wrap {
    max-width: 1050px
}

.content-wrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px
}


.content-wrap.bigger {
    max-width: 1700px
}



.content-section {
    padding: 85px 0
}

.content-section.action-boxes-section {
    padding-top: 0;
    margin-top: -100px
}

@media (min-width: 992px) and (max-height: 900px) {
    .content-section.action-boxes-section {
        margin-top: -75px
    }
}

@media (max-width: 991px) {
    .content-section.action-boxes-section {
        margin-top: -50px
    }
}

@media (max-width: 480px) {
    .content-section.action-boxes-section {
        margin-top: -35px
    }
}

.content-section.contact-action-boxes-section {
    padding-top: 0;
    margin-top: -370px
}

@media (min-width: 992px) and (max-height: 900px) {
    .content-section.contact-action-boxes-section {
        margin-top: -250px
    }
}

@media (max-width: 991px) {
    .content-section.contact-action-boxes-section {
        margin-top: -50px
    }
}

.content-section.no-pad-bottom {
    padding-bottom: 0
}

.content-section.no-pad-top {
    padding-top: 0
}

.content-section.no-pad {
    padding: 0
}

.content-section .reviews-actions {
    text-align: center
}

.content-section.big-pad-top {
    padding-top: 140px
}

.content-section.big-pad-bottom {
    padding-bottom: 140px
}

.content-section.countries {
    margin-top: -30px
}

@media (max-width: 767px) {
    .content-section {
        padding: 50px 0
    }

    .content-section.big-pad-top {
        padding-top: 90px
    }

    .content-section.big-pad-bottom {
        padding-bottom: 90px
    }
}

.section-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header .container .section-text{
    max-width: 65%;

    @media(max-width: 767px){
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.center{
    text-align: center;
}
/* layout/header.css */
/**
 * header.css
 * Base desktop styles for page header and navigation
 */

.page-header {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .05);

    .logo img {
        height: 80px;
    }
}

.header-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0 22px
}

.header-panel .left,
.header-panel .right {
    flex: 1
}

.header-panel .right {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.header-panel .header-panel-link {
    font-weight: 500;
    color: #6B7280
}

.header-panel .header-panel-link:hover {
    color: #3dcb98
}

.header-panel .header-panel-link i {
    color: #3dcb98;
    margin-right: 5px;
    font-size: 14px
}

.header-panel .header-panel-link:first-child {
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #edeff4
}

.header-panel .lang-switcher {
    margin-left: 15px
}

.header-panel .lang-switcher .lang-list {
    max-width: 24px
}

.header-panel .lang-switcher img {
    display: block
}

.header-panel .header-rating-box .stars {
    display: inline-flex;
    color: #fec107;
    margin-right: 5px;
    font-size: 14px
}

.header-panel .header-rating-box a {
    color: #6B7280
}

.header-panel .header-rating-box a:hover {
    color: #3dcb98
}

.header-panel .header-rating-box .rating-value {
    color: #262626
}

.main-nav ul {
    display: flex;
    justify-content: center
}

/* Na desktope sa položky rozťahujú po celej šírke navigácie; pod 992 px sa menu
   prepína na stĺpec (media-queries.css), kde by space-between nedával zmysel. */
@media (min-width: 992px) {
    .main-nav ul {
        justify-content: space-between
    }
}

.main-nav li {
    border-right: 1px solid #edeff4
}

.main-nav li:last-child {
    border-right: 0
}

.main-nav a {
    display: inline-block;
    color: #262626;
    padding: 5px 17px 7px;
    font-size: 18px;
    font-weight: 700;
    position: relative
}

.main-nav a:before,
.main-nav a:after {
    content: '';
    bottom: 0;
    position: absolute;
    display: block;
    background: #3dcb98;
    transition: inherit;
    height: 2px
}

.main-nav a:before {
    left: 50%;
    width: 0
}

.main-nav a:after {
    right: 50%;
    width: 0
}

.main-nav a:hover:before,
.main-nav a:hover:after {
    width: 50%
}

.menu-toggle {
    display: none;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.lang-switcher {
    margin-left: 15px
}

.lang-switcher .lang-list {
    max-width: 24px
}

.lang-switcher img {
    display: block
}

.lang-switcher-link {
    display: none
}

/* ==========================================================================
   POLYLANG LANGUAGE SWITCHER
   ========================================================================== */

.pll-parent-menu-item {
    position: relative;
    display: inline-block
}

.pll-parent-menu-item .sub-menu {
    display: none;
    position: absolute;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    z-index: 1000;
    list-style: none
}

.pll-parent-menu-item .sub-menu li {
    text-align: center;
    border-right: none
}

.pll-parent-menu-item .sub-menu li a {
    padding: 0;
    width: 25px
}

.pll-parent-menu-item .sub-menu .current_page_item {
    display: none
}

.pll-parent-menu-item:hover .sub-menu,
.pll-parent-menu-item:focus-within .sub-menu {
    display: flex
}

.lang-item img {
    width: 25px;
    margin-bottom: 5px
}

/* layout/footer.css */
/**
 * footer.css
 * Base desktop styles for page footer
 */

.page-footer .top-part {
    padding:100px 0;
    border-bottom:1px solid #dee1ea
}

.page-footer .top-part .container {
    display:flex;
    justify-content:space-between
}

.page-footer .top-part .footer-box {
    max-width:310px;
    margin-right:25px
}

.page-footer .top-part .footer-box .logo {
    margin-bottom:35px
}

.page-footer .top-part .footer-box .logo:last-child {
    margin-bottom:0
}

.page-footer .top-part .footer-nav {
    /*max-width:685px*/
}

.page-footer .bottom-part {
    padding:80px 0;
    text-align:center
}

.page-footer .bottom-part .credits {
    justify-content:center
}

.page-footer .bottom-part .credits a {
    position:relative;
    top:1px
}

.page-footer .bottom-part .credits svg {
    margin-left:10px;
    width:100px
}

.page-footer .bottom-part .credits svg path {
    transition:.3s all;
    fill:#3dcb98
}

.page-footer .bottom-part .credits svg path.highlight {
    fill:#262626
}

.page-footer .bottom-part .credits svg:hover path {
    fill:#262626
}

.page-footer .bottom-part .credits svg:hover path.highlight {
    fill:#3dcb98
}

.footer-nav {
    display:flex;
    flex-direction: column;
}

.footer-nav .pages-list {

    font-size:18px;
    width: 100%;
    column-count: 4;
    @media(max-width: 1290px){
        column-count: 3;
    }
   @media(max-width: 768px){
       column-count: 2;
   }
    @media(max-width: 568px){
        column-count: 1;
    }
}



.footer-nav .pages-list a {
    font-weight:700
}

.footer-nav .pages-list>li>a,
.footer-nav .pages-list .footer-nav-page {
    display:inline-block;
    margin-bottom:15px;
    color:#262626
}

.footer-nav .pages-list>li>a:hover,
.footer-nav .pages-list .footer-nav-page:hover {
    color:#3dcb98
}

.footer-nav .pages-list>li>a:last-child,
.footer-nav .pages-list .footer-nav-page:last-child {
    margin-bottom:0
}

.footer-nav .sub-menu,
.footer-nav .sub-pages-list {
    font-size:18px
}

.footer-nav .sub-menu li,
.footer-nav .sub-pages-list li {
    margin-bottom:2px
}

.footer-nav .sub-menu li:last-child,
.footer-nav .sub-pages-list li:last-child {
    margin-bottom:0
}

.footer-nav .sub-menu li a,
.footer-nav .sub-menu li .footer-nav-sub-page,
.footer-nav .sub-pages-list li a,
.footer-nav .sub-pages-list li .footer-nav-sub-page {
    color:#a5acbf
}

.footer-nav .sub-menu li a:hover,
.footer-nav .sub-menu li .footer-nav-sub-page:hover,
.footer-nav .sub-pages-list li a:hover,
.footer-nav .sub-pages-list li .footer-nav-sub-page:hover {
    color:#262626
}

.footer-nav {

    width: 100%;
}

.page-footer .socials-list{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    font-size: 20px;
    a{
        color:#a5acbf
    }
}
/* components/buttons.css */
/**
 * buttons.css
 * Base desktop styles for buttons
 */

.button {
    padding:15px 35px 19px;
    cursor:pointer;
    display:inline-block;
    border:3px solid #3dcb98;
    text-align:center;
    transition:.3s all;
    border-radius:100px;
    font-weight:700;
    font-size:20px;
    line-height:1;
    position:relative;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    font-family:"sofia-pro",sans-serif
}

.button .inner {
    position:relative
}

.button.small-border-radius {
    border-radius:10px
}

.button.big {
    padding:20px 35px 24px
}

.button.mid {
    border-width:2px;
    font-size:16px;
    padding:13px 35px 17px
}

.button.mid:before {
    left:-2px;
    right:-2px;
    top:-2px;
    bottom:-2px
}

.button.small {
    font-size:14px;
    border-width:2px;
    padding:5px 19px 7px
}

.button.small:before {
    left:-2px;
    right:-2px;
    top:-2px;
    bottom:-2px
}

.button.style-1 {
    border-color:#fff;
    color:#fff
}

.button.style-1:hover {
    background:#fff;
    color:#262626
}

.button.style-2 {
    border-color:#262626;
    color:#262626;
    background:transparent
}

.button.style-2:before {
    content:'';
    position:absolute;
    left:-3px;
    right:-3px;
    top:-3px;
    bottom:-3px;
    background:linear-gradient(130deg,#1fefa5 0,#3dcb98 100%);
    display:block;
    border-radius:inherit;
    transition:inherit;
    opacity:0
}

.button.style-2:hover {
    border-color:transparent;
    color:#fff
}

.button.style-2:hover:before {
    opacity:1
}

.button.style-3 {
    border-color:transparent;
    color:#fff;
    width: max-content;
}

.button.style-3:before {
    content:'';
    position:absolute;
    left:-3px;
    right:-3px;
    top:-3px;
    bottom:-3px;
    background:linear-gradient(130deg,#1fefa5 0,#3dcb98 100%);
    display:block;
    border-radius:inherit;
    transition:inherit;
    opacity:1
}

.button.style-3:hover {
    background:transparent;
    border-color:#262626;
    color:#262626
}

.button.style-3:hover:before {
    opacity:0
}

.button.style-4 {
    background:#edeff4;
    color:#262626;
    border-color:#edeff4
}

.button.style-4:hover {
    border-color:#262626;
    background:#262626;
    color:#fff
}

.button .stars {
    color:#fec107;
    font-size:14px;
    margin:0 3px;
    position:relative;
    bottom:2px;
    white-space:nowrap
}

.button .fa-spin {
    display:none!important
}

@media (max-width: 767px) {
    .button {
        padding: 10px 20px;
        font-size: 16px;
    }
}


/* components/forms.css */
/**
 * forms.css
 * Extracted from index.html
 */

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    padding: 9px 15px;
    line-height: 1;
    width: 100%;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-progress-appearance: none;
    background-color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: "sofia-pro", sans-serif;
    color: var(--color-dark, #262626);
    border: 2px solid transparent;
    border-radius: 5px;
    box-shadow: 3px 15px 30px rgba(38, 38, 38, .1);
    /* NEZNIŽOVAŤ pod 16px. iOS Safari priblíži celú stránku pri fokuse do poľa s menším
       písmom a používateľ musí ručne oddialiť — pôvodných 12px to robilo v každom formulári
       na webe. `!important` je tu zámerne: nasledujúce pravidlá pre `select` (nižšie v tomto
       súbore) majú rovnakú špecificitu a bez neho by túto hodnotu prebili poradím. */
    @media (max-width: 768px) {
        font-size: 16px !important;
    }
}

/* Rovnaký dôvod ako pravidlo vyššie — iOS zoom pri fokuse. Tieto typy nie sú v zozname hore,
   lebo majú vlastný vzhľad (napr. `input[type="tel"]` v popupe „Mám záujem"), ale rovnaký
   spodný limit veľkosti písma potrebujú tiež. */
@media (max-width: 768px) {
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    input[type="url"],
    input[type="date"] {
        font-size: 16px !important;
    }
}

input::placeholder,
textarea::placeholder {
    color: var(--color-gray, #a5acbf)
}

input[type="text"].error,
input[type="email"].error,
input[type="password"].error,
textarea.error,
select.error {
    border-color: #f44336
}

input[type="tel"] {
    background: #e9ebf0;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap: 10px
}

input[type="submit"] {
    padding: 15px 35px 19px;
    cursor: pointer;
    display: inline-block;
    border: 3px solid #3dcb98;
    border-top-color: rgb(61, 203, 152);
    border-right-color: rgb(61, 203, 152);
    border-bottom-color: rgb(61, 203, 152);
    border-left-color: rgb(61, 203, 152);
    border-top-color: rgb(61, 203, 152);
    border-right-color: rgb(61, 203, 152);
    border-bottom-color: rgb(61, 203, 152);
    border-left-color: rgb(61, 203, 152);
    text-align: center;
    transition: .3s all;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    position: relative;
    background: transparent
}

textarea,
select {
    padding: 9px 15px;
    line-height: 1;
    width: 100%;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: "sofia-pro", sans-serif;
    color: var(--color-dark, #262626);
    border: 2px solid transparent;
    border-radius: 5px;
    box-shadow: 3px 15px 30px rgba(38, 38, 38, .1)
}

textarea::placeholder {
    color: var(--color-gray, #a5acbf)
}

textarea.error,
select.error {
    border-color: #f44336
}

textarea {
    height: 120px;
    line-height: 1.666
}

select {
    padding: 9px 15px;
    line-height: 1;
    width: 100%;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: "sofia-pro", sans-serif;
    color: var(--color-dark, #262626);
    border: 2px solid transparent;
    border-radius: 5px;
    box-shadow: 3px 15px 30px rgba(38, 38, 38, .1)
}

select::placeholder {
    color: #a5acbf
}

select.error {
    border-color: #f44336
}

select {
    padding: 13px 15px
}

selectable {
    padding: 15px;
    color: #a5acbf
}

.select-one:after {
    position: absolute;
    right: 25px;
    top: calc(50% - 8px);
    font-size: 16px;
    color: #262626;
    content: "\f107";
    font-family: 'Font Awesome 7 Pro';
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    border: 0;
    margin: 0
}


.selection {
    background: #000;
    color: #fff
}

label {
    font-weight: 700;
    color: #a5acbf;
    display: block;
    margin-bottom: 10px
}


label {
    padding: 0 20px
}

.form-row {
    position: relative;
    margin-bottom: 10px
}

.form-row label {
    padding: 0 20px
}

.form-row:last-child {
    margin-bottom: 0
}

.form-actions {
    margin-top: 35px
}

.form-description {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-top: 30px
}


.calculation-form .form-result-container {
    display: none
}

.form-actions.active,
.calculation-form .form-result-container.active {
    display: block
}

.form-result-container {
    margin-top: 35px;
    text-align: center
}

.form-result-container .price-container {
    padding: 10px 25px;
    background: #fff;
    font-size: 48px;
    font-weight: 700;
    box-shadow: 8px 13px 30px rgba(0, 0, 0, .1);
    min-width: 200px;
    display: inline-flex;
    height: 100px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    position: relative;
    z-index: 10;
    line-height: 1.4
}

.form-result-container .price-container:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -12px;
    left: calc(50% - 12px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 12px;
    border-color: #fff transparent transparent transparent
}

.form-result-container .price-container {
    font-size: 24px
}

.form-group {
    flex: 1
}

.form-group {
    flex: initial;
    width: calc(50% - 10px);
    margin-bottom: 20px
}

.form-group:last-child {
    margin-bottom: 0
}

.form-group {
    width: calc(50% - 3px);
    margin-bottom: 10px
}

.form-group {
    width: 100%
}

.form-group:last-child {
    margin-bottom: 10px
}

.form-description {
    margin-top: 10px;
    text-align: center
}

.form-description p {
    font-size: 14px
}

.field-container {
    background: #e9ebf0;
    padding: 10px;
    border-radius: 10px
}

.field-title {
    color: #262626;
    font-size: 18px;
    position: relative
}

.field-title small {
    font-size: 16px;
    color: #a5acbf;
    font-weight: 400
}

.field-title {
    font-size: 18px;
    position: relative
}

.field-title small {
    font-size: 16px;
    font-weight: 400
}

.field-container {
    padding: 5px
}

.field-container {
    display: flex;
    gap: 10px
}

.field-container * {
    flex: 1
}

.field-container {
    flex-direction: column
}

.field-container.error {
    background: #f4a0a0
}

.field-container {
    flex-direction: column
}

.field-title {
    margin-left: 15px;
    font-size: 16px
}

.checkbox-box {
    cursor: pointer;
    position: relative
}

.checkbox-box input {
    display: none
}

.checkbox-box.style-1 {
    margin: 0;
    padding: 12px 45px 13px 15px;
    line-height: 1.4;
    background: #fff;
    border-radius: 5px
}

.checkbox-box.style-1 .status {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: #edeff4;
    right: 15px
}

.checkbox-box.style-1 .status:before {
    content: '';
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    position: absolute;
    background: #3dcb98;
    border-radius: 3px;
    display: block;
    opacity: 0
}

.checkbox-box.style-1 input:checked + .status:before {
    opacity: 1
}

.checkbox-box.style-1 .field-title {
    font-size: 18px;
    position: relative
}

.checkbox-box.style-1 .field-title small {
    font-size: 16px;
    font-weight: 400
}

.checkbox-box.style-2 .status {
    right: auto;
    left: 0
}

.checkbox-box.style-2.style-1 .field-title {
    margin-left: 15px;
    font-size: 16px
}

.checkbox-box.style-1.style-2 .status:before {
    content: "\f00c";
    font-family: "Font Awesome 7 Pro";
    font-weight: 900;
    background: transparent;
    font-size: 11px;
    color: #000;
    line-height: 9px;
    background: #fff;
    padding: 3px;
    left: 4px
}

.radio-box {
    cursor: pointer;
    position: relative
}

.radio-box input {
    display: none
}

.radio-box.style-1 {
    margin: 0;
    display: inline-block;
    padding: 12px 15px 13px;
    line-height: 1.4
}

.radio-box.style-1 .status {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    border-radius: 5px;
    opacity: 0
}

.radio-box.style-1 input:checked + .status {
    opacity: 1
}

.radio-box.style-1 .field-title {
    color: #262626;
    font-size: 18px;
    position: relative
}

.radio-box.style-1 .field-title small {
    font-size: 16px;
    color: #a5acbf;
    font-weight: 400
}

@media (max-width: 767px) {
    .form-actions {
        margin-top: 15px;
    }

    .form-actions small {
        display: inline-block;
        line-height: 1.2;
    }
}
/* components/icons.css */
/**
 * icons.css
 * Extracted from index.html
 */

.border-icon {
    color: #3dcb98;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border: 15px solid #edeff4;
    border-radius: 50%;
    box-shadow: 7px 39px 40px rgba(38, 38, 38, .1);
    margin-bottom: 45px
}

.border-icon:last-child {
    margin-bottom: 0
}

.border-icon .number {
    font-weight: 900;
    line-height: 1;
    font-size: 36px;
    display: inline-block;
    margin-bottom: 5px
}

.border-icon {
    min-width: 120px
}

.border-icon.no-crop {
    width: 100%;
    height: 120px;
    border: none;
    border-radius: 0;
    box-shadow: none
}

.icon-steps {
    background-image: url('/wp-content/themes/autonakluc/assets/images/background.webp');
    background-size: cover;
    background-position: center;
    padding: 65px 0 85px;
    box-shadow: 0 40px 30px -40px rgba(0, 0, 0, .2) inset;
    color: #fff
}

section.icon-steps.nobg {
    background: #f5f7fb;
    color: black;
    position: relative;
    width: 100%;
    box-shadow: none;
}

.icon-step-box {
    text-align: center;
    max-width: 130px;
}

.icon-step-boxes-container {
    display: flex;
    justify-content: space-around;

    &.overlaping {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: -80px;
        z-index: 10;
        top: 0;
        width: 100%;
        bottom: 0;
        padding-top: 0 !important;
        position: absolute;
        max-width: 1260px;

    }
}

.icon-step-boxes-container.smaller .icon-step-box.icon-step-box {
    max-width: 200px;
    font-size: 14px;
}

.icon-step-box {
    text-align: center;
}

.icon-step-box .icon {
    min-height: 94px;
    margin-bottom: 5px;
}



.overlaping .icon-step-box {
    min-width:223px;
    background:#fff;
    border-radius:24px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.08)
}

.overlaping.icon-step-box .icon {
    margin:0 0 16px;
    display:flex;
    align-items:center;
    justify-content:center
}

.overlaping.icon-step-box .icon img {
    display:block;
    max-width:64px;
    height:auto;
    filter:invert(65%) sepia(67%) saturate(749%) hue-rotate(102deg) brightness(93%) contrast(91%)
}

.overlaping .icon-step-box p {
    margin:0 auto;
    font-size:16px;
    font-weight:600;
    max-width:80%
}

.overlaping.icon-step-box {
    flex:1 1 calc(33.333% - 24px)
}

.overlaping .icon-step-box {
    width:200px;
    margin-bottom:0;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    height:200px
}

.overlaping::-webkit-scrollbar {
    display:none
}

.overlaping {
    -ms-overflow-style:none;
    scrollbar-width:none
}

.overlaping .icon-step-boxes-container {
    gap:16px
}

.overlaping.icon-step-box {
    flex:1 1 100%
}

@media (max-width: 991px) {
    section.icon-steps {
        /*overflow-x: hidden*/
    }
}


/* components/images.css */
/**
 * images.css
 * Extracted from index.html
 */

.fit-image {
    position:relative
}

.fit-image:before {
    content:'';
    display:block
}

.fit-image a,
.fit-image img {
    position:absolute;
    display:inline-block;
    min-width:100%;
    min-height:100%;
    max-width:100%;
    max-height:100%;
    left:0;
    right:0;
    bottom:0;
    top:0;
    object-fit:cover
}

.fit-image.contain img {
    object-fit:contain
}

.fit-image:before {
    padding-bottom:97.2%
}

.fit-image {
    overflow:hidden
}

.fit-image {
    border-radius:20px
}

.fit-image:before {
    padding-bottom:78.836%
}

.fit-image {
    width:calc(20% - 16px);
    border-radius:15px;
    cursor:pointer;
    opacity:.3;
    transition:.3s all;
    position:relative
}

.fit-image:before {
    content:'';
    display:block;
    padding-bottom:78.53%
}

.fit-image:hover,
.product-detail-box .gallery-box .mini-previews .fit-image.active {
    opacity:1
}

.fit-image {
        width:calc(33.333% - 14px)
    }

.fit-image {
        border-radius:10px;
        width:calc(33.333% - 7px)
    }

.fit-image {
    border-top-right-radius:10px;
    border-top-left-radius:10px;
    overflow:hidden
}

.fit-image:before {
    padding-bottom:62.715%
}

.fit-image:before {
    content:'';
    display:block
}

.fit-image:before {
    padding-bottom:97.2%
}

.fit-image:before {
    padding-bottom:78.836%
}

.fit-image:before {
    content:'';
    display:block;
    padding-bottom:78.53%
}

.fit-image:before {
    padding-bottom:62.715%
}

/* sections/breadcrumbs.css */
/**
 * breadcrumbs.css
 */

.breadcrumbs-list {
    display: flex;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumbs-list li {
    margin-right: 15px;
}

.breadcrumbs-list li:before {
    content: "\f054";
    font-weight: 400;
    font-family: "Font Awesome 7 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size: 12px;
    margin-right: 15px;
}

.breadcrumbs-list li:first-child:before {
    content: none;
}

.breadcrumbs-list li:last-child {
    margin-right: 0;
}

nav.breadcrumbs {
    background-image: url('https://autoznemecka.sk/wp-content/themes/autonakluc/assets/images/breadcrumbs.png');
    background-size: cover;
    background-position: center;
    padding: 25px 0;
    box-shadow: 0 40px 30px -40px rgba(0, 0, 0, 0.2) inset;
    color: #fff;
}

nav.breadcrumbs .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.breadcrumbs a {
    color: #fff;
}

nav.breadcrumbs a:hover {
    color: #262626;
}

nav.breadcrumbs .breadcrumbs-list {
    margin-bottom: 0;
}

nav.breadcrumbs .action {
    font-size: 16px;
    white-space: nowrap;
}

nav.breadcrumbs .action i {
    margin-right: 10px;
    font-size: 14px;
}

@media (max-width: 767px) {
    nav.breadcrumbs .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav.breadcrumbs .action {
        display: none;
    }

    .breadcrumbs-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }

    .breadcrumbs-list li {
        flex-shrink: 0;
    }

    .breadcrumbs-list::-webkit-scrollbar {
        display: none;
    }
}

/* sections/hero.css */
/**
 * hero.css
 * Extracted from index.html
 */

/* LCP obrázok — nahrádza background-image, aby ho predskenovač našiel v HTML.
   z-index:-1 nepoužívame: sekcia má vlastné background-color (#262626),
   za ktoré by obrázok spadol a zmizol. */
.hero-main__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Obsah hero-u nad obrázok. */
section.hero:has(> .hero-main__bg) > *:not(.hero-main__bg) {
    position: relative;
    z-index: 1;
}

/* Sekcie, ktoré sa záporným marginom vťahujú do hero, sú position:static,
   takže by ich absolútne pozicovaný obrázok prekryl. Vrátime ich navrch. */
.content-section.action-boxes-section,
.content-section.contact-action-boxes-section {
    position: relative;
    z-index: 1;
}

section.hero {
    background-size:cover;
    padding-top:135px;
    box-shadow:7px 39px 80px rgba(38,38,38,.1);
    &.testimonial-left{
        .hero-reviews-content .review-author-row {
            justify-content: flex-start;
        }
    }
    &.padding-big{
        padding: 65px 0 150px;
    }
}

section.hero .text {
    color:#a5acbf;
    max-width:890px;
    padding-bottom:75px
}

section.hero .text p {
    font-weight:700
}

section.hero .text strong {
    color:#fff
}

section.hero .text .page-title {
    margin-bottom:55px;
    color:#fff
}

section.hero .text .actions {
    margin-top:50px
}

section.hero .slider__bullets {
    display:flex
}

section.hero .slider__bullet {
    width:26px;
    height:26px;
    display:inline-block;
    border:2px solid transparent;
    border-radius:50%;
    background:transparent;
    cursor:pointer;
    position:relative;
    transition:.3s all;
    margin-right:5px
}

section.hero .slider__bullet:last-child {
    margin-right:0
}

section.hero .slider__bullet:before {
    content:'';
    left:7px;
    right:7px;
    top:7px;
    bottom:7px;
    border-radius:50%;
    background:#fff;
    opacity:.2;
    position:absolute;
    display:block;
    transition:inherit
}

section.hero .slider__bullet:after {
    content:'';
    left:-13px;
    width:0;
    height:4px;
    top:calc(50% - 2px);
    position:absolute;
    background:linear-gradient(130deg,#1fefa5 0,#3dcb98 100%);
    display:block;
    transition:inherit;
    border-radius:10px
}

section.hero .slider__bullet:hover:before {
    opacity:1
}

section.hero .slider__bullet.glide__bullet--active {
    border:2px solid #fff
}

section.hero .slider__bullet.glide__bullet--active:before {
    opacity:0
}

section.hero .slider__bullet.glide__bullet--active:after {
    width:26px;
    transition-delay:.1s
}

/* Pozn.: tu boli telá media queries bez @media obalu (min-height:auto, padding
   75px/35px), ktoré zabíjali min-height:725px na všetkých šírkach. Tie isté
   pravidlá sú korektne v responsive/media-queries.css (991 px a 480 px). */

/* Plná výška len pre hero na Kontakte — blok má HTML anchor "hero-contact".
   Pod 992px platí mobilný reset (height:auto) z media-queries.css. */
@media (min-width:992px) {
    section.hero#hero-contact {
        min-height:725px;
        height:calc(100vh - 172px);
    }
}

.special-hero.hero {
        text-align:center;
        height:inherit;
        padding-bottom:135px
    }

.special-hero .content-wrap .text {
        max-width:100%;
        padding-bottom:25px
    }

.special-hero .content-wrap .text p {
        text-align:center!important;
        color: #fff;
    }

.special-hero.hero {
        padding:75px 0 50px
    }

/* Hero Main block — review + breadcrumbs */
.hero-reviews-content {
    margin-top: 2em;
    color: #fff;
}

.hero-reviews-content .review-author-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: .5em;
}

.hero-reviews-content .review-author-row .stars {
    margin-right: 1em;
    color: yellow;
}

.hero-reviews-content blockquote {
    margin: 0;
    font-style: italic;
    opacity: .85;
}

@media (min-width: 992px) {
    .hero-reviews-content .review-author-row {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .hero-reviews-content {
        display: none;
    }
}

/* Breadcrumbs utility used in hero */
.color-white,
.color-white a {
    color: #fff;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumbs-list li + li::before {
    content: '/';
    margin-right: 4px;
    opacity: .6;
}

@media (max-width: 991px) {
    .breadcrumbs-list {
        font-size: 12px;
    }
}
/* sections/hero-filter.css */
/**
 * hero-filter.css
 * Homepage hero section with vehicle filter box + advanced search popup
 */
.bg-grey {
    background: #f4f5f7;
}

/* ============================================================
   VARIABLES (local overrides for this component)
   ============================================================ */
.hf-hero,
.hf-popup-overlay {
    --hf-green: #10b981;
    --hf-green-dark: #059669;
    --hf-green-bg: #f0fdf4;
    --hf-border-active: 2px solid #10b981;
    --hf-radius-box: 12px;
    --hf-radius-modal: 16px;
    --hf-radius-btn: 24px;
    --hf-shadow-box: 0 4px 24px rgba(0, 0, 0, 0.12);
    --hf-shadow-modal: 0 8px 48px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hf-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background-image: url('https://autoznemecka.sk/wp-content/themes/autonakluc/assets/images/hero-cars.webp'), url('https://autoznemecka.sk/wp-content/themes/autonakluc/assets/images/background.webp');
    background-size: cover;
    background-position: center;
    padding: 50px 0 0;
    overflow: visible;

    &:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: #f4f5f7;
    }
}

/* Keď je hero vykreslený ako <img>, CSS pozadie je len mŕtva váha — prehliadač
   by ho stiahol pod neviditeľným obrázkom. */
.hf-hero:has(> .hf-hero__bg) {
    background-image: none;
}

/* LCP obrázok — nahrádza background-image, aby ho predskenovač našiel v HTML.
   Správa sa ako background-size:cover / position:center. */
/* LCP obrázok nahrádza background-image. z-index:-1 nepoužívame — spadol by
   za prípadné background-color sekcie; sekcie pod hero sa namiesto toho
   dvíhajú nad obrázok vlastným z-indexom (viď sections/hero.css). */
.hf-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hf-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to right,
            rgba(16, 185, 129, 0.78) 0%,
            rgba(16, 185, 129, 0.45) 50%,
            rgba(20, 25, 30, 0.55) 100%
    );
    pointer-events: none;
}

.hf-hero__inner {
    position: relative;
    z-index: 1;
}

.hf-hero__text {
    text-align: center;
    margin-bottom: 40px;
}

.hf-hero__title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    max-width: 65%;
    margin: 10px auto;
    letter-spacing: -0.02em;
    @media(max-width: 798px){
        max-width: 100%;
    }
}

.hf-hero__perex {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   FILTER BOX
   ============================================================ */
.hf-box {
    background: #fff;
    border-radius: var(--hf-radius-box);
    box-shadow: var(--hf-shadow-box);
    padding: 28px 28px 20px;
}

.hf-box__rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.hf-box__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Visual-only select divs */
.hf-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1.5px solid var(--color-border, #dee1ea);
    border-radius: 8px;
    padding: 12px 14px;
    cursor: default;
    background: #fff;
    transition: border-color 0.2s;
    user-select: none;
}

.hf-select--active {
    border: var(--hf-border-active);
    background: var(--hf-green-bg);
}

.hf-select--active .hf-select__label {
    color: var(--hf-green);
    font-weight: 700;
}

.hf-select__label {
    font-size: 14px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hf-select__chevron {
    font-size: 11px;
    color: #9ca3af;
    flex-shrink: 0;
}

/* ============================================================
   ACCORDION TOGGLE (mobile only — hidden on desktop)
   ============================================================ */
.hf-box__toggle {
    display: none;
}

.hf-box__toggle-badge {
    display: none;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: var(--hf-green);
    border-radius: 100px;
    padding: 2px 7px;
    line-height: 1.5;
}

.hf-box__toggle-badge:not(:empty) {
    display: inline-flex;
}

.hf-box__toggle-arrow {
    transition: transform 0.25s ease;
}

.hf-box.is-open .hf-box__toggle-arrow {
    transform: rotate(180deg);
}

/* Filter box footer: advanced link + CTA */
.hf-box__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border, #dee1ea);
}

.hf-advanced-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--hf-green);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.2s;
}

.hf-advanced-link:hover {
    color: var(--hf-green-dark);
}

.hf-advanced-link i {
    font-size: 11px;
}

/* ============================================================
   POPUP OVERLAY
   ============================================================ */
.hf-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.hf-popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   POPUP MODAL
   ============================================================ */
.hf-popup {
    background: #fff;
    border-radius: var(--hf-radius-modal);
    box-shadow: var(--hf-shadow-modal);
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    transform: translateY(-16px);
    transition: transform 0.25s;
}

.hf-popup-overlay.is-open .hf-popup {
    transform: translateY(0);
}

/* Popup header */
.hf-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border, #dee1ea);
    flex-wrap: wrap;
}

.hf-popup__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark, #262626);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hf-popup__title i {
    color: var(--hf-green);
}

.hf-popup__header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hf-btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    border-radius: var(--hf-radius-btn);
    padding: 7px 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.hf-btn-reset:hover {
    background: #fee2e2;
    border-color: #ef4444;
}

.hf-btn-show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--hf-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--hf-radius-btn);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.hf-btn-show:hover {
    background: var(--hf-green-dark);
}

.hf-btn-show--full {
    width: 100%;
    font-size: 16px;
    padding: 14px 24px;
}

.hf-popup__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border, #dee1ea);
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.hf-popup__close:hover {
    background: #f3f4f6;
    color: var(--color-dark, #262626);
}

/* Active filter tags */
.hf-active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-border, #dee1ea);
}

.hf-active-tags:empty {
    display: none;
}

.hf-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hf-green);
    background: var(--hf-green-bg);
    border: 1.5px solid #6ee7b7;
    border-radius: 100px;
    padding: 4px 10px 4px 12px;
}

.hf-tag__remove {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--hf-green);
    font-size: 11px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.15s;
}

.hf-tag__remove:hover {
    opacity: 1;
}

/* Popup body */
.hf-popup__body {
    padding: 0 24px;
    overflow-y: auto;
    max-height: calc(100vh - 260px);
}

/* Popup sections */
.hf-popup__section {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border, #dee1ea);
}

.hf-popup__section:last-child {
    border-bottom: none;
}

.hf-popup__section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin: 0 0 16px;
}

/* Popup 2-col grid */
.hf-popup__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

/* Popup footer */
.hf-popup__footer {
    padding: 16px 24px 20px;
    border-top: 1px solid var(--color-border, #dee1ea);
}

/* ============================================================
   SHARED FORM ELEMENTS (inside popup)
   ============================================================ */
.hf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hf-field--full {
    grid-column: 1 / -1;
}

.hf-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark, #262626);
    display: block;
    padding: 0;
}

/* Text input — mirrors .hf-select-wrap/.hf-select-native so both controls share the same border/padding/size */
.hf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #e9ebf085;
    padding: 6px;
    border-radius: 10px;
}

.hf-input-wrap--active .hf-input {
    border: var(--hf-border-active);
    background: var(--hf-green-bg);
}

.hf-input {
    flex: 1;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 8px;
    padding: 7px 15px;
    font-size: 14px;
    color: var(--color-dark, #262626);
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;


}

.hf-input-clear {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    font-size: 12px;
    transition: color 0.15s;
}

.hf-input-clear:hover {
    color: var(--color-dark, #262626);
}

/* Native select wrapper */
.hf-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #e9ebf085;
    padding: 6px;
    border-radius: 10px;
}

.hf-select-native {
    width: 100%;
    appearance: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--color-dark, #262626);
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    padding: 7px 15px;
    line-height: inherit;
    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.hf-select-native:focus {
    border-color: var(--hf-green);
}

.hf-select-wrap--active .hf-select-native {
    border: var(--hf-border-active);
    background: var(--hf-green-bg);
    color: var(--hf-green);
    font-weight: 600;
}

.hf-select-wrap__chevron {
    position: absolute;
    right: 12px;
    font-size: 11px;
    color: #9ca3af;
    pointer-events: none;
}

/* Nacitanie modelov po vybere znacky — chevron sa vymeni za spinner, aby klient
   videl, ze sa nieco deje (studeny transient = 0,5-3 s cakania na API). */
.hf-select-wrap.is-loading .hf-select-wrap__chevron::before {
    content: "\f110"; /* fa-spinner */
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
    .hf-select-wrap.is-loading .hf-select-wrap__chevron::before {
        animation: none;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Range pair */
.hf-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* ============================================================
   VEHICLE TYPE CHECKBOXES
   ============================================================ */
.hf-vtypes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.hf-vtype {
    cursor: pointer;
    padding: 0;
}

.hf-vtype__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hf-vtype__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border: 1.5px solid var(--color-border, #dee1ea);
    border-radius: 10px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}

.hf-vtype__input:checked + .hf-vtype__box {
    border: var(--hf-border-active);
    background: var(--hf-green-bg);
    color: var(--hf-green);
}

.hf-vtype__icon {
    font-size: 20px;
    color: #9ca3af;
    transition: color 0.2s;
}

.hf-vtype__input:checked + .hf-vtype__box .hf-vtype__icon {
    color: var(--hf-green);
}

.hf-vtype__name {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-dark, #262626);
    line-height: 1.2;
}

/* ============================================================
   RADIO BUTTONS
   ============================================================ */
.hf-radios {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;

}

.hf-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-dark, #262626);
    margin-bottom: 0;
}

.hf-radio input[type="radio"] {
    accent-color: var(--hf-green);
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ============================================================
   CHECKBOXES
   ============================================================ */
.hf-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hf-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-dark, #262626);
    padding: 7px 17px;
    border: 1.5px solid var(--color-border, #dee1ea);
    border-radius: 100px;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
    background: #fff;
    width: min-content;
    height: 35px;
    text-align: center;
}

.hf-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hf-checkbox:has(input:checked),
.hf-checkbox--active {
    border: var(--hf-border-active);
    background: var(--hf-green-bg);
    color: var(--hf-green);
    font-weight: 700;
}

.hf-checkbox--metallic {
    margin-top: 8px;
}

/* ============================================================
   COUNTRY CHECKBOXES
   ============================================================ */
.hf-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hf-country {
    cursor: pointer;
    padding: 0;
}

.hf-country input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hf-country__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 7px 14px;
    border: 1.5px solid var(--color-border, #dee1ea);
    border-radius: 100px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
}

.hf-country:has(input:checked) .hf-country__label {
    border: var(--hf-border-active);
    background: var(--hf-green-bg);
    color: var(--hf-green);
    font-weight: 700;
}

.hf-country__flag {
    font-size: 16px;
    line-height: 1;
}

/* ============================================================
   COLOR PICKER
   ============================================================ */
.hf-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hf-color {
    cursor: pointer;
    padding: 10px;
    margin-bottom: auto !important;
}


.hf-color input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.hf-color__circle {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: outline-color 0.2s;
}

.hf-color:has(input:checked) .hf-color__circle {
    outline-color: var(--hf-green);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hf-hero {
        padding: 60px 20px;
        min-height: 560px;
    }

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

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

    .hf-popup__grid {
        grid-template-columns: 1fr;
    }

    .hf-field--full {
        grid-column: auto;
    }
}

@media (max-width: 767px) {
    .hf-hero {
        padding: 60px 0 120px;
    }

    .hf-box {
        padding: 14px 16px;
    }

    /* Accordion toggle — skrytý, filter je vždy otvorený */
    .hf-box__toggle {
        display: none;
    }

    .hf-box__toggle-label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        font-weight: 700;
        color: var(--color-dark, #262626);
    }

    .hf-box__toggle-label > i {
        color: var(--hf-green);
        font-size: 15px;
    }

    .hf-box__toggle-arrow {
        font-size: 13px;
        color: #6b7280;
    }

    /* Collapsible body — vždy otvorené na mobile */
    .hf-box__collapsible {
        overflow: visible;
        max-height: none;
        padding-top: 14px;
    }

    .hf-box__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hf-box__footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hf-advanced-link {
        justify-content: center;
    }

    .hf-cta-btn {
        text-align: center;
        justify-content: center;
    }

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

    .hf-popup-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .hf-popup {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        /* `vh` na iOS počíta výšku okna so skrytým adresným riadkom a nezmenší sa pri vysunutej
           klávesnici — spodný footer s CTA „Zobraziť" potom skončí pod okrajom obrazovky.
           Horné CTA je na mobile skryté (`.hf-btn-show` nižšie), takže používateľ neostane
           bez tlačidla. `dvh` reaguje na klávesnicu aj na adresný riadok, `vh` je záloha pre
           staršie prehliadače — preto to poradie deklarácií. */
        max-height: 92vh;
        max-height: 92dvh;
        transform: translateY(40px);
    }

    .hf-popup-overlay.is-open .hf-popup {
        transform: translateY(0);
    }

    .hf-popup__body {
        max-height: calc(92vh - 240px);
        max-height: calc(92dvh - 240px);
    }

    .hf-popup__header-actions .hf-btn-show {
        display: none;
    }

    /* Veľkosť písma polí (16px kvôli iOS zoomu) rieši globálne pravidlo v `forms.css` — tu
       zámerne nič, nech existuje jedno miesto pravdy. */
}

@media (max-width: 480px) {
    .hf-box__row {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

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

/* ── Výbava / Equipment filter ────────────────────────────────── */
.hf-eq-section {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.hf-eq-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hf-eq-section__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark, #262626);
    margin: 0 0 16px;
}

.hf-eq-group {
    margin-bottom: 24px;
}

.hf-eq-group:last-child {
    margin-bottom: 0;
}

.hf-eq-group__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ca3af;
    margin: 0 0 10px;
}

.hf-eq-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.hf-eq-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-dark, #262626);
    padding: 5px 8px 5px 0;
    line-height: 1.3;
    transition: color 0.15s;
}

.hf-eq-item input[type="checkbox"] {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    accent-color: var(--color-primary, #e31b23);
    cursor: pointer;
}

.hf-eq-item:hover span {
    color: var(--color-primary, #e31b23);
}

.hf-eq-item input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: var(--color-primary, #e31b23);
}

@media (max-width: 767px) {
    .hf-eq-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hf-eq-cols {
        grid-template-columns: 1fr;
    }
}

/* -------- Live count: loading stav tlačidiel "Zobraziť X áut" ([C2]) -------- */
.hf-cta-btn.is-counting,
.hf-btn-show.is-counting {
    cursor: progress;
}

/* Pozor: .button.style-3 má ::before obsadené gradientovým pozadím (buttons.css),
   preto spinner ide na .inner::before. Tlačidlá bez .inner (horné "Zobraziť"
   v popupe) .button trieda nemá, tam je ::before voľné. */
.hf-cta-btn.is-counting .inner::before,
.hf-btn-show.is-counting .inner::before,
.hf-btn-show:not(.button).is-counting::before {
    content: '';
    display: inline-block;
    flex: 0 0 auto;
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
    vertical-align: -0.15em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='16' stroke='%23ffffff' stroke-width='5' fill='none' stroke-dasharray='80 20' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 20 20' to='360 20 20' dur='0.8s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E") center / contain no-repeat;
}

/* sections/newsletter.css */
/**
 * newsletter.css
 * Extracted from index.html
 */

section.newsletter {
    background-image:url('https://autoznemecka.sk/themes/invelity/img/newsletter/background.jpg');
    background-size:cover;
    background-position:center;
    padding:110px 0 135px;
    box-shadow:0 40px 30px -40px rgba(0,0,0,.2) inset
}

section.newsletter .section-title {
    color:#fff;
    max-width:960px;
    margin:0 auto
}

section.newsletter {
        padding:50px 0 75px
    }

.newsletter-form {
    display:flex;
    max-width:580px;
    margin:0 auto;
    padding:10px;
    background:#fff;
    align-items:center;
    position:relative;
    border-radius:100px
}

.newsletter-form i {
    position:absolute;
    font-size:18px;
    top:22px;
    left:30px
}

.newsletter-form input {
    font-size:20px;
    background:transparent;
    color:#a5acbf;
    padding:8px 15px 14px 45px;
    box-shadow:none
}
/* sections/contacts.css */
/**
 * contacts.css
 * Extracted from index.html
 */

section.contacts {
    background:#262626;
    padding:65px 0
}

section.contacts {
        padding:50px 0
    }

.contacts-box {
    display:flex;
    justify-content:space-between;
    align-items:center
}

.contacts-box .text .section-title {
    color:#fff;
    font-size:42px;
    font-weight:900;
    margin-bottom:10px
}

.contacts-box .text p {
    color:#fff;
    font-weight:700
}

.contacts-box .contacts-list li {
    margin-bottom:5px
}

.contacts-box .contacts-list li:last-child {
    margin-bottom:0
}

.contacts-box .contacts-list a {
    font-weight:900;
    color:#fff;
    font-size:36px
}

.contacts-box .contacts-list a i {
    font-size:24px;
    color:#3dcb98;
    width:40px;
    text-align:center;
    margin-right:10px;
    position:relative;
    bottom:2px
}

.contacts-box .contacts-list a:hover {
    color:#3dcb98
}

@media(max-width: 998px){
    .contacts-box .contacts-list a {
        font-size:24px
    }

    .contacts-box .contacts-list a i {
        font-size:20px;
        width:24px
    }

    .contacts-box {
        flex-direction:column
    }

    .contacts-box .text {
        margin-bottom:25px;
        text-align:center
    }

    .contacts-box .text:last-child {
        margin-bottom:0
    }
}

/* sections/contact-form.css */
section.contact {
    padding: 80px 0;
    background: url('/wp-content/uploads/2026/06/pozadie-auto.webp') center center / cover no-repeat;
}

section.contact .contact-section-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

section.contact .text {
    flex: 1;
    max-width: 420px;
    padding-top: 20px;
}

section.contact .text .section-title.big {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.15;
    color: #262626;
}

section.contact .text p {
    font-size: 17px;
    line-height: 1.7;
    color: #000;
}

.contact-form-wrapper {
    width: 50%;
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 7px 39px 80px rgba(38, 38, 38, 0.1);
}

.contact-form-popup-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #262626;
}

.contact-popup-form .form-actions {
    margin-top: 25px;
}

.contact-form-feedback {
    margin-top: 15px;
    font-weight: 600;
    font-size: 15px;
    min-height: 20px;
}

.contact-form-feedback--success {
    color: #3dcb98;
}

.contact-form-feedback--error {
    color: #f44336;
}

@media (max-width: 998px) {
    section.contact .contact-section-inner {
        flex-direction: column;
    }

    section.contact .text {
        max-width: 100%;
        padding-top: 0;
    }

    section.contact .text .section-title.big {
        font-size: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form-wrapper {
        width: 100%;
    }
}

@media (max-width: 767px) {
    section.contact .text .section-title.big {
        text-align: center;
    }
}

/* utilities/spacing.css */
/**
 * spacing.css
 * Extracted from index.html
 */

.pt5.pb0 {
    padding-bottom:0
}

.pt5 {
    margin-top:0px!important;
    padding-top:5em!important
}

.pt5:first-child {
    padding-top:0px!important
}

.pb0 {
    padding-bottom:0
}

.small-pad-bottom {
    padding-bottom:0em!important
}
/* utilities/helpers.css */
/**
 * helpers.css
 * Extracted from index.html
 */

.primary-gradient {
    background:linear-gradient(130deg,#1fefa5 0,#3dcb98 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* responsive/media-queries.css */
/**
 * Responsive Media Queries
 * All media queries organized by breakpoint — largest to smallest (desktop-first)
 *
 * @package AutoNaKluc
 */

/* ==========================================================================
   DESKTOP FIRST — max-width queries from largest to smallest
   ========================================================================== */

/* Extra Large Desktop (≤1390px) */
@media (max-width: 1390px) {
    section.icon-steps.nobg {
        padding: 65px 0 120px
    }

    .overlaping.icon-step-boxes-container {
        flex-direction: column;
        margin-top: -30px;
        overflow-x: scroll;
        overflow-y: visible;
        max-width: 100%;
        width: 100%
    }

    .overlaping .icon-step-box {
        width: 200px;
        margin-bottom: 0;
        text-align: center;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
        height: 200px
    }

    .overlaping::-webkit-scrollbar {
        display: none
    }

    .overlaping {
        -ms-overflow-style: none;
        scrollbar-width: none
    }
}

/* Large Desktop (≤1260px) */
@media (max-width: 1260px) {
    .text-image-box .image {
        margin-left: -30px
    }

    .text-image-box.reverse .image {
        margin-right: -30px
    }

    .map-contact-box .map-box {
        width: 65%;
        margin-left: -30px
    }
}

/* Large Desktop (≤1259px) */
@media (max-width: 1259px) {
    .main-nav a {
        font-size: 17px
    }
}

/* Large Desktop (≤1250px) */
@media (max-width: 1250px) {
    .action-boxes-container {
        flex-wrap: wrap
    }

    .action-box {
        width: calc(49.333% - 24px) !important;
        margin-bottom: 2em
    }
}

/* Large Desktop (≤1220px) */
@media (max-width: 1220px) {
    .header-panel .header-panel-link:first-child {
        padding-right: 15px;
        margin-right: 15px
    }

    .main-nav a {
        padding: 5px 15px 7px
    }

    .product-box .text {
        padding: 40px 30px
    }

    .country-slider-box .country-slider-nav .country-slider-nav-link {
        width: calc(16.666% - 15px)
    }

    .archive-filter .actions {
        width: 20%
    }

    section.calculation .section-title.big {
        font-size: 60px
    }

    section.calculation .section-title.mid {
        font-size: 50px;
        max-width: 100%;
    }

    section.calculation .field-container {
        flex-direction: row
    }
}

/* Large Desktop (≤1100px) */
@media (max-width: 1100px) {
    .main-nav a {
        font-size: 14px
    }
}

/* Desktop (≤1024px) */
@media (max-width: 1024px) {
    .overlaping.icon-step-box {
        flex: 1 1 calc(33.333% - 24px)
    }
}

/* Tablet Landscape (≤991px) */
@media (max-width: 991px) {
    .partners-wrapper-box .partner-box {
        width: calc(100% / 3 - 24px)
    }

    .top-notice {
        padding: 10px 15px
    }

    section.article-detail {
        padding-top: 20px
    }

    .gallery-item-slide .row {
        flex-wrap: wrap
    }

    .main-nav a {
        font-size: 20px;
        padding: 5px 30px 7px
    }

    .special-hero.hero {
        padding: 75px 0 50px
    }

    .hero-reviews-content {
        display: none
    }

    .pll-parent-menu-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        align-items: center
    }

    .menu-toggle {
        right: auto;
        left: 0
    }

    .lang-switcher-link {
        display: inline-block;
        z-index: 101;
        height: 30px;
        width: 30px;
        right: 0;
        position: absolute;
        top: calc(50% - 15px)
    }

    .pages-list .lang-item {
        display: none
    }

    .page-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff
    }

    body {
        margin-top: 95px
    }

    .button.mid {
        padding: 13px 25px 17px
    }

    .menu-toggle {
        display: inline-block;
        z-index: 101;
        height: 20px;
        width: 30px
    }

    .menu-toggle:hover span {
        background: #3dcb98
    }

    .menu-toggle span {
        transition: .3s all;
        position: absolute;
        height: 2px;
        width: 100%;
        display: inline-block;
        background: #262626
    }

    .menu-toggle span:nth-child(1) {
        top: 0
    }

    .menu-toggle span:nth-child(2),
    .menu-toggle span:nth-child(3) {
        top: calc(50% - 1px)
    }

    .menu-toggle span:nth-child(4) {
        bottom: 0
    }

    .menu-toggle.active span:nth-child(1) {
        opacity: 0
    }

    .menu-toggle.active span:nth-child(2) {
        transform: rotate(45deg)
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg)
    }

    .menu-toggle.active span:nth-child(4) {
        opacity: 0
    }

    h1,
    .page-title {
        font-size:3em;
    }

    h1 small,
    .page-title small {
        font-size: 50px
    }

    h2,
    .section-title {
        font-size: 35px
    }

    h2 small,
    .section-title small {
        font-size: 16px
    }

    h3 {
        font-size: 24px
    }

    h4 {
        font-size: 20px
    }

    .header-panel {
        justify-content: center;
        padding: 15px 0
    }

    .header-panel .left,
    .header-panel .right {
        display: none
    }

    .header-panel .center {
        width: 100%;
        position: relative
    }

    .header-panel .logo {
        max-width: 135px;
        margin: 0 auto
    }

    .header-panel .logo img {
        height: 40px
    }

    .main-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 70px;
        bottom: 0;
        background: #fff;
        z-index: 10000;
        display: none;
        transition: .3s height;
        overflow: hidden
    }

    .main-nav.active {
        display: block
    }

    .main-nav ul {
        text-align: center;
        flex-direction: column
    }

    .main-nav ul li {
        border-right: 0
    }

    .main-nav ul li + li {
        margin-left: 0;
        margin-top: 10px;
        border-top: 1px solid #edeff4
    }

    .action-boxes-container .action-box {
        width: calc(33.333% - 10px)
    }

    .action-box {
        padding: 35px 30px
    }

    .product-boxes-container {
        justify-content: space-between
    }

    .product-boxes-container .product-box {
        width: calc(50% - 18px);
        margin-right: 0
    }

    .product-boxes-container .product-box:nth-child(n+3) {
        margin-top: 40px
    }

    .text-image-box .image {
        max-width: 55%
    }

    .reviews-slider-box blockquote:before,
    .reviews-slider-box blockquote:after {
        width: 100px
    }

    .reviews-slider-box blockquote:before {
        left: 0;
        top: -35px
    }

    .reviews-slider-box blockquote:after {
        right: 0
    }

    .contacts-box .contacts-list a {
        font-size: 24px
    }

    .contacts-box .contacts-list a i {
        font-size: 20px;
        width: 24px
    }

    .calculation-form {
        padding: 30px 35px
    }

    .text-faq-box .faq-boxes-container {
        width: 55%
    }

    .text-faq-box .text {
        width: 43%
    }

    .country-slider-box .country-slider-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px
    }

    .country-slider-box .country-slider-nav .country-slider-nav-link {
        width: calc(25% - 15px);
        box-shadow: 7px 39px 40px rgba(38, 38, 38, .1)
    }

    .archive-filter .filter-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: initial
    }

    .archive-filter .filter-container .form-group {
        flex: initial;
        width: calc(50% - 10px);
        margin-bottom: 20px
    }

    .archive-filter .filter-container .form-group:last-child {
        margin-bottom: 0
    }

    .archive-filter .filter-container .actions {
        width: calc(50% - 10px)
    }

    .product-detail-box .prices-container {
        justify-content: flex-start
    }

    .product-detail-box .text-gallery {
        flex-direction: column
    }

    .product-detail-box .text-gallery .text {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 35px
    }

    .product-detail-box .text-gallery .gallery-box {
        width: 100%;
        margin: 0 auto
    }

    .product-detail-box .product-detail-text-boxes-container {
        flex-direction: column;
        margin-bottom: 35px
    }

    .product-detail-box .product-detail-text-boxes-container .product-detail-text-box {
        width: 100%;
        margin-bottom: 35px;
        max-width: 100%
    }

    .product-detail-box .product-detail-text-boxes-container .product-detail-text-box:nth-child(n+4) {
        margin-top: 0
    }

    .product-detail-box .product-detail-text-boxes-container .product-detail-text-box:last-child {
        margin-bottom: 0
    }

    .article-box .article-title {
        font-size: 24px
    }

    .map-contact-box {
        flex-direction: column
    }

    .map-contact-box .map-box {
        width: calc(100% + 30px);
        margin-bottom: 75px
    }

    .map-contact-box .map-box:before {
        content: '';
        display: block;
        padding-bottom: 65%
    }

    .map-contact-box .contact-boxes-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0
    }

    .map-contact-box .contact-boxes-container .contact-box {
        width: 48%
    }

    section.hero {
        height: auto;
        min-height: auto;
        padding: 75px 0 100px
    }

    section.hero .text {
        padding-bottom: 35px
    }

    section.hero .text .actions {
        margin-top: 35px
    }

    section.hero .text .page-title {
        margin-bottom: 35px
    }

    .content-section.action-boxes-section {
        margin-top: -50px
    }

    .content-section.contact-action-boxes-section {
        margin-top: -50px
    }

    section.calculation .section-title.big {
        font-size: 48px
    }

    section.calculation .section-title.mid {
        font-size: 40px
    }

    .page-footer .top-part .footer-box {
        max-width: 200px
    }

    .page-footer .top-part .footer-box .logo {
        max-width: 155px
    }
}

/* Tablet (≤790px) */
@media (max-width: 790px) {
    .header-panel .right {
        display: flex;
        position: absolute;
        top: 70px;
        background: #fff;
        width: 100%;
        left: auto;
        right: auto;
        text-align: center;
        margin: 0 auto;
        border-top: 1px solid #ececec;
        padding: .5em
    }

    .header-panel .right .header-rating-box {
        margin: 0 auto
    }
}

/* Tablet Portrait (≤767px) */
@media (max-width: 767px) {
    .action-boxes-container .action-box {
        width: 100% !important;
        margin-bottom: 25px
    }

    .gallery-item-slide .row .item {
        margin: 0;
        height: 85px
    }

    .gallery-slider-box .glide__arrows .glide__arrow {
        width: 35px;
        height: 35px;
        font-size: 20px
    }

    body {
        margin-top: 115px
    }

    .action-boxes-container {
        flex-direction: column
    }

    .action-boxes-container .action-box {
        width: 100%;
        margin-bottom: 25px
    }

    .action-boxes-container .action-box:last-child {
        margin-bottom: 0
    }

    .text-image-box {
        flex-direction: column
    }

    .text-image-box .image {
        max-width: calc(100% + 15px);
        margin-bottom: 35px;
        margin-left: -15px;
        margin-right: 0
    }

    .text-image-box .text {
        width: 100%
    }

    .text-image-box.reverse {
        flex-direction: column
    }

    .text-image-box.reverse .image {
        margin-left: 0;
        margin-right: -15px
    }

    .contacts-box {
        flex-direction: column
    }

    .contacts-box .text {
        margin-bottom: 25px;
        text-align: center
    }

    .contacts-box .text:last-child {
        margin-bottom: 0
    }

    .statistics-boxes-container {
        justify-content: center
    }

    .statistics-boxes-container .statistics-box {
        width: 48%
    }

    .statistics-boxes-container .statistics-box:nth-child(n+3) {
        margin-top: 25px
    }

    .text-faq-box {
        flex-direction: column
    }

    .text-faq-box .text {
        width: 100%;
        margin-bottom: 25px;
        max-width: initial
    }

    .text-faq-box .faq-boxes-container {
        width: 100%
    }

    .country-slider-box .country-slider-nav .country-slider-nav-link {
        width: calc(33.333% - 15px)
    }

    .icon-step-boxes-container {
        flex-wrap: wrap;
        justify-content: center
    }

    .icon-step-boxes-container .icon-step-box {
        width: 30%;
        max-width: initial;
        margin-bottom: 35px
    }

    .icon-step-boxes-container .icon-step-box:last-child {
        margin-bottom: 0
    }

    .archive-panel {
        margin-bottom: 35px
    }

    .archive-panel:last-child {
        margin-bottom: 0
    }

    .article-boxes-container .article-box {
        width: 100%
    }

    .article-boxes-container .article-box:nth-child(n+2) {
        margin-top: 40px
    }

    .map-contact-box .map-box {
        margin-left: -15px;
        width: calc(100% + 15px)
    }

    .content-section {
        padding: 50px 0
    }

    .content-section.big-pad-top {
        padding-top: 90px
    }

    .content-section.big-pad-bottom {
        padding-bottom: 90px
    }

    section.newsletter {
        padding: 50px 0 75px
    }

    section.contacts {
        padding: 50px 0
    }

    section.calculation {
        padding: 50px 0
    }

    section.calculation .container {
        flex-direction: column
    }

    section.calculation .text {
        padding-bottom: 0;
        width: 100%;
        margin-bottom: 25px
    }

    section.calculation .calculation-form {
        width: 100%
    }

    section.breadcrumbs .container {
        flex-direction: column;
        align-items: flex-start
    }

    .content-wrap {
        padding: 0 15px
    }

    .section-header .container {
        flex-direction: column;
        align-items: flex-start
    }

    .section-header .container .section-title {
        margin-bottom: 35px
    }

    .page-footer .top-part {
        padding: 50px 0
    }

    .page-footer .top-part .container {
        flex-direction: column
    }

    .page-footer .top-part .footer-box {
        max-width: 500px;
        margin-right: 0;
        margin-bottom: 25px
    }

    .page-footer .top-part .footer-box .logo {
        max-width: initial
    }

    .page-footer .top-part .footer-nav {
        max-width: initial
    }

    .page-footer .top-part .footer-nav .pages-list {
        justify-content: space-between;
        width: 100%
    }

    .page-footer .bottom-part {
        padding: 50px 0
    }
}

/* Large Mobile (≤650px) */
@media (max-width: 650px) {
    .product-boxes-container .product-box {
        width: 100%
    }

    .product-boxes-container .product-box:nth-child(n+2) {
        margin-top: 40px
    }

    .reviews-slider-box .glide__arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
        top: 50px
    }

    .archive-filter .filter-container .form-group {
        width: calc(50% - 3px);
        margin-bottom: 10px
    }

    .archive-filter .filter-container .actions {
        width: calc(50% - 3px)
    }

    .product-detail-box .gallery-box .mini-previews .more-items,
    .product-detail-box .gallery-box .mini-previews .fit-image {
        width: calc(33.333% - 14px)
    }

    .map-contact-box .contact-boxes-container .contact-box {
        width: 100%;
        margin-bottom: 35px
    }

    section.article-detail ul {
        padding-left: 0
    }

    section.article-detail .article-detail-title {
        font-size: 35px
    }

    section.article-detail .article-feature-image {
        border-radius: 15px
    }
}

/* Mobile (≤550px) */
@media (max-width: 550px) {
    .icon-step-boxes-container {
        justify-content: space-around
    }

    .icon-step-boxes-container .icon-step-box {
        width: 48%
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .overlaping .icon-step-boxes-container {
        gap: 16px
    }

    .overlaping.icon-step-box {
        flex: 1 1 100%
    }

    h1,
    .page-title {
        font-size: 45px
    }

    h1 small,
    .page-title small {
        font-size: 40px
    }

    .products-slider-box {
        width: initial;
        padding: 0;
        margin: 0;
        overflow: visible
    }

    .product-box .text {
        padding:  25px
    }

    .footer-nav .pages-list {
        flex-direction: column
    }

    .footer-nav .pages-list > li + li {
        margin-left: 0;
        margin-top: 25px
    }

    .statistics-boxes-container .statistics-box {
        width: 100%
    }

    .statistics-boxes-container .statistics-box:nth-child(n+2) {
        margin-top: 25px
    }

    .calculation-form .form-result-container .price-container {
        font-size: 24px
    }

    .country-slider-box .country-slider-nav .country-slider-nav-link {
        width: calc(50% - 15px)
    }

    .step-boxes-container .step-box {
        margin-bottom: 150px
    }

    .step-box {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center
    }

    .step-box:after {
        content: none
    }

    .step-box:before {
        height: 100px
    }

    .step-box:nth-child(odd) .text {
        margin: 25px 0 0
    }

    .step-box:nth-child(odd):before {
        border-bottom-right-radius: 0;
        left: 50%;
        width: 1px;
        bottom: -125px
    }

    .step-box:nth-child(even) {
        flex-direction: column-reverse
    }

    .step-box:nth-child(even) .text {
        margin: 25px 0 0
    }

    .step-box:nth-child(even):before {
        border-bottom-left-radius: 0;
        left: 50%;
        width: 1px;
        right: auto;
        bottom: -125px
    }

    .archive-filter .filter-container .form-group {
        width: 100%
    }

    .archive-filter .filter-container .form-group:last-child {
        margin-bottom: 10px
    }

    .archive-filter .filter-container .actions {
        width: 100%
    }

    .product-detail-box .prices-container {
        flex-direction: column;
        align-items: flex-start
    }

    .product-detail-box .prices-container .price-column {
        margin-right: 0;
        margin-bottom: 15px
    }

    .product-detail-box .prices-container .price-column:last-child {
        margin-bottom: 0
    }

    .product-detail-box .gallery-box .mini-previews {
        gap: 10px
    }

    .product-detail-box .gallery-box .mini-previews .more-items,
    .product-detail-box .gallery-box .mini-previews .fit-image {
        border-radius: 10px;
        width: calc(33.333% - 7px)
    }

    section.hero {
        padding: 35px 0 50px
    }

    .content-section.action-boxes-section {
        margin-top: -35px
    }
}

/* Extra Small (≤380px) */
@media (max-width: 380px) {
    .action-box .acton-title {
        font-size: 24px
    }
}

/* ==========================================================================
   MIN-WIDTH QUERIES
   ========================================================================== */

/* Desktop First (≥991px) */
@media (min-width: 991px) {
    .special-hero.hero {
        text-align: center;
        height: inherit;
        padding-bottom: 135px
    }

    .special-hero .content-wrap .text {
        max-width: 100%;
        padding-bottom: 25px
    }

    .special-hero .content-wrap .text p {
        text-align: center !important
    }

    .hero-reviews-content .review-author-row {
        justify-content: center
    }
}

/* Desktop with Limited Height */
@media (min-width: 992px) and (max-height: 900px) {
    .content-section.action-boxes-section {
        margin-top: -75px
    }

    .content-section.contact-action-boxes-section {
        margin-top: -250px
    }
}

