/* ===========================
   floracesk.sbs - Main CSS
   =========================== */

/* Blokovanie zoomu na mobile */
html {
    touch-action: manipulation;
}

/* --- Reset & Variables --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-dark: #1a2e1a;
    --color-primary: #2d5a27;
    --color-primary-hover: #3a7d32;
    --color-primary-light: #3d8b37;
    --color-accent: #d4a017;
    --color-accent-hover: #c4920f;
    --color-bg: #ffffff;
    --color-bg-sage: #eaf0e6;
    --color-bg-sage-dark: #dde6d8;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --color-white: #ffffff;
    --color-red: #e74c3c;
    --color-green-dot: #4caf50;

    /* Typography */
    --font-family: 'Sora', system-ui, sans-serif;

    /* Layout */
    --container-width: 1320px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

html {
    font-size: 87.5%;
    scroll-behavior: smooth;
    overflow-x: clip;
    background-color: #07331e;
}

@media (min-width: 768px) and (max-width: 1919px) {
    html { font-size: 70%; }
    :root { --container-width: 1100px; }
}


body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #07331e;
    overflow-x: hidden;
    width: 100%;
}

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

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

ul { list-style: none; }

button {
    font-family: var(--font-family);
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 20px;
}

.section-header__left h2 {
    font-size: 3.35rem;
    font-weight: 900;
    color: #343434;
    line-height: 1.2;
}

.section-header__left h2 em,
.section-header__left h2 i {
    color: var(--color-primary);
    font-style: italic;
}

.section-header__left p {
    color: #343434;
    margin-top: 6px;
    font-size: 1.48rem;
}

/* Category select dropdown */
.category-dropdown {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.btn-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #095531;
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-category svg {
    transition: transform 0.3s;
}

.category-dropdown.open .btn-category svg {
    transform: rotate(180deg);
}

.category-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 264px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 50;
}

.category-dropdown.open .category-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-dropdown__item {
    display: block;
    width: 100%;
    padding: 13px 19px;
    background: none;
    border: none;
    border-radius: 10px;
    font-family: 'Sora', system-ui, sans-serif;
    font-size: 1.04rem;
    font-weight: 400;
    color: #333;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.category-dropdown__item:hover {
    background: #e8f5e9;
    color: #095531;
}

.category-dropdown__item.active {
    background: #095531;
    color: #fff;
    font-weight: 500;
}

.category-dropdown__item--all {
    color: #666;
    font-size: 0.96rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
    border-radius: 10px 10px 0 0;
}

/* Na mobile ponechať pôvodnú veľkosť */
@media (max-width: 768px) {
    .category-dropdown__menu {
        min-width: 220px;
        padding: 8px;
    }

    .category-dropdown__item {
        padding: 11px 16px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .category-dropdown__item--all {
        font-size: 0.88rem;
        border-radius: 8px 8px 0 0;
    }
}

/* Category filter badge */
.category-filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    order: -1;
    padding: 17px 28px;
    background: #b8a893;
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-family);
    animation: badgeFadeIn 0.25s ease;
}

.category-filter-badge__close {
    background: rgba(255,255,255,0.3);
    border: none;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.category-filter-badge__close:hover {
    background: rgba(255,255,255,0.5);
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   TOPBAR
   =========================== */
.topbar {
    background-color: #07331e;
    color: var(--color-white);
    font-size: 1.07rem;
    font-weight: bold;
    padding: 16px 0;
}

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

.topbar__status {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: bold;
}

.topbar__dot {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #66f162;
    box-shadow: 0 0 10px rgba(102, 241, 98, 0.6), 0 0 20px rgba(102, 241, 98, 0.3);
    display: inline-block;
    flex-shrink: 0;
}

.topbar__dot.closed {
    background-color: #c91c1c;
    box-shadow: 0 0 10px rgba(201, 28, 28, 0.6), 0 0 20px rgba(201, 28, 28, 0.3);
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    opacity: 0.85;
    transition: opacity var(--transition);
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: inherit;
    padding: 0;
    text-decoration: none;
}

.topbar__link:hover {
    opacity: 1;
    color: var(--color-white);
}

.topbar__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* ===========================
   OTVÁRACIE HODINY POPUP
   =========================== */
.hours-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hours-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hours-popup {
    background: linear-gradient(145deg, #095531 0%, #0a6b3e 50%, #095531 100%);
    border-radius: 24px;
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.hours-overlay.active .hours-popup {
    transform: translateY(0) scale(1);
}

.hours-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.hours-popup__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hours-popup__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hours-popup__header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.hours-popup__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hours-popup__day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.hours-popup__day:nth-child(odd) {
    background: rgba(255, 255, 255, 0.06);
}

.hours-popup__day--today {
    font-weight: 600;
}

.hours-popup__today-pill {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-left: 8px;
    letter-spacing: 0.3px;
}

.hours-popup__day-name {
    font-weight: 500;
}

.hours-popup__day-time {
    font-weight: 400;
    opacity: 0.85;
}

.hours-popup__day-time--closed {
    color: #f87171;
    font-weight: 500;
    opacity: 1;
}

.hours-popup__status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===========================
   HEADER + HERO WRAPPER
   =========================== */
.header-hero-wrapper {
    background-color: #095531;
    background-image: url('../images/pattern/pattern.webp');
    background-repeat: repeat;
    background-size: 2100px;
}

/* ===========================
   HEADER
   =========================== */
.header {
    background-color: transparent;
    position: relative;
    z-index: 100;
    padding: 18px 0 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 20px;
}

.header__logo img {
    height: 72px;
    width: auto;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

/* Sliding pill indicator */
.nav-pill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    background-color: #127848;
    border: none;
    border-radius: 50px;
    pointer-events: none;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    z-index: 0;
    opacity: 0;
}

.nav-pill.visible {
    opacity: 1;
}

.header__nav > a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    padding: 7px 18px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: color var(--transition);
}

.header__nav > a:hover,
.header__nav > a.active {
    color: var(--color-white);
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown__trigger {
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
    padding: 7px 18px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.active {
    color: var(--color-white);
}

.nav-dropdown__arrow {
    transition: transform 0.3s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown__arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding-top: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown__inner {
    background: rgba(7, 51, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 12px;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-dropdown__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateX(4px);
}

.nav-dropdown__img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.nav-dropdown__name {
    flex: 1;
}

.nav-dropdown__item > svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.nav-dropdown__item:hover > svg {
    opacity: 1;
}


/* ===== MOBILE MENU SUBMENU ===== */
/* Mobile menu panels */
.mobile-menu__slider {
    position: relative;
}

.mobile-menu__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu__panel:nth-child(2),
.mobile-menu__panel:nth-child(3) {
    display: none;
}

.mobile-menu__slider.slid-rastliny .mobile-menu__panel:nth-child(1) {
    display: none;
}

.mobile-menu__slider.slid-rastliny .mobile-menu__panel:nth-child(2) {
    display: flex;
}

.mobile-menu__slider.slid-zahradnictvo .mobile-menu__panel:nth-child(1) {
    display: none;
}

.mobile-menu__slider.slid-zahradnictvo .mobile-menu__panel:nth-child(3) {
    display: flex;
}

/* Submenu links – rovnaký efekt ako hlavné menu */
.mobile-menu__nav--sub a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    padding: 4px 0;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s;
}

.mobile-menu__nav--sub a:active {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu__slider.slid-rastliny.animate .mobile-menu__nav--sub a,
.mobile-menu__slider.slid-zahradnictvo.animate .mobile-menu__nav--sub a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu__slider.animate .mobile-menu__nav--sub a:nth-child(8) { transition-delay: 0.4s; }

/* Tlačidlo späť */
.mobile-menu__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 3px solid #fff;
    border-radius: 50px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 22px;
    margin-top: 24px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s;
    align-self: flex-start;
}

.mobile-menu__back svg {
    color: #fff;
}

.mobile-menu__back:active {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu__slider.slid-rastliny.animate .mobile-menu__back,
.mobile-menu__slider.slid-zahradnictvo.animate .mobile-menu__back {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

.mobile-menu__expand {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 4px 0;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s;
}

.mobile-menu.active .mobile-menu__expand {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu__expand:active {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu__expand-arrow {
    opacity: 0.5;
}

.nav-has-badge {
    position: relative;
}

.nav-badge {
    position: absolute;
    top: -21px;
    right: -5px;
    background: #8B1A1A;
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    pointer-events: none;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    border: 2px solid rgb(255, 255, 255);
    padding: 14px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1;
    transition: all var(--transition);
    white-space: nowrap;
    margin-left: auto;
}

.header__phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--color-white);
}

.header__phone svg {
    width: 15px;
    height: 15px;
}

/* Burger */
.header__burger {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    z-index: 110;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    background: transparent;
    transition: all var(--transition);
}

.header__burger:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.header__burger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header__burger-lines span {
    display: block;
    width: 20px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.header__burger-lines span:nth-child(2) {
    width: 14px;
}

.header__burger-text {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #095531;
    background-image: url('../images/pattern/pattern.webp');
    background-repeat: repeat;
    background-size: 2100px;
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 22px;
    right: 22px;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s, transform 0.3s;
    z-index: 2;
}

.mobile-menu__close:hover {
    transform: rotate(90deg);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu__nav a {
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 4px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.3s;
}

.mobile-menu.active .mobile-menu__nav a {
    opacity: 1;
    transform: translateX(0);
}

/* Submenu linky zostávajú skryté kým sa nespustí animácia */
.mobile-menu.active .mobile-menu__nav--sub a {
    opacity: 0;
    transform: translateX(-20px);
}

/* Úvod */
.mobile-menu.active .mobile-menu__nav > :nth-child(1) { transition-delay: 0.08s; }
/* Záhradníctvo */
.mobile-menu.active .mobile-menu__nav > :nth-child(2) { transition-delay: 0.14s; }
/* Rastliny (button) */
.mobile-menu.active .mobile-menu__nav > :nth-child(3) { transition-delay: 0.2s; }
/* Trávne koberce */
.mobile-menu.active .mobile-menu__nav > :nth-child(4) { transition-delay: 0.26s; }
/* Kontakt */
.mobile-menu.active .mobile-menu__nav > :nth-child(5) { transition-delay: 0.32s; }

.mobile-menu__nav a:active {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
    align-self: flex-start;
}

.mobile-menu__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    border: 2.5px solid rgb(255, 255, 255);
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-menu__phone img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.mobile-menu__phone svg {
    width: 25px;
    height: 25px;
}

.mobile-menu.active .mobile-menu__phone {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu__phone:first-child {
    transition-delay: 0.38s;
}

.mobile-menu.active .mobile-menu__phone:nth-child(2) {
    transition-delay: 0.44s;
}

.mobile-menu.active .mobile-menu__phone:last-child {
    transition-delay: 0.50s;
}

.mobile-menu__help {
    background: #c4a265;
    border-color: #c4a265;
}

/* ===========================
   HERO
   =========================== */
.hero {
    background-color: transparent;
    padding: 80px 0 110px;
    position: relative;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto auto;
    gap: 48px;
    align-items: start;
}

.hero__content {
    grid-column: 1;
    grid-row: 1;
}

.hero__media {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.hero__content h1 {
    font-size: 6.6rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 0.82;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 2.1rem;
    color: rgb(255, 255, 255);
    font-weight: 300;
    margin-bottom: 37px;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 282px;
    grid-column: 1;
    grid-row: 2;
}

@media (max-width: 1920px) {
    .hero__buttons {
        margin-top: 11px;
    }
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 14px;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    color: var(--color-white);
    background: transparent;
    border: 2px solid rgb(255, 255, 255);
    transition: all var(--transition);
}

.hero__btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.hero__btn img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

#btn-help {
    background: #c4a265;
    border-color: #c4a265;
}

.hero__media {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 16 / 12;
    background: rgba(0, 0, 0, 0.15);
}

.hero__media img,
.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ===========================
   CATEGORIES CAROUSEL
   =========================== */
.categories {
    padding: 60px 0;
    background: #eaf0e6;
}

.category-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    background: var(--color-bg-sage);
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.category-card:hover .category-card__image,
.category-card:hover .category-card__placeholder {
    transform: scale(1.05);
}

.category-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, #095531 0%, rgba(9, 85, 49, 0.85) 40%, rgba(9, 85, 49, 0.5) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.category-card__name {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.category-card__btn {
    display: inline-block;
    padding: 6px 24px;
    color: var(--color-white);
    border: 2px solid rgb(255, 255, 255);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.category-card__btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

/* ===========================
   AKTUÁLNE INFORMÁCIE
   =========================== */
.info-section {
    padding: 67px 0;
    background: var(--color-bg);
    text-align: center;
}

.info-section .section-header {
    justify-content: flex-start;
    margin-bottom: 22px;
}

.info-section .section-header__left {
    text-align: left;
}

.info-section .section-header__left h2 {
    font-size: 3.35rem;
}

.info-section .section-header__left p {
    font-size: 1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1175px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 22px;
    background: #eaf0e6;
    border: none;
    border-radius: 50px;
    transition: all var(--transition);
}

.info-item:not(:first-child) {
    opacity: 0.4;
    transition: all var(--transition);
}

.info-item:not(:first-child):hover {
    opacity: 1;
}

.info-item__text {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-dark);
    text-align: left;
}

.info-item__date {
    flex-shrink: 0;
    padding: 7px 16px;
    background: #095531;
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ===========================
   PRÍBEHY / STORIES
   =========================== */
.stories-section {
    padding: 64px 0;
    background: #fff;
    position: relative;
}

.stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: #dcd0b8;
    z-index: 0;
}

.stories-section:has(.section-empty-alert)::before {
    height: 100%;
}

.stories-section > .container {
    position: relative;
    z-index: 1;
}

.stories-section .section-header__left h2,
.stories-section .section-header__left p {
    color: #343434;
}

.stories-section .btn-category {
    gap: 10px;
    padding: 11px 22px;
    font-size: 1.1rem;
}

.story-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--color-dark);
    cursor: pointer;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.story-card__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.story-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d5a27 0%, #1a3c1a 100%);
}

.story-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card:hover .story-card__media {
    opacity: 0.85;
}

.story-card__header {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.story-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 1.5px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.story-card__avatar img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.story-card__username {
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 600;
    text-shadow: none;
}

/* ===========================
   O ZÁHRADNÍCTVE
   =========================== */
.about-section {
    padding: 93px 0px 114px 0px;
    background: var(--color-bg);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    overflow: visible;
}

.about__image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transform: scale(1.2);
    transform-origin: center center;
}

.about__content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.about__content .about__subtitle {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.about__content h3 {
    font-size: 2.81rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.about__content h3 strong {
    font-weight: 800;
}

.about__content p {
    color: var(--color-text-light);
    margin-bottom: 48px;
    line-height: 1.7;
    font-size: 1.24rem;
}

/* Timeline */
.timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-top: 64px;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, #d4d8d2, #095531 30%, #095531 70%, #d4d8d2);
    border-radius: 2px;
}

.timeline__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 16px;
}

.timeline__dot {
    width: 16px;
    height: 16px;
    background: #095531;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #d4d8d2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline__item:hover .timeline__dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #095531;
}

.timeline__year {
    font-size: 1.3rem;
    font-weight: 800;
    color: #095531;
    line-height: 1;
}

.timeline__label {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.2px;
    font-weight: 500;
}

/* ===========================
   BLOGOVÉ ČLÁNKY
   =========================== */
.blog-section {
    padding: 44px 0;
    background: #fff;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: #dcd0b8;
    z-index: 0;
}

.blog-section:has(.section-empty-alert)::before {
    height: 100%;
}

.blog-section > .container {
    position: relative;
    z-index: 1;
}

.blog-section .btn-category {
    gap: 10px;
    padding: 11px 22px;
    font-size: 1.1rem;
}

.blog-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    background: var(--color-bg-sage);
}

.blog-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.blog-card__tag {
    padding: 9px 26px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-white);
}

.blog-card__tag--new {
    background: #8B1A1A;
}

.blog-card__tag--recommended {
    background: #c4a265;
}

.blog-card__date {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--color-white);
    backdrop-filter: blur(4px);
    border: 2px dotted #ffffff7d;
}

.blog-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 16px 16px;
    background: linear-gradient(to top, #095531 0%, rgba(9,85,49,0.9) 35%, rgba(9,85,49,0.5) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.blog-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.25;
}

.blog-card__btn {
    display: inline-block;
    padding: 7px 40px;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    font-weight: 600;
    background: transparent;
    transition: background var(--transition);
}

.blog-card:hover .blog-card__btn {
    background: rgba(255, 255, 255, 0.15);
}

.blog-card:hover {
    color: var(--color-white);
}

/* ===========================
   BLOG HERO
   =========================== */
.blog-hero {
    padding: 40px 0 34px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.blog-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
}

.blog-hero__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 4px 0 0;
}

/* ===========================
   BLOG LISTING
   =========================== */
.blog-listing {
    padding: 40px 0 56px;
    background: #fff;
}

.blog-pill-all {
    flex-shrink: 0;
    margin-right: 40px;
    text-decoration: none;
}

a.filter-pill {
    text-decoration: none;
}

.blog-carousel {
    overflow: visible;
    cursor: default;
    user-select: auto;
}

.blog-carousel .filter-pill {
    min-width: auto;
}

.blog-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.blog-card--listing {
    aspect-ratio: 3 / 4;
}

.blog-listing__empty {
    text-align: center;
    padding: 80px 0;
    color: var(--color-text-light);
}

.blog-listing__empty svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.blog-listing__empty p {
    font-size: 1.1rem;
}

/* ===========================
   BLOG DETAIL
   =========================== */
.blog-detail {
    padding: 40px 0 28px;
    background: #fff;
}

.blog-detail__layout {
    max-width: 920px;
    margin: 0 auto;
}

.blog-detail__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.blog-detail__date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.blog-detail__date svg {
    opacity: 0.5;
}

.blog-detail__category {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--color-bg-sage);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.blog-detail__category:hover {
    background: var(--color-bg-sage-dark);
}

.blog-detail__badge {
    padding: 4px 11px;
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
}

.blog-detail__badge--new {
    background: #8B1A1A;
}

.blog-detail__badge--recommended {
    background: #c4a265;
}

.blog-detail__hero-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 26px;
}

.blog-detail__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-detail__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-bg-sage-dark);
}

.blog-detail__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 28px;
}

.blog-detail__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.blog-detail__gallery-item {
    border-radius: 10px;
    overflow: hidden;
}

.blog-detail__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
}

.blog-detail__gallery-item:hover img {
    transform: scale(1.03);
}

.blog-detail__back {
    padding-top: 22px;
    border-top: 1px solid var(--color-bg-sage-dark);
}

.blog-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.82rem;
    transition: gap 0.2s;
}

.blog-detail__back-link:hover {
    gap: 12px;
}

/* ===========================
   BLOG RELATED
   =========================== */
.blog-related {
    padding: 0 0 56px;
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
}

.blog-related__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 22px;
    text-align: center;
}

.blog-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.blog-related__grid .blog-card {
    aspect-ratio: 4 / 5;
    border-radius: 12px;
}

.blog-related__grid .blog-card__tag {
    padding: 6px 14px;
    font-size: 0.68rem;
}

.blog-related__grid .blog-card__date {
    padding: 6px 12px;
    font-size: 0.55rem;
}

.blog-related__grid .blog-card__title {
    font-size: 0.95rem;
    margin-bottom: 11px;
}

.blog-related__grid .blog-card__btn {
    padding: 6px 22px;
    font-size: 0.78rem;
}

.blog-related__grid .blog-card__overlay {
    padding: 30px 12px 12px;
}

.blog-related__grid .blog-card__top {
    top: 10px;
    left: 10px;
    right: 10px;
}

/* ===========================
   FOOTER WRAPPER
   =========================== */
.footer-wrapper {
    background-color: #095531;
    color: var(--color-white);
    position: relative;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/pattern/pattern.webp');
    background-repeat: repeat;
    background-size: 2100px;
    opacity: 0.7;
    pointer-events: none;
}

/* ===========================
   NEWSLETTER PANEL
   =========================== */
.newsletter-container {
    position: relative;
    z-index: 1;
}

.newsletter-panel {
    background: #094328;
    border-radius: 0 0 90px 90px;
    padding: 65px 56px 177px;
    margin-bottom: 122px;
    position: relative;
}

/* Obrázok trávy - absolute na kontajneri, presahuje všetko */
.newsletter-image {
    position: absolute;
    right: 332px;
    bottom: -383px;
    width: 758px;
    z-index: 10;
    pointer-events: none;
}

.newsletter-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Riadok: Nadpis + formulár na jednom riadku */
.newsletter-panel__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.newsletter-panel__text h2 {
    font-size: 3.75rem;
    font-weight: 700;
    margin: 0;
}

.newsletter-panel__text p {
    opacity: 0.75;
    font-size: 1.3rem;
    max-width: 420px;
    margin: -2px 0 0;
}

.newsletter__wrap {
    flex: 1;
    max-width: 580px;
    min-width: 0;
}

.newsletter__form {
    display: flex;
    align-items: center;
    max-width: 713px;
    margin-left: auto;
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-pill);
    padding: 6px;
}

.newsletter__gdpr {
    font-size: .72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 11;
}

.newsletter__gdpr a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

.newsletter__input {
    flex: 1;
    padding: 18px 28px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    font-family: var(--font-family);
    outline: none;
    background: transparent;
    color: var(--color-text);
}

.newsletter__input::placeholder {
    color: #aaa;
}

.newsletter__submit {
    padding: 18px 40px;
    background: #094328;
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
    font-family: var(--font-family);
}

.newsletter__submit:hover {
    background: #1a2e1a;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    color: var(--color-white);
    padding: 88px 0 66px;
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer__logo img {
    height: 183px;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.footer__col h3 {
    font-size: 2.64rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer__col li {
    margin-bottom: 9px;
}

.footer__col li a,
.footer__col p {
    color: rgb(169, 197, 184);
    font-size: 1.32rem;
    transition: color var(--transition);
    line-height: 1.76;
}

.footer__col li a:hover,
.footer__col p a:hover {
    color: var(--color-white);
}

.footer__col p a {
    color: inherit;
    font: inherit;
    line-height: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.footer__bottom {
    margin-top: 53px;
    padding: 22px 0;
    border-top: 1px solid rgb(255 255 255 / 67%);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 13px;
    font-size: 1.21rem;
    color: rgb(255 255 255);
}

.footer__bottom-links {
    display: flex;
    gap: 31px;
}

.footer__bottom > div:last-child {
    text-align: right;
}

.footer__bottom-links a {
    color: rgb(255, 255, 255);
    transition: color var(--transition);
}

.footer__bottom-links a:hover {
    color: var(--color-white);
}

/* ===========================
   FLASH MESSAGES
   =========================== */
.flash {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-weight: 500;
}

.flash--success { background-color: #d4edda; color: #155724; }
.flash--error { background-color: #f8d7da; color: #721c24; }
.flash--info { background-color: #d1ecf1; color: #0c5460; }

/* ===========================
   SWIPER OVERRIDES
   =========================== */
.swiper:not(.swiper-initialized) {
    overflow: hidden;
    max-height: 0;
}

.swiper.swiper-initialized {
    max-height: none;
}

/* Swipe hint - len mobile */
.swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    border: 2px dashed #cdcdcd;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    max-height: 60px;
    transition: opacity 0.4s, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
}

.swipe-hint.hidden {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
}

.swipe-hint__icon {
    display: inline-block;
    animation: swipeMove 1.8s ease-in-out infinite;
}

@keyframes swipeMove {
    0%, 100% { transform: translateX(0); }
    30% { transform: translateX(12px); }
    60% { transform: translateX(-12px); }
}

@media (max-width: 1024px) {
    .swipe-hint {
        display: flex !important;
        position: relative;
        z-index: 2;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1920px) {
    .hero {
        padding: 80px 0 100px;
    }
    .hero__buttons {
        margin-top: 60px;
    }
}

@media (max-width: 1024px) {
    .about__grid {
        gap: 40px;
    }

    /* Newsletter stacked od 1024px (zjednotené s mobile burger header breakpointom) */
    .newsletter-panel__row {
        flex-direction: column;
        gap: 20px;
    }
    .newsletter__form {
        max-width: 100%;
    }
    .newsletter-container {
        padding: 0;
        max-width: 100%;
    }
    .newsletter-image {
        display: none;
    }

    /* Footer grid full stack + center */
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
    }

    /* Footer bottom bar stacked */
    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 9px;
    }
    .footer__bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 9px;
        margin-bottom: 16px;
    }
    .footer__bottom > div {
        width: 100%;
    }
    .footer__bottom > div:last-child {
        text-align: center;
    }
}

/* Header switch to mobile at 1024px (FHD@150% = 1280 CSS px stays desktop) */
@media (max-width: 1024px) {
    .header {
        height: auto;
        padding: 12px 0;
        background-color: #063c22;
    }

    .header__inner {
        height: auto;
        padding: 0 24px;
    }

    .header__logo img {
        height: 70px;
    }

    .header__nav {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .header__burger {
        display: flex;
    }
}

@media (max-width: 1024px) {
    /* Hero mobile */
    .hero {
        padding: 32px 0 40px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
        text-align: center;
    }

    .hero__content {
        grid-column: 1;
        grid-row: auto;
        order: 1;
    }

    .hero__media {
        grid-column: 1;
        grid-row: auto;
        order: 2;
    }

    .hero__buttons {
        grid-column: 1;
        grid-row: auto;
        order: 3;
        max-width: 100%;
        margin: 0 auto;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .hero__content h1 {
        font-size: clamp(3.2rem, 8vw, 4.85rem);
        line-height: 0.85;
    }

    .hero__subtitle {
        font-size: 1.7rem;
        margin-bottom: 0;
    }

    .hero__btn {
        font-size: 0.9rem;
        padding: 10px 18px;
        gap: 8px;
    }

    .hero__btn img {
        width: 26px;
        height: 26px;
    }

    /* Blog listing - 2 columns at tablet */
    .blog-listing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Blog cards - smaller text at tablet */
    .blog-card__title {
        font-size: 1.5rem;
    }

    .blog-card__tag {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .blog-card__date {
        padding: 7px 16px;
        font-size: 0.65rem;
        border-width: 2px;
    }

    .blog-card__btn {
        padding: 8px 36px;
        font-size: 1rem;
    }

    .blog-card__top {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .blog-card__overlay {
        padding: 50px 16px 16px;
    }

    /* Blog related - 2 columns */
    .blog-related__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Homepage blog section */
    .blog-section .btn-category {
        padding: 12px 24px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    /* Topbar mobile */
    .topbar {
        padding: 8px 0;
        font-size: 0.85rem;
    }

    .topbar__inner {
        justify-content: space-between;
    }

    .topbar__links {
        display: flex;
    }

    .topbar__link--delivery {
        display: none;
    }

    .topbar__link {
        font-size: 0.8rem;
    }

    .topbar__icon {
        width: 28px;
        height: 28px;
    }

    .topbar__dot {
        width: 14px;
        height: 14px;
    }

    /* Hero - smaller on phones */
    .hero__content h1 {
        font-size: clamp(3.2rem, 12vw, 4.85rem);
        line-height: 0.7;
    }

    .hero__btn {
        font-size: 0.8rem;
        padding: 7px 12px;
        gap: 6px;
    }

    .hero__btn img {
        width: 22px;
        height: 22px;
    }

    /* Kategórie mobile */
    .category-card {
        border-radius: 14px;
    }

    .category-card__overlay {
        padding: 14px;
        gap: 8px;
    }

    .category-card__name {
        font-size: 1.05rem;
    }

    .category-card__btn {
        padding: 6px 24px;
        font-size: 0.9rem;
        border-width: 2px;
    }

    /* About */
    .stories-section .btn-category {
        padding: 10px 19px;
        font-size: 1.02rem;
    }

    .category-dropdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .category-filter-badge {
        order: 0;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .story-card {
        aspect-ratio: 9 / 14;
    }

    .about-section {
        padding: 48px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about__image {
        max-width: 300px;
        margin: 0 auto;
    }

    .about__content {
        text-align: center;
    }

    .about__content h3 {
        font-size: 1.8rem;
        line-height: 1.35;
    }

    .about__content p {
        font-size: 1.2rem;
        line-height: 1.8;
    }

    .timeline {
        margin-top: 32px;
        padding: 0 8px;
    }

    .timeline::before {
        top: 8px;
        left: 20px;
        right: 20px;
    }

    .timeline__item {
        gap: 10px;
    }

    .timeline__dot {
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 3px #fff, 0 0 0 5px #d4d8d2;
    }

    .timeline__year {
        font-size: 1rem;
    }

    .timeline__label {
        font-size: 0.72rem;
    }

    /* Newsletter panel */
    .newsletter-panel {
        padding: 40px 24px 40px;
        border-radius: 0;
        margin-bottom: 0;
    }

    .newsletter-panel__row {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter__form {
        max-width: 100%;
    }

    .newsletter-container {
        padding: 0;
        max-width: 100%;
    }

    .newsletter-image {
        display: none;
    }

    /* Footer */
    .footer {
        padding: 44px 0 35px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 26px;
        text-align: center;
    }

    .footer__logo img {
        height: 110px;
    }

    .footer__col h3 {
        font-size: 1.43rem;
        margin-bottom: 9px;
    }

    .footer__col li a,
    .footer__col p {
        font-size: 0.99rem;
        line-height: 1.76;
    }

    .footer__col li {
        margin-bottom: 4px;
    }

    .footer__col ul {
        list-style: none;
        padding: 0;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 9px;
        margin-top: 26px;
        font-size: 0.94rem;
    }

    .footer__bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 9px;
        margin-bottom: 22px;
    }

    /* Sections */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-item {
        border-radius: 28px;
        padding: 14px 18px;
        gap: 12px;
        border-width: 2px;
    }

    .info-item__text {
        font-size: 0.95rem;
    }

    .info-item__date {
        padding: 7px 16px;
        font-size: 0.75rem;
    }

    .info-section,
    .stories-section,
    .blog-section {
        padding: 48px 0;
    }

    .section-header__left h2 {
        font-size: 2.6rem;
    }

    .blog-section .btn-category {
        padding: 10px 19px;
        font-size: 1.02rem;
    }

    .blog-card__title {
        font-size: 1.4rem;
    }

    .blog-card__tag {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .blog-card__date {
        padding: 6px 14px;
        font-size: 0.6rem;
        border-width: 2px;
    }

    .blog-card__btn {
        padding: 7px 28px;
        font-size: 0.9rem;
    }

    .blog-card__top {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .blog-card__overlay {
        padding: 40px 14px 14px;
    }

    /* Blog hero mobile */
    .blog-hero {
        padding: 40px 0 30px;
    }

    .blog-hero__title {
        font-size: 2rem;
    }

    .blog-hero__subtitle {
        font-size: 0.95rem;
    }

    /* Blog listing mobile */
    .blog-listing {
        padding: 40px 0 60px;
    }

    .blog-listing__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Blog detail mobile */
    .blog-detail {
        padding: 40px 0 30px;
    }

    .blog-detail__meta {
        gap: 10px;
        margin-bottom: 24px;
    }

    .blog-detail__hero-image {
        border-radius: 12px;
        margin-bottom: 24px;
    }

    .blog-detail__excerpt {
        font-size: 1.05rem;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .blog-detail__text {
        font-size: 1.09rem;
    }

    .blog-detail__gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Blog related mobile */
    .blog-related {
        padding: 0 0 50px;
    }

    .blog-related__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .blog-related__title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .blog-related__grid .blog-card {
        aspect-ratio: 3 / 4;
        border-radius: 12px;
    }

    .blog-related__grid .blog-card__tag {
        padding: 5px 10px;
        font-size: 0.55rem;
    }

    .blog-related__grid .blog-card__date {
        padding: 5px 8px;
        font-size: 0.5rem;
        border-width: 2px;
    }

    .blog-related__grid .blog-card__title {
        font-size: 0.7rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .blog-related__grid .blog-card__btn {
        padding: 5px 14px;
        font-size: 0.6rem;
        border-width: 1.5px;
    }

    .blog-related__grid .blog-card__overlay {
        padding: 24px 8px 10px;
    }

    .blog-related__grid .blog-card__top {
        top: 8px;
        left: 8px;
        right: 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .blog-related__grid .blog-card__tag {
        padding: 4px 8px;
        font-size: 0.5rem;
    }

    .blog-related__grid .blog-card__date {
        padding: 4px 7px;
        font-size: 0.45rem;
        border-width: 1.5px;
    }
}

@media (max-width: 480px) {
    .hero__content h1 {
        font-size: clamp(3.2rem, 12vw, 4.85rem);
        line-height: 0.7;
    }

    .newsletter-panel {
        padding: 28px 20px 28px;
        border-radius: 0;
        margin-bottom: 0;
    }

    .newsletter__wrap {
        max-width: 100%;
    }

    .newsletter__form {
        flex-direction: column;
        gap: 0;
        padding: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        max-width: 100% !important;
        width: 100%;
        margin-left: 0;
    }

    .newsletter__gdpr {
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 20px;
        padding-left: 11px;
        line-height: 1.4;
        position: relative;
        z-index: 11;
    }

    .newsletter__input {
        border-radius: var(--radius-pill) !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
        -webkit-appearance: none;
        appearance: none;
        width: 100% !important;
        background: var(--color-white) !important;
        box-sizing: border-box;
    }

    .newsletter__submit {
        border-radius: var(--radius-pill) !important;
        padding: 12px 20px !important;
        margin-top: 8px;
        width: 100% !important;
        background: #063c22 !important;
        box-sizing: border-box;
        font-size: 0.9rem;
    }

    .newsletter-panel__text h2 {
        font-size: 1.6rem;
    }

    .newsletter-panel__text p {
        font-size: 0.9rem;
    }

    .newsletter-panel__image {
        width: 220px;
    }
}


/* ===========================
   KALKULAČKA TRÁVNIKOV
   =========================== */

/* Hero */
.calc-hero {
    padding: 60px 0 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.calc-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
}

.calc-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 400;
}

/* Layout */
.calc-section {
    padding: 80px 0;
    background: var(--color-bg);
    position: relative;
    overflow: visible;
}

.calc-layout {
    display: grid;
    grid-template-columns: min(420px, 100%) 1fr;
    gap: 32px;
    align-items: start;
    max-width: 100%;
    min-width: 0;
}

.calc-form-wrap,
.calc-results-wrap {
    min-width: 0;
}

.calc-results-wrap {
    grid-column: 2;
}


/* Card */
.calc-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-width: 0;
}

.calc-card__header {
    padding: 20px 28px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
}

.calc-card__header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text);
}

.calc-card__header--result {
    background: linear-gradient(135deg, #095531 0%, #127848 100%);
    color: #fff;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}

.calc-card__header--result h2 {
    color: #fff;
}

.calc-card__body {
    padding: 28px;
}

/* Fields */
.calc-field {
    margin-bottom: 22px;
}

.calc-field > label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.calc-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.calc-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(9, 85, 49, 0.08);
}

.calc-input::placeholder {
    color: #bbb;
}

.calc-input[type="number"]::-webkit-outer-spin-button,
.calc-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-input[type="number"] {
    -moz-appearance: textfield;
}

.calc-field__input-wrap {
    position: relative;
}

.calc-field__unit {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    pointer-events: none;
}

/* Autocomplete */
.calc-autocomplete {
    position: relative;
}

.calc-autocomplete__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    pointer-events: none;
}

.calc-autocomplete .calc-input {
    padding-right: 44px;
}

.calc-autocomplete__list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e8e8e8;
    padding: 6px;
    z-index: 9999;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-4px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.25s ease, visibility 0.25s;
}

.calc-autocomplete__list.open {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.calc-autocomplete__item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    border: none;
    background: none;
    font-family: var(--font-family);
    font-size: 0.92rem;
    color: var(--color-text);
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.15s;
}

.calc-autocomplete__item:hover {
    background: #f0f7f2;
}

.calc-autocomplete__item mark {
    background: none;
    color: var(--color-primary);
    font-weight: 700;
}

.calc-autocomplete__empty {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    color: #4a6b4f;
    font-size: 0.88rem;
    background: #f0f7f2;
    border: 1px solid #d4e3d8;
    border-radius: 10px;
    line-height: 1.4;
}

.calc-autocomplete__empty-icon {
    flex-shrink: 0;
    color: #095531;
    margin-top: 2px;
}

.calc-autocomplete__empty-body {
    flex: 1;
    min-width: 0;
}

.calc-autocomplete__empty strong {
    display: block;
    color: #07331e;
    font-weight: 700;
    margin-bottom: 4px;
}

.calc-autocomplete__empty span {
    display: block;
    color: #4a6b4f;
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.calc-autocomplete__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

@media (max-width: 520px) {
    .calc-autocomplete__ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .calc-autocomplete__phone {
        justify-content: center;
    }
}

.calc-autocomplete__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #095531;
    color: #fff;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.calc-autocomplete__phone:hover {
    background: #0a6b3e;
    color: #fff;
    transform: translateY(-1px);
}

.calc-autocomplete__phone svg {
    color: #fff;
    flex-shrink: 0;
}

/* Zamknutý input (lokalita pri Vlastnej doprave) */
.calc-input:disabled,
.calc-input--locked,
.inquiry-input:disabled {
    background: #f2f4f1;
    color: #9aa89a;
    cursor: not-allowed;
    border-color: #e0e5dd;
}

/* Info hint v dopyt modali pri Vlastnej doprave */
.inquiry-address-note {
    margin: 0 0 14px;
    padding: 10px 14px;
    background: #f0f7f2;
    border: 1px solid #d4e3d8;
    border-left: 3px solid #095531;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #4a6b4f;
    line-height: 1.4;
}

/* Checkbox */
.calc-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.calc-checkbox input {
    display: none;
}

.calc-checkbox__box {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    margin-top: 2px;
}

.calc-checkbox__box svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
    color: #fff;
}

.calc-checkbox input:checked ~ .calc-checkbox__box {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.calc-checkbox input:checked ~ .calc-checkbox__box svg {
    opacity: 1;
    transform: scale(1);
}

.calc-checkbox__text {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.calc-checkbox__hint {
    display: block;
    font-size: 0.78rem;
    color: #999;
    font-weight: 400;
    margin-top: 2px;
}

/* Button */
.calc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: #127848;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.calc-btn:hover:not(:disabled) {
    background: #0e6038;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 85, 49, 0.25);
}

.calc-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calc-btn--outline {
    background: transparent;
    border: 2px solid #127848;
    color: #127848;
    width: auto;
    display: inline-flex;
}

.calc-btn--outline:hover {
    background: #127848;
    color: #fff;
}

/* Results */
.calc-results-wrap .calc-card {
    margin-bottom: 20px;
}

.calc-result-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.calc-result-group:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.calc-result-group__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0 0 12px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.calc-result-row span {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.calc-result-row span small {
    color: #bbb;
    font-size: 0.85rem;
}

.calc-result-row strong {
    font-size: 1.14rem;
    color: var(--color-text);
    text-align: right;
}

.calc-free {
    color: var(--color-primary) !important;
}

.calc-warning {
    color: #c0392b !important;
    font-size: 0.85rem;
}

/* Total */
.calc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    margin-top: 20px;
    border: 2px dotted #d4d8d2;
    border-radius: 14px;
    gap: 20px;
}

.calc-total__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.calc-total__left .calc-note {
    margin: 6px 0 0;
}

.calc-total strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.calc-total__vat {
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.3px;
}

/* Dual-line total (s DPH primárny, bez DPH sekundárny) */
.calc-total__primary {
    display: block;
    line-height: 1.1;
}

.calc-total__secondary {
    margin: 4px 0 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #8a948a;
}

/* Dual-line price v rozpise (s DPH / bez DPH) */
.calc-price-dual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
}

.calc-price-dual__sub {
    font-size: 0.78rem;
    font-weight: 500;
    color: #8a948a;
    letter-spacing: .2px;
}

/* Toggle: S dopravou / Vlastná doprava */
.calc-toggle {
    display: inline-flex;
    width: 100%;
    background: #eef2ea;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.calc-toggle__btn {
    flex: 1;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #5a6b5a;
    border-radius: 999px;
    cursor: pointer;
    transition: background .18s, color .18s, box-shadow .18s;
}

.calc-toggle__btn:hover {
    color: var(--color-primary, #0a6b3e);
}

.calc-toggle__btn.active {
    background: #ffffff;
    color: var(--color-primary, #0a6b3e);
    box-shadow: 0 2px 8px rgba(10, 107, 62, 0.12);
}

/* Placeholder */
.calc-placeholder {
    border: 2px dashed #d4d8d2;
    border-radius: 20px;
    padding: 60px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.calc-placeholder__icon {
    color: #ccc;
    margin-bottom: 16px;
}

.calc-placeholder p {
    color: #aaa;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.calc-note {
    font-size: 0.75rem;
    color: #bbb;
    margin: 16px 0 0;
    text-align: center;
}

/* Tips */
.calc-tips {
    margin-top: 16px;
}

.calc-tips__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px;
}

.calc-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
}

.calc-tip__icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.calc-tip__text {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .calc-layout {
        grid-template-columns: 1fr;
    }

    .calc-form-wrap {
        order: 1;
    }

    .calc-results-wrap {
        order: 2;
        grid-column: auto;
    }

    .calc-tips {
        order: 3;
        grid-column: 1;
        grid-row: auto;
        margin-top: -16px;
    }

    .calc-hero__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .calc-hero {
        padding: 40px 0 36px;
    }

    .calc-hero__title {
        font-size: 1.8rem;
    }

    .calc-hero__subtitle {
        font-size: 0.95rem;
    }

    .calc-card__body {
        padding: 20px;
    }

    .calc-result-row span {
        font-size: 0.88rem;
    }

    .calc-result-row strong {
        font-size: 0.92rem;
    }

    .calc-result-row span small {
        font-size: 0.7rem;
    }

    .calc-result-group__title {
        font-size: 0.65rem;
    }

    .calc-total strong {
        font-size: 1.4rem;
    }

    .calc-btn--inquiry {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .calc-total {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .calc-btn--inquiry {
        width: 100%;
        justify-content: center;
    }
}

/* ===== INQUIRY BUTTON ===== */
.calc-btn--inquiry {
    margin-top: 0;
    background: #127848;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 14px;
    border: none;
    width: auto;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* CTA „Objednať telefonicky" – mobil aktívny tel: link, desktop mŕtvy */
.calc-btn--call {
    white-space: normal;
    line-height: 1.25;
    /* o ~20% menší než pôvodný --inquiry */
    padding: 14px 28px;
    font-size: 0.88rem;
    border-radius: 12px;
    gap: 8px;
}
.calc-btn--call svg {
    width: 16px;
    height: 16px;
}
.calc-btn--call .calc-btn__text {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 8px;
}
.calc-btn--call .calc-btn__phone {
    font-weight: 800;
    white-space: nowrap;
}
@media (min-width: 769px) {
    .calc-btn--call {
        pointer-events: none;
        cursor: default;
    }
}
@media (max-width: 600px) {
    .calc-btn--call {
        padding: 14px 16px;
        font-size: 1rem;
        gap: 8px;
    }
    .calc-btn--call .calc-btn__text {
        flex-direction: column;
        gap: 2px;
    }
    .calc-btn--call .calc-btn__label {
        font-size: 0.85em;
        opacity: 0.92;
    }
}
@media (max-width: 360px) {
    .calc-btn--call {
        padding: 12px 12px;
    }
    .calc-btn--call .calc-btn__phone {
        font-size: 1.02em;
    }
}

/* ===== HELP MODAL COMPONENTS ===== */
/* ===== HELP PAGE ===== */
.help-page {
    padding: 40px 0 70px;
    background: linear-gradient(180deg, #f8f7f4 0%, #eef2ee 100%);
}

.help-page__card {
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 36px 42px;
    box-shadow: 0 8px 40px rgba(9, 85, 49, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.help-page__card .inquiry-steps {
    gap: 4px;
    margin-bottom: 26px;
    padding-bottom: 0;
    border-bottom: none;
}

.help-page__card .inquiry-step {
    padding: 10px 0;
    border-bottom: 3px solid #e8efe8;
    font-size: 0.75rem;
    gap: 8px;
    color: #b0b8b0;
}

.help-page__card .inquiry-step span {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    background: #e8efe8;
    color: #8a9a8a;
}

.help-page__card .inquiry-step.active {
    color: #095531;
    border-color: #095531;
}

.help-page__card .inquiry-step.active span {
    background: #095531;
    color: #fff;
    box-shadow: 0 2px 8px rgba(9, 85, 49, 0.3);
}

.help-page__card .inquiry-step.done {
    color: #095531;
    border-color: #095531;
}

.help-page__card .inquiry-step.done span {
    background: #095531;
    color: #fff;
}

.help-page__card .inquiry-page h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1a1a1a;
}

.help-page__card .help-subtitle {
    font-size: 0.8rem;
    color: #8a8a8a;
    margin: 0 0 22px;
}

/* Type cards */
.help-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 8px;
}

.help-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(145deg, #f0f7f2 0%, #e4f0e7 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
}

.help-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.help-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(9, 85, 49, 0.12);
    background: linear-gradient(145deg, #e4f0e7 0%, #d4e8d8 100%);
}

.help-type-card:hover::before {
    border-color: #095531;
}

.help-type-card svg {
    color: #095531;
}

.help-type-card strong {
    font-size: 0.95rem;
    color: #095531;
}

.help-type-card span {
    font-size: 0.75rem;
    color: #6a7a6a;
    line-height: 1.5;
}

/* Photo slots */
.help-photos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.help-photo-slot {
    position: relative;
    aspect-ratio: 1;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #f0f7f2 0%, #e8f0ea 100%);
}

.help-photo-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 85, 49, 0.1);
}

.help-photo-slot input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.help-photo-slot__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 7px;
    color: #095531;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.help-photo-slot:hover .help-photo-slot__placeholder {
    opacity: 0.8;
}

.help-photo-slot__placeholder svg {
    width: 24px;
    height: 24px;
}

.help-photo-slot__placeholder span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

.help-photo-slot__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 1;
}

.help-photo-slot__remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.85);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.help-photo-slot__remove:hover {
    background: #dc2626;
}

.help-photo-warning {
    color: #dc2626;
    font-size: 0.76rem;
    font-weight: 600;
    margin: -12px 0 10px;
    padding: 9px 14px;
    background: linear-gradient(135deg, #fef2f2, #fff5f5);
    border-radius: 9px;
    border-left: 3px solid #dc2626;
}

/* Radio group */
.help-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-radio {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.82rem;
    background: #f0f7f2;
}

.help-radio:hover {
    background: #e4f0e7;
}

.help-radio:has(input:checked) {
    background: #095531;
    color: #fff;
}

.help-radio:has(input:checked) span {
    color: #fff;
}

.help-radio input[type="radio"] {
    accent-color: #fff;
}

/* Checkbox */
.help-checkbox-label {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--color-text);
    padding: 11px 14px;
    border: none;
    border-radius: 10px;
    transition: all 0.2s;
    background: #f0f7f2;
    white-space: nowrap;
}

.help-checkbox-label:hover {
    background: #e4f0e7;
}

.help-checkbox-label:has(input:checked) {
    background: #095531;
    color: #fff;
}

.help-checkbox-label:has(input:checked) span:not(.help-checkbox-circle) {
    color: #fff;
}

.help-checkbox-label span:not(.help-checkbox-circle) {
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.4;
}

.help-checkbox-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #c0cec0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.help-checkbox-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s;
}

.help-checkbox-label:has(input:checked) .help-checkbox-circle {
    border-color: #fff;
}

.help-checkbox-label:has(input:checked) .help-checkbox-circle::after {
    background: #fff;
}

/* Infobox */
/* Note textarea */
.help-note-textarea {
    resize: vertical;
    min-height: 76px;
    max-height: 200px;
    font-family: var(--font-family);
    line-height: 1.5;
}

.help-note-counter {
    text-align: right;
    font-size: 0.68rem;
    color: #999;
    margin-top: 5px;
}

.help-infobox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: linear-gradient(135deg, #f0f7f2, #e8f0ea);
    border: none;
    border-left: 3px solid #095531;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #095531;
    font-weight: 500;
    margin-top: 16px;
}

.help-infobox svg {
    flex-shrink: 0;
    color: #095531;
}

/* Page form inputs override */
.help-page__card .inquiry-input {
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    font-size: 0.82rem;
    background: #f4f7f4;
    transition: all 0.2s;
}

.help-page__card .inquiry-input:focus {
    background: #fff;
    border: 2px solid #095531;
}

.help-page__card .inquiry-field label {
    font-size: 0.76rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.help-page__card .inquiry-form-grid {
    gap: 14px;
}

/* Actions override */
.help-page__card .inquiry-actions {
    margin-top: 24px;
    gap: 11px;
}

.help-page__card .inquiry-btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
}

.help-page__card .inquiry-btn--outline {
    background: #f0f0f0;
    border: none;
    color: #555;
}

.help-page__card .inquiry-btn--outline:hover {
    background: #e0e0e0;
    color: #333;
}

.help-page__card .inquiry-btn--primary {
    background: #095531;
    color: #fff;
    box-shadow: 0 4px 16px rgba(9, 85, 49, 0.25);
}

.help-page__card .inquiry-btn--primary:hover {
    background: #0a6b3e;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(9, 85, 49, 0.3);
}

.help-page__card .inquiry-btn--send {
    background: #095531;
    color: #fff;
    font-size: 0.88rem;
    padding: 11px 28px;
    box-shadow: 0 4px 16px rgba(9, 85, 49, 0.25);
}

.help-page__card .inquiry-btn--send:hover {
    background: #0a6b3e;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(9, 85, 49, 0.3);
}

/* Success state */
.help-page__card .inquiry-final__icon--success {
    color: #095531;
}

.help-page__card .inquiry-final h3 {
    font-size: 1.15rem;
}

.help-page__card .inquiry-final p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.7;
}

/* Confirm dialog */
.help-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.help-confirm-overlay.open {
    opacity: 1;
    visibility: visible;
}

.help-confirm-dialog {
    background: #fff;
    border-radius: 24px;
    padding: 44px 48px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
    max-width: 420px;
}

.help-confirm-overlay.open .help-confirm-dialog {
    transform: translateY(0) scale(1);
}

.help-confirm-dialog h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 28px;
    color: #1a1a1a;
    line-height: 1.5;
}

.help-confirm-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.help-confirm-btn {
    padding: 14px 36px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.help-confirm-btn--no {
    background: #fee2e2;
    color: #dc2626;
}

.help-confirm-btn--no:hover {
    background: #fecaca;
}

.help-confirm-btn--yes {
    background: #095531;
    color: #fff;
    box-shadow: 0 4px 12px rgba(9, 85, 49, 0.25);
}

.help-confirm-btn--yes:hover {
    background: #0a6b3e;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .help-page {
        padding: 40px 0 60px;
    }

    .help-page__card {
        padding: 32px 24px;
        border-radius: 24px;
        max-width: 100%;
        overflow: visible;
    }

    .help-page__card .inquiry-form-grid {
        overflow: visible;
    }

    .help-page__card .inquiry-field {
        overflow: visible;
    }

    .help-page__card .calc-autocomplete__list {
        position: static;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        max-height: 200px;
    }

    .help-page__card .inquiry-steps {
        gap: 2px;
        margin-bottom: 28px;
    }

    .help-page__card .inquiry-step {
        font-size: 0.72rem;
        gap: 6px;
        padding: 10px 0;
    }

    .help-page__card .inquiry-step span {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .help-page__card .inquiry-page h3 {
        font-size: 1.15rem;
    }

    .help-page__card .help-subtitle {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .help-page__card .inquiry-input {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .help-page__card .inquiry-field label {
        font-size: 0.82rem;
    }

    .help-page__card .inquiry-actions {
        margin-top: 24px;
        gap: 10px;
    }

    .help-page__card .inquiry-btn {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .help-page__card .inquiry-btn--send {
        padding: 14px 28px;
        font-size: 0.92rem;
    }

    .help-checkbox-label {
        white-space: normal;
        font-size: 0.85rem;
        padding: 14px 16px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .help-page {
        padding: 24px 0 50px;
    }

    .help-page__card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .help-page__card .inquiry-step {
        font-size: 0;
        justify-content: center;
    }

    .help-page__card .inquiry-step span {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .help-page__card .inquiry-step.active,
    .help-page__card .inquiry-step.done {
        font-size: 0.7rem;
    }

    .help-type-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .help-type-card {
        flex-direction: row;
        padding: 20px;
        gap: 16px;
        text-align: left;
    }

    .help-type-card svg {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .help-photos {
        gap: 10px;
    }

    .help-confirm-dialog {
        margin: 0 16px;
        padding: 32px 24px;
    }

    .help-infobox {
        font-size: 0.82rem;
        padding: 14px 16px;
        gap: 10px;
    }
}

/* ===== INQUIRY MODAL ===== */
.inquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.inquiry-overlay.open {
    opacity: 1;
    visibility: visible;
}

.inquiry-modal {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.inquiry-overlay.open .inquiry-modal {
    transform: translateY(0) scale(1);
}

.inquiry-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s;
}

.inquiry-modal__close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Inline validačná chyba: 2px solid red border + shake animácia */
.inquiry-input--error {
    border-color: #d63939 !important;
    border-width: 2px !important;
    box-shadow: 0 0 0 3px rgba(214, 57, 57, 0.12) !important;
    animation: inquiryShake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes inquiryShake {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-7px); }
    30% { transform: translateX(7px); }
    45% { transform: translateX(-5px); }
    60% { transform: translateX(5px); }
    75% { transform: translateX(-3px); }
    90% { transform: translateX(3px); }
}

/* Stepper */
.inquiry-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.inquiry-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ccc;
    padding: 10px 0;
    border-bottom: 3px solid #eee;
    transition: all 0.3s;
}

.inquiry-step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eee;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s;
}

.inquiry-step.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.inquiry-step.active span {
    background: var(--color-primary);
    color: #fff;
}

.inquiry-step.done {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.inquiry-step.done span {
    background: var(--color-primary);
    color: #fff;
}

/* Pages */
.inquiry-page {
    display: none;
}

.inquiry-page.active {
    display: block;
}

.inquiry-page h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--color-text);
}

/* Form */
.inquiry-form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 5px;
}

.inquiry-field label .required {
    color: #e74c3c;
}

.inquiry-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--color-text);
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}

.inquiry-input:focus {
    border-color: var(--color-primary);
}

.inquiry-input--readonly {
    background: #f8f8f8;
    color: #888;
    cursor: not-allowed;
}

.inquiry-field-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
}

/* Actions */
.inquiry-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.inquiry-actions--center {
    justify-content: center;
}

.inquiry-btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inquiry-btn--outline {
    background: none;
    border: 1.5px solid #ddd;
    color: var(--color-text-light);
}

.inquiry-btn--outline:hover {
    border-color: #bbb;
    color: var(--color-text);
}

.inquiry-btn--primary {
    background: #127848;
    color: #fff;
}

.inquiry-btn--primary:hover {
    background: #0e6038;
}

.inquiry-btn--send {
    background: #127848;
    color: #fff;
    font-size: 1rem;
    padding: 14px 36px;
}

.inquiry-btn--send:hover {
    background: #0e6038;
}

.inquiry-btn--send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Summary */
.inquiry-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inquiry-summary__section {
    background: #f9faf8;
    border-radius: 14px;
    padding: 20px;
}

.inquiry-summary__section h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0 0 12px;
}

.inquiry-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.inquiry-summary__row span {
    color: var(--color-text-light);
    font-size: 0.88rem;
}

.inquiry-summary__row strong {
    font-size: 0.88rem;
    color: var(--color-text);
}

.inquiry-summary__row--total {
    border-top: 1px solid #e8e8e8;
    margin-top: 8px;
    padding-top: 12px;
}

.inquiry-summary__row--total strong {
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 800;
}

/* Final step */
.inquiry-final {
    text-align: center;
    padding: 20px 0;
}

.inquiry-final__icon {
    color: var(--color-primary);
    margin-bottom: 16px;
}

.inquiry-final__icon--success {
    color: #27ae60;
}

.inquiry-final h3 {
    text-align: center;
}

.inquiry-final p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin: 0 0 24px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .inquiry-overlay {
        padding: 8px;
        align-items: center;
    }

    .inquiry-modal {
        padding: 20px;
        border-radius: 16px;
        max-height: calc(100dvh - 16px);
        display: flex;
        flex-direction: column;
    }

    .inquiry-modal__close {
        top: 10px;
        right: 10px;
    }

    .inquiry-modal__close svg {
        width: 20px;
        height: 20px;
    }

    /* Stepper - kompaktný */
    .inquiry-steps {
        margin-bottom: 14px;
        gap: 4px;
        flex-shrink: 0;
    }

    .inquiry-step {
        font-size: 0;
        justify-content: center;
        padding: 6px 0;
        border-bottom-width: 2px;
    }

    .inquiry-step span {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    /* Scrollovateľný obsah */
    .inquiry-page.active {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        min-height: 0;
        flex: 1;
    }

    .inquiry-page h3 {
        font-size: 1.05rem;
        margin: 0 0 14px;
        flex-shrink: 0;
    }

    /* Formulár */
    .inquiry-form-grid {
        gap: 12px;
        flex: 1;
        overflow-y: auto;
    }

    .inquiry-field label {
        font-size: 0.78rem;
        margin-bottom: 4px;
    }

    .inquiry-input {
        padding: 10px 14px;
        font-size: 0.88rem;
        border-radius: 9px;
    }

    .inquiry-field-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Tlačidlá */
    .inquiry-actions {
        margin-top: 16px;
        gap: 10px;
        flex-shrink: 0;
    }

    .inquiry-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .inquiry-btn--send {
        padding: 12px 26px;
        font-size: 0.92rem;
    }

    /* Sumarizácia */
    .inquiry-summary {
        gap: 14px;
        flex: 1;
        overflow-y: auto;
    }

    .inquiry-summary__section {
        padding: 14px;
        border-radius: 12px;
    }

    .inquiry-summary__section h4 {
        font-size: 0.7rem;
        margin: 0 0 10px;
    }

    .inquiry-summary__row {
        padding: 4px 0;
    }

    .inquiry-summary__row span,
    .inquiry-summary__row strong {
        font-size: 0.82rem;
    }

    .inquiry-summary__row--total strong {
        font-size: 0.95rem;
    }

    .inquiry-summary__row--total {
        margin-top: 6px;
        padding-top: 10px;
    }

    /* Finálny krok */
    .inquiry-final {
        padding: 12px 0;
    }

    .inquiry-final__icon svg {
        width: 40px;
        height: 40px;
    }

    .inquiry-final__icon {
        margin-bottom: 12px;
    }

    .inquiry-final p {
        font-size: 0.85rem;
        margin: 0 0 18px;
    }
}

/* Veľmi malé telefóny (iPhone SE, 320-375px) */
@media (max-width: 380px) {
    .inquiry-modal {
        padding: 14px;
        border-radius: 12px;
    }

    .inquiry-page h3 {
        font-size: 0.92rem;
        margin: 0 0 10px;
    }

    .inquiry-form-grid {
        gap: 10px;
    }

    .inquiry-field label {
        font-size: 0.72rem;
    }

    .inquiry-input {
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .inquiry-btn {
        padding: 9px 16px;
        font-size: 0.8rem;
    }

    .inquiry-btn--send {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .inquiry-actions {
        margin-top: 12px;
    }

    .inquiry-summary__row span,
    .inquiry-summary__row strong {
        font-size: 0.75rem;
    }

    .inquiry-summary__section {
        padding: 12px;
    }

    .inquiry-final__icon svg {
        width: 34px;
        height: 34px;
    }
}

/* Krátke obrazovky na šírku alebo malé telefóny */
@media (max-height: 600px) and (max-width: 600px) {
    .inquiry-overlay {
        padding: 4px;
    }

    .inquiry-modal {
        max-height: calc(100dvh - 8px);
        padding: 12px;
        border-radius: 10px;
    }

    .inquiry-steps {
        margin-bottom: 8px;
    }

    .inquiry-step {
        padding: 4px 0;
    }

    .inquiry-final {
        padding: 4px 0;
    }

    .inquiry-final p {
        margin: 0 0 10px;
    }
}

/* ===========================
   RASTLINY - KATEGORIA
   =========================== */

/* Hero */
.plants-hero {
    padding: 60px 0 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.plants-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
}

.plants-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 4px 0 0;
}

.plants-breadcrumbs {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.plants-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.plants-breadcrumbs a:hover {
    color: #fff;
}

.plants-breadcrumbs__sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.4);
}

/* Filter pills carousel (Skymat style) */
.filter-section {
    padding: 34px 0;
    background: #f4f5f3;
}

.filter-swipe-hint,
.blog-swipe-hint {
    display: none !important;
}

.filter-wrap {
    display: flex;
    align-items: center;
    position: relative;
}

button.filter-pill--all,
a.filter-pill--all {
    position: relative;
    z-index: 10;
    background: #095531;
    color: #fff;
    border: 2px solid #095531;
    flex-shrink: 0;
    margin-right: 28px;
    text-decoration: none;
}

.filter-carousel {
    overflow: hidden;
    padding: 6px 0;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    touch-action: pan-y;
    flex: 1;
    min-width: 0;
}
.filter-carousel.dragging { cursor: grabbing; }

.filter-track {
    display: flex;
    gap: 9px;
    padding: 0 4px;
    position: relative;
    will-change: transform;
    z-index: 1;
}

.filter-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 8px 30px;
    min-width: 160px;
    min-height: 48px;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 900;
    font-family: var(--font-family);
    color: #095531;
    background: transparent;
    border: 2px solid #095531;
    transition: color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.filter-pill__icon {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
    transition: filter 0.2s ease;
}

.filter-pill--hovered .filter-pill__icon {
    filter: brightness(0) invert(1);
}

.filter-pill--hovered {
    color: #fff;
    border-color: transparent;
}

.filter-pill--active {
    background: #095531;
    color: #fff;
    border-color: #095531;
}

.filter-pill--active .filter-pill__icon {
    filter: brightness(0) invert(1);
}

/* Fade borders on non-hovered pills while hovering carousel */
.filter-carousel:hover .filter-pill:not(.filter-pill--hovered) {
    border-color: rgba(9, 85, 49, 0.3);
}

/* Sliding pill – in carousel, behind track */
.cat-pill {
    position: absolute;
    left: 0; top: 0; width: 0; height: 0;
    pointer-events: none;
    background: #095531;
    border-radius: 19px;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
    opacity: 0;
    z-index: 0;
}
.cat-pill.visible { opacity: 1; }

/* Plants grid */
.plants-section {
    padding: 56px 0 80px;
    background: #fff;
}

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

.plant-card {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f0f0f0;
}

.plant-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.plant-card:hover img {
    transform: scale(1.05);
}

.plant-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
    pointer-events: none;
}

.plant-card__name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.plant-card__latin {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    margin: 4px 0 0;
    font-style: italic;
    font-weight: 400;
}

/* Prázdny stav sekcie (príbehy / blogy / iné listingy) */
.section-empty-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 720px;
    margin: 28px 0 48px;
    padding: 22px 28px;
    border: 1px dashed rgba(74, 90, 68, 0.35);
    border-radius: 14px;
    color: #393939;
    backdrop-filter: blur(2px);
}
.section-empty-alert__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-empty-alert__icon svg { width: 22px !important; height: 22px !important; max-width: 22px; max-height: 22px; flex-shrink: 0; }
.section-empty-alert__text { flex: 1; }
.section-empty-alert__text strong {
    display: block;
    font-size: 1rem;
    color: #575757;
    margin-bottom: 3px;
}
.section-empty-alert__text p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #6e6e6e;
}
.section-empty-alert--wide {
    max-width: 820px;
    padding: 32px 36px;
    margin: 48px auto;
    gap: 22px;
}
.section-empty-alert--wide .section-empty-alert__icon {
    width: 56px;
    height: 56px;
}
.section-empty-alert--wide .section-empty-alert__icon svg { width: 28px !important; height: 28px !important; max-width: 28px; max-height: 28px; }
.section-empty-alert--wide .section-empty-alert__text strong { font-size: 1.12rem; margin-bottom: 6px; }
.section-empty-alert--wide .section-empty-alert__text p { font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 560px) {
    .section-empty-alert { flex-direction: column; text-align: center; padding: 22px 18px; }
    .section-empty-alert--wide { padding: 28px 22px; margin: 32px auto; }
}

.plants-empty-filter { display: none; }
.plants-empty-filter.visible { display: flex; }

/* Pagination */
.pagination-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0;
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 400;
}

.pagination-info svg {
    flex-shrink: 0;
    opacity: 0.3;
    width: 16px;
    height: 16px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #095531;
    color: #fff;
    border: 3px solid #095531;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination__btn:hover {
    background: #0a6b3e;
    border-color: #0a6b3e;
    transform: translateY(-1px);
}

.pagination__pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #d4ddd0;
    background: #fff;
    color: #095531;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination__page:hover {
    border-color: #095531;
    background: #f0f4ee;
}

.pagination__page--active {
    background: #095531;
    color: #fff;
    border-color: #095531;
}

.pagination__dots {
    padding: 0 4px;
    color: #aaa;
    font-size: 1.1rem;
}

/* Empty state */
.plants-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--color-text-light);
}

.plants-empty svg {
    margin-bottom: 16px;
    opacity: 0.4;
}

.plants-empty p {
    font-size: 1rem;
    margin: 0;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1001;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .plants-hero {
        padding: 40px 0 32px;
    }

    .plants-hero__title {
        font-size: 2rem;
    }

    .plants-hero__subtitle {
        font-size: 0.95rem;
    }

    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .plant-card {
        border-radius: 12px;
    }

    .plant-card__name {
        font-size: 1rem;
    }

    .plant-card__latin {
        font-size: 0.75rem;
    }

    .plant-card__overlay {
        padding: 30px 12px 12px;
    }

    .pagination__btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .pagination__page {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .pagination-info {
        font-size: 0.82rem;
        padding: 10px 16px;
    }

    /* Filter pills - mobile: stacked layout */
    .filter-section {
        padding: 24px 0 28px;
    }

    .filter-wrap {
        flex-wrap: wrap;
        gap: 16px;
        overflow: visible;
    }
    .filter-wrap::-webkit-scrollbar { display: none; }

    button.filter-pill--all,
    a.filter-pill--all {
        width: 100%;
        margin-right: 0;
        min-height: 52px;
        font-size: 1rem;
        border-radius: 14px;
        justify-content: center;
        order: -1;
    }

    .blog-pill-all {
        width: 100%;
        margin-right: 0;
        min-height: 52px;
        font-size: 1rem;
        border-radius: 14px;
        justify-content: center;
        order: -1;
        background: #095531;
        color: #fff;
        border-color: #095531;
    }

    .blog-swipe-hint {
        display: flex !important;
        position: relative;
        z-index: 2;
        margin-top: 16px;
    }

    .blog-carousel {
        flex: 0 0 100%;
    }

    .filter-carousel {
        overflow: visible !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x !important;
        cursor: default;
        padding: 0;
        user-select: auto;
        scrollbar-width: none;
        width: 100%;
        flex: 0 0 100%;
    }
    .filter-carousel::-webkit-scrollbar { display: none; }

    .filter-track {
        gap: 8px;
    }

    .filter-pill {
        padding: 10px 24px;
        font-size: 0.88rem;
        min-width: 130px;
        height: 52px;
    }

    .filter-pill__icon {
        width: 28px;
        height: 28px;
    }

    .cat-pill { display: none !important; }
    .filter-pill--hovered { color: #095531; border-color: #095531; }

    .filter-swipe-hint {
        display: flex !important;
        position: relative;
        z-index: 2;
        margin-top: 16px;
    }

    .plants-section {
        padding: 24px 0 60px;
    }

    .lightbox img {
        max-width: 95vw;
        max-height: 85vh;
        border-radius: 8px;
    }

    .lightbox__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
}

/* =================================
   Preprava rastlin
   ================================= */

.transport-hero {
    padding: 60px 0 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.transport-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
}

.transport-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 4px 0 0;
}

/* Intro */
.transport-intro {
    padding: 60px 0 0;
    background: #fff;
}

.transport-intro__box {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #095531;
    border: none;
    border-radius: var(--radius-lg);
    padding: 36px;
}

.transport-intro__icon {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.transport-intro__icon svg {
    width: 48px;
    height: 48px;
}

.transport-intro__text h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.transport-intro__text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.transport-intro__text strong {
    color: #ffffff;
}

/* Upozornenie box */
.transport-warning__box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1.5px solid rgba(9, 85, 49, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    margin-top: 20px;
}

.transport-warning__icon {
    flex-shrink: 0;
    color: #095531;
    margin-top: 2px;
}

.transport-warning__text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #095531;
    margin-bottom: 6px;
}

.transport-warning__text p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Section titles */
.transport-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #095531;
    text-align: center;
    margin-bottom: 4px;
}

.transport-section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 36px;
}

/* Vehicles */
.transport-vehicles {
    padding: 60px 0;
    background: #fff;
}

.transport-vehicles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.transport-vehicle-card {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.transport-vehicle-card:hover {
    border-color: #095531;
    box-shadow: var(--shadow);
}

.transport-vehicle-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(9, 85, 49, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #095531;
}

.transport-vehicle-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.transport-vehicle-card__rate {
    font-size: 1.5rem;
    font-weight: 800;
    color: #095531;
    margin-bottom: 8px;
}

.transport-vehicle-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
}

/* Pricing section */
.transport-pricing {
    padding: 0 0 80px;
    background: #fff;
}

/* Search */
.transport-search-wrap {
    max-width: 500px;
    margin: 0 auto 28px;
}

.transport-search {
    position: relative;
    display: flex;
    align-items: center;
}

.transport-search__icon {
    position: absolute;
    left: 16px;
    color: var(--color-text-light);
    pointer-events: none;
}

.transport-search__input {
    width: 100%;
    padding: 14px 44px 14px 48px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-pill);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fff;
}

.transport-search__input:focus {
    border-color: #095531;
    box-shadow: 0 0 0 3px rgba(9, 85, 49, 0.1);
}

.transport-search__input::placeholder {
    color: #aaa;
}

.transport-search__clear {
    position: absolute;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-border);
    color: var(--color-text-light);
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}

.transport-search__clear:hover {
    background: #ccc;
}

.transport-search-count {
    display: none;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 10px;
}

/* Table */
.transport-table-wrap {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}

.transport-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.transport-table thead {
    background: #095531;
    color: #fff;
}

.transport-table thead th {
    padding: 14px 20px;
    font-weight: 600;
    text-align: center;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transport-table thead th.transport-table__city {
    text-align: left;
}

.transport-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

.transport-table tbody tr:last-child {
    border-bottom: none;
}

.transport-table tbody tr:hover {
    background: var(--color-bg-sage);
}

.transport-table tbody td {
    padding: 12px 20px;
    text-align: center;
    color: var(--color-text);
}

.transport-table__city-cell {
    text-align: left !important;
    font-weight: 600;
    color: var(--color-dark) !important;
}

.transport-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.transport-table tbody tr:nth-child(even):hover {
    background: var(--color-bg-sage);
}

/* Empty state */
.transport-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--color-text-light);
    gap: 8px;
}

.transport-empty p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

.transport-empty span {
    font-size: 0.88rem;
}

/* Note box */
.transport-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--color-bg-sage);
    border: 1px solid var(--color-bg-sage-dark);
    border-radius: var(--radius);
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.transport-note svg {
    flex-shrink: 0;
    color: #095531;
    margin-top: 1px;
}

.transport-note a {
    color: #095531;
    font-weight: 600;
    text-decoration: underline;
}

.transport-note a:hover {
    color: var(--color-primary-hover);
}

/* Transport responsive */
@media (max-width: 768px) {
    .transport-hero {
        padding: 40px 0 30px;
    }

    .transport-hero__title {
        font-size: 2rem;
    }

    .transport-hero__subtitle {
        font-size: 0.95rem;
    }

    .transport-intro__box {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        align-items: center;
    }

    .transport-warning__box {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        align-items: center;
    }

    .transport-vehicles__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .transport-vehicle-card {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .transport-vehicle-card__icon {
        margin: 0;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .transport-vehicle-card__info {
        flex: 1;
        min-width: 0;
    }

    .transport-vehicle-card h3 {
        font-size: 1rem;
        margin-bottom: 1px;
    }

    .transport-vehicle-card__rate {
        font-size: 1.25rem;
        margin-bottom: 0;
        flex-shrink: 0;
        margin-left: auto;
    }

    .transport-vehicle-card p {
        font-size: 0.78rem;
    }

    .transport-section-title {
        font-size: 1.3rem;
    }

    .transport-search-wrap {
        max-width: 100%;
    }

    .transport-table thead th {
        padding: 10px 8px;
        font-size: 0.75rem;
    }

    .transport-table tbody td {
        padding: 10px 8px;
        font-size: 0.82rem;
    }

    .transport-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .transport-pricing {
        padding-bottom: 60px;
    }
}

/* ===========================
   Kontakt stránka
   Farba: #095531, contrast max +10%: #0b6b3d
   =========================== */

/* Hero */
.contact-hero {
    padding: 40px 0 34px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.contact-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
}

.contact-hero__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 4px 0 0;
}

/* Section titles */
.contact-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #095531;
    text-align: center;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.contact-section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 32px;
}

/* Kontaktné karty */
.contact-cards {
    padding: 50px 0 0;
    background: #fff;
}

.contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.contact-card {
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: background var(--transition);
}

.contact-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(9, 85, 49, 0.12);
}

.contact-card:hover {
    background: rgba(9, 85, 49, 0.03);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    background: #095531;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #ffffff;
}

.contact-card__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-card__title {
    font-size: 1.05rem;
    font-weight: bold;
    color: #095531;
}

.contact-card__value {
    font-size: 0.98rem;
    color: var(--color-text);
    display: block;
    line-height: 1.6;
}

a.contact-card__value:hover {
    color: #095531;
}

.contact-card__value--sub {
    margin-top: 2px;
    color: var(--color-text-light);
    font-size: 0.98rem;
}

/* Oddelovač sekcií */
.contact-divider {
    width: 48px;
    height: 1.5px;
    background: #095531;
    margin: 0 auto;
    opacity: 0.25;
}

/* Details grid (billing + team vedľa seba) */
.contact-details {
    padding: 14px 0 0;
    background: #fff;
}

.contact-details__band {
    background: #095531;
    padding: 52px 0;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}


.contact-details__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details__col {}

.contact-section-title--left {
    text-align: left;
}

.contact-section-subtitle--left {
    text-align: left;
}

/* Titulky vo farebnom bande */
.contact-details .contact-section-title--left {
    color: #ffffff;
    font-size: 1.4rem;
}

.contact-details .contact-section-subtitle--left {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Fakturačné údaje */
.contact-billing__box {
    border: none;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    background: #074427;
}

.contact-billing__company {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    padding: 18px 22px;
    background: rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-billing__company svg {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.contact-billing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-billing__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-billing__item:nth-child(odd):not(.contact-billing__item--wide) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-billing__item--wide {
    grid-column: 1 / -1;
    border-bottom: none;
}

.contact-billing__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-billing__val {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

/* Tím — vertikálny list */
.contact-team__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-team__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-team__card:last-child {
    border-bottom: none;
}

.contact-team__avatar {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.contact-team__info {
    flex: 1;
    min-width: 0;
}

.contact-team__name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.contact-team__position {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 5px;
}

.contact-team__email {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-team__email:hover {
    color: #ffffff;
}

/* Kontaktný formulár */
.contact-form-section {
    padding: 52px 0 68px;
    background: #fff;
}

.contact-form__wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px;
}

/* Flash správy */
.contact-flash {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-flash--success {
    background: rgba(9, 85, 49, 0.06);
    color: #095531;
    border: 1px solid rgba(9, 85, 49, 0.15);
}

.contact-flash--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Formulár — line dizajn */
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 0;
}

.contact-form__group {
    margin-bottom: 22px;
    position: relative;
}

.contact-form__row .contact-form__group {
    margin-bottom: 22px;
}

.contact-form__group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #095531;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.contact-form__req {
    color: #095531;
    opacity: 0.5;
}

.contact-form__group input,
.contact-form__group select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1.5px solid rgba(9, 85, 49, 0.15);
    border-radius: 0;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--color-text);
    background: transparent;
    transition: border-color var(--transition);
    outline: none;
}

.contact-form__group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1.5px solid rgba(9, 85, 49, 0.15);
    border-radius: 0;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--color-text);
    background: transparent;
    transition: border-color var(--transition);
    outline: none;
    resize: vertical;
    min-height: 90px;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: #b0b0b0;
    font-weight: 300;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
    border-bottom-color: #095531;
}

.contact-form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23095531' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    cursor: pointer;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 36px;
    background: #095531;
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    margin-top: 6px;
}

.contact-form__submit:hover {
    background: #0b6b3d;
    transform: translateY(-1px);
}

/* Kontakt responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0 30px;
    }

    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-hero__subtitle {
        font-size: 0.95rem;
    }

    .contact-cards__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .contact-card:not(:last-child)::after {
        right: 15%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 70%;
        background: rgba(9, 85, 49, 0.1);
    }

    .contact-details__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-section-title--left {
        text-align: center;
    }

    .contact-section-subtitle--left {
        text-align: center;
    }

    .contact-billing__box {
        border-radius: 10px;
    }

    .contact-billing__company {
        padding: 20px 24px;
    }

    .contact-billing__grid {
        grid-template-columns: 1fr;
    }

    .contact-billing__item {
        padding: 16px 24px;
    }

    .contact-billing__item:nth-child(odd):not(.contact-billing__item--wide) {
        border-right: none;
    }

    .contact-form__wrap {
        padding: 32px 24px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section-title {
        font-size: 1.3rem;
    }

    .contact-cards,
    .contact-details {
        padding: 56px 0 0;
    }

    .contact-form-section {
        padding: 56px 0 60px;
    }

    .contact-form__submit {
        width: 100%;
        justify-content: center;
    }
}

/* =================================
   Na stiahnutie
   ================================= */
.download-hero {
    padding: 60px 0 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.download-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
    line-height: 45px;
}

.download-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 4px 0 0;
}

.download-section {
    padding: 64px 0 80px;
    background: #fff;
}

.brochure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.brochure-card {
    background: var(--color-white);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.brochure-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.brochure-card__icon {
    position: relative;
    color: #d32f2f;
    margin-bottom: 24px;
}

.brochure-card__badge {
    position: absolute;
    bottom: -2px;
    right: -12px;
    background: #d32f2f;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

.brochure-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.brochure-card__desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.65;
    margin-bottom: 28px;
    flex: 1;
}

.brochure-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #095531;
    color: var(--color-white);
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-family);
    text-decoration: none;
    transition: background var(--transition);
}

.brochure-card__btn:hover {
    background: #0a6b3e;
}

.brochure-card__btn--disabled {
    background: #ccc;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .brochure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .brochure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brochure-card {
        padding: 32px 24px;
    }

    .download-section {
        padding: 40px 0 56px;
    }
}

/* =============================
   Trávne koberce - Content & Gallery
   ============================= */

/* --- Content blocks (photo + text alternating) --- */
.lawn-content {
    padding: 80px 0;
    background: #dcd0b8;
}

.lawn-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.lawn-block:last-child {
    margin-bottom: 0;
}

.lawn-block--reverse {
    direction: rtl;
}

.lawn-block--reverse > * {
    direction: ltr;
}

.lawn-block__image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e8e8e4;
}

.lawn-block__image img,
.lawn-block__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lawn-block__image:hover img,
.lawn-block__image:hover video {
    transform: scale(1.03);
}

.lawn-block__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e4;
    color: #bbb;
}

.lawn-block__text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #343434;
    margin-bottom: 16px;
}

.lawn-block__text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #343434;
    margin-bottom: 12px;
}

.lawn-block__text p:last-child {
    margin-bottom: 0;
}

/* --- Gallery --- */
.lawn-gallery {
    padding: 80px 0;
    background: #fff;
}

.lawn-gallery__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #095531;
    text-align: center;
    margin-bottom: 8px;
}

.lawn-gallery__subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.lawn-gallery__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.lawn-gallery__item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
    padding-bottom: 125%; /* 5/4 fallback for aspect-ratio */
    height: 0;
    background: #e8e8e4;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@supports (aspect-ratio: 4 / 3) {
    .lawn-gallery__item {
        padding-bottom: 0;
        height: auto;
    }
}

.lawn-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.lawn-gallery__item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lawn-gallery__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e4;
    color: #bbb;
}

/* --- Lightbox --- */
.lawn-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lawn-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lawn-lightbox__img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.lawn-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 8px;
    z-index: 10;
}

.lawn-lightbox__close:hover {
    opacity: 1;
}

.lawn-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10;
}

.lawn-lightbox__nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lawn-lightbox__nav--prev {
    left: 20px;
}

.lawn-lightbox__nav--next {
    right: 20px;
}

/* --- Lawn responsive --- */
@media (max-width: 1024px) {
    .lawn-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lawn-content {
        padding: 48px 0;
    }

    .lawn-block {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }

    .lawn-block--reverse {
        direction: ltr;
    }

    .lawn-block__text h2 {
        font-size: 1.3rem;
    }

    .lawn-gallery {
        padding: 48px 0;
    }

    .lawn-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lawn-gallery__title {
        font-size: 1.4rem;
    }

    .lawn-lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .lawn-lightbox__nav--prev {
        left: 10px;
    }

    .lawn-lightbox__nav--next {
        right: 10px;
    }

    .lawn-lightbox__img {
        max-width: 95vw;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .lawn-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .lawn-gallery__item {
        border-radius: 8px;
    }
}

/* 2K + 4K displays – container width 1425px pre konzistentný layout */
@media (min-width: 2560px) {
    :root {
        --container-width: 1425px;
    }

    /* Stories header (logo + username) +15% pre 2K/4K */
    .story-card__header {
        top: 12px;
        left: 12px;
        gap: 8px;
    }
    .story-card__avatar {
        width: 37px;
        height: 37px;
    }
    .story-card__username {
        font-size: 0.9rem;
    }

    /* Hero buttons tight layout pre 2K/4K */
    .hero__buttons {
        gap: 13px;
    }

    /* Topbar dot (status indikátor) pre 2K/4K */
    .topbar__dot {
        width: 16px;
        height: 16px;
    }

    /* Kalkulačka trávnych kobercov +10% pre 2K/4K */
    .calc-hero {
        padding: 66px 0 55px;
    }
    .calc-hero__title {
        font-size: 3.3rem;
    }
    .calc-hero__subtitle {
        font-size: 1.27rem;
    }
    .calc-section {
        padding: 88px 0;
    }
    .calc-layout {
        grid-template-columns: min(462px, 100%) 1fr;
        gap: 35px;
    }
    .calc-card {
        border-radius: 22px;
    }
    .calc-card__header {
        padding: 22px 31px;
    }
    .calc-card__header h2 {
        font-size: 1.21rem;
    }
    .calc-card__body {
        padding: 31px;
    }
    .calc-field {
        margin-bottom: 24px;
    }
    .calc-field > label {
        font-size: 0.97rem;
        margin-bottom: 9px;
    }
    .calc-input {
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 15px;
    }
    .calc-field__unit {
        font-size: 0.99rem;
    }
    .calc-autocomplete__item {
        padding: 11px 15px;
        font-size: 1.01rem;
    }
    .calc-checkbox__box {
        width: 26px;
        height: 26px;
    }
    .calc-checkbox__text {
        font-size: 1.01rem;
    }
    .calc-btn {
        padding: 18px 26px;
        font-size: 1.15rem;
    }
    .calc-result-row span {
        font-size: 1.21rem;
    }
    .calc-result-row strong {
        font-size: 1.25rem;
    }
    .calc-total {
        padding: 26px;
        gap: 22px;
    }
    .calc-total strong {
        font-size: 1.98rem;
    }
    .calc-total__vat {
        font-size: 0.93rem;
    }
    .calc-total__secondary {
        font-size: 1.04rem;
    }
    .calc-toggle__btn {
        padding: 11px 18px;
        font-size: 1.01rem;
    }
    .calc-placeholder {
        padding: 66px 35px;
        min-height: 330px;
    }
    .calc-tip {
        padding: 18px 22px;
    }
    .calc-tip__text {
        font-size: 0.97rem;
    }

    /* Header logo + menu + "Zavolať do predajne" +20% pre 2K/4K */
    .header {
        padding: 29px 0 0;
    }
    .header__logo img {
        height: 95px;
    }
    .header__nav > a,
    .nav-dropdown__trigger {
        font-size: 1.32rem;
        padding: 8px 22px;
    }
    .nav-pill {
        height: 38px;
    }
    .header__phone,
    .lang-switcher__toggle {
        gap: 7px;
        padding: 14px 18px;
        font-size: 0.95rem;
        border-width: 2px;
    }
    .header__phone svg {
        width: 18px;
        height: 18px;
    }
}

/* ===========================
   MODAL SCALE DOWN PRE FULL HD RANGE
   (FHD pri rôznych DPI scaleoch spadá do 1025–1919 CSS px, kde html=70%)
   =========================== */
@media (min-width: 1025px) and (max-width: 1919px) {
    /* Otváracie hodiny popup */
    .hours-popup {
        max-width: 340px;
        padding: 22px 20px;
        border-radius: 18px;
    }
    .hours-popup__close {
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
    }
    .hours-popup__header {
        gap: 10px;
        margin-bottom: 18px;
    }
    .hours-popup__header h3 {
        font-size: 1.05rem;
    }
    .hours-popup__day {
        padding: 7px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    .hours-popup__today-pill {
        padding: 2px 8px;
        font-size: 0.65rem;
    }
    .hours-popup__status {
        margin-top: 16px;
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    /* Inquiry modal (objednávka trávnych kobercov) */
    .inquiry-modal {
        max-width: 440px;
        padding: 24px;
        border-radius: 18px;
    }
    .inquiry-modal__close {
        top: 12px;
        right: 12px;
    }
    .inquiry-modal__close svg {
        width: 20px;
        height: 20px;
    }
    .inquiry-steps {
        gap: 6px;
        margin-bottom: 18px;
    }
    .inquiry-step {
        font-size: 0.7rem;
        padding: 7px 0;
        border-bottom-width: 2px;
    }
    .inquiry-step span {
        width: 20px;
        height: 20px;
        font-size: 0.62rem;
    }
    .inquiry-page h3 {
        font-size: 1rem;
        margin: 0 0 14px;
    }
    .inquiry-form-grid {
        gap: 12px;
    }
    .inquiry-field label {
        font-size: 0.72rem;
        margin-bottom: 4px;
    }
    .inquiry-input {
        padding: 9px 12px;
        font-size: 0.82rem;
        border-radius: 8px;
    }
    .inquiry-btn {
        padding: 9px 20px;
        font-size: 0.82rem;
        border-radius: 10px;
    }
    .inquiry-btn--send {
        padding: 10px 26px;
        font-size: 0.9rem;
    }
    .inquiry-actions {
        margin-top: 18px;
        gap: 10px;
    }
    .inquiry-summary {
        gap: 14px;
    }
    .inquiry-summary__section {
        padding: 14px;
        border-radius: 10px;
    }
    .inquiry-summary__section h4 {
        font-size: 0.68rem;
        margin: 0 0 8px;
    }
    .inquiry-summary__row span,
    .inquiry-summary__row strong {
        font-size: 0.78rem;
    }
    .inquiry-summary__row--total strong {
        font-size: 0.92rem;
    }
    .inquiry-final {
        padding: 14px 0;
    }
    .inquiry-final p {
        font-size: 0.82rem;
        margin: 0 0 18px;
    }

    /* Header menu items pre FHD */
    .header__nav > a,
    .nav-dropdown__trigger {
        font-size: 1.2rem;
    }

    /* Header logo pre FHD */
    .header__logo img {
        height: 90px;
    }

    /* "Zavolať do predajne" button +10% pre FHD */
    .header__phone,
    .lang-switcher__toggle {
        gap: 7px;
        padding: 14px 18px;
        font-size: 0.95rem;
        border-width: 2px;
    }
    .header__phone svg {
        width: 17px;
        height: 17px;
    }

    /* Hero buttons tight layout pre FHD */
    .hero__buttons {
        gap: 14px;
    }
    .hero__btn {
        padding: 10px 14px;
    }

    /* Newsletter trávnatý obrázok – repozícia pre FHD */
    .newsletter-image {
        right: 404px;
        bottom: -278px;
        width: 604px;
    }

    /* Footer – proporčná redukcia pre FHD */
    .footer {
        padding: 58px 0 44px;
    }
    .footer__grid {
        gap: 30px;
    }
    .footer__logo img {
        height: 130px;
    }
    /* FHD footer fonty +10% (oproti base) */
    .footer__col h3 {
        font-size: 2.09rem;
        margin-bottom: 14px;
    }
    .footer__col li {
        margin-bottom: 7px;
    }
    .footer__col li a,
    .footer__col p {
        font-size: 1.08rem;
        line-height: 1.65;
    }
    .footer__bottom {
        margin-top: 36px;
        padding: 16px 0;
        gap: 10px;
        font-size: 0.99rem;
    }
    .footer__bottom-links {
        gap: 22px;
    }
    /* Newsletter fonty +10% pre FHD */
    .newsletter-panel__text h2 {
        font-size: 4.13rem;
    }
    .newsletter-panel__text p {
        font-size: 1.43rem;
    }
    .newsletter__input,
    .newsletter__submit {
        font-size: 1.155rem;
    }
    .newsletter__gdpr {
        font-size: 0.79rem;
    }

    /* Nav dropdown (Rastliny + Záhradníctvo) */
    .nav-dropdown__inner {
        border-radius: 16px;
        padding: 8px;
        min-width: 220px;
        gap: 2px;
    }
    .nav-dropdown__item {
        gap: 10px;
        padding: 7px 10px;
        border-radius: 10px;
        font-size: 0.82rem;
    }
    .nav-dropdown__img {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .nav-dropdown__item > svg {
        width: 20px;
        height: 20px;
    }

    /* Kalkulačka (trávne koberce) */
    .calc-hero {
        padding: 44px 0 36px;
    }
    .calc-hero__title {
        font-size: 2.3rem;
    }
    .calc-hero__subtitle {
        font-size: 0.95rem;
    }
    .calc-section {
        padding: 56px 0;
    }
    .calc-layout {
        grid-template-columns: min(340px, 100%) 1fr;
        gap: 22px;
    }
    .calc-card {
        border-radius: 16px;
    }
    .calc-card__header {
        padding: 14px 20px;
        gap: 10px;
    }
    .calc-card__header h2 {
        font-size: 0.95rem;
    }
    .calc-card__body {
        padding: 20px;
    }
    .calc-field {
        margin-bottom: 16px;
    }
    .calc-field > label {
        font-size: 0.78rem;
        margin-bottom: 6px;
    }
    .calc-input {
        padding: 10px 14px;
        font-size: 0.88rem;
        border-radius: 11px;
        border-width: 1.5px;
    }
    .calc-field__unit {
        right: 14px;
        font-size: 0.8rem;
    }
    .calc-autocomplete__item {
        padding: 7px 11px;
        font-size: 0.8rem;
    }
    .calc-checkbox__box {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        border-width: 1.5px;
    }
    .calc-checkbox__text {
        font-size: 0.8rem;
    }
    .calc-checkbox__hint {
        font-size: 0.68rem;
    }
    .calc-btn {
        padding: 11px 18px;
        font-size: 0.92rem;
        border-radius: 11px;
    }
    .calc-result-row span {
        font-size: 0.95rem;
    }
    .calc-result-row span small {
        font-size: 0.72rem;
    }
    .calc-result-row strong {
        font-size: 0.98rem;
    }
    .calc-result-group__title {
        font-size: 0.65rem;
    }
    .calc-total {
        padding: 16px 18px;
        gap: 14px;
        border-radius: 11px;
    }
    .calc-total strong {
        font-size: 1.45rem;
    }
    .calc-total__vat {
        font-size: 0.72rem;
    }
    .calc-total__secondary {
        font-size: 0.82rem;
    }
    .calc-price-dual__sub {
        font-size: 0.68rem;
    }
    .calc-toggle {
        padding: 3px;
    }
    .calc-toggle__btn {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
    .calc-placeholder {
        padding: 42px 22px;
        min-height: 220px;
    }
    .calc-placeholder p {
        font-size: 0.88rem;
    }
    .calc-note {
        font-size: 0.65rem;
    }
    .calc-tips__title {
        font-size: 0.82rem;
    }
    .calc-tip {
        gap: 10px;
        padding: 11px 14px;
        border-radius: 11px;
    }
    .calc-tip__text {
        font-size: 0.76rem;
    }

    /* Topbar dot (status indikátor) */
    .topbar__dot {
        width: 13px;
        height: 13px;
    }

    /* Filter pills – presunuté do BASE (aby platili aj pre 2K/4K) */
}

/* Skry reCAPTCHA v3 badge — attribution je v pate */
.grecaptcha-badge { visibility: hidden !important; }

/* Cookie-Script widget – zmenšenie pre desktop (widget je third-party,
   nedá sa ladiť cez naše selektory, používame zoom na root kontajner).
   Mobile <=1024 necháva Cookie-Script vlastný responsive layout. */
@media (min-width: 1025px) and (max-width: 1919px) {
    #cookiescript_injected,
    #cookiescript_wrapper,
    #cookiescript_description,
    #cookiescript_badge,
    .cookiescript_wrapper,
    .cookiescript_badge,
    .cookiescript_fsd_main,
    .cookiescript_fsd_overlay {
        zoom: 0.7;
    }
}

@media (min-width: 1920px) {
    #cookiescript_injected,
    #cookiescript_wrapper,
    #cookiescript_description,
    #cookiescript_badge,
    .cookiescript_wrapper,
    .cookiescript_badge,
    .cookiescript_fsd_main,
    .cookiescript_fsd_overlay {
        zoom: 0.8;
    }
}

/* QHD rozsah (1920-2559) – doladenia ktoré inak padajú medzi FHD (1025-1919) a 2K+ (≥2560) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero__buttons {
        gap: 13px;
    }
    .topbar__dot {
        width: 16px;
        height: 16px;
    }
}

/* ============================================================
   DETAIL PRODUKTU (rastlina-detail.php)
   ============================================================ */

/* Karta produktu ako odkaz na detail */
a.plant-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Placeholder pre produkt bez fotky v listingu */
.plant-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b6c4ad;
}

/* Kompaktná hero – len breadcrumb (rovnomerný padding hore aj dole) */
.plants-hero--compact {
    padding-top: 16px;
    padding-bottom: 16px;
}

.plants-hero--compact .plants-breadcrumbs {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 4px;
}

.product-detail {
    padding: 36px 0 56px;
    background: var(--color-white);
    overflow-x: clip;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.product-detail__grid > * {
    min-width: 0;
}

/* ---- Galéria ---- */
.product-gallery {
    position: sticky;
    top: 24px;
}

.product-gallery-main {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f4f4f4;
}

/* aspect-ratio na samotnom <img> (replaced element) je spoľahlivé –
   slide aj swiper si výšku preberú z obrázka */
.product-gallery-main .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.product-gallery-main .swiper-button-next,
.product-gallery-main .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    backdrop-filter: blur(2px);
    transition: background var(--transition);
}

.product-gallery-main .swiper-button-next:hover,
.product-gallery-main .swiper-button-prev:hover {
    background: rgba(9, 85, 49, 0.85);
}

.product-gallery-main .swiper-button-next::after,
.product-gallery-main .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
}

.product-gallery-thumbs {
    margin-top: 10px;
}

.product-gallery-thumbs .swiper-slide {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
}

.product-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--color-primary);
}

.product-gallery__placeholder {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    background: var(--color-bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b6c4ad;
}

.product-gallery__placeholder svg {
    width: 64px;
    height: 64px;
}

/* ---- Info panel ---- */
.product-info__category {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.product-info__title {
    font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.15;
    margin: 0;
}

.product-info__latin {
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin: 6px 0 0;
}

.product-info__lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 18px 0 0;
}

.product-info__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.product-cta--primary {
    background: #095531;
    color: #fff;
    border: 2px solid #095531;
}

.product-cta--primary:hover {
    background: #0a6b3e;
    border-color: #0a6b3e;
}

.product-cta--outline {
    background: transparent;
    color: #095531;
    border: 2px solid #095531;
}

.product-cta--outline:hover {
    background: var(--color-bg-sage);
}

/* ---- Botanické špecifikácie ---- */
.product-specs {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 8px;
}

.product-spec__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--color-bg-sage);
}

.product-spec__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.97rem;
}

.product-spec__row:last-child {
    border-bottom: none;
}

.product-spec__label {
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-spec__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.product-spec__value {
    color: var(--color-text);
    font-weight: 600;
    text-align: right;
}

/* Banner s brožúrou pod galériou */
.product-brochure {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 16px 20px;
    background: #095531;
    border-radius: var(--radius-lg);
    color: #fff;
    text-decoration: none;
    transition: background var(--transition);
}

.product-brochure:hover {
    background: #0a6b3e;
}

.product-brochure__icon {
    display: inline-flex;
    flex-shrink: 0;
}

.product-brochure__text {
    flex: 1;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.35;
}

.product-brochure__arrow {
    flex-shrink: 0;
    opacity: 0.85;
}

.product-info__desc {
    margin-top: 26px;
}

.product-info__desc p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

/* ---- Ostatné produkty ---- */
.product-related {
    padding: 50px 0 70px;
    background: var(--color-bg-sage);
}

.product-related__title {
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
    font-weight: 800;
    color: var(--color-dark);
    margin: 0 0 24px;
}

.related-products-swiper .swiper-slide {
    height: auto;
}

.related-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-card__image-link {
    display: block;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    overflow: hidden;
}

.related-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card__image {
    transform: scale(1.05);
}

.related-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b6c4ad;
    background: var(--color-bg-sage);
}

.related-card__body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.related-card__name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.25;
    margin: 0;
}

.related-card__latin {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--color-text-light);
    margin: 0;
}

.related-card__btn {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    padding: 9px 14px;
    background: #095531;
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition);
}

.related-card__btn:hover {
    background: #0a6b3e;
}

/* ---- Responsive detail ---- */
@media (max-width: 1024px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .product-gallery {
        position: static;
    }
}

@media (max-width: 560px) {
    .product-info__cta {
        flex-direction: column;
    }
    .product-cta {
        justify-content: center;
    }
}

/* ============================================================
   JAZYKOVÝ PREPÍNAČ (dropdown v headeri)
   ============================================================ */
.lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lang-switcher__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid rgb(255, 255, 255);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-family);
    transition: all var(--transition);
}

.lang-switcher__toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.lang-switcher__arrow {
    transition: transform 0.2s;
}

.lang-switcher.open .lang-switcher__arrow {
    transform: rotate(180deg);
}

.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 200;
}

.lang-switcher.open .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.15s;
}

.lang-switcher__item:hover {
    background: var(--color-bg-sage);
}

.lang-switcher__item.active {
    background: var(--color-bg-sage);
    font-weight: 700;
    color: var(--color-primary);
}

.lang-switcher__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 3px 6px;
    border-radius: 5px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Na mobile/tablete prepínač vedľa hamburger tlačidla – rovnaký border/radius ako burger */
@media (max-width: 1024px) {
    .lang-switcher {
        margin-left: auto;
        margin-right: 10px;
    }
    .lang-switcher__toggle {
        border: none;
        border-radius: 10px;
        padding: 13px 15px;
        background: #052e1a;
        font-size: 0.95rem;
    }
    /* Na mobile žiadny hover efekt */
    .lang-switcher__toggle:hover {
        background: #052e1a;
        border: none;
    }
}

/* Malé telefóny (pod iPhone 15 Pro Max, t.j. ≤ 430px CSS): zmenši jazykový prepínač
   a posuň ho bližšie k hamburgeru, aby logo malo dosť miesta a zostalo stabilne veľké
   (nezmenšovalo sa "divoko" podľa šírky obsahu). */
@media (max-width: 430px) {
    .header__inner {
        padding: 0 14px;
        gap: 10px;
    }
    .header__logo img {
        height: 66px;        /* pevná, dostatočne veľká – nezmenšuje sa */
        flex-shrink: 0;
    }
    .lang-switcher {
        margin-right: 4px;   /* bližšie k hamburgeru */
    }
    .lang-switcher__toggle {
        padding: 9px 11px;
        font-size: 0.8rem;
        gap: 4px;
    }
    .lang-switcher__toggle > svg:first-child {
        width: 14px;
        height: 14px;
    }
    .lang-switcher__arrow {
        width: 10px;
        height: 10px;
    }
}

/* Veľmi úzke telefóny (≤ 360px): ešte kompaktnejší prepínač, aby logo netrpelo */
@media (max-width: 360px) {
    .header__inner {
        padding: 0 12px;
        gap: 8px;
    }
    .lang-switcher__toggle {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    .header__logo img {
        height: 62px;
    }
}

/* Prepínač jazyka – zhodná veľkosť a hrúbka borderu ako "Zavolať do predajne" na desktope.
   MUSÍ byť za základným .lang-switcher__toggle (kvôli poradiu v CSS), inak base prebíja media. */
@media (min-width: 1025px) and (max-width: 1919px) {
    .lang-switcher__toggle {
        gap: 7px;
        padding: 14px 18px;
        font-size: 0.95rem;
        border-width: 2px;
    }
}

@media (min-width: 1920px) {
    .lang-switcher__toggle {
        gap: 7px;
        padding: 14px 18px;
        font-size: 0.95rem;
        border-width: 2px;
    }
}
