@charset "UTF-8";
/* ==========================================================================
   Golf Universe – nadstavba nad šablónou Anton
   Zachováva písmo (Poppins), farby, veľkosti, ikony a animácie šablóny
   a dopĺňa: tému svetlá/tmavá, zaoblenia, macOS tiene, responzivitu.
   ========================================================================== */

/* --------------------------------------------------------------- premenné */
:root {
    /* farby prevzaté zo šablóny */
    --gu-accent: #157a3a;          /* golfová zelená (namiesto oranžovej) */
    --gu-accent-dark: #0d5a2b;
    --gu-accent-soft: rgba(21, 122, 58, .12);
    --gu-green: #00461c;          /* firemná zeleň z loga */
    --gu-green-soft: #9ab7a2;

    --gu-text: #111111;
    --gu-text-2: #333333;
    --gu-muted: #888888;
    --gu-muted-2: #898989;
    --gu-line: #e5e5e5;
    --gu-line-2: #dddddd;
    --gu-bg: #ffffff;
    --gu-bg-2: #f5f5f5;
    --gu-bg-3: #f9f9f9;
    --gu-card: #ffffff;
    --gu-inverse: #111111;
    --gu-on-inverse: #ffffff;

    --gu-ok: #1f7a3f;
    --gu-warn: #d08700;
    --gu-err: #c02626;

    /* geometria – zaoblenia */
    --gu-r-xs: 6px;
    --gu-r-sm: 10px;
    --gu-r: 14px;
    --gu-r-lg: 20px;
    --gu-r-xl: 28px;
    --gu-r-pill: 999px;

    /* tiene v štýle macOS (mäkké, viacvrstvové) */
    --gu-sh-1: 0 1px 2px rgba(17, 17, 17, .05), 0 2px 8px rgba(17, 17, 17, .05);
    --gu-sh-2: 0 2px 4px rgba(17, 17, 17, .05), 0 8px 22px rgba(17, 17, 17, .08);
    --gu-sh-3: 0 4px 8px rgba(17, 17, 17, .06), 0 18px 44px rgba(17, 17, 17, .12);
    --gu-sh-4: 0 8px 16px rgba(17, 17, 17, .08), 0 32px 72px rgba(17, 17, 17, .18);
    --gu-sh-img: 0 1px 3px rgba(17, 17, 17, .06);
    --gu-sh-img-h: 0 1px 3px rgba(17, 17, 17, .06);

    --gu-ease: cubic-bezier(.22, .61, .36, 1);
    --gu-ease-out: cubic-bezier(.16, 1, .3, 1);
    --gu-t: .32s var(--gu-ease);

    --gu-container: 1280px;
    --gu-gap: 26px;
    --gu-header-h: 152px;
}

[data-theme="dark"] {
    --gu-accent: #37b06a;          /* golfová zelená pre tmavú tému */
    --gu-accent-dark: #ff9247;
    --gu-accent-soft: rgba(255, 122, 36, .16);
    --gu-green-soft: #7fa78c;

    --gu-text: #f2f2f2;
    --gu-text-2: #d8d8d8;
    --gu-muted: #9d9d9d;
    --gu-muted-2: #8f8f8f;
    --gu-line: #2b2b2b;
    --gu-line-2: #3a3a3a;
    --gu-bg: #121212;
    --gu-bg-2: #191919;
    --gu-bg-3: #1c1c1c;
    --gu-card: #1a1a1a;
    --gu-inverse: #f2f2f2;
    --gu-on-inverse: #111111;

    --gu-ok: #4ec177;
    --gu-warn: #e8ad2b;
    --gu-err: #ef6b6b;

    --gu-sh-1: 0 1px 2px rgba(0, 0, 0, .5), 0 2px 8px rgba(0, 0, 0, .4);
    --gu-sh-2: 0 2px 4px rgba(0, 0, 0, .5), 0 8px 22px rgba(0, 0, 0, .45);
    --gu-sh-3: 0 4px 8px rgba(0, 0, 0, .5), 0 18px 44px rgba(0, 0, 0, .55);
    --gu-sh-4: 0 8px 16px rgba(0, 0, 0, .55), 0 32px 72px rgba(0, 0, 0, .6);
    --gu-sh-img: 0 1px 3px rgba(0, 0, 0, .45);
    --gu-sh-img-h: 0 1px 3px rgba(0, 0, 0, .45);
}

/* ------------------------------------------------------------ základ/reset */
html { -webkit-text-size-adjust: 100%; }

/* atribút hidden musí prebiť naše display: flex/grid pravidlá */
[hidden] { display: none !important; }

body.gu-body {
    font-family: 'Poppins', sans-serif;
    background: var(--gu-bg);
    color: var(--gu-text);
    overflow-x: hidden;
    transition: background-color .3s var(--gu-ease), color .3s var(--gu-ease);
}

body.gu-body a { color: inherit; transition: color .2s var(--gu-ease); }
body.gu-body a:hover, body.gu-body a:focus { color: var(--gu-accent); text-decoration: none; }
/* font-family globálne (vyššia špecificita), farba len ako nízkošpecifický default,
   aby ju biele nadpisy na tmavom pozadí (.gu-hero-in h1, .gu-tile-in h3…) prebili */
body.gu-body h1, body.gu-body h2, body.gu-body h3,
body.gu-body h4, body.gu-body h5, body.gu-body h6 { font-family: 'Poppins', sans-serif; }
.gu-body h1, .gu-body h2, .gu-body h3,
.gu-body h4, .gu-body h5, .gu-body h6 { color: var(--gu-text); }
.gu-body p { color: var(--gu-text-2); }
body.gu-body img { max-width: 100%; height: auto; }
body.gu-body hr { border-color: var(--gu-line); }
::selection { background: var(--gu-accent); color: #fff; }

*:focus-visible { outline: 2px solid var(--gu-accent); outline-offset: 3px; border-radius: var(--gu-r-xs); }

.gu-skip {
    position: absolute; left: -9999px; top: 0; z-index: 9999;
    background: var(--gu-accent); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--gu-r) 0;
}
.gu-skip:focus { left: 0; color: #fff; }

.gu-container {
    width: 100%;
    max-width: var(--gu-container);
    margin: 0 auto;
    padding: 0 24px;
}

.gu-section { padding: 76px 0; }
.gu-section-tight { padding: 48px 0; }
.gu-section-alt { background: var(--gu-bg-2); }

.gu-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.gu-head h2 {
    font-size: 32px; font-weight: 600; letter-spacing: .02em;
    text-transform: uppercase; margin: 0 0 14px;
}
.gu-head h2 span { color: var(--gu-accent); }
.gu-head p { font-size: 15px; line-height: 1.75; color: var(--gu-muted); margin: 0; }
.gu-head--left { text-align: left; margin-left: 0; }

.gu-kicker {
    font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gu-accent); font-weight: 600; margin: 0 0 12px;
}
.gu-lead { font-size: 17px; line-height: 1.7; color: var(--gu-text-2); }
.gu-req { color: var(--gu-accent); }

/* ---------------------------------------------------------------- tlačidlá */
.gu-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 30px; border: 1px solid var(--gu-inverse); background: var(--gu-inverse);
    color: var(--gu-on-inverse); font-size: 13px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
    border-radius: var(--gu-r-pill); position: relative; overflow: hidden;
    transition: transform .28s var(--gu-ease-out), box-shadow .28s var(--gu-ease),
                background-color .25s var(--gu-ease), border-color .25s var(--gu-ease), color .25s var(--gu-ease);
    box-shadow: var(--gu-sh-1);
    -webkit-tap-highlight-color: transparent;
}
.gu-btn:hover, .gu-btn:focus {
    background: var(--gu-accent); border-color: var(--gu-accent); color: #fff;
}
.gu-btn:active { opacity: .9; }
.gu-btn[disabled] { opacity: .45; pointer-events: none; }

.gu-btn-accent { background: var(--gu-accent); border-color: var(--gu-accent); color: #fff; }
.gu-btn-accent:hover, .gu-btn-accent:focus { background: var(--gu-accent-dark); border-color: var(--gu-accent-dark); color: #fff; }

.gu-btn-ghost { background: transparent; color: var(--gu-text); border-color: var(--gu-line-2); box-shadow: none; }
.gu-btn-ghost:hover, .gu-btn-ghost:focus { background: var(--gu-accent); border-color: var(--gu-accent); color: #fff; }

.gu-btn-light { background: #fff; border-color: #fff; color: #111; }
.gu-btn-light:hover, .gu-btn-light:focus { background: var(--gu-accent); border-color: var(--gu-accent); color: #fff; }

.gu-btn-sm { padding: 10px 20px; font-size: 11px; }
.gu-btn-lg { padding: 17px 40px; font-size: 14px; }
.gu-btn-block { display: flex; width: 100%; }

/* ================================================================= HLAVIČKA */
.gu-body .header.gu-header {
    position: sticky; top: 0; z-index: 900;
    background: var(--gu-bg);
    border-bottom: 1px solid var(--gu-line);
    box-shadow: none;
    transition: box-shadow .3s var(--gu-ease), background-color .3s var(--gu-ease);
}
.gu-body .header.gu-header.is-stuck { box-shadow: var(--gu-sh-2); }

.gu-body .header.gu-header .header-top { background: var(--gu-bg); border: 0; padding: 0; }
.gu-body .header.gu-header .gu-header-top-row {
    display: flex; align-items: center; min-height: 92px;
    margin: 0;
}
.gu-body .header.gu-header .gu-header-top-row > [class^="col-"] { float: none; padding: 0; }

.gu-body .header.gu-header .gu-social { display: flex; align-items: center; gap: 14px; flex: 1 1 0; }
.gu-body .header.gu-header .gu-social > a { color: var(--gu-muted); font-size: 15px; }
.gu-body .header.gu-header .gu-social > a:hover { color: var(--gu-accent); }
.gu-body .header.gu-header .gu-header-phone {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 500; color: var(--gu-text); white-space: nowrap;
    margin-left: 6px; padding-left: 14px; border-left: 1px solid var(--gu-line);
}

.gu-body .header.gu-header .gu-logo-wrap { flex: 0 0 auto; text-align: center; }
.gu-body .header.gu-header .gu-logo { width: 168px; max-width: 46vw; height: auto; display: block; margin: 0 auto; transition: transform .4s var(--gu-ease-out); }
.gu-body .header.gu-header .gu-logo-wrap a:hover .gu-logo { transform: scale(1.04); }
[data-theme="dark"] .gu-logo,
[data-theme="dark"] .gu-footer-logo img,
[data-theme="dark"] .gu-offcanvas-logo img,
[data-theme="dark"] .gu-mobi-logo img { filter: brightness(0) invert(1); }

.gu-body .header.gu-header .icon-header-right { flex: 1 1 0; }
.gu-body .header.gu-header .icon-header-right > ul {
    display: flex; align-items: center; justify-content: flex-end; gap: 6px;
    margin: 0; padding: 0; list-style: none; float: none;
}
.gu-body .header.gu-header .icon-header-right > ul > li { position: relative; float: none; margin: 0; padding: 0; }
.gu-body .header.gu-header .icon-header-right > ul > li > a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--gu-r-pill);
    color: var(--gu-text); font-size: 20px; line-height: 1;
    transition: background-color .25s var(--gu-ease), color .25s var(--gu-ease), transform .25s var(--gu-ease-out);
}
.gu-body .header.gu-header .icon-header-right > ul > li > a:hover { background: var(--gu-bg-2); color: var(--gu-accent); transform: translateY(-2px); }

.gu-body .header.gu-header .gu-cart-li > a { position: relative; }
.gu-body .header.gu-header .gu-cart-li > a p {
    position: absolute; top: 2px; right: 0; margin: 0;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--gu-accent); color: #fff; font-size: 10px; font-weight: 700;
    line-height: 18px; text-align: center; border-radius: var(--gu-r-pill);
}

/* prepínače témy a jazyka */
.gu-body .header.gu-header .gu-switch-li { display: flex; align-items: center; }
/* prepinac temy musi byt citatelny v oboch temach - ohraniceny kruh s vyplnou,
   nie tenka siva ikona splyvajuca s pozadim */
.gu-body .header.gu-header .gu-theme-toggle,
.gu-body .gu-icon-btn.gu-theme-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; padding: 0;
    border: 1px solid var(--gu-line-2); background: var(--gu-bg-2);
    color: var(--gu-text); border-radius: var(--gu-r-pill); cursor: pointer; font-size: 18px;
    transition: background-color .25s var(--gu-ease), color .25s var(--gu-ease),
                border-color .25s var(--gu-ease), transform .4s var(--gu-ease-out);
}
.gu-body .header.gu-header .gu-theme-toggle:hover,
.gu-body .gu-icon-btn.gu-theme-toggle:hover {
    background: var(--gu-accent); border-color: var(--gu-accent); color: #fff; transform: rotate(18deg);
}
.gu-body .header.gu-header .gu-theme-toggle:focus-visible,
.gu-body .gu-icon-btn.gu-theme-toggle:focus-visible {
    outline: 2px solid var(--gu-accent); outline-offset: 2px;
}
.gu-body .gu-theme-toggle .gu-ico-moon { display: none; }
[data-theme="dark"] .gu-body .gu-theme-toggle .gu-ico-sun,
[data-theme="dark"] .gu-theme-toggle .gu-ico-sun { display: none; }
[data-theme="dark"] .gu-body .gu-theme-toggle .gu-ico-moon,
[data-theme="dark"] .gu-theme-toggle .gu-ico-moon { display: inline; }

.gu-body .header.gu-header .gu-lang { gap: 2px; padding: 0 6px; }
.gu-body .header.gu-header .gu-lang-btn {
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    color: var(--gu-muted); padding: 5px 6px; border-radius: var(--gu-r-xs);
}
.gu-body .header.gu-header .gu-lang-btn.is-active { color: var(--gu-text); background: var(--gu-bg-2); }
.gu-body .header.gu-header .gu-lang-btn:hover { color: var(--gu-accent); }
.gu-body .header.gu-header .gu-lang-sep { color: var(--gu-line-2); font-size: 11px; }

/* rozbaľovacie panely v hlavičke */
.gu-body .header.gu-header .submenu,
.gu-body .header.gu-header .menubar-search-form,
.gu-body .header.gu-header .mini-cart {
    border-radius: var(--gu-r); box-shadow: var(--gu-sh-3);
    background: var(--gu-card); border: 1px solid var(--gu-line);
}
.gu-body .header.gu-header .submenu_user { padding: 10px 0; min-width: 190px; }
.gu-body .header.gu-header .submenu_user li a { display: block; padding: 9px 20px; font-size: 13px; color: var(--gu-text-2); }
.gu-body .header.gu-header .submenu_user li a:hover { background: var(--gu-bg-2); color: var(--gu-accent); }

.gu-body .header.gu-header .menubar-search-form { padding: 10px; }
.gu-body .header.gu-header .menubar-search-form input {
    border: 1px solid var(--gu-line); border-radius: var(--gu-r-pill);
    background: var(--gu-bg); color: var(--gu-text); padding: 10px 18px; width: 300px; height: auto;
}

.gu-body .header.gu-header .mini-cart { width: 330px; padding: 20px; }
.gu-body .header.gu-header .mini-cart .account {
    font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
    color: var(--gu-muted); border-bottom: 1px solid var(--gu-line); padding-bottom: 12px; margin: 0 0 14px;
}
.gu-mini-empty { font-size: 13px; color: var(--gu-muted); text-align: center; padding: 18px 0; }
.gu-mini-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gu-line); }
.gu-mini-item img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--gu-r-sm); box-shadow: var(--gu-sh-1); }
.gu-mini-item h5 { font-size: 13px; margin: 0 0 4px; font-weight: 500; line-height: 1.35; }
.gu-mini-item span { font-size: 12px; color: var(--gu-muted); }
.gu-mini-item b { color: var(--gu-accent); }
.gu-body .header.gu-header .menu-cart-total { border-top: 1px solid var(--gu-line); margin-top: 12px; padding-top: 12px; }
.gu-body .header.gu-header .menu-cart-total .list-money { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.gu-body .header.gu-header .menu-cart-total label { color: var(--gu-muted); font-weight: 400; margin: 0; text-transform: capitalize; }
.gu-body .header.gu-header .menu-cart-total .money { color: var(--gu-text); font-weight: 600; }
.gu-body .header.gu-header .mini-cart .actions { display: flex; gap: 10px; margin-top: 16px; }
.gu-body .header.gu-header .mini-cart .actions a {
    flex: 1; text-align: center; padding: 12px 8px; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em; border-radius: var(--gu-r-pill);
    transition: all .25s var(--gu-ease);
}
.gu-body .header.gu-header .mini-cart .btn-checkout { background: var(--gu-accent); color: #fff; }
.gu-body .header.gu-header .mini-cart .btn-checkout:hover { background: var(--gu-accent-dark); color: #fff; }
.gu-body .header.gu-header .mini-cart .btn-cart { border: 1px solid var(--gu-line-2); color: var(--gu-text); }
.gu-body .header.gu-header .mini-cart .btn-cart:hover { border-color: var(--gu-accent); color: var(--gu-accent); }

/* --------------------------------------------------- hlavná navigácia (PC) */
.gu-body .header.gu-header .gu-nav { border-top: 1px solid var(--gu-line); background: var(--gu-bg); position: relative; }
.gu-body .header.gu-header .gu-nav > ul.level1 {
    display: flex; align-items: center; justify-content: center; flex-wrap: nowrap;
    gap: 2px; margin: 0 auto; padding: 0 24px; max-width: var(--gu-container); list-style: none;
}
.gu-body .header.gu-header .gu-nav > ul.level1 > li { position: static; float: none; margin: 0; padding: 0; }
.gu-body .header.gu-header .gu-nav > ul.level1 > li > a {
    display: block; padding: 17px 14px; font-size: 12.5px; font-weight: 500;
    letter-spacing: .09em; text-transform: uppercase; color: var(--gu-text);
    white-space: nowrap; position: relative;
}
.gu-body .header.gu-header .gu-nav > ul.level1 > li > a::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 10px; height: 2px;
    background: var(--gu-accent); border-radius: 2px;
    transform: scaleX(0); transform-origin: left; transition: transform .3s var(--gu-ease-out);
}
.gu-body .header.gu-header .gu-nav > ul.level1 > li:hover > a::after,
.gu-body .header.gu-header .gu-nav > ul.level1 > li.active > a::after { transform: scaleX(1); }
.gu-body .header.gu-header .gu-nav > ul.level1 > li:hover > a,
.gu-body .header.gu-header .gu-nav > ul.level1 > li.active > a { color: var(--gu-accent); }
.gu-body .header.gu-header .gu-nav-sale > a { color: var(--gu-accent) !important; font-weight: 600 !important; }

.gu-body .header.gu-header .gu-nav ul.hover-blog {
    position: absolute; left: auto; min-width: 240px; padding: 12px 0; list-style: none;
    background: var(--gu-card); border: 1px solid var(--gu-line);
    border-radius: var(--gu-r); box-shadow: var(--gu-sh-3);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .25s var(--gu-ease), transform .3s var(--gu-ease-out), visibility .25s;
    z-index: 950;
}
.gu-body .header.gu-header .gu-nav > ul.level1 > li { position: relative; }
.gu-body .header.gu-header .gu-nav > ul.level1 > li:hover > ul.hover-blog { opacity: 1; visibility: visible; transform: translateY(0); }
.gu-body .header.gu-header .gu-nav ul.hover-blog li a {
    display: block; padding: 9px 22px; font-size: 13px; color: var(--gu-text-2);
    white-space: nowrap; transition: padding .25s var(--gu-ease), color .2s var(--gu-ease), background-color .2s;
}
.gu-body .header.gu-header .gu-nav ul.hover-blog li a:hover { color: var(--gu-accent); background: var(--gu-bg-2); padding-left: 28px; }
.gu-body .header.gu-header .gu-tools-menu { max-height: 76vh; overflow-y: auto; }

.gu-body .header.gu-header .gu-megamenu {
    position: absolute; left: 0; right: 0; top: 100%;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    padding: 34px 40px; background: var(--gu-card);
    border: 1px solid var(--gu-line); border-radius: 0 0 var(--gu-r-lg) var(--gu-r-lg);
    box-shadow: var(--gu-sh-3);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .25s var(--gu-ease), transform .32s var(--gu-ease-out), visibility .25s;
    z-index: 940;
}
.gu-body .header.gu-header .gu-nav > ul.level1 > li.gu-has-mega { position: static; }
.gu-body .header.gu-header .gu-nav > ul.level1 > li:hover > .gu-megamenu { opacity: 1; visibility: visible; transform: translateY(0); }
.gu-body .header.gu-header .gu-megamenu .item-menu-home { float: none; width: auto; padding: 0; }
.gu-body .header.gu-header .gu-megamenu h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; color: var(--gu-text); }
.gu-body .header.gu-header .gu-megamenu h4 a { color: inherit; }
.gu-body .header.gu-header .gu-megamenu ul { list-style: none; padding: 0; margin: 0; }
.gu-body .header.gu-header .gu-megamenu ul li a { display: block; padding: 6px 0; font-size: 13px; color: var(--gu-muted); }
.gu-body .header.gu-header .gu-megamenu ul li a:hover { color: var(--gu-accent); padding-left: 6px; }
.gu-megamenu-promo { position: relative; border-radius: var(--gu-r); overflow: hidden; min-height: 200px; }
.gu-megamenu-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--gu-ease-out); }
.gu-megamenu-promo:hover img { /* bez animácie */ }
.gu-megamenu-promo .title { position: relative; padding: 22px; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .6); }
.gu-megamenu-promo .title h2 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: 0 0 6px; }
.gu-megamenu-promo .title h3 { font-size: 22px; font-weight: 600; color: #fff; margin: 0; }
.gu-megamenu-promo .gu-btn { position: relative; margin: 0 22px 22px; }
.gu-megamenu-promo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .6)); }
.gu-megamenu-promo .title, .gu-megamenu-promo .gu-btn { z-index: 2; }

/* ------------------------------------------- hlavička pre tablet a mobil */
.gu-body .header.gu-header .gu-header-mobi { display: none; background: var(--gu-bg); }
.gu-body .header.gu-header .gu-mobi-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    min-height: 64px; padding: 8px 4px;
}
.gu-body .header.gu-header .gu-burger {
    width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    border-radius: var(--gu-r-sm); flex: 0 0 auto;
}
.gu-body .header.gu-header .gu-burger span {
    display: block; width: 22px; height: 2px; background: var(--gu-text); border-radius: 2px;
    transition: transform .3s var(--gu-ease-out), opacity .2s var(--gu-ease);
}
.gu-body .header.gu-header .gu-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gu-body .header.gu-header .gu-burger.is-open span:nth-child(2) { opacity: 0; }
.gu-body .header.gu-header .gu-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.gu-body .header.gu-header .gu-mobi-logo { flex: 1 1 auto; text-align: center; min-width: 0; }
.gu-body .header.gu-header .gu-mobi-logo img { height: 40px; width: auto; display: inline-block; }

.gu-body .header.gu-header .gu-mobi-actions { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.gu-icon-btn {
    position: relative; width: 42px; height: 42px; border: 0; padding: 0; background: transparent;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gu-text); font-size: 20px; border-radius: var(--gu-r-pill); cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.gu-icon-btn:active { background: var(--gu-bg-2); }
.gu-body .header.gu-header .gu-mobi-cart em {
    position: absolute; top: 3px; right: 2px; font-style: normal;
    min-width: 17px; height: 17px; padding: 0 4px; background: var(--gu-accent); color: #fff;
    font-size: 10px; font-weight: 700; line-height: 17px; text-align: center; border-radius: var(--gu-r-pill);
}

.gu-body .header.gu-header .gu-mobi-search { display: flex; gap: 8px; padding: 0 4px 12px; }
.gu-body .header.gu-header .gu-mobi-search input {
    flex: 1; min-width: 0; padding: 12px 18px; font-size: 15px;
    border: 1px solid var(--gu-line); border-radius: var(--gu-r-pill);
    background: var(--gu-bg-2); color: var(--gu-text);
}
.gu-body .header.gu-header .gu-mobi-search button {
    flex: 0 0 46px; height: 46px; border: 0; border-radius: var(--gu-r-pill);
    background: var(--gu-accent); color: #fff; font-size: 19px; cursor: pointer;
}

/* ------------------------------------------------------- off-canvas menu */
.gu-offcanvas {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 1200;
    width: min(360px, 88vw); background: var(--gu-bg);
    display: flex; flex-direction: column;
    transform: translateX(-102%); transition: transform .42s var(--gu-ease-out);
    box-shadow: var(--gu-sh-4); overscroll-behavior: contain;
}
.gu-offcanvas.is-open { transform: translateX(0); }
.gu-offcanvas-backdrop {
    position: fixed; inset: 0; z-index: 1150; background: rgba(0, 0, 0, .5);
    opacity: 0; transition: opacity .35s var(--gu-ease); backdrop-filter: blur(3px);
}
.gu-offcanvas-backdrop.is-open { opacity: 1; }
.gu-offcanvas-head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 18px 20px; border-bottom: 1px solid var(--gu-line); flex: 0 0 auto;
}
.gu-offcanvas-logo img { height: 38px; width: auto; }
.gu-offcanvas-close {
    width: 40px; height: 40px; border: 0; background: var(--gu-bg-2); color: var(--gu-text);
    font-size: 26px; line-height: 1; border-radius: var(--gu-r-pill); cursor: pointer;
}
.gu-offcanvas-search { display: flex; gap: 8px; padding: 16px 20px; flex: 0 0 auto; }
.gu-offcanvas-search input {
    flex: 1; min-width: 0; padding: 11px 16px; font-size: 14px;
    border: 1px solid var(--gu-line); border-radius: var(--gu-r-pill);
    background: var(--gu-bg-2); color: var(--gu-text);
}
.gu-offcanvas-search button {
    flex: 0 0 42px; height: 42px; border: 0; border-radius: var(--gu-r-pill);
    background: var(--gu-accent); color: #fff; font-size: 17px; cursor: pointer;
}
.gu-offcanvas-nav { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: 12px; }
.gu-offcanvas-nav ul { list-style: none; margin: 0; padding: 0; }
.gu-offcanvas-nav > ul > li { position: relative; border-bottom: 1px solid var(--gu-line); }
.gu-offcanvas-nav > ul > li > a {
    display: block; padding: 15px 56px 15px 22px; font-size: 14.5px; font-weight: 500;
    letter-spacing: .04em; text-transform: uppercase; color: var(--gu-text);
}
.gu-offcanvas-nav > ul > li > a:active { background: var(--gu-bg-2); }
.gu-oc-sale > a { color: var(--gu-accent) !important; }
.gu-sub-toggle {
    position: absolute; top: 4px; right: 6px; width: 46px; height: 46px;
    border: 0; background: transparent; color: var(--gu-muted); font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; border-radius: var(--gu-r-pill);
}
.gu-sub-toggle i { transition: transform .3s var(--gu-ease-out); }
.gu-sub-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.gu-sub-toggle[aria-expanded="true"] { color: var(--gu-accent); }
.gu-submenu {
    max-height: 0; overflow: hidden; background: var(--gu-bg-2);
    transition: max-height .4s var(--gu-ease-out);
}
.gu-submenu.is-open { max-height: 720px; }
.gu-submenu li a { display: block; padding: 12px 22px 12px 34px; font-size: 13.5px; color: var(--gu-text-2); }
.gu-submenu li a:active { color: var(--gu-accent); }

.gu-offcanvas-foot { flex: 0 0 auto; border-top: 1px solid var(--gu-line); padding: 16px 20px 22px; background: var(--gu-bg); }
.gu-oc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.gu-oc-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gu-muted); }
.gu-oc-switch { display: inline-flex; background: var(--gu-bg-2); border-radius: var(--gu-r-pill); padding: 3px; gap: 2px; }
.gu-oc-switch a, .gu-oc-switch button {
    border: 0; background: transparent; color: var(--gu-muted); cursor: pointer;
    padding: 7px 15px; font-size: 12px; font-weight: 600; border-radius: var(--gu-r-pill);
    transition: background-color .25s var(--gu-ease), color .25s var(--gu-ease);
}
.gu-oc-switch a.is-active, .gu-oc-switch button.is-active { background: var(--gu-accent); color: #fff; }
.gu-oc-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.gu-oc-contact a { font-size: 13.5px; color: var(--gu-text-2); display: inline-flex; align-items: center; gap: 9px; }
.gu-oc-contact i { color: var(--gu-accent); width: 15px; }

/* ------------------------------------------------------------ drobčeky */
.gu-breadcrumb { background: var(--gu-bg-2); border-bottom: 1px solid var(--gu-line); }
.gu-breadcrumb ol {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    list-style: none; margin: 0; padding: 13px 0; font-size: 12.5px;
}
.gu-breadcrumb li { color: var(--gu-muted); display: flex; align-items: center; gap: 8px; }
.gu-breadcrumb li + li::before { content: '›'; color: var(--gu-line-2); }
.gu-breadcrumb a { color: var(--gu-muted); }
.gu-breadcrumb a:hover { color: var(--gu-accent); }
.gu-breadcrumb li[aria-current] span { color: var(--gu-text); font-weight: 500; }

/* =============================================================== OBRÁZKY */
/* zaoblené rohy, bez hover animácie a bez viacvrstvového tieňa */
.gu-img, .gu-media {
    position: relative; display: block; overflow: hidden;
    border-radius: var(--gu-r-lg); background: var(--gu-bg-2);
    box-shadow: var(--gu-sh-img);
}
.gu-img img, .gu-media img {
    display: block; width: 100%; height: 100%; object-fit: cover;
}
.gu-img-ratio-4-3 { aspect-ratio: 4 / 3; }
.gu-img-ratio-3-2 { aspect-ratio: 3 / 2; }
.gu-img-ratio-16-9 { aspect-ratio: 16 / 9; }
.gu-img-ratio-1-1 { aspect-ratio: 1 / 1; }
.gu-img-ratio-3-4 { aspect-ratio: 3 / 4; }

/* postupné nabehnutie obsahu pri scrollovaní */
/* reveal animácia vypnutá – obsah a obrázky sa zobrazujú hneď, bez fade-in */
.gu-reveal { opacity: 1; transform: none; }
.gu-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .gu-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================ HERO stránok */
.gu-page-hero { position: relative; min-height: 320px; display: flex; align-items: center; overflow: hidden; }
.gu-page-hero-bg { position: absolute; inset: 0; }
.gu-page-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); animation: guHeroZoom 18s var(--gu-ease-out) forwards; }
@keyframes guHeroZoom { to { transform: scale(1.12); } }
.gu-page-hero::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(100deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .68) 48%, rgba(0, 0, 0, .45) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0) 60%);
}
.gu-page-hero-in { position: relative; z-index: 2; padding-top: 66px; padding-bottom: 66px; }
.gu-page-hero h1 {
    font-size: clamp(30px, 4.6vw, 52px); font-weight: 600; color: #fff;
    margin: 0 0 16px; line-height: 1.15; letter-spacing: -.01em; max-width: 20ch;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .45);
}
.gu-page-hero .gu-kicker { color: #fff; opacity: .82; }
.gu-page-hero .gu-lead { color: rgba(255, 255, 255, .94); text-shadow: 0 1px 14px rgba(0, 0, 0, .5); max-width: 62ch; margin: 0; font-size: 16.5px; }
.gu-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ============================================================== HOME – hero */
.gu-hero { position: relative; overflow: hidden; background: var(--gu-inverse); }
.gu-hero-slide { position: relative; min-height: min(84vh, 760px); display: flex; align-items: center; }
.gu-hero-slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.gu-hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background:
        /* len ľahký tmavý nádych vľavo pod textom, fotky sú svetlé a jasné */
        linear-gradient(90deg, rgba(0, 0, 0, .40) 0%, rgba(0, 0, 0, .22) 32%, rgba(0, 0, 0, .06) 58%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0) 38%);
}
.gu-hero-in { position: relative; z-index: 3; padding: 60px 0; max-width: 700px; }
/* index-6: obsah zarovnaný vpravo */
.gu-hero-in-right { max-width: 620px; margin-left: 0; margin-right: auto; }
/* index-6: „+ Zistiť viac" textový odkaz namiesto tlačidiel */
.gu-hero-more {
    display: inline-flex; align-items: center; gap: 12px; margin-top: 6px;
    color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,.9), 0 2px 14px rgba(0,0,0,.65);
}
.gu-hero-more i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 999px; background: var(--gu-accent); color: #fff; font-size: 12px;
    transition: transform .3s var(--gu-ease), background-color .3s var(--gu-ease);
}
.gu-hero-more:hover { color: #fff; }
.gu-hero-more:hover i { background: var(--gu-accent-dark); transform: rotate(90deg); }
.gu-hero-in h1 {
    font-size: clamp(32px, 5.2vw, 62px); line-height: 1.08; font-weight: 600; color: #fff;
    margin: 0 0 20px; letter-spacing: -.015em;
    text-shadow: 0 2px 26px rgba(0, 0, 0, .55), 0 1px 3px rgba(0, 0, 0, .45);
}
.gu-hero-in p { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.72; color: rgba(255, 255, 255, .94); margin: 0 0 32px; max-width: 56ch; text-shadow: 0 1px 16px rgba(0, 0, 0, .5); }
.gu-hero-actions-main { display: flex; flex-wrap: wrap; gap: 14px; }
/* index-6: vertikálne dots vpravo */
.gu-hero .slick-dots {
    top: 50%; right: 34px; bottom: auto; left: auto; width: auto;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 4px;
}
.gu-hero .slick-dots li { display: block; width: auto; height: auto; margin: 0; }
.gu-hero .slick-dots li button { width: 22px; height: 22px; padding: 0; }
.gu-hero .slick-dots li button:before { color: #fff; opacity: .55; font-size: 9px; line-height: 22px; width: 22px; height: 22px; }
.gu-hero .slick-dots li.slick-active button:before { color: var(--gu-accent); opacity: 1; font-size: 12px; }
@media (max-width: 640px) {
    .gu-hero .slick-dots { top: auto; bottom: 18px; right: 50%; transform: translateX(50%);
        flex-direction: row; gap: 2px; }
    .gu-hero-in-right { max-width: 100%; margin: 0; }
}

/* pás výhod pod heroom */
.gu-usp { background: var(--gu-bg-2); border-bottom: 1px solid var(--gu-line); }
.gu-usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gu-usp-item { display: flex; align-items: center; gap: 15px; padding: 24px 18px; transition: background-color .3s var(--gu-ease); border-radius: var(--gu-r); }
.gu-usp-item:hover { background: var(--gu-bg); }
.gu-usp-item i { font-size: 25px; color: var(--gu-accent); flex: 0 0 auto; }
.gu-usp-item strong { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.gu-usp-item span { font-size: 12.5px; color: var(--gu-muted); line-height: 1.5; }

/* bannerové dlaždice */
.gu-tiles { display: grid; grid-template-columns: 1.35fr 1fr; gap: var(--gu-gap); }
.gu-tiles-right { display: grid; grid-template-rows: 1fr 1fr; gap: var(--gu-gap); }
.gu-tile { position: relative; overflow: hidden; border-radius: var(--gu-r-lg); box-shadow: var(--gu-sh-img); min-height: 240px; display: flex; align-items: flex-end; }
.gu-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gu-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .12) 22%, rgba(0, 0, 0, .55) 62%, rgba(0, 0, 0, .82)); }
.gu-tile-in { position: relative; z-index: 2; padding: 32px; color: #fff; width: 100%; }
.gu-tile-in .gu-kicker { color: #fff; opacity: .85; }
.gu-tile-in h3 { font-size: clamp(22px, 2.4vw, 34px); font-weight: 600; color: #fff; margin: 0 0 10px; }
.gu-tile-in p { color: rgba(255, 255, 255, .88); font-size: 14px; margin: 0 0 18px; max-width: 44ch; }
.gu-tile-lg { min-height: 520px; }

/* ============================================================ KARTA PRODUKTU */
.gu-grid { display: grid; gap: var(--gu-gap); }
.gu-grid-2 { grid-template-columns: repeat(2, 1fr); }
.gu-grid-3 { grid-template-columns: repeat(3, 1fr); }
.gu-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gu-grid-5 { grid-template-columns: repeat(5, 1fr); }
/* bez `min-width: 0` ma `1fr` automaticke minimum podla obsahu - dlhy nazov
   roztiahne stlpec, stlpce prestanu byt rovnako siroke a karty sa rozidu */
.gu-grid > *, .gu-sample-grid > *, .gu-insta-grid > *, .gu-usp-grid > * { min-width: 0; }
/* to iste plati pre stranove layouty - bez toho jeden siroky prvok vnutri
   (napr. vodorovny pas datumov) roztiahne cely stlpec a obsah vytecie z okna */
.gu-cart-layout > *, .gu-shop-layout > *, .gu-pd > *, .gu-split > *,
.gu-tiles > *, .gu-subscribe > *, .gu-deal-day > * { min-width: 0; }

.gu-card {
    position: relative; display: flex; flex-direction: column;
    background: var(--gu-card); border: 1px solid var(--gu-line);
    border-radius: var(--gu-r-lg); overflow: hidden;
    transition: transform .45s var(--gu-ease-out), box-shadow .45s var(--gu-ease), border-color .3s var(--gu-ease);
    box-shadow: var(--gu-sh-1);
    height: 100%;
}
.gu-card:hover { transform: translateY(-8px); box-shadow: var(--gu-sh-3); border-color: transparent; }

.gu-card-media { position: relative; overflow: hidden; background: var(--gu-bg-2); flex: 0 0 auto; }
/* obrazok je absolutne v ramci pomeru 3:2 - inak si vynuti vlastnu vysku a karty sa rozidu */
.gu-card-img { position: relative; display: block; width: 100%; aspect-ratio: 3 / 2; }
/* `.gu-body` v selektore je nutne - prebija globalne `body.gu-body img { height: auto }`,
   inak si obrazok vynuti vlastnu vysku a karty vedla seba sa rozidu */
.gu-body .gu-card-img img {
    position: absolute; inset: 0; display: block;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .9s var(--gu-ease-out);
}
.gu-card:hover .gu-card-img img { /* bez animácie */ }

.gu-card-labels { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; z-index: 3; }
.gu-label {
    display: inline-block; padding: 5px 12px; font-size: 10.5px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; border-radius: var(--gu-r-pill);
    color: #fff; background: var(--gu-text); box-shadow: var(--gu-sh-1); white-space: nowrap;
}
.gu-label-sale { background: var(--gu-accent); }
.gu-label-new { background: var(--gu-green); }
.gu-label-best { background: #111; }
.gu-label-fit { background: #2f6fb2; }
[data-theme="dark"] .gu-label-best { background: #3a3a3a; }

.gu-card-tools {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateX(14px);
    transition: opacity .35s var(--gu-ease), transform .4s var(--gu-ease-out);
}
.gu-card:hover .gu-card-tools, .gu-card:focus-within .gu-card-tools { opacity: 1; transform: none; }
.gu-tool {
    width: 38px; height: 38px; border: 0; border-radius: var(--gu-r-pill); cursor: pointer;
    background: var(--gu-card); color: var(--gu-text); font-size: 17px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--gu-sh-2);
    transition: background-color .25s var(--gu-ease), color .25s var(--gu-ease), transform .25s var(--gu-ease-out);
}
.gu-tool:hover, .gu-tool.is-active { background: var(--gu-accent); color: #fff; transform: scale(1.1); }

.gu-card-cart {
    position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 3;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 12px 14px; border: 0; border-radius: var(--gu-r-pill); cursor: pointer;
    background: var(--gu-text); color: var(--gu-bg);
    font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    box-shadow: var(--gu-sh-2);
    opacity: 0; transform: translateY(14px);
    transition: opacity .35s var(--gu-ease), transform .4s var(--gu-ease-out), background-color .25s var(--gu-ease);
}
.gu-card:hover .gu-card-cart, .gu-card:focus-within .gu-card-cart { opacity: 1; transform: none; }
.gu-card-cart:hover { background: var(--gu-accent); color: #fff; }
.gu-card-cart[disabled] { opacity: .85; transform: none; background: var(--gu-muted); cursor: not-allowed; }

.gu-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1 1 auto; }
/* každý riadok má rezervovanú výšku, aby karty vedľa seba lícovali na rovnakej linke */
.gu-card-brand {
    font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gu-accent);
    margin: 0 0 7px; font-weight: 600; line-height: 1.4; min-height: 1.4em;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gu-card-title {
    font-size: 15px; font-weight: 500; line-height: 1.45; margin: 0 0 10px;
    min-height: calc(2 * 1.45em);
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gu-card-title a { color: var(--gu-text); }
.gu-card-title a:hover { color: var(--gu-accent); }
.gu-card-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.gu-price { margin: 0; display: flex; flex-direction: column; gap: 2px; }
.gu-price strong { font-size: 19px; font-weight: 600; color: var(--gu-text); line-height: 1.2; }
.gu-price del { font-size: 13px; line-height: 1.3; color: var(--gu-muted); }
.gu-price del.gu-price-empty { visibility: hidden; }
.gu-stock { margin: 0; font-size: 11.5px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.gu-stock i { font-size: 7px; }
.gu-stock-in { color: var(--gu-ok); }
.gu-stock-low { color: var(--gu-warn); }
.gu-stock-out { color: var(--gu-muted); }

/* hviezdičky */
.gu-rating { display: flex; align-items: center; gap: 7px; margin: 0 0 8px; min-height: 14px; }
.gu-rating-empty { visibility: hidden; }
.gu-stars { position: relative; display: inline-block; width: 78px; height: 14px; }
.gu-stars::before, .gu-stars::after {
    content: '★★★★★'; position: absolute; left: 0; top: 0;
    font-size: 14px; line-height: 14px; letter-spacing: 2px;
}
.gu-stars::before { color: var(--gu-line-2); }
.gu-stars::after { color: #f5a623; width: var(--gu-rate, 0%); overflow: hidden; white-space: nowrap; }
.gu-rating em { font-style: normal; font-size: 11.5px; color: var(--gu-muted); }

/* ============================================== kategórie / značky / dlaždice */
.gu-cat-card {
    position: relative; display: block; overflow: hidden; border-radius: var(--gu-r-lg);
    box-shadow: var(--gu-sh-img); aspect-ratio: 3 / 2;
}
.gu-cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gu-cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .1) 28%, rgba(0, 0, 0, .5) 62%, rgba(0, 0, 0, .84)); }
.gu-cat-card-in { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 24px; color: #fff; }
.gu-cat-card-in h3 { font-size: 19px; font-weight: 600; color: #fff; margin: 0 0 5px; }
.gu-cat-card-in p { font-size: 12.5px; color: rgba(255, 255, 255, .85); margin: 0; }

/* Instagram Lookbook mriežka (index-6) */
.gu-insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gu-gap); }
.gu-insta-item {
    position: relative; display: block; overflow: hidden;
    border-radius: var(--gu-r-lg); aspect-ratio: 1 / 1;
    box-shadow: var(--gu-sh-img); background: var(--gu-bg-2);
}
.gu-insta-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gu-insta-icon {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px;
    background: rgba(0, 70, 28, .55);
    opacity: 0; transition: opacity .3s var(--gu-ease);
}
.gu-insta-item:hover .gu-insta-icon, .gu-insta-item:focus-visible .gu-insta-icon { opacity: 1; }
@media (max-width: 768px) { .gu-insta-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.gu-cat-card-in span { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.gu-cat-card-in span i { transition: transform .3s var(--gu-ease-out); }
.gu-cat-card:hover .gu-cat-card-in span i { transform: translateX(6px); }

.gu-brand-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    padding: 26px 18px; text-align: center; min-height: 148px;
    background: var(--gu-card); border: 1px solid var(--gu-line); border-radius: var(--gu-r);
    transition: transform .4s var(--gu-ease-out), box-shadow .4s var(--gu-ease), border-color .3s;
}
.gu-brand-card:hover { transform: translateY(-6px); box-shadow: var(--gu-sh-2); border-color: transparent; }
.gu-brand-card strong { font-size: 15px; font-weight: 600; letter-spacing: .02em; color: var(--gu-text); }
.gu-brand-card span { font-size: 11.5px; color: var(--gu-muted); }
.gu-brand-card img { width: 100%; max-width: 130px; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--gu-r-sm); box-shadow: var(--gu-sh-1); }

/* ======================================================= CTA / prúžky / boxy */
.gu-cta {
    position: relative; overflow: hidden; border-radius: var(--gu-r-xl);
    box-shadow: var(--gu-sh-3); padding: clamp(38px, 6vw, 76px);
    display: flex; align-items: center; min-height: 320px;
}
.gu-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gu-cta::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .62)); }
.gu-cta-in { position: relative; z-index: 2; max-width: 620px; }
.gu-cta-in h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; color: #fff; margin: 0 0 14px; }
.gu-cta-in p { color: rgba(255, 255, 255, .9); font-size: 16px; line-height: 1.7; margin: 0 0 28px; }

.gu-box {
    background: var(--gu-card); border: 1px solid var(--gu-line); border-radius: var(--gu-r-lg);
    padding: 30px; box-shadow: var(--gu-sh-1);
    transition: transform .4s var(--gu-ease-out), box-shadow .4s var(--gu-ease);
}
.gu-box-hover:hover { transform: translateY(-6px); box-shadow: var(--gu-sh-3); }
.gu-box h3 { font-size: 18px; font-weight: 600; margin: 0 0 12px; }
.gu-box p { font-size: 14.5px; line-height: 1.72; color: var(--gu-muted); margin: 0; }
.gu-box-icon {
    width: 54px; height: 54px; border-radius: var(--gu-r); margin-bottom: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gu-accent-soft); color: var(--gu-accent); font-size: 23px;
    transition: transform .4s var(--gu-ease-out);
}
.gu-box-hover:hover .gu-box-icon { transform: scale(1.1) rotate(-6px); }

.gu-num { text-align: center; padding: 22px 12px; }
.gu-num strong { display: block; font-size: clamp(32px, 4vw, 46px); font-weight: 600; color: var(--gu-accent); line-height: 1.05; }
.gu-num strong em { font-style: normal; font-size: .5em; margin-left: 2px; }
.gu-num span { display: block; font-size: 13px; color: var(--gu-muted); margin-top: 8px; }

/* časová os histórie */
.gu-timeline { position: relative; padding-left: 34px; }
.gu-timeline::before { content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: var(--gu-line); }
.gu-tl-item { position: relative; padding-bottom: 30px; }
.gu-tl-item::before {
    content: ''; position: absolute; left: -30px; top: 6px; width: 12px; height: 12px;
    border-radius: 50%; background: var(--gu-accent); box-shadow: 0 0 0 4px var(--gu-accent-soft);
}
.gu-tl-year { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--gu-accent); }
.gu-tl-item h4 { font-size: 16px; font-weight: 600; margin: 5px 0 6px; }
.gu-tl-item p { font-size: 14px; color: var(--gu-muted); margin: 0; line-height: 1.65; }

/* ================================================================ TÍM */
.gu-team-card {
    background: var(--gu-card); border: 1px solid var(--gu-line);
    border-radius: var(--gu-r-lg); overflow: hidden; box-shadow: var(--gu-sh-1);
    transition: transform .45s var(--gu-ease-out), box-shadow .45s var(--gu-ease);
    display: flex; flex-direction: column; height: 100%;
}
.gu-team-card:hover { transform: translateY(-8px); box-shadow: var(--gu-sh-3); }
.gu-team-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--gu-bg-2); }
.gu-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .9s var(--gu-ease-out), filter .5s var(--gu-ease); }
.gu-team-card:hover .gu-team-photo img { /* bez animácie */ }
.gu-team-body { padding: 20px; display: flex; flex-direction: column; flex: 1 1 auto; }
.gu-team-body h3 { font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.gu-team-role { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gu-accent); margin: 0 0 12px; font-weight: 600; }
.gu-team-body p { font-size: 13.5px; line-height: 1.7; color: var(--gu-muted); margin: 0 0 14px; }
.gu-team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.gu-tag {
    display: inline-block; padding: 5px 11px; font-size: 11px; border-radius: var(--gu-r-pill);
    background: var(--gu-bg-2); color: var(--gu-muted); border: 1px solid var(--gu-line);
}
.gu-team-mail { margin-top: 14px; font-size: 12.5px; color: var(--gu-muted); display: inline-flex; align-items: center; gap: 7px; }

/* =========================================================== REFERENCIE */
.gu-quote {
    background: var(--gu-card); border: 1px solid var(--gu-line); border-radius: var(--gu-r-lg);
    padding: 30px; box-shadow: var(--gu-sh-1); height: 100%;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform .4s var(--gu-ease-out), box-shadow .4s var(--gu-ease);
}
.gu-quote:hover { transform: translateY(-6px); box-shadow: var(--gu-sh-2); }
.gu-quote blockquote { border: 0; padding: 0; margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--gu-text-2); }
.gu-quote-head { display: flex; align-items: center; gap: 14px; }
.gu-quote-head img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: var(--gu-sh-1); }
.gu-quote-head strong { display: block; font-size: 14.5px; }
.gu-quote-head span { font-size: 12px; color: var(--gu-muted); }

/* ================================================================= BLOG */
.gu-post {
    display: flex; flex-direction: column; height: 100%; background: var(--gu-card);
    border: 1px solid var(--gu-line); border-radius: var(--gu-r-lg); overflow: hidden;
    box-shadow: var(--gu-sh-1);
    transition: transform .45s var(--gu-ease-out), box-shadow .45s var(--gu-ease);
}
.gu-post:hover { transform: translateY(-8px); box-shadow: var(--gu-sh-3); }
.gu-post-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--gu-bg-2); }
.gu-post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--gu-ease-out); }
.gu-post:hover .gu-post-media img { /* bez animácie */ }
.gu-post-cat {
    position: absolute; left: 14px; top: 14px; z-index: 2;
    padding: 5px 13px; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
    background: var(--gu-accent); color: #fff; border-radius: var(--gu-r-pill); font-weight: 600;
}
.gu-post-body { padding: 22px; display: flex; flex-direction: column; flex: 1 1 auto; }
.gu-post-meta { font-size: 11.5px; color: var(--gu-muted); margin: 0 0 10px; display: flex; flex-wrap: wrap; gap: 12px; }
.gu-post-body h3 { font-size: 17px; font-weight: 600; line-height: 1.45; margin: 0 0 10px; }
.gu-post-body p { font-size: 14px; line-height: 1.72; color: var(--gu-muted); margin: 0 0 18px; }
.gu-post-more { margin-top: auto; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--gu-accent); display: inline-flex; align-items: center; gap: 8px; }
.gu-post-more i { transition: transform .3s var(--gu-ease-out); }
.gu-post:hover .gu-post-more i { transform: translateX(6px); }

.gu-article { max-width: 780px; margin: 0 auto; }
.gu-article p { font-size: 16px; line-height: 1.85; color: var(--gu-text-2); margin: 0 0 22px; }
.gu-article h2 { font-size: 24px; margin: 40px 0 16px; font-weight: 600; }
.gu-article h3 { font-size: 19px; margin: 32px 0 12px; font-weight: 600; }
.gu-article img { border-radius: var(--gu-r-lg); box-shadow: var(--gu-sh-img); margin: 26px 0; }
.gu-article ul, .gu-article ol { font-size: 16px; line-height: 1.85; color: var(--gu-text-2); padding-left: 22px; margin: 0 0 22px; }

/* ================================================= FORMULÁRE / vstupné polia */
.gu-field { margin-bottom: 18px; }
.gu-field > label {
    display: block; font-size: 12.5px; font-weight: 500; margin-bottom: 8px;
    letter-spacing: .04em; color: var(--gu-text-2);
}
.gu-input, .gu-field input[type="text"], .gu-field input[type="email"],
.gu-field input[type="tel"], .gu-field input[type="number"], .gu-field input[type="date"],
.gu-field input[type="search"], .gu-field input[type="password"],
.gu-field select, .gu-field textarea {
    width: 100%; padding: 13px 17px; font-family: inherit; font-size: 14.5px;
    color: var(--gu-text); background: var(--gu-bg); border: 1px solid var(--gu-line-2);
    border-radius: var(--gu-r-sm); transition: border-color .25s var(--gu-ease), box-shadow .25s var(--gu-ease), background-color .25s;
    -webkit-appearance: none; appearance: none;
}
.gu-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.gu-field textarea { min-height: 140px; resize: vertical; line-height: 1.65; }
.gu-field input:focus, .gu-field select:focus, .gu-field textarea:focus, .gu-input:focus {
    border-color: var(--gu-accent); box-shadow: 0 0 0 3px var(--gu-accent-soft); outline: none;
}
.gu-field input::placeholder, .gu-field textarea::placeholder { color: var(--gu-muted); opacity: .75; }
.gu-field.has-error input, .gu-field.has-error select, .gu-field.has-error textarea { border-color: var(--gu-err); }
.gu-field-error { font-size: 12px; color: var(--gu-err); margin: 6px 0 0; }
.gu-field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
.gu-field-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 18px; }

.gu-check { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; color: var(--gu-text-2); cursor: pointer; margin-bottom: 16px; }
.gu-check input[type="checkbox"], .gu-check input[type="radio"] { margin: 3px 0 0; flex: 0 0 auto; accent-color: var(--gu-accent); width: 17px; height: 17px; }

/* honeypot – skryté pole pre roboty */
.gu-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

.gu-field-chal { max-width: 280px; }
.gu-form-msg { font-size: 13.5px; margin: 12px 0 0; min-height: 1px; line-height: 1.6; }
.gu-form-msg.is-ok { color: var(--gu-ok); }
.gu-form-msg.is-err { color: var(--gu-err); }
form.is-busy { opacity: .6; pointer-events: none; }

/* prepínacie karty (rádiá ako dlaždice) */
.gu-choice { display: grid; gap: 12px; }
.gu-choice-item { position: relative; }
.gu-choice-item input { position: absolute; opacity: 0; pointer-events: none; }
.gu-choice-item label {
    display: flex; align-items: center; flex-wrap: wrap; gap: 14px; width: 100%; margin: 0; cursor: pointer;
    padding: 16px 20px; border: 1px solid var(--gu-line-2); border-radius: var(--gu-r);
    background: var(--gu-bg); font-weight: 400;
    transition: border-color .25s var(--gu-ease), background-color .25s var(--gu-ease), transform .25s var(--gu-ease-out), box-shadow .25s;
}
.gu-choice-item label:hover { border-color: var(--gu-accent); transform: translateY(-2px); box-shadow: var(--gu-sh-1); }
.gu-choice-item input:checked + label { border-color: var(--gu-accent); background: var(--gu-accent-soft); box-shadow: var(--gu-sh-1); }
.gu-choice-item input:focus-visible + label { outline: 2px solid var(--gu-accent); outline-offset: 2px; }
.gu-choice-item strong { display: block; font-size: 14.5px; font-weight: 500; }
.gu-choice-item span { display: block; font-size: 12.5px; color: var(--gu-muted); margin-top: 3px; }
.gu-choice-item .gu-choice-price {
    margin-left: auto; font-weight: 600; color: var(--gu-accent); white-space: nowrap;
    display: inline-flex; align-items: baseline; gap: 8px;
}
.gu-choice-item .gu-choice-price del { font-weight: 400; font-size: 13px; color: var(--gu-muted); }
.gu-choice-save {
    display: block; width: 100%; order: 3;
    margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--gu-ok);
}
.gu-choice-2 { grid-template-columns: repeat(2, 1fr); }
.gu-choice-3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================================= TABUĽKY */
.gu-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--gu-r); border: 1px solid var(--gu-line); }
.gu-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--gu-card); }
.gu-table th, .gu-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--gu-line); font-size: 14px; vertical-align: middle; }
.gu-table th { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gu-muted); font-weight: 600; background: var(--gu-bg-2); }
.gu-table tbody tr:last-child td { border-bottom: 0; }
.gu-table tbody tr { transition: background-color .2s var(--gu-ease); }
.gu-table tbody tr:hover { background: var(--gu-bg-2); }

/* ============================================================== BADGE */
.gu-badge {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
    border-radius: var(--gu-r-pill); background: var(--gu-accent-soft); color: var(--gu-accent);
}
.gu-badge-ok { background: rgba(31, 122, 63, .12); color: var(--gu-ok); }
.gu-badge-muted { background: var(--gu-bg-2); color: var(--gu-muted); }

/* ============================================================== TOAST */
.gu-toast-wrap {
    position: fixed; right: 20px; bottom: 20px; z-index: 2000;
    display: flex; flex-direction: column; gap: 10px; max-width: min(380px, calc(100vw - 40px));
    pointer-events: none;
}
.gu-toast {
    display: flex; align-items: flex-start; gap: 12px; padding: 15px 18px;
    background: var(--gu-card); border: 1px solid var(--gu-line);
    border-left: 3px solid var(--gu-accent);
    border-radius: var(--gu-r); box-shadow: var(--gu-sh-4);
    font-size: 13.5px; line-height: 1.55; color: var(--gu-text);
    opacity: 0; transform: translateY(16px) scale(.97); pointer-events: auto;
    transition: opacity .35s var(--gu-ease), transform .4s var(--gu-ease-out);
}
.gu-toast.is-in { opacity: 1; transform: none; }
.gu-toast i { font-size: 17px; color: var(--gu-accent); margin-top: 1px; }
.gu-toast.is-ok { border-left-color: var(--gu-ok); }
.gu-toast.is-ok i { color: var(--gu-ok); }
.gu-toast.is-err { border-left-color: var(--gu-err); }
.gu-toast.is-err i { color: var(--gu-err); }

/* ============================================================== NA VRCH */
.gu-to-top {
    position: fixed; right: 20px; bottom: 88px; z-index: 800;
    width: 46px; height: 46px; border: 0; border-radius: var(--gu-r-pill); cursor: pointer;
    background: var(--gu-text); color: var(--gu-bg); font-size: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--gu-sh-3); opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: opacity .3s var(--gu-ease), transform .35s var(--gu-ease-out), visibility .3s, background-color .25s;
}
.gu-to-top.is-in { opacity: 1; visibility: visible; transform: none; }
.gu-to-top:hover { background: var(--gu-accent); color: #fff; }

/* ============================================================== COOKIES */
.gu-cookies {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500;
    background: var(--gu-card); border-top: 1px solid var(--gu-line);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, .16);
    padding: 20px 0; animation: guCookieUp .5s var(--gu-ease-out) both;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
}
@keyframes guCookieUp { from { transform: translateY(100%); } to { transform: none; } }
.gu-cookies-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.gu-cookies-text { flex: 1 1 380px; min-width: 0; }
.gu-cookies-text h4 { font-size: 15px; font-weight: 600; margin: 0 0 6px; display: flex; align-items: center; gap: 9px; }
.gu-cookies-text h4 i { color: var(--gu-accent); }
.gu-cookies-text p { font-size: 13.5px; line-height: 1.65; color: var(--gu-muted); margin: 0; }
.gu-cookies-text a { color: var(--gu-accent); text-decoration: underline; }
.gu-cookies-actions { display: flex; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }
.gu-cookies-settings { border-top: 1px solid var(--gu-line); margin-top: 18px; padding-top: 18px; display: grid; gap: 14px; }
.gu-cookie-cat { display: flex; align-items: flex-start; gap: 13px; margin: 0; cursor: pointer; font-weight: 400; }
.gu-cookie-cat input { margin: 2px 0 0; width: 18px; height: 18px; accent-color: var(--gu-accent); flex: 0 0 auto; }
.gu-cookie-copy strong { display: block; font-size: 13.5px; }
.gu-cookie-copy em { display: block; font-style: normal; font-size: 12.5px; color: var(--gu-muted); margin-top: 2px; }
.gu-cookies-settings .gu-btn { justify-self: start; }

/* =============================================================== PÄTIČKA */
.gu-footer { background: var(--gu-bg-2); border-top: 1px solid var(--gu-line); margin-top: 0; }
.gu-footer-grid {
    display: grid; grid-template-columns: 1.4fr 1.15fr .85fr .85fr 1.35fr;
    gap: 40px; padding: 62px 0 46px;
}
.gu-footer-col h2 {
    font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    margin: 0 0 20px; color: var(--gu-text);
}
.gu-footer-col ul { list-style: none; margin: 0; padding: 0; }
.gu-footer-col ul li { margin-bottom: 10px; }
.gu-footer-col ul li a { font-size: 13.5px; color: var(--gu-muted); display: inline-block; transition: transform .25s var(--gu-ease-out), color .2s; }
.gu-footer-col ul li a:hover { color: var(--gu-accent); transform: translateX(4px); }
.gu-footer-logo img { width: 150px; height: auto; margin-bottom: 18px; }
.gu-footer-about p { font-size: 13.5px; line-height: 1.75; color: var(--gu-muted); margin: 0 0 20px; }
.gu-footer-social { display: flex; gap: 9px; }
.gu-footer-social a {
    width: 38px; height: 38px; border-radius: var(--gu-r-pill);
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gu-bg); color: var(--gu-muted); border: 1px solid var(--gu-line); font-size: 15px;
    transition: all .3s var(--gu-ease-out);
}
.gu-footer-social a:hover { background: var(--gu-accent); border-color: var(--gu-accent); color: #fff; transform: translateY(-3px); box-shadow: var(--gu-sh-2); }
.gu-footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--gu-muted); line-height: 1.65; margin-bottom: 14px; }
.gu-footer-contact i { color: var(--gu-accent); width: 15px; margin-top: 3px; flex: 0 0 auto; }
.gu-footer-contact strong { color: var(--gu-text); font-weight: 600; }
.gu-footer-news p { font-size: 13.5px; line-height: 1.7; color: var(--gu-muted); margin: 0 0 16px; }
.gu-newsletter-row { display: flex; gap: 8px; }
.gu-newsletter-row input {
    flex: 1; min-width: 0; padding: 12px 18px; font-size: 14px;
    border: 1px solid var(--gu-line-2); border-radius: var(--gu-r-pill);
    background: var(--gu-bg); color: var(--gu-text);
    transition: border-color .25s var(--gu-ease), box-shadow .25s;
}
.gu-newsletter-row input:focus { border-color: var(--gu-accent); box-shadow: 0 0 0 3px var(--gu-accent-soft); outline: none; }
.gu-newsletter-row button {
    flex: 0 0 46px; height: 46px; border: 0; border-radius: var(--gu-r-pill);
    background: var(--gu-accent); color: #fff; font-size: 16px; cursor: pointer;
    transition: transform .25s var(--gu-ease-out), background-color .25s;
}
.gu-newsletter-row button:hover { background: var(--gu-accent-dark); transform: scale(1.06); }
.gu-footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; }
.gu-footer-badges span { font-size: 12.5px; color: var(--gu-muted); display: inline-flex; align-items: center; gap: 9px; }
.gu-footer-badges i { color: var(--gu-accent); width: 15px; }

/* spodná lišta – všetko horizontálne v jednom rade */
.gu-footer-bottom { background: var(--gu-bg); border-top: 1px solid var(--gu-line); }
.gu-footer-bar {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 6px 12px; padding: 18px 0;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
}
.gu-fb-item { font-size: 12.5px; color: var(--gu-muted); line-height: 1.5; white-space: nowrap; }
.gu-fb-item strong { color: var(--gu-text); font-weight: 600; }
.gu-fb-sep { color: var(--gu-line-2); font-size: 12px; }
.gu-fb-author a { color: var(--gu-text); font-weight: 600; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.gu-fb-author a:hover { color: var(--gu-accent); border-bottom-color: var(--gu-accent); }
.gu-fb-version {
    font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
    color: var(--gu-text); background: var(--gu-bg-2);
    border: 1px solid var(--gu-line); border-radius: var(--gu-r-pill);
    padding: 4px 12px;
}
.gu-fb-cookies {
    border: 0; background: transparent; cursor: pointer; padding: 0;
    display: inline-flex; align-items: center; gap: 7px; font-family: inherit;
}
.gu-fb-cookies:hover { color: var(--gu-accent); }
.gu-fb-legal { color: var(--gu-muted); }

/* ================================================== SKRYTIE PRVKOV ŠABLÓNY */
.gu-body .off-canvas-nav, .gu-body .header .header-mobi .icon-hd-mb { display: none !important; }

/* ============================================================ SLICK ÚPRAVY */
.gu-body .slick-slide { outline: none; }
.gu-body .slick-slide > div { height: 100%; }
.gu-slider .slick-list { margin: 0 -13px; padding: 10px 0 24px; }
.gu-slider .slick-slide { margin: 0 13px; height: auto; }
.gu-slider .slick-track { display: flex; align-items: stretch; }
.gu-body .slick-prev, .gu-body .slick-next {
    width: 44px; height: 44px; border-radius: var(--gu-r-pill); z-index: 5;
    background: var(--gu-card); box-shadow: var(--gu-sh-2); border: 1px solid var(--gu-line);
    transition: background-color .25s var(--gu-ease), transform .25s var(--gu-ease-out);
}
.gu-body .slick-prev:hover, .gu-body .slick-next:hover { background: var(--gu-accent); transform: scale(1.08); }
.gu-body .slick-prev:before, .gu-body .slick-next:before {
    font-family: FontAwesome; font-size: 18px; color: var(--gu-text); opacity: 1;
}
.gu-body .slick-prev:hover:before, .gu-body .slick-next:hover:before { color: #fff; }
.gu-body .slick-prev:before { content: '\f104'; }
.gu-body .slick-next:before { content: '\f105'; }
.gu-body .slick-prev { left: -8px; }
.gu-body .slick-next { right: -8px; }
.gu-body .slick-dots li button:before { font-size: 9px; color: var(--gu-line-2); opacity: 1; }
.gu-body .slick-dots li.slick-active button:before { color: var(--gu-accent); }

/* ================================================================ TABY */
.gu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 36px; }
.gu-tab {
    border: 1px solid var(--gu-line-2); background: transparent; color: var(--gu-muted);
    padding: 11px 24px; border-radius: var(--gu-r-pill); cursor: pointer; font-family: inherit;
    font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    transition: all .28s var(--gu-ease-out);
}
.gu-tab:hover { border-color: var(--gu-accent); color: var(--gu-accent); }
.gu-tab.is-active { background: var(--gu-text); border-color: var(--gu-text); color: var(--gu-bg); box-shadow: var(--gu-sh-1); }
.gu-tabpanel[hidden] { display: none; }

/* =========================================================== PAGINÁCIA */
.gu-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 46px; }
.gu-pagination a, .gu-pagination span {
    min-width: 42px; height: 42px; padding: 0 12px; border-radius: var(--gu-r-pill);
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--gu-line-2); font-size: 13.5px; color: var(--gu-text-2);
    transition: all .25s var(--gu-ease-out);
}
.gu-pagination a:hover { border-color: var(--gu-accent); color: var(--gu-accent); transform: translateY(-2px); }
.gu-pagination .is-active { background: var(--gu-text); border-color: var(--gu-text); color: var(--gu-bg); font-weight: 600; }
.gu-pagination .is-disabled { opacity: .4; pointer-events: none; }

/* ====================================================== PRÁZDNY STAV */
.gu-empty { text-align: center; padding: 70px 20px; }
.gu-empty i { font-size: 46px; color: var(--gu-line-2); margin-bottom: 20px; display: block; }
.gu-empty h3 { font-size: 20px; margin: 0 0 10px; font-weight: 600; }
.gu-empty p { font-size: 14.5px; color: var(--gu-muted); max-width: 46ch; margin: 0 auto 26px; line-height: 1.7; }

/* ============================================================= SPLIT sekcia */
.gu-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.gu-split-media { position: relative; }
.gu-split h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; margin: 0 0 18px; line-height: 1.25; }
.gu-split p { font-size: 15.5px; line-height: 1.85; color: var(--gu-text-2); margin: 0 0 18px; }
.gu-split-rev .gu-split-media { order: 2; }

/* ================================================================ MAPA */
.gu-map { position: relative; border-radius: var(--gu-r-lg); overflow: hidden; box-shadow: var(--gu-sh-img); background: var(--gu-bg-2); }
.gu-map-static { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer; }
.gu-map-tiles { position: absolute; width: 768px; height: 768px; left: 50%; top: 50%; display: grid; grid-template-columns: repeat(3, 256px); grid-template-rows: repeat(3, 256px); }
.gu-map-tiles img { width: 256px; height: 256px; display: block; }
[data-theme="dark"] .gu-map-tiles { filter: invert(1) hue-rotate(180deg) brightness(.92) contrast(.92); }
.gu-map-pin {
    position: absolute; z-index: 4; width: 34px; height: 34px; margin: -34px 0 0 -17px;
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    background: var(--gu-accent); box-shadow: var(--gu-sh-3);
    display: flex; align-items: center; justify-content: center;
    animation: guPin 2.4s var(--gu-ease-out) infinite;
}
.gu-map-pin::after { content: ''; width: 11px; height: 11px; background: #fff; border-radius: 50%; }
@keyframes guPin { 0%, 100% { transform: rotate(-45deg) translateY(0); } 50% { transform: rotate(-45deg) translateY(-7px); } }
.gu-map-overlay {
    position: absolute; inset: 0; z-index: 5; display: flex; align-items: flex-end; justify-content: center;
    padding: 22px; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .35));
}
.gu-map iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
.gu-map-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================= ÚDRŽBA */
.gu-maint {
    min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden; padding: 40px 20px;
    background: #0e0e0e;
}
.gu-maint-bg { position: absolute; inset: 0; }
.gu-maint-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; filter: grayscale(.35); }
.gu-maint-in { position: relative; z-index: 2; max-width: 620px; }
/* `!important` je nutné — v tmavej téme platí pravidlo pre `img:not([src$=".svg"])`,
   ktoré by pri logu vloženom ako data URI masku prebilo a logo by ostalo tmavé */
.gu-maint-in img.gu-maint-logo { width: 190px; margin: 0 auto 34px; display: block; filter: brightness(0) invert(1) !important; }
/* pri svetlejšej fotke musí text zostať čitateľný */
.gu-maint-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, .45); }
.gu-maint-in h1 { font-size: clamp(26px, 4.4vw, 40px); color: #fff; font-weight: 600; margin: 0 0 18px; }
.gu-maint-in p { font-size: 16px; line-height: 1.8; color: rgba(255, 255, 255, .82); margin: 0 0 14px; }
.gu-maint-eta { display: inline-flex; align-items: center; gap: 10px; margin: 22px 0 30px; padding: 11px 22px; border-radius: var(--gu-r-pill); background: rgba(255, 255, 255, .1); color: #fff; font-size: 13.5px; border: 1px solid rgba(255, 255, 255, .18); }
.gu-maint-spin { width: 15px; height: 15px; border: 2px solid rgba(255, 255, 255, .3); border-top-color: var(--gu-accent); border-radius: 50%; animation: guSpin 1s linear infinite; }
@keyframes guSpin { to { transform: rotate(360deg); } }
.gu-maint-contact { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.gu-maint-contact a { color: #fff; font-size: 13.5px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--gu-r-pill); transition: all .3s var(--gu-ease-out); }
.gu-maint-contact a:hover { background: #fff; color: #111; }

/* ================================================== špecifické: kroky/wizard */
.gu-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; flex-wrap: wrap; }
.gu-step { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--gu-muted); }
.gu-step-num {
    width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--gu-line-2); font-size: 12.5px; font-weight: 600; flex: 0 0 auto;
    transition: all .3s var(--gu-ease-out);
}
.gu-step.is-active .gu-step-num { background: var(--gu-accent); border-color: var(--gu-accent); color: #fff; }
.gu-step.is-active { color: var(--gu-text); font-weight: 500; }
.gu-step.is-done .gu-step-num { background: var(--gu-ok); border-color: var(--gu-ok); color: #fff; }
.gu-step-line { width: 44px; height: 1px; background: var(--gu-line-2); margin: 0 12px; }

.gu-progress { height: 6px; background: var(--gu-line); border-radius: var(--gu-r-pill); overflow: hidden; }
.gu-progress i { display: block; height: 100%; background: var(--gu-accent); border-radius: inherit; transition: width .5s var(--gu-ease-out); }

/* ================================================== detail produktu */
.gu-pd { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.gu-pd-main { border-radius: var(--gu-r-lg); overflow: hidden; box-shadow: var(--gu-sh-img); background: var(--gu-bg-2); aspect-ratio: 4 / 3; }
.gu-pd-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--gu-ease-out); }
.gu-pd-main:hover img { /* bez animácie */ }
.gu-pd h1 { font-size: clamp(24px, 3vw, 34px); font-weight: 600; margin: 0 0 12px; line-height: 1.25; }
.gu-pd-price { display: flex; align-items: baseline; gap: 14px; margin: 20px 0; flex-wrap: wrap; }
.gu-pd-price strong { font-size: 32px; font-weight: 600; color: var(--gu-text); }
.gu-pd-price del { font-size: 18px; color: var(--gu-muted); }
.gu-pd-save { font-size: 13px; font-weight: 600; color: var(--gu-ok); }
.gu-pd-fineprint { font-size: 12.5px; color: var(--gu-muted); margin: -12px 0 0; }
.gu-pd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; align-items: center; }
.gu-qty { display: inline-flex; align-items: center; border: 1px solid var(--gu-line-2); border-radius: var(--gu-r-pill); overflow: hidden; }
.gu-qty button { width: 44px; height: 48px; border: 0; background: transparent; color: var(--gu-text); font-size: 17px; cursor: pointer; transition: background-color .2s; }
.gu-qty button:hover { background: var(--gu-bg-2); color: var(--gu-accent); }
.gu-qty input { width: 48px; height: 48px; border: 0; text-align: center; background: transparent; color: var(--gu-text); font-size: 15px; font-weight: 600; -moz-appearance: textfield; }
.gu-qty input::-webkit-outer-spin-button, .gu-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gu-pd-meta { display: grid; gap: 10px; margin: 24px 0; padding: 20px; background: var(--gu-bg-2); border-radius: var(--gu-r); }
.gu-pd-meta div { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; }
.gu-pd-meta dt, .gu-pd-meta span:first-child { color: var(--gu-muted); }
.gu-pd-meta strong { color: var(--gu-text); font-weight: 500; text-align: right; }
.gu-pd-note { display: flex; gap: 12px; padding: 16px 18px; border-radius: var(--gu-r); background: var(--gu-accent-soft); font-size: 13.5px; line-height: 1.65; color: var(--gu-text-2); margin: 20px 0; }
.gu-pd-note i { color: var(--gu-accent); font-size: 17px; margin-top: 1px; flex: 0 0 auto; }

/* ================================================== košík / pokladňa */
.gu-cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 34px; align-items: start; }
.gu-summary { background: var(--gu-card); border: 1px solid var(--gu-line); border-radius: var(--gu-r-lg); padding: 28px; box-shadow: var(--gu-sh-1); position: sticky; top: calc(var(--gu-header-h) + 20px); }
.gu-summary h3 { font-size: 15px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 20px; padding-bottom: 16px; border-bottom: 1px solid var(--gu-line); }
.gu-summary-row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; margin-bottom: 12px; color: var(--gu-text-2); }
.gu-summary-row.is-total { border-top: 1px solid var(--gu-line); margin-top: 18px; padding-top: 18px; font-size: 19px; font-weight: 600; color: var(--gu-text); }
.gu-cart-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--gu-line); }
.gu-cart-item img { width: 92px; height: 92px; object-fit: cover; border-radius: var(--gu-r-sm); box-shadow: var(--gu-sh-1); }
.gu-cart-item h4 { font-size: 15px; font-weight: 500; margin: 0 0 5px; }
.gu-cart-item .gu-cart-brand { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gu-accent); margin: 0 0 6px; }
.gu-cart-remove { border: 0; background: transparent; color: var(--gu-muted); cursor: pointer; font-size: 12.5px; padding: 4px 0; }
.gu-cart-remove:hover { color: var(--gu-err); }
.gu-ship-bar { padding: 16px 20px; background: var(--gu-bg-2); border-radius: var(--gu-r); margin-bottom: 22px; font-size: 13.5px; }
.gu-ship-bar .gu-progress { margin-top: 10px; }

/* ============================================= porovnanie / set builder */
.gu-compare-table th { position: sticky; top: 0; z-index: 2; }
.gu-compare-diff { background: var(--gu-accent-soft) !important; }
.gu-slot {
    display: flex; align-items: center; gap: 16px; padding: 16px 18px;
    border: 1px dashed var(--gu-line-2); border-radius: var(--gu-r); background: var(--gu-bg);
    transition: border-color .3s var(--gu-ease), background-color .3s;
}
.gu-slot.is-filled { border-style: solid; border-color: var(--gu-accent); background: var(--gu-card); box-shadow: var(--gu-sh-1); }
.gu-slot img { width: 62px; height: 62px; object-fit: cover; border-radius: var(--gu-r-sm); flex: 0 0 auto; }
.gu-slot-icon { width: 62px; height: 62px; border-radius: var(--gu-r-sm); background: var(--gu-bg-2); display: flex; align-items: center; justify-content: center; color: var(--gu-muted); font-size: 22px; flex: 0 0 auto; }
.gu-slot-body { flex: 1 1 auto; min-width: 0; }
.gu-slot-body strong { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gu-muted); margin-bottom: 4px; }
.gu-slot-body span { display: block; font-size: 14px; color: var(--gu-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gu-slot .gu-btn { flex: 0 0 auto; }

/* modálne okno */
.gu-modal { position: fixed; inset: 0; z-index: 1800; display: none; align-items: center; justify-content: center; padding: 20px; }
.gu-modal.is-open { display: flex; }
.gu-modal-back { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); backdrop-filter: blur(3px); }
.gu-modal-box {
    position: relative; z-index: 2; width: 100%; max-width: 860px; max-height: 88vh; overflow-y: auto;
    background: var(--gu-card); border-radius: var(--gu-r-lg); box-shadow: var(--gu-sh-4); padding: 30px;
    animation: guModalIn .35s var(--gu-ease-out) both;
}
@keyframes guModalIn { from { opacity: 0; transform: translateY(24px) scale(.97); } }
.gu-modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: var(--gu-r-pill); background: var(--gu-bg-2); color: var(--gu-text); font-size: 22px; cursor: pointer; }

/* ============================================== filtre v obchode */
.gu-shop-layout { display: grid; grid-template-columns: 268px 1fr; gap: 36px; align-items: start; }
.gu-filters { position: sticky; top: calc(var(--gu-header-h) + 16px); }
.gu-filter-group { border-bottom: 1px solid var(--gu-line); padding: 18px 0; }
.gu-filter-group:first-child { padding-top: 0; }
.gu-filter-group h4 { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gu-text); margin: 0 0 14px; font-weight: 600; }
/* filtre v pevnej dvojstlpcovej mriezke - polozky lezia na spolocnych linkach,
   nezalomia sa nepravidelne podla dlzky nazvu */
.gu-body .gu-filter-group ul {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    max-height: 300px; overflow-y: auto;
}
.gu-body .gu-filter-group li { display: block; float: none; margin: 0; min-width: 0; }
.gu-body .gu-filter-group label {
    display: flex; align-items: center; gap: 8px; min-width: 0;
    font-size: 13.5px; line-height: 1.3; color: var(--gu-text-2);
    cursor: pointer; font-weight: 400; margin: 0;
}
.gu-filter-group label > span:not(.gu-filter-count) {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.gu-filter-group input[type="checkbox"] { accent-color: var(--gu-accent); width: 16px; height: 16px; flex: 0 0 auto; }
.gu-filter-count { margin-left: auto; font-size: 11.5px; color: var(--gu-muted); flex: 0 0 auto; }
.gu-shop-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--gu-line); }
.gu-shop-bar p { margin: 0; font-size: 13.5px; color: var(--gu-muted); }
.gu-shop-bar select { padding: 10px 38px 10px 16px; font-size: 13.5px; border: 1px solid var(--gu-line-2); border-radius: var(--gu-r-pill); background: var(--gu-bg); color: var(--gu-text); }
.gu-filter-toggle { display: none; }

/* ======================================================================== */
/*  RESPONZÍVNE ÚPRAVY                                                      */
/* ======================================================================== */

/* --- veľké notebooky (MacBook Air 13"/15", 1280–1600 px) --- */
@media (max-width: 1600px) {
    :root { --gu-container: 1200px; }
}

@media (max-width: 1440px) {
    :root { --gu-container: 1140px; --gu-gap: 22px; }
    .gu-body .header.gu-header .gu-nav > ul.level1 > li > a { padding: 16px 11px; font-size: 12px; letter-spacing: .07em; }
    .gu-body .header.gu-header .gu-nav > ul.level1 > li > a::after { left: 11px; right: 11px; }
    .gu-body .header.gu-header .gu-logo { width: 150px; }
    .gu-body .header.gu-header .gu-header-top-row { min-height: 84px; }
    .gu-hero-slide { min-height: min(80vh, 680px); }
    .gu-footer-grid { gap: 30px; }
}

@media (max-width: 1280px) {
    :root { --gu-container: 1040px; --gu-gap: 20px; }
    .gu-grid-5 { grid-template-columns: repeat(4, 1fr); }
    .gu-body .header.gu-header .gu-nav > ul.level1 > li > a { padding: 15px 9px; font-size: 11.5px; }
    .gu-body .header.gu-header .gu-nav > ul.level1 > li > a::after { left: 9px; right: 9px; }
    .gu-body .header.gu-header .gu-header-phone { display: none; }
    .gu-shop-layout { grid-template-columns: 240px 1fr; gap: 28px; }
    .gu-cart-layout { grid-template-columns: 1fr 340px; }
    .gu-footer-grid { grid-template-columns: 1.3fr 1fr .9fr .9fr; }
    .gu-footer-news { grid-column: 1 / -1; }
    .gu-footer-news .gu-newsletter-row { max-width: 460px; }
    .gu-footer-badges { flex-direction: row; flex-wrap: wrap; gap: 8px 24px; }
}

/* --- prepnutie na mobilné menu (tablety naležato a menej) --- */
@media (max-width: 1099px) {
    :root { --gu-header-h: 64px; }
    .gu-body .header.gu-header .header-top, .gu-body .header.gu-header .gu-nav { display: none !important; }
    .gu-body .header.gu-header .gu-header-mobi { display: block !important; }
    .gu-body .header.gu-header { border-bottom: 1px solid var(--gu-line); }
    .gu-section { padding: 56px 0; }
    .gu-head { margin-bottom: 34px; }
    .gu-head h2 { font-size: 27px; }
    .gu-grid-5, .gu-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .gu-usp-grid { grid-template-columns: repeat(2, 1fr); }
    .gu-shop-layout { grid-template-columns: 1fr; }
    .gu-filters {
        position: fixed; inset: 0 auto 0 0; z-index: 1250; width: min(320px, 90vw);
        background: var(--gu-bg); padding: 22px; overflow-y: auto; top: 0;
        transform: translateX(-102%); transition: transform .4s var(--gu-ease-out);
        box-shadow: var(--gu-sh-4);
    }
    .gu-filters.is-open { transform: none; }
    .gu-filter-toggle { display: inline-flex; }
    .gu-cart-layout { grid-template-columns: 1fr; }
    .gu-summary { position: static; }
    .gu-split { grid-template-columns: 1fr; gap: 30px; }
    .gu-split-rev .gu-split-media { order: 0; }
    .gu-tiles { grid-template-columns: 1fr; }
    .gu-tile-lg { min-height: 340px; }
    .gu-pd { grid-template-columns: 1fr; }
    .gu-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 48px 0 38px; }
    .gu-footer-about { grid-column: 1 / -1; }
    .gu-footer-news { grid-column: 1 / -1; }
}

/* --- tablety naležato / malé notebooky --- */
@media (max-width: 992px) {
    :root { --gu-gap: 18px; }
    .gu-container { padding: 0 20px; }
    .gu-grid-5, .gu-grid-4, .gu-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gu-choice-3 { grid-template-columns: repeat(2, 1fr); }
    .gu-hero-slide { min-height: min(74vh, 600px); }
    .gu-page-hero { min-height: 240px; }
    .gu-page-hero-in { padding-top: 46px; padding-bottom: 46px; }
    .gu-cta { padding: 34px 28px; min-height: 260px; }
    .gu-cookies-actions { width: 100%; }
    .gu-cookies-actions .gu-btn { flex: 1 1 auto; }
}

/* --- tablety nastojato --- */
@media (max-width: 820px) {
    .gu-section { padding: 46px 0; }
    .gu-field-row, .gu-field-row-3 { grid-template-columns: 1fr; }
    .gu-num strong { font-size: 34px; }
    .gu-timeline { padding-left: 28px; }
    .gu-footer-bar { gap: 6px 10px; }
    .gu-fb-legal { display: none; }
    .gu-fb-legal + .gu-fb-sep { display: none; }
}

/* --- mobily --- */
@media (max-width: 640px) {
    :root { --gu-gap: 16px; --gu-r-lg: 16px; --gu-r-xl: 20px; }
    .gu-container { padding: 0 16px; }
    .gu-section { padding: 38px 0; }
    .gu-section-tight { padding: 28px 0; }
    .gu-head { margin-bottom: 26px; }
    .gu-head h2 { font-size: 22px; letter-spacing: .01em; }
    .gu-head p { font-size: 14px; }

    .gu-grid-5, .gu-grid-4, .gu-grid-3, .gu-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .gu-grid-1-mob { grid-template-columns: 1fr !important; }
    .gu-usp-grid { grid-template-columns: 1fr; gap: 0; }
    .gu-usp-item { padding: 15px 6px; border-bottom: 1px solid var(--gu-line); border-radius: 0; }
    .gu-usp-item:last-child { border-bottom: 0; }

    /* karta produktu – na mobile sú ovládacie prvky vždy viditeľné */
    .gu-card-body { padding: 14px 13px 16px; }
    .gu-card-title { font-size: 13.5px; }
    .gu-card-brand { font-size: 10px; }
    .gu-price strong { font-size: 16px; }
    .gu-price del { font-size: 12px; }
    .gu-card-foot { flex-direction: column; align-items: flex-start; gap: 6px; }
    .gu-card-tools { opacity: 1; transform: none; top: 10px; right: 10px; }
    .gu-tool { width: 34px; height: 34px; font-size: 15px; }
    .gu-card-cart { opacity: 1; transform: none; left: 10px; right: 10px; bottom: 10px; padding: 10px; font-size: 10.5px; }
    .gu-card-labels { top: 10px; left: 10px; }
    .gu-label { padding: 4px 9px; font-size: 9.5px; }

    .gu-hero-slide { min-height: 520px; }
    .gu-hero-in { padding: 44px 0; }
    .gu-hero-actions-main .gu-btn { flex: 1 1 auto; }
    .gu-page-hero { min-height: 200px; }
    .gu-page-hero-in { padding-top: 36px; padding-bottom: 36px; }
    .gu-page-hero h1 { max-width: none; }

    .gu-btn { padding: 13px 22px; font-size: 12px; }
    .gu-btn-lg { padding: 15px 28px; font-size: 13px; }

    .gu-tile { min-height: 210px; }
    .gu-tile-lg { min-height: 260px; }
    .gu-tile-in { padding: 22px; }

    .gu-box { padding: 22px; }
    .gu-cta { padding: 28px 22px; min-height: 0; border-radius: var(--gu-r-lg); }
    .gu-cta-in h2 { font-size: 22px; }
    .gu-cta-in p { font-size: 14.5px; }

    .gu-cart-item { grid-template-columns: 72px 1fr; gap: 14px; }
    .gu-cart-item img { width: 72px; height: 72px; }
    .gu-cart-item > *:last-child { grid-column: 1 / -1; text-align: right; }

    .gu-summary { padding: 22px; }
    .gu-pd-price strong { font-size: 26px; }
    .gu-pd-actions { gap: 10px; }
    .gu-pd-actions .gu-btn { flex: 1 1 100%; }

    .gu-quote { padding: 22px; }
    .gu-team-body { padding: 16px; }
    .gu-post-body { padding: 18px; }
    .gu-article p, .gu-article ul, .gu-article ol { font-size: 15px; }

    .gu-tabs { gap: 6px; margin-bottom: 24px; }
    .gu-tab { padding: 9px 15px; font-size: 10.5px; letter-spacing: .06em; }

    .gu-footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 38px 0 30px; }
    .gu-footer-about, .gu-footer-news { grid-column: auto; }
    .gu-footer-badges { flex-direction: column; gap: 8px; }
    .gu-footer-bar { justify-content: center; text-align: center; padding: 15px 0; }
    .gu-fb-item { font-size: 11.5px; white-space: normal; }

    .gu-toast-wrap { left: 14px; right: 14px; bottom: 14px; max-width: none; }
    .gu-to-top { right: 14px; bottom: 78px; width: 42px; height: 42px; }

    .gu-cookies { padding: 16px 0; }
    .gu-cookies-inner { gap: 14px; }
    .gu-cookies-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .gu-cookies-actions .gu-btn:last-child { grid-column: 1 / -1; }

    .gu-modal-box { padding: 22px 18px; max-height: 92vh; }
    .gu-steps { gap: 4px; }
    .gu-step-line { width: 18px; margin: 0 4px; }
    .gu-step span:not(.gu-step-num) { display: none; }

    .gu-slot { padding: 12px 13px; gap: 12px; }
    .gu-slot img, .gu-slot-icon { width: 50px; height: 50px; }
    .gu-map-static { aspect-ratio: 4 / 3; }
}

/* --- malé mobily --- */
@media (max-width: 400px) {
    .gu-grid-5, .gu-grid-4, .gu-grid-3, .gu-grid-2 { grid-template-columns: 1fr; }
    .gu-choice-2, .gu-choice-3 { grid-template-columns: 1fr; }
    .gu-body .header.gu-header .gu-mobi-logo img { height: 34px; }
    .gu-hero-in h1 { font-size: 27px; }
    .gu-head h2 { font-size: 20px; }
}

/* --- tlač --- */
@media print {
    .gu-body .header.gu-header, .gu-footer, .gu-cookies, .gu-to-top, .gu-toast-wrap, .gu-offcanvas, .gu-breadcrumb { display: none !important; }
    body.gu-body { background: #fff; color: #000; }
}

/* ==========================================================================
   Doladenie – zosúladenie šírky kontajnera šablóny s obsahom
   ========================================================================== */
.gu-body .header.gu-header .header-top .container {
    width: 100%;
    max-width: var(--gu-container);
    padding-left: 24px;
    padding-right: 24px;
}
.gu-body .header.gu-header .header-mobi .container-fluid {
    width: 100%;
    max-width: var(--gu-container);
    margin: 0 auto;
    padding: 0 16px;
}

/* posuvník rozsahu (range) jednotne v oboch témach */
.gu-body input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: var(--gu-r-pill);
    background: var(--gu-line);
    outline: none;
}
.gu-body input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gu-accent);
    border: 3px solid var(--gu-bg);
    box-shadow: var(--gu-sh-2);
    cursor: pointer;
    transition: transform .2s var(--gu-ease-out);
}
.gu-body input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.gu-body input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--gu-accent); border: 3px solid var(--gu-bg);
    box-shadow: var(--gu-sh-2); cursor: pointer;
}

/* obrázky v tmavej téme jemne stlmíme, nech nesvietia */
[data-theme="dark"] .gu-card-img img,
[data-theme="dark"] .gu-post-media img,
[data-theme="dark"] .gu-cat-card img,
[data-theme="dark"] .gu-tile > img,
[data-theme="dark"] .gu-img img,
[data-theme="dark"] .gu-pd-main img { filter: brightness(.9); }

/* mriežky produktov v slick sliderech nesmú pretekať */
.gu-slider { min-width: 0; }
.gu-body .slick-list, .gu-body .slick-track { min-width: 0; }

/* dlhé názvy a kódy nesmú rozbiť layout */
.gu-card-title, .gu-cart-item h4, .gu-slot-body span,
.gu-table td, .gu-table th { overflow-wrap: anywhere; }

/* tabuľka porovnania – prvý stĺpec drží pri scrollovaní */
@media (min-width: 641px) {
    .gu-compare-table th:first-child,
    .gu-compare-table td:first-child {
        position: sticky; left: 0; z-index: 3;
        background: var(--gu-bg-2);
    }
    .gu-compare-table thead th:first-child { z-index: 4; }
}

/* iOS: vstupy pod 16 px spôsobujú automatické priblíženie */
@media (max-width: 640px) {
    .gu-body input, .gu-body select, .gu-body textarea { font-size: 16px; }
    .gu-field-chal { max-width: none; }
}

/* dlhé menu nástrojov nesmie vyjsť mimo obrazovku */
.gu-body .header.gu-header .gu-nav > ul.level1 > li:last-child > ul.hover-blog,
.gu-body .header.gu-header .gu-nav > ul.level1 > li:nth-last-child(2) > ul.hover-blog { left: auto; right: 0; }

/* ===== Ostré hrany – obrázky, dlaždice a tlačidlá bez zaoblenia (želanie) ===== */
.gu-btn, .gu-btn-sm, .gu-btn-lg, .gu-btn-block,
.gu-newsletter-row button, .gu-newsletter-row input,
.gu-offcanvas-search input, .gu-offcanvas-search button { border-radius: 0; }

.gu-img, .gu-media, .gu-tile, .gu-cat-card, .gu-insta-item,
.gu-card-img, .gu-card-img img, .gu-post, .gu-post-media,
.gu-pd-main, .gu-pd-thumb, .gu-team-photo, .gu-brand-card,
.gu-box-hover, .gu-quote, .gu-map, .gu-article img,
.gu-hero-slide, .gu-hero-slide > img { border-radius: 0; }

/* ===== Subscribe banner (index-6) ===== */
.gu-subscribe {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center;
    background: var(--gu-inverse); color: var(--gu-on-inverse);
    padding: 44px 48px;
}
.gu-subscribe-in h2 { color: var(--gu-on-inverse); font-size: clamp(22px, 2.4vw, 32px); font-weight: 600; margin: 6px 0 10px; }
.gu-subscribe-in .gu-kicker { color: var(--gu-accent); }
.gu-subscribe-in p { color: rgba(255,255,255,.82); margin: 0; max-width: 52ch; }
.gu-subscribe-form { display: flex; gap: 10px; }
.gu-subscribe-form input {
    flex: 1; min-width: 0; padding: 14px 18px; border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.06); color: #fff; font-size: 14px;
}
.gu-subscribe-form input::placeholder { color: rgba(255,255,255,.55); }
.gu-subscribe-form .gu-btn { white-space: nowrap; }
@media (max-width: 820px) {
    .gu-subscribe { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
    .gu-subscribe-form { flex-direction: column; }
}

/* ===== Wide promo banner (index-6) ===== */
.gu-promo-wide {
    position: relative; display: flex; align-items: center; overflow: hidden;
    min-height: 240px; box-shadow: var(--gu-sh-img);
}
.gu-promo-wide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gu-promo-wide::after { content: ''; position: absolute; inset: 0;
    background: linear-gradient(95deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.1) 100%); }
.gu-promo-wide-in { position: relative; z-index: 2; padding: 40px 48px; max-width: 60%; }
.gu-promo-wide-in .gu-kicker { color: var(--gu-accent); }
.gu-promo-wide-in h2 { color: #fff; font-size: clamp(24px, 3vw, 40px); font-weight: 600; margin: 6px 0 12px; }
.gu-promo-wide-in p { color: rgba(255,255,255,.9); margin: 0 0 20px; }
@media (max-width: 640px) {
    .gu-promo-wide-in { max-width: 100%; padding: 28px 22px; }
}

/* ===== Kategórie / product-sample rad (index-6) ===== */
.gu-section-tight { padding-top: 40px; padding-bottom: 10px; }
.gu-sample-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gu-gap); }
.gu-sample {
    display: block; background: var(--gu-card); border: 1px solid var(--gu-line);
    overflow: hidden; text-align: center;
}
.gu-sample-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--gu-bg-2); }
.gu-sample-img img { width: 100%; height: 100%; object-fit: cover; }
.gu-sample-body { padding: 18px 16px 20px; }
.gu-sample-body h6 { font-size: 16px; font-weight: 600; margin: 0 0 4px; color: var(--gu-text); }
.gu-sample-cat { display: block; font-size: 12.5px; color: var(--gu-muted); margin-bottom: 10px; }
.gu-sample-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gu-accent);
}
.gu-sample-link i { transition: transform .3s var(--gu-ease); }
.gu-sample:hover .gu-sample-link i { transform: translateX(5px); }
.gu-sample:hover { border-color: var(--gu-line-2); }
@media (max-width: 900px) { .gu-sample-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gu-sample-grid { grid-template-columns: 1fr; } }

/* ===== index-6 hlavička: hamburger vždy (aj na desktope) ===== */
:root { --gu-header-h: 92px; }
.gu-body .header.gu-header .header-top,
.gu-body .header.gu-header .gu-nav { display: none !important; }
.gu-body .header.gu-header .gu-header-mobi { display: block !important; }
.gu-body .header.gu-header .gu-header-mobi > .container-fluid {
    max-width: var(--gu-container); margin: 0 auto; padding: 0 26px;
}
.gu-body .header.gu-header .gu-mobi-bar { min-height: 92px; padding: 12px 0; }
.gu-body .header.gu-header .gu-mobi-logo img { height: 72px; }
/* na desktope pridáme viditeľný prepínač jazyka do pravých ikon */
.gu-body .header.gu-header .gu-mobi-actions { gap: 6px; }
@media (max-width: 600px) {
    :root { --gu-header-h: 60px; }
    .gu-body .header.gu-header .gu-mobi-bar { min-height: 58px; }
    .gu-body .header.gu-header .gu-mobi-logo img { height: 38px; }
    .gu-body .header.gu-header .gu-header-mobi > .container-fluid { padding: 0 12px; }
}

/* ===== off-canvas submenu: jedna položka na riadok (nie 2 stĺpce) ===== */
.gu-body .gu-offcanvas .gu-submenu { display: block; column-count: 1; }
.gu-body .gu-offcanvas .gu-submenu li {
    display: block; width: 100%; float: none; margin: 0;
    border-bottom: 1px solid var(--gu-line);
}
.gu-body .gu-offcanvas .gu-submenu li:last-child { border-bottom: 0; }

/* ===== Poradie: hamburger vľavo, potom logo, ikony vpravo ===== */
.gu-body .header.gu-header .gu-mobi-logo {
    flex: 0 0 auto; text-align: left; margin-right: auto; margin-left: 14px;
}

/* ===== Hero fotky jasnejšie ===== */
.gu-hero-slide > img { filter: brightness(1.12) saturate(1.04); }

/* ===== Lightbox / galéria (klik na Instagram fotku) ===== */
body.gu-lb-lock { overflow: hidden; }
.gu-lightbox {
    position: fixed; inset: 0; z-index: 4000;
    display: none; align-items: center; justify-content: center;
    background: rgba(8, 10, 9, .92); padding: 40px;
    opacity: 0; transition: opacity .25s var(--gu-ease);
}
.gu-lightbox.is-open { display: flex; opacity: 1; }
.gu-lb-fig { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; }
.gu-lb-fig img {
    max-width: 92vw; max-height: 88vh; width: auto; height: auto;
    object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.gu-lb-close {
    position: absolute; top: 22px; right: 26px; z-index: 2;
    width: 46px; height: 46px; border: 0; background: rgba(255,255,255,.1);
    color: #fff; font-size: 28px; line-height: 1; cursor: pointer;
    border-radius: 999px; transition: background-color .2s var(--gu-ease);
}
.gu-lb-close:hover { background: var(--gu-accent); }
.gu-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 52px; height: 52px; border: 0; background: rgba(255,255,255,.1);
    color: #fff; font-size: 24px; cursor: pointer; border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    transition: background-color .2s var(--gu-ease);
}
.gu-lb-nav:hover { background: var(--gu-accent); }
.gu-lb-prev { left: 24px; }
.gu-lb-next { right: 24px; }
@media (max-width: 600px) {
    .gu-lightbox { padding: 16px; }
    .gu-lb-nav { width: 42px; height: 42px; font-size: 20px; }
    .gu-lb-prev { left: 8px; } .gu-lb-next { right: 8px; }
    .gu-lb-close { top: 10px; right: 12px; }
}

/* ===== VŠETKY obrázky hranaté (bez zaoblenia) – globálne ===== */
.gu-body img { border-radius: 0 !important; }
.gu-img, .gu-media, .gu-tile, .gu-cat-card, .gu-insta-item, .gu-insta-grid > a,
.gu-sample, .gu-sample-img, .gu-card, .gu-card-img, .gu-post, .gu-post-media,
.gu-pd-main, .gu-pd-thumb, .gu-team-photo, .gu-brand-card, .gu-quote, .gu-map,
.gu-promo-wide, .gu-hero, .gu-hero-slide, .gu-subscribe { border-radius: 0 !important; }

/* ===== Kartičky kategórií: obsah zarovnaný, CTA horizontálne v jednej línii ===== */
.gu-sample { display: flex; flex-direction: column; }
.gu-sample-img { flex: 0 0 auto; }
.gu-sample-body { display: flex; flex-direction: column; align-items: center; flex: 1 1 auto; }
.gu-sample-cat { flex: 1 1 auto; }
.gu-sample-link { margin-top: auto; padding-top: 12px; }

/* ===== off-canvas: top-level položky plná šírka -> šípky zarovnané vpravo ===== */
.gu-body .gu-offcanvas .gu-offcanvas-nav > ul > li { display: block; width: 100%; }
.gu-body .gu-offcanvas .gu-offcanvas-nav > ul > li > .gu-sub-toggle { right: 10px; }

/* ===== hero jasnejšie fotky + jasnejší (biely) text ===== */
.gu-hero-slide > img { filter: brightness(1.2) saturate(1.05); }
.gu-hero-in p { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 2px 18px rgba(0,0,0,.55); }
.gu-hero-in .gu-kicker { color: #fff; opacity: .95; }

/* ===== Ponuka dňa / Deal of the Day (index-3) ===== */
.gu-deal-day {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
    background: var(--gu-bg-2); padding: 46px 48px;
}
.gu-deal-day-info .gu-kicker { color: var(--gu-accent); }
.gu-deal-day-info h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; margin: 6px 0 12px; }
.gu-deal-day-info p { color: var(--gu-text-2); margin: 0 0 24px; max-width: 46ch; }
.gu-countdown { display: flex; gap: 12px; margin: 0 0 26px; flex-wrap: wrap; }
.gu-cd-item { background: var(--gu-card); border: 1px solid var(--gu-line); padding: 12px 6px; min-width: 68px; text-align: center; }
.gu-cd-item span { display: block; font-size: 26px; font-weight: 700; color: var(--gu-accent); line-height: 1.1; }
.gu-cd-item em { font-style: normal; font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--gu-muted); }
.gu-deal-day-media { display: block; overflow: hidden; align-self: stretch; }
.gu-deal-day-media img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; }
@media (max-width: 820px) {
    .gu-deal-day { grid-template-columns: 1fr; padding: 30px 22px; gap: 26px; }
    .gu-deal-day-media { max-height: 300px; }
}

/* ===== VŠETKY fotky svetlejšie (logá sú SVG, tie ostávajú) ===== */
/* logo na stránke údržby je výnimka - má vlastnú bielu masku, ktorú by
   `brightness()` prepísal (filter sa nesčítava, nahrádza sa) */
.gu-body img:not([src$=".svg"]):not(.gu-maint-logo),
[data-theme="dark"] .gu-body img:not([src$=".svg"]):not(.gu-maint-logo) { filter: brightness(1.1) !important; }
.gu-hero-slide > img { filter: brightness(1.32) contrast(1.16) saturate(1.08) !important; }

/* ===== zabrániť čiernemu prebliknutiu hero pred inicializáciou slidera ===== */
.gu-hero { background: var(--gu-bg-2); }
.gu-hero-slider:not(.slick-initialized) .gu-hero-slide { display: none; }
.gu-hero-slider:not(.slick-initialized) .gu-hero-slide:first-child { display: flex; }

/* ===== hero "Prezrieť obchod" vždy biele a čitateľné ===== */
.gu-hero-more, .gu-hero-more:hover, .gu-hero-more:focus,
.gu-hero-more span, .gu-hero-more:visited { color: #fff !important; }
.gu-hero-more {
    text-shadow: 0 1px 2px rgba(0,0,0,.95), 0 2px 12px rgba(0,0,0,.8), 0 0 4px rgba(0,0,0,.9) !important;
}

/* ===== hero slide 4: sekcia s popisom zarovnaná doprava ===== */
.gu-hero-slide--right .gu-hero-in { margin-left: auto; margin-right: 0; text-align: right; }
.gu-hero-slide--right .gu-hero-in p { margin-left: auto; }
.gu-hero-slide--right::after {
    background:
        linear-gradient(270deg, rgba(0, 0, 0, .46) 0%, rgba(0, 0, 0, .26) 32%, rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0) 38%);
}

/* ===== suma + € vždy na jednom riadku ===== */
.gu-price strong, .gu-price del, .gu-pd-price strong, .gu-pd-price del,
.money, .gu-choice-price, [data-gu-cart-total], [data-gu-cart-subtotal],
[data-gu-cart-shipping], .gu-summary .money { white-space: nowrap; }

/* ============================================ DOTYKOVÉ CIELE A ČITATEĽNOSŤ
   WCAG 2.2 (2.5.8) žiada dotykový cieľ aspoň 24 × 24 px. Merania na iPhone 14
   ukázali bodky slideru 20 × 20, odkazy v kartách a v off-canvas menu 19 px
   na výšku a text až pod 10 px. */

/* bodky slidera - klikacia plocha sa zväčší, vizuál ostáva rovnaký */
.gu-body .slick-dots li { width: 26px; height: 26px; margin: 0 2px; }
.gu-body .slick-dots li button { width: 26px; height: 26px; padding: 0; }
.gu-body .slick-dots li button:before { width: 26px; height: 26px; line-height: 26px; }

/* názov produktu v karte vyplní celú rezervovanú výšku, nie len jeden riadok */
.gu-card-title a { display: block; }

/* odkazy v rozbaľovacom menu, v off-canvas paneli a v pätičke */
.gu-body .gu-submenu > li > a,
.gu-body .gu-oc-contact a,
.gu-body .gu-offcanvas-nav a,
.gu-body .gu-footer ul > li > a,
.gu-body .gu-footer-contact > li > a { min-height: 24px; display: flex; align-items: center; }

@media (max-width: 900px) {
    /* pod 11 px je text na mobile ťažko čitateľný */
    .gu-label { font-size: 11px; padding: 5px 11px; }
    .gu-card-brand { font-size: 11px; }
    .gu-post-cat, .gu-rating em, .gu-stock { font-size: 11.5px; }
    .gu-filter-count { font-size: 12px; }

    /* ikonové tlačidlá a odkazy v pätičke */
    .gu-body .gu-fb-item, .gu-body .gu-footer-logo,
    .gu-body .gu-socials a { min-height: 26px; min-width: 26px; display: inline-flex; align-items: center; justify-content: center; }
}
