/* ==========================================================================
ALUMERA | Kompletní finální CSS pro šablonu Kovovýroba / inPage
========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@700;800;900&display=swap");

/* ==========================================================================
1. GLOBÁLNÍ RESET (ODSTRANĚNO OVERFLOW, KTERÉ BLOKOVALO STICKY SCROLL)
========================================================================== */

:root, html, body {
  --color-primary: #1a1d20 !important;
  --color-secondary: #ffffff !important;
  --bg-primary: #ffffff !important;
  --bg-secondary: #ffffff !important;
  --modal-bg: #ffffff !important;
  --bs-modal-bg: #ffffff !important;

  --primary: #1a1d20 !important;
  --primary-light: #4a4d50 !important;
  --primary-dark: #000000 !important;
  --primary-darker: #000000 !important;
  --primary-lightest: #f5f5f5 !important;
  --primary-rgb: 26, 29, 32 !important;
  --bs-primary: #1a1d20 !important;
  --bs-primary-rgb: 26, 29, 32 !important;

  --alumera-blue: #0d5ca8 !important;
  --alumera-blue-line: rgba(13, 92, 168, 0.055) !important;
  --alumera-blue-line-subtle: rgba(13, 92, 168, 0.03) !important;
  --alumera-blue-border: rgba(13, 92, 168, 0.2) !important;

  font-family: "Montserrat", Arial, sans-serif !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Povolení sticky chování pro celé inPage */
html,
body,
#layout,
#page,
.page-wrapper {
  overflow: visible !important;
}

body *,
body *::before,
body *::after {
  text-shadow: none !important;
}

html body h1, html body h2, html body h3,
html body .h1, html body .h2, html body .h3,
html body .motto h1, html body .motobox h1, 
html body .banner-text h1, html body #motive h1 {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.8px !important;
}

/* ==========================================================================
2. HLAVIČKA A LOGO (PŮVODNÍ VELIKOST, 100% ŠÍŘKA & STICKY PŘI SCROLLU)
========================================================================== */

/* Pojistka pro fungování sticky scrollu */
html,
body,
#layout,
#page,
.page-wrapper {
  overflow: visible !important;
}

html body header,
html body #header,
html body .header {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* Roztažení na celou šířku obrazovky – logo na levý okraj, menu na pravý */
html body #navbar, 
html body .navbar,
html body header .container, 
html body #header .container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 100% !important; /* Ruší 1200px limit, logo jde k levému okraji */
  margin: 0 !important;
  padding: 16px 24px !important;
  min-height: 80px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* Logo – přesně podle původního kódu */
html body .navbar__brand, 
html body .navbar-brand,
html body .logo, 
html body #logo {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body .navbar__brand img, 
html body .navbar-brand img,
html body .logo img, 
html body #logo img {
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
}

/* ==========================================================================
3. DESKTOPOVÉ MENU (PŘESNÝ SVISLÝ STŘED VŠECH ODKAZŮ)
========================================================================== */

@media (min-width: 992px) {
  html body #nav-menu,
  html body .navbar__menu,
  html body .navbar-collapse {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  html body #nav-menu::before, html body #nav-menu::after,
  html body .navbar__menu::before, html body .navbar__menu::after,
  html body ul.navbar__menu-list::before, html body ul.navbar__menu-list::after,
  html body li.navbar__menu-item::before, html body li.navbar__menu-item::after {
    content: none !important;
    display: none !important;
  }

  html body ul.navbar__menu-list,
  html body .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
  }

  html body li.navbar__menu-item,
  html body .navbar-nav li {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 14px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  html body a.navbar__menu-link,
  html body .navbar-nav a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 6px 0 8px !important;
    color: #1a1d20 !important;
    background-color: transparent !important;
    background-image: linear-gradient(var(--alumera-blue), var(--alumera-blue)) !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    background-size: 0 2px !important;
    border: 0 !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    line-height: 1 !important;
    transition: background-size 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.2s ease !important;
  }

  html body a.navbar__menu-link:hover,
  html body .navbar__menu-item:hover > a.navbar__menu-link,
  html body li.navbar__menu-item.active > a.navbar__menu-link,
  html body a.navbar__menu-link.active {
    color: var(--alumera-blue) !important;
    background-size: 100% 2px !important;
  }
}

/* ==========================================================================
5.B BANNER ÚVODNÍ STRÁNKY (PŘESNĚ NA VÝŠKU DISPLEJE BEZ VYČNÍVÁNÍ LOG)
========================================================================== */

html body #motive, 
html body .motive, 
html body #banner,
html body .banner {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* Přesná výška: monitor minus 80px hlavička */
  height: calc(100vh - 80px) !important;
  height: calc(100dvh - 80px) !important;
  min-height: 560px !important;
  max-height: calc(100vh - 80px) !important;
  padding: 20px 20px 70px 20px !important;
  margin: 0 !important;
  background-color: #ffffff !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
  z-index: 5 !important;
}

html body #motive img, 
html body .motive img, 
html body #banner img, 
html body #motive picture img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  animation: alumeraCinematicEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  will-change: filter, transform !important;
  z-index: 1 !important;
}

/* Jemný přechod do bílé na spodní hraně banneru */
html body #motive::after, 
html body .motive::after, 
html body #banner::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 45% !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 20%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.75) 75%,
    #ffffff 100%
  ) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* ==========================================================================
3. DESKTOPOVÉ MENU (ANIMACE OD STŘEDU)
========================================================================== */

@media (min-width: 992px) {
  /* Reset systémových rámečků a stínů */
  html body #nav-menu, html body #nav-menu *,
  html body .navbar__menu, html body .navbar__menu *,
  html body ul.navbar__menu-list, html body li.navbar__menu-item,
  html body a.navbar__menu-link {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }

  /* Vypnutí pseudo-čar */
  html body #nav-menu::before, html body #nav-menu::after,
  html body .navbar__menu::before, html body .navbar__menu::after,
  html body ul.navbar__menu-list::before, html body ul.navbar__menu-list::after,
  html body li.navbar__menu-item::before, html body li.navbar__menu-item::after,
  html body li.navbar__menu-item.active::before, html body li.navbar__menu-item.active::after,
  html body a.navbar__menu-link::before, html body a.navbar__menu-link::after {
    content: none !important;
    display: none !important;
  }

  /* Rozvržení */
  html body ul.navbar__menu-list {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: transparent !important;
  }

  html body li.navbar__menu-item {
    margin: 0 14px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  /* Animovaná linka od středu */
  html body a.navbar__menu-link,
  html body .navbar__menu-item > a.navbar__menu-link {
    display: inline-block !important;
    padding: 6px 0 8px !important;
    color: #1a1d20 !important;
    background-color: transparent !important;
    background-image: linear-gradient(var(--alumera-blue), var(--alumera-blue)) !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    background-size: 0 2px !important;
    border: 0 !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    transition: background-size 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.2s ease !important;
  }

  html body a.navbar__menu-link:hover,
  html body .navbar__menu-item:hover > a.navbar__menu-link,
  html body li.navbar__menu-item.active > a.navbar__menu-link,
  html body a.navbar__menu-link.active {
    color: var(--alumera-blue) !important;
    background-size: 100% 2px !important;
  }
}

/* ==========================================================================
4. VYHLEDÁVÁNÍ V HLAVIČCE
========================================================================== */

/* Skrytí duplicit mimo hlavičku */
html body .top-bar form, html body .top-bar .search-form,
html body .top-bar .navbar__search, html body header > form:first-child {
  display: none !important;
}

/* Vynucení bílé ikony lupy všude */
html body #header .navbar__search-button, html body .header .navbar__search-button,
html body .navbar__search button[type="submit"], html body #header form button[type="submit"],
html body .header form button[type="submit"] {
  color: #ffffff !important;
  fill: #ffffff !important;
  background-color: #1a1d20 !important;
}

html body #header .navbar__search-button *, html body .header .navbar__search-button *,
html body .navbar__search button[type="submit"] *, html body #header form button[type="submit"] *,
html body .header form button[type="submit"] *, html body .navbar__search-icon,
html body .navbar__search-icon::before, html body .navbar__search-button i,
html body .navbar__search-button i::before, html body .navbar__search-button svg,
html body .navbar__search-button svg path {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* --- DESKTOP (od 992px) --- */
@media (min-width: 992px) {
  html body .navbar__search, html body #search-bar, html body .header-search {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 0 0 16px !important;
    padding: 0 !important;
  }

  html body .navbar__search form, html body #header form, html body .header form {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 1.5px solid transparent !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
  }

  html body #header form input[type="text"], html body #header form input[type="search"],
  html body .navbar__search input {
    display: block !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    color: #1a1d20 !important;
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease, width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  }

  html body #header form button[type="submit"], html body .navbar__search button[type="submit"],
  html body .navbar__search-button {
    display: flex !important;
    flex: 0 0 34px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    transition: background-color 0.25s ease, transform 0.2s ease !important;
  }

  html body #header form:hover, html body #header form:focus-within,
  html body .navbar__search form:hover, html body .navbar__search form:focus-within {
    width: 220px !important;
    padding: 2px 3px 2px 14px !important;
    background: #ffffff !important;
    border-color: #0d5ca8 !important;
    box-shadow: 0 4px 16px rgba(13, 92, 168, 0.12) !important;
  }

  html body #header form:hover input, html body #header form:focus-within input,
  html body .navbar__search form:hover input, html body .navbar__search form:focus-within input {
    width: 100% !important;
    opacity: 1 !important;
    padding-right: 6px !important;
    pointer-events: auto !important;
  }

  html body #header form:hover button[type="submit"], html body #header form:focus-within button[type="submit"],
  html body .navbar__search form:hover button[type="submit"], html body .navbar__search form:focus-within button[type="submit"] {
    background-color: #0d5ca8 !important;
  }
}

/* --- MOBIL (do 991px) --- */
@media (max-width: 991px) {
  html body .navbar__search, html body .header-search, html body #search-bar {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 8px 0 auto !important;
    order: 1 !important;
  }

  html body .navbar__search-button, html body .navbar__search button,
  html body #header form button[type="submit"], html body .search-toggle,
  html body a[href*="vyhledavani"], html body a.search-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    border: 0 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12) !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  html body .navbar__search form, html body #header form,
  html body .navbar__search form input, html body #header form input {
    display: flex !important;
    align-items: center !important;
    transition: none !important;
  }
}

/* ==========================================================================
5. HERO / BANNER (POUZE ÚVOD), DROBEČKOVÁ NAVIGACE A ODSAZENÍ PODSTRÁNEK
========================================================================== */

/* --------------------------------------------------------------------------
A. ANIMACE BANNERU
-------------------------------------------------------------------------- */

@keyframes alumeraCinematicEntrance {
  0% { filter: blur(10px); transform: scale(1.05); }
  100% { filter: blur(0px); transform: scale(1); }
}

@keyframes alumeraHeroTextSlide {
  0% { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
B. BANNER – POUZE PRO ÚVODNÍ STRÁNKU (ULTRA JEMNÝ PŘECHOD DO ZTRACENA)
-------------------------------------------------------------------------- */

html body #motive, 
html body .motive, 
html body #banner,
html body .banner {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 520px !important;
  padding: 60px 20px 90px 20px !important;
  margin: 0 !important;
  background-color: #ffffff !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
  z-index: 5 !important;
}

html body #motive img, 
html body .motive img, 
html body #banner img, 
html body #motive picture img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  animation: alumeraCinematicEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) both !important;
  will-change: filter, transform !important;
  z-index: 1 !important;
}

/* Exponenciální vícebodový přechod do bílé (Scrim curve) */
html body #motive::after, 
html body .motive::after, 
html body #banner::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 55% !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.015) 12%,
    rgba(255, 255, 255, 0.055) 24%,
    rgba(255, 255, 255, 0.13) 36%,
    rgba(255, 255, 255, 0.25) 48%,
    rgba(255, 255, 255, 0.42) 60%,
    rgba(255, 255, 255, 0.64) 73%,
    rgba(255, 255, 255, 0.85) 86%,
    rgba(255, 255, 255, 0.96) 94%,
    #ffffff 100%
  ) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

html body .motto, 
html body .motobox, 
html body .banner-text,
html body .motto-wrap, 
html body #banner .text, 
html body #motive .text, 
html body #motive .motto {
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  max-width: 960px !important;
  width: 92% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  text-align: center !important;
  background: transparent !important;
}

html body .motto h1, 
html body .motto h2, 
html body .motobox h1,
html body .motobox p, 
html body .motobox .text, 
html body .banner-text h1,
html body #motive h1, 
html body #motive p, 
html body #motive span,
html body .motto-wrap h1 {
  display: block !important;
  margin: 0 auto !important;
  color: #ffffff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: clamp(2.3rem, 4.6vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
  text-transform: none !important;
  text-align: center !important;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.95) !important;
  animation: alumeraHeroTextSlide 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both !important;
  will-change: transform, opacity !important;
}

@media (max-width: 768px) {
  html body #motive, 
  html body .motive, 
  html body #banner {
    min-height: 360px !important;
    padding: 40px 16px 65px 16px !important;
  }
  html body #motive::after, 
  html body .motive::after, 
  html body #banner::after {
    height: 65% !important;
  }
  html body .motto h1, 
  html body .motobox h1, 
  html body .banner-text h1, 
  html body #motive h1, 
  html body #motive p {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
}

/* --------------------------------------------------------------------------
C. SKRYTÍ BANNERU NA VŠECH PODSTRÁNKÁCH
-------------------------------------------------------------------------- */

html body:has(.navbar__menu-item:not(:first-child).active) #motive,
html body:has(.navbar__menu-item:not(:first-child).active) .motive,
html body:has(.navbar__menu-item:not(:first-child).active) #banner,
html body:has(.navbar__menu-item:not(:first-child).active) .banner,
html body:has(.navbar-nav li:not(:first-child).active) #motive,
html body:has(.navbar-nav li:not(:first-child).active) .motive,
html body:has(.navbar-nav li:not(:first-child).active) #banner,
html body:has(.navbar-nav li:not(:first-child).active) .banner,
html body:has(.breadcrumb a) #motive,
html body:has(.breadcrumb a) .motive,
html body:has(.breadcrumb a) #banner,
html body:has(.breadcrumb a) .banner,
html body:has([class*="breadcrumb"] a) #motive,
html body:has([class*="breadcrumb"] a) .motive,
html body:has([class*="breadcrumb"] a) #banner,
html body:has([class*="breadcrumb"] a) .banner,
html body:not(#page-index):not(#page-home):not(#page-uvod):not(.homepage):not(.page-index):not(.page-home):not(.page-uvod):has(.breadcrumb) #motive,
html body:not(#page-index):not(#page-home):not(#page-uvod):not(.homepage):not(.page-index):not(.page-home):not(.page-uvod):has(.breadcrumb) .motive,
html body:not(#page-index):not(#page-home):not(#page-uvod):not(.homepage):not(.page-index):not(.page-home):not(.page-uvod):has(.breadcrumb) #banner,
html body:not(#page-index):not(#page-home):not(#page-uvod):not(.homepage):not(.page-index):not(.page-home):not(.page-uvod):has(.breadcrumb) .banner {
  display: none !important;
  min-height: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  visibility: hidden !important;
}

/* Pojistka pro Úvod */
html body#page-index #motive,
html body#page-home #motive,
html body#page-uvod #motive,
html body.homepage #motive,
html body.page-index #motive,
html body.page-home #motive,
html body.page-uvod #motive,
html body:has(.navbar__menu-item:first-child.active) #motive,
html body:has(.navbar-nav li:first-child.active) #motive {
  display: flex !important;
  visibility: visible !important;
  min-height: 520px !important;
}

/* --------------------------------------------------------------------------
D. ODSTRANĚNÍ PRÁZDNÉHO MÍSTA POD HLAVIČKOU NA PODSTRÁNKÁCH
-------------------------------------------------------------------------- */

html body:has(.navbar__menu-item:not(:first-child).active) #main,
html body:has(.breadcrumb) #main,
html body:has([class*="breadcrumb"]) #main {
  padding-top: 15px !important;
  margin-top: 0 !important;
}

html body:has(.navbar__menu-item:not(:first-child).active) #main .container,
html body:has(.breadcrumb) #main .container,
html body .container--article {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Zarovnání hlavního nadpisu H1 na podstránce */
html body:has(.breadcrumb) #main h1:first-of-type,
html body:has([class*="breadcrumb"]) #main h1:first-of-type,
html body .container--article h1:first-of-type {
  margin-top: 8px !important;
  margin-bottom: 20px !important;
}

/* --------------------------------------------------------------------------
E. DROBEČKOVÁ NAVIGACE (ZAROVNÁNO VLEVO + ŠIPKY SMĚREM DOLŮ ↓)
-------------------------------------------------------------------------- */

/* 1. Hlavní kontejner navigace – zarovnání k levému okraji obsahu */
html body nav.breadcrumb,
html body .breadcrumb,
html body [class*="breadcrumb"] {
  display: block !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 20px auto 14px auto !important;
  padding: 0 15px !important;
  text-align: left !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* 2. Seznam položek pod sebou – striktně na levý okraj */
html body .breadcrumb__list,
html body .breadcrumb ol,
html body .breadcrumb ul,
html body [class*="breadcrumb"] ol,
html body [class*="breadcrumb"] ul {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* 3. Jednotlivé řádky cesty */
html body .breadcrumb__item,
html body .breadcrumb-item,
html body .breadcrumb li,
html body [class*="breadcrumb"] li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  color: #6b7280 !important;
}

/* 4. Šipka směřující dolů ↓ před každou podúrovní */
html body .breadcrumb__item + .breadcrumb__item::before,
html body .breadcrumb-item + .breadcrumb-item::before,
html body .breadcrumb li + li::before,
html body [class*="breadcrumb"] li + li::before,
html body .breadcrumb__item::before {
  content: "↓" !important;
  display: inline-block !important;
  margin-right: 8px !important;
  margin-left: 0 !important;
  padding: 0 !important;
  color: #0d5ca8 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

/* První řádek (Úvodní stránka) zůstává bez šipky */
html body .breadcrumb__item:first-child::before,
html body .breadcrumb li:first-child::before,
html body .breadcrumb__list > li:first-child::before {
  content: none !important;
  display: none !important;
}

/* 5. Odkazy */
html body .breadcrumb__link,
html body .breadcrumb a,
html body [class*="breadcrumb"] a {
  color: #6b7280 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

html body .breadcrumb__link:hover,
html body .breadcrumb a:hover,
html body [class*="breadcrumb"] a:hover {
  color: #0d5ca8 !important;
  text-decoration: underline !important;
}

/* 6. Poslední aktivní položka */
html body .breadcrumb__item:last-child,
html body .breadcrumb li:last-child,
html body .breadcrumb__item.active,
html body .breadcrumb-item.active {
  color: #1a1d20 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
6. OBSAH A TYPOGRAFIE (LIKVIDACE PRÁZDNÝCH ELEMENTŮ)
========================================================================== */

html body .section, html body section:not(.section-2-col-left-text),
html body .content-box, html body .main-content {
  background-color: #ffffff !important;
}

html body #main, html body .main-content,
html body .section:not(.section-2-col-left-text),
html body section:not(.section-2-col-left-text):not(#motive) {
  position: relative !important;
  z-index: 1 !important;
  background-color: transparent !important;
  background-image: none !important;
}

html body h1, html body h2, html body h3,
html body .h1, html body .h2, html body .h3 {
  margin-bottom: 22px !important;
  color: #1a1d20 !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px !important;
}

html body p, html body li, html body .text {
  color: #4a4d50 !important;
  line-height: 1.8 !important;
}

/* Úplné odstranění zbloudilých prázdných elementů */
html body #main .section-intro, html body #main .section-intro:empty,
html body #main .icon, html body #main .lead-icon,
html body #main .icon-holder, html body #main .icon-box,
html body #main .article-content > :empty, html body #main .feature-box:empty,
html body #main .service-box:empty, html body #main [class*="col"]:empty,
html body #main div:empty:not(.carousel-item):not(.row),
html body #main span:empty, html body #main p:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html body #main .article-content {
  margin-bottom: 20px !important;
}

/* ==========================================================================
7. TLAČÍTKA A PRODUKTOVÉ KARTY
========================================================================== */

html body .btn, html body .button, html body a.btn, html body a.button,
html body input[type="submit"], html body input[type="button"], html body .card a.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 11px 28px !important;
  color: #ffffff !important;
  background-color: #1a1d20 !important;
  border: 1.5px solid #1a1d20 !important;
  border-radius: 50px !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
  text-decoration: none !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  transition: all 0.25s ease !important;
}

html body .btn *, html body .button *, html body a.btn *, html body a.button * {
  color: #ffffff !important;
  text-decoration: none !important;
}

html body .btn:hover, html body .button:hover, html body a.btn:hover,
html body a.button:hover, html body input[type="submit"]:hover, html body input[type="button"]:hover {
  color: #1a1d20 !important;
  background-color: #ffffff !important;
  border-color: #1a1d20 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px) !important;
}

html body .btn:hover *, html body .button:hover *,
html body a.btn:hover *, html body a.button:hover * {
  color: #1a1d20 !important;
}

/* Karty se aplikují pouze mimo detail článků a podstránky (zabrání nežádoucím rámečkům v HS Portálech, Carportech atd.) */
html body #main:not(:has(.container--article)):not(:has(.breadcrumb)) .section-content,
html body #main:not(:has(.container--article)):not(:has(.breadcrumb)) .service-box,
html body #main:not(:has(.container--article)):not(:has(.breadcrumb)) .feature-box,
html body #main:not(:has(.container--article)):not(:has(.breadcrumb)) .card {
  padding: 30px 24px !important;
  background-color: #ffffff !important;
  border: 1px solid #eaedf0 !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease !important;
}

html body #main:not(:has(.container--article)):not(:has(.breadcrumb)) .service-box:hover,
html body #main:not(:has(.container--article)):not(:has(.breadcrumb)) .feature-box:hover,
html body #main:not(:has(.container--article)):not(:has(.breadcrumb)) .card:hover {
  border-color: var(--alumera-blue-border) !important;
  box-shadow: 0 12px 30px rgba(13, 92, 168, 0.08) !important;
  transform: translateY(-4px) !important;
}

/* ==========================================================================
8. FORMULÁŘE
========================================================================== */

html body input[type="text"]:not(.header form input):not(.navbar__search form input),
html body input[type="email"], html body input[type="tel"], html body textarea, html body .form-control {
  padding: 14px !important;
  color: #1a1d20 !important;
  background-color: #fafafa !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

html body input[type="text"]:not(.header form input):not(.navbar__search form input):focus,
html body input[type="email"]:focus, html body input[type="tel"]:focus,
html body textarea:focus, html body .form-control:focus,
html body form input[type="text"]:focus, html body form input[type="email"]:focus,
html body form input[type="tel"]:focus, html body form textarea:focus {
  color: #1a1d20 !important;
  background-color: #ffffff !important;
  border-color: var(--alumera-blue) !important;
  box-shadow: 0 0 0 4px rgba(13, 92, 168, 0.12) !important;
  outline: none !important;
}

/* ==========================================================================
10. MOBILNÍ MENU
========================================================================== */

html body header .navbar-toggler, html body header .navbar__toggle,
html body header .menu-toggle, html body header .mobile-nav-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  order: 2 !important;
  margin: 0 0 0 6px !important;
  background: transparent !important;
  border: 1px solid rgba(26, 29, 32, 0.15) !important;
  border-radius: 8px !important;
  padding: 7px 10px !important;
  color: #1a1d20 !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  html body .modal, html body .modal-dialog, html body .modal-content,
  html body #modal-menu, html body #nav-menu.expanded, html body .navbar-collapse {
    background-color: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  html body .modal-body, html body .modal-header {
    background-color: #ffffff !important;
    border: 0 !important;
    padding: 24px 20px !important;
  }

  html body .btn-close, html body .close, html body button[class*="close"],
  html body [aria-label*="Close"], html body [aria-label*="Zavřít"] {
    color: #1a1d20 !important;
    font-size: 1.8rem !important;
    opacity: 1 !important;
  }

  html body .modal ul, html body #modal-menu ul,
  html body .navbar__menu-list, html body .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  html body .modal li, html body #modal-menu li,
  html body .navbar__menu-item, html body .navbar-nav li {
    width: 100% !important;
    margin: 8px 0 !important;
    padding: 0 !important;
    border: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: transparent !important;
  }

  html body .modal a, html body .modal-body a, html body #modal-menu a,
  html body #nav-menu a, html body .navbar__menu-link,
  html body .navbar-nav .nav-link, html body .navbar-collapse a {
    display: inline-block !important;
    width: auto !important;
    padding: 8px 0 10px 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
    color: #1a1d20 !important;
    background-color: transparent !important;
    background-image: linear-gradient(var(--alumera-blue), var(--alumera-blue)) !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    background-size: 0 2px !important;
    border: 0 !important;
    text-decoration: none !important;
    font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    transition: background-size 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.2s ease !important;
  }

  html body .modal a:hover, html body .modal a:active,
  html body #modal-menu a:hover, html body #modal-menu a:active,
  html body .navbar__menu-link:hover, html body .navbar__menu-link.active,
  html body .navbar-nav .nav-link:hover, html body .navbar-nav .nav-link.active,
  html body .navbar-collapse a:hover, html body .navbar-collapse .active > a {
    color: var(--alumera-blue) !important;
    background-size: 100% 2px !important;
  }
}

/* ==========================================================================
11. GLOBÁLNÍ BAREVNÝ SANITIZER
========================================================================= */

html body [style*="#ffcc02" i], html body [style*="#ffc" i],
html body [style*="rgb(255, 204, 2)"], html body [style*="rgb(255,204,2)"],
html body [style*="yellow" i] {
  color: #1a1d20 !important;
  border-color: #1a1d20 !important;
}

html body .text-primary, html body .text-warning, html body .text-accent,
html body [class*="text-primary"], html body [class*="text-warning"],
html body [class*="color-primary"], html body .highlight,
html body [class*="highlight"], html body mark, html body .accent {
  color: #1a1d20 !important;
  background-color: transparent !important;
}

html body i[class*="la-"], html body i[class*="fa-"],
html body .icon, html body [class*="icon"]:not(.navbar__search-icon) {
  color: #1a1d20 !important;
  fill: #1a1d20 !important;
}

html body .border-primary, html body [class*="border-primary"], html body hr {
  border-color: #eeeeee !important;
}

/* ==========================================================================
12. RESET STARÝCH INPAGE BLOKŮ
========================================================================== */
html body .section-2-col-left-text:not(.alumera-realhomes-footer) {
  display: none !important;
}

/* ==========================================================================
13. ZAOBLENÍ FOTOGRAFIÍ A ČISTÝ HOVER BEZ TRANSLATE
========================================================================== */

/* 1. Obalový box obrázku – ořez rohů */
html body .article-item__thumbnail,
html body .article-item__img-wrapper,
html body .product-item__thumbnail,
html body .product-item__img-wrapper,
html body .category-item__thumbnail,
html body .category-item__img-wrapper {
  border-radius: 12px !important;
  overflow: hidden !important;
  transform: translateZ(0) !important;
}

/* 2. Samotný obrázek */
html body .article-item__img,
html body .product-item__img,
html body .category-item__img,
html body img.article-item__img {
  border-radius: 12px !important;
  transition: transform 0.35s ease !important;
}

/* 3. Identický jemný hover efekt */
html body .article-item:hover .article-item__img,
html body .article-item__thumbnail:hover .article-item__img,
html body .product-item:hover .product-item__img {
  transform: scale(1.03) !important;
}

/* ==========================================================================
14. ARCHITEKTONICKÉ LINIE „A“ A KLIKACÍ INDIKÁTOR POSUNU DOLŮ
========================================================================== */

/* 1. Levá polovina – při scrollu dolů se posouvá doprava do středu */
html body::before {
  content: "" !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 50vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-image:
    linear-gradient(118deg, transparent 8%, var(--alumera-blue-line-subtle) 8.1%, var(--alumera-blue-line-subtle) 8.2%, transparent 8.3%),
    linear-gradient(118deg, transparent 20%, var(--alumera-blue-line) 20.1%, var(--alumera-blue-line) 20.25%, transparent 20.35%),
    linear-gradient(118deg, transparent 34%, var(--alumera-blue-line-subtle) 34.1%, var(--alumera-blue-line-subtle) 34.2%, transparent 34.3%),
    linear-gradient(118deg, transparent 50%, var(--alumera-blue-line) 50.1%, var(--alumera-blue-line) 50.25%, transparent 50.35%),
    linear-gradient(118deg, transparent 66%, var(--alumera-blue-line-subtle) 66.1%, var(--alumera-blue-line-subtle) 66.2%, transparent 66.3%) !important;
  background-attachment: fixed !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%) !important;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%) !important;
  transform: translate3d(calc(var(--alumera-scroll, 0px) * 0.15), 0, 0) !important;
  will-change: transform !important;
}

/* 2. Pravá polovina – při scrollu dolů se posouvá doleva do středu */
html body::after {
  content: "" !important;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 50vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-image:
    linear-gradient(62deg, transparent 34%, var(--alumera-blue-line-subtle) 34.1%, var(--alumera-blue-line-subtle) 34.2%, transparent 34.3%),
    linear-gradient(62deg, transparent 50%, var(--alumera-blue-line) 50.1%, var(--alumera-blue-line) 50.25%, transparent 50.35%),
    linear-gradient(62deg, transparent 66%, var(--alumera-blue-line-subtle) 66.1%, var(--alumera-blue-line-subtle) 66.2%, transparent 66.3%),
    linear-gradient(62deg, transparent 80%, var(--alumera-blue-line) 80.1%, var(--alumera-blue-line) 80.25%, transparent 80.35%),
    linear-gradient(62deg, transparent 92%, var(--alumera-blue-line-subtle) 92.1%, var(--alumera-blue-line-subtle) 92.2%, transparent 92.3%) !important;
  background-attachment: fixed !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%) !important;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%) !important;
  transform: translate3d(calc(var(--alumera-scroll, 0px) * -0.15), 0, 0) !important;
  will-change: transform !important;
}

/* 3. Vypnutí starého pseudo-elementu */
html body #motive::before,
html body .motive::before,
html body #banner::before {
  content: none !important;
  display: none !important;
}

/* 4. Skákací animace nahoru a dolů */
@keyframes alumeraScrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(9px);
    opacity: 1;
  }
}

/* 5. Klikací skákající tlačítko „POTÁHNĚTE DOLŮ“ */
html body .alumera-scroll-down,
html body #motive .alumera-scroll-down,
html body .motive .alumera-scroll-down,
html body #banner .alumera-scroll-down {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  position: absolute !important;
  bottom: 55px !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: auto !important;
  padding: 0 0 24px 0 !important;

  color: #ffffff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;

  background: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
  background-size: 20px 20px !important;

  border: 0 !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.95)) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 50 !important;

  animation: alumeraScrollBounce 1.5s ease-in-out infinite !important;
  will-change: transform, opacity !important;
}

html body .alumera-scroll-down:hover {
  opacity: 1 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  html body .alumera-scroll-down,
  html body #motive .alumera-scroll-down,
  html body #banner .alumera-scroll-down {
    bottom: 35px !important;
    font-size: 0.64rem !important;
    letter-spacing: 1.5px !important;
    background-size: 16px 16px !important;
    padding-bottom: 20px !important;
  }
}

/* ==========================================================================
15. BEZEŠVÝ ENDLESS LOOP REALIZACÍ (ČISTÝ DESIGN BEZ OUTLINŮ & GLOBÁLNÍ FONT)
========================================================================== */

/* 1. Hlavní obal pásu přes 100vw */
html body #main .alumera-realizace-loop,
html body .alumera-realizace-loop {
  position: relative !important;
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin: 50px 0 !important;
  padding: 0 !important;

  background-color: #fafbfc !important;
  border-top: 1px solid #eaedf0 !important;
  border-bottom: 1px solid #eaedf0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;

  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%) !important;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 6%, rgba(0, 0, 0, 1) 94%, transparent 100%) !important;
}

/* 2. Plynulá nekonečná smyčka */
@keyframes alumeraRealizaceAutoLoop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* 3. Pohyblivý pás */
html body #main .alumera-realizace-loop__track,
html body .alumera-realizace-loop__track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  width: max-content !important;
  gap: 28px !important;
  padding: 35px 0 !important;
  animation: alumeraRealizaceAutoLoop 34s linear infinite !important;
  will-change: transform !important;
}

.alumera-realizace-loop:hover .alumera-realizace-loop__track {
  animation-play-state: paused !important;
}

/* 4. Karta realizace – zcela bez tmavého pozadí a bez obrysu */
html body #main .alumera-realizace-card,
html body .alumera-realizace-card {
  position: relative !important;
  display: block !important;
  flex: 0 0 420px !important;
  width: 420px !important;
  height: 280px !important;
  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  border-radius: 18px !important;
  overflow: hidden !important;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  line-height: normal !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease !important;
}

html body .alumera-realizace-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  box-shadow: 0 18px 38px rgba(13, 92, 168, 0.22) !important;
}

/* 5. Fotografie stavby – vyplňuje 100 % plochy karty bez mezer */
html body #main .alumera-realizace-card img,
html body .alumera-realizace-card img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: none !important;
  border-radius: 0 !important;
  transform: scale(1) !important;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  z-index: 1 !important;
  cursor: pointer !important;
}

html body .alumera-realizace-card:hover img {
  transform: scale(1.06) !important;
}

/* 6. Spodní panel popisku s gradientem */
.alumera-realizace-card__caption {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 50px 22px 20px 22px !important;
  margin: 0 !important;

  background: linear-gradient(to top, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%) !important;
  text-align: left !important;
  pointer-events: auto !important;
  z-index: 10 !important;
}

/* Štítek kategorie – jednotné globální písmo Montserrat */
.alumera-realizace-card__tag {
  color: #00d2ff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
  line-height: 1 !important;
  pointer-events: auto !important;
  cursor: text !important;
  user-select: text !important;
}

/* Hlavní název realizace – jednotné globální písmo Montserrat */
html body #main .alumera-realizace-card__title,
html body .alumera-realizace-card__title,
.alumera-realizace-card h5 {
  color: #ffffff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.2px !important;
  line-height: 1.3 !important;
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
  pointer-events: auto !important;
  cursor: text !important;
  user-select: text !important;
}

/* Doplňující podtitulek – jednotné globální písmo Montserrat */
html body #main .alumera-realizace-card__desc,
html body .alumera-realizace-card__desc,
.alumera-realizace-card p {
  color: #cbd5e1 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: auto !important;
  cursor: text !important;
  user-select: text !important;
}

/* 7. Mobilní zobrazení */
@media (max-width: 768px) {
  html body #main .alumera-realizace-loop__track {
    gap: 16px !important;
    padding: 22px 0 !important;
    animation-duration: 22s !important;
  }

  html body #main .alumera-realizace-card {
    flex: 0 0 290px !important;
    width: 290px !important;
    height: 195px !important;
    border-radius: 14px !important;
  }

  .alumera-realizace-card__caption {
    padding: 35px 16px 16px 16px !important;
  }

  .alumera-realizace-card__tag {
    font-size: 0.58rem !important;
  }

  html body #main .alumera-realizace-card__title,
  html body .alumera-realizace-card__title,
  .alumera-realizace-card h5 {
    font-size: 0.86rem !important;
  }

  html body #main .alumera-realizace-card__desc,
  html body .alumera-realizace-card__desc,
  .alumera-realizace-card p {
    font-size: 0.70rem !important;
  }
}

/* ==========================================================================
16. KARTY PRO VŠECHNY RUBRIKY (VÝROBA, PRODUKTY, REFERENCE, BLOG)
========================================================================== */

/* --------------------------------------------------------------------------
A. MŘÍŽKA KARET (GRID)
-------------------------------------------------------------------------- */

html body .container--articles .row,
html body #main .container--articles .row {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 28px !important;
  margin-top: 15px !important;
  margin-bottom: 40px !important;
}

/* Sloupec / obal položky */
html body .container--articles .article-item-wrapper,
html body .container--articles [class*="col-"],
html body .container--articles .col {
  flex: 1 1 300px !important;
  max-width: 380px !important;
  display: flex !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* --------------------------------------------------------------------------
B. BÍLÉ TĚLO KARTY (PŘESNĚ 1:1 JAKO NA ÚVODU)
-------------------------------------------------------------------------- */

html body .container--articles .article-item,
html body article.article-item {
  flex: 1 1 300px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  padding: 18px 18px 30px 18px !important;
  margin: 0 !important;

  background-color: #ffffff !important;
  border: 1px solid rgba(26, 29, 32, 0.09) !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05) !important;

  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Identický hover efekt na celou kartu */
html body .container--articles .article-item:hover,
html body .container--articles .article-item-wrapper:hover .article-item {
  border-color: #0d5ca8 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(13, 92, 168, 0.12) !important;
}

/* --------------------------------------------------------------------------
C. FOTOGRAFIE V KARTĚ (1:1 VÝŠKA 250PX A HOVER ZOOM)
-------------------------------------------------------------------------- */

/* Obaly fotografie v inPage */
html body .container--articles .article-item__thumbnail,
html body .container--articles .article-item__img-wrapper,
html body article.article-item .article-item__thumbnail,
html body article.article-item .article-item__img-wrapper {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 250px !important;
  min-height: 240px !important;
  max-height: 250px !important;
  padding: 0 !important;
  margin: 0 0 22px 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background-color: #f4f5f7 !important;
  transform: translateZ(0) !important;
}

/* Samotný obrázek */
html body .container--articles .article-item__img,
html body article.article-item .article-item__img,
html body img.article-item__img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
  transform: scale(1) !important;
  transition: transform 0.35s ease !important;
}

/* Plynulé přiblížení fotky při hoveru */
html body .container--articles .article-item:hover .article-item__img,
html body .container--articles .article-item-wrapper:hover .article-item__img {
  transform: scale(1.03) !important;
}

/* --------------------------------------------------------------------------
D. TYPOGRAFIE TITULKŮ A TEXTŮ
-------------------------------------------------------------------------- */

html body .container--articles .article-item__title,
html body .container--articles .article-item__title h2,
html body .container--articles .article-item__title h3,
html body article.article-item h2.article-item__title,
html body article.article-item h3.article-item__title {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #1a1d20 !important;
  letter-spacing: -0.3px !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  text-align: center !important;
  line-height: 1.3 !important;
}

html body .container--articles .article-item__title a,
html body article.article-item .article-item__title a {
  color: #1a1d20 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

html body .container--articles .article-item:hover .article-item__title a {
  color: #0d5ca8 !important;
}

/* Popisný perex / text */
html body .container--articles .article-item p,
html body .container--articles .article-item__perex {
  color: #6b7280 !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  padding: 0 10px !important;
  margin: 0 0 24px 0 !important;
  text-align: center !important;
}

/* --------------------------------------------------------------------------
E. DETAIL OTEVŘENÉHO ČLÁNKU / PRODUKTU (1:1 PRO VŠECH 6 PRODUKTŮ)
-------------------------------------------------------------------------- */

/* 1. Hlavní kontejner článku */
html body article.container--article,
html body .container--article,
html body #main .article-detail {
  max-width: 1200px !important;
  width: calc(100% - 30px) !important;
  margin: 20px auto 60px auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

/* 2. Zrušení všech šedých rámečků a bílých karet v detailu */
html body .container--article .section-content,
html body .container--article .section-container,
html body .container--article .card,
html body .container--article .feature-box,
html body .container--article .service-box,
html body #main article.container--article .section-content,
html body #main article.container--article .card,
html body #main .article-detail .section-content {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 25px !important;
}

/* 3. 2sloupcové rozvržení spodního bloku (Text vlevo, Fotka vpravo) */
html body .container--article .section-container:has(img),
html body .container--article .section-content:has(img),
html body .container--article .article-content > div:has(img),
html body .container--article [class*="section-2-col"],
html body .container--article .row:has(img) {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 36px !important;
  margin-top: 30px !important;
  margin-bottom: 40px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* 4. Textová část vlevo */
html body .container--article .section-container:has(img) > *:not(img):not(.section-media):not(:has(img)),
html body .container--article .section-content:has(img) > *:not(img):not(.section-media):not(:has(img)),
html body .container--article [class*="section-2-col"] .section-content,
html body .container--article .row:has(img) > [class*="col-"]:not(:has(img)) {
  flex: 1 1 340px !important;
  min-width: 280px !important;
  text-align: left !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* 5. Fotografie vpravo (zaoblení 16px, jemný stín, poměr 16:10) */
html body .container--article img,
html body .container--article .section-container img,
html body .container--article .section-content img,
html body .container--article [class*="section-2-col"] img {
  position: static !important;
  flex: 1 1 380px !important;
  max-width: 480px !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(26, 29, 32, 0.06) !important;
  margin: 0 !important;
  display: block !important;
  transform: none !important;
}

/* 6. Tlačítko v detailu (např. KATALOG KE STAŽENÍ) */
html body .container--article a.btn,
html body .container--article .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 18px !important;
}

/* 7. Mobilní zobrazení */
@media (max-width: 768px) {
  html body .container--article .section-container:has(img),
  html body .container--article .section-content:has(img),
  html body .container--article [class*="section-2-col"],
  html body .container--article .row:has(img) {
    flex-direction: column !important;
    gap: 20px !important;
  }
}

/* ==========================================================================
17. STRÁNKA VYHLEDÁVÁNÍ (HLAVNÍ TĚLO)
========================================================================== */

html body #main #search, html body #main .search-form,
html body #main form[action*="vyhledavani"], html body #main form[action*="search"] {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  max-width: 850px !important;
  margin: 30px auto 40px auto !important;
  padding: 0 !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body #main #search input[type="text"], html body #main .search-form input[type="text"],
html body #main form[action*="vyhledavani"] input[type="text"], html body #main form[action*="search"] input[type="text"] {
  flex: 1 1 260px !important;
  height: 48px !important;
  padding: 10px 22px !important;
  background-color: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 50px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  color: #1a1d20 !important;
  box-sizing: border-box !important;
  transition: all 0.25s ease !important;
}

/* Tlačítka a hover uvnitř formulářů (odvozeno od global button formátování) */
html body #main form input[type="submit"], html body #main form button[type="submit"],
html body #main .search-form input[type="submit"], html body #main .search-form button[type="submit"],
html body #main #search input[type="submit"], html body #main #search button[type="submit"],
html body form[action*="vyhledavani"] input[type="submit"], html body form[action*="vyhledavani"] button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 46px !important;
  padding: 0 32px !important;
  margin: 0 !important;
  color: #ffffff !important;
  background-color: #1a1d20 !important;
  border: 1.5px solid #1a1d20 !important;
  border-radius: 50px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.25s ease !important;
}

html body #main form input[type="submit"]:hover, html body #main form button[type="submit"]:hover,
html body form[action*="vyhledavani"] input[type="submit"]:hover {
  background-color: var(--alumera-blue) !important;
  border-color: var(--alumera-blue) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(13, 92, 168, 0.25) !important;
}

html body #main form input[type="submit"] *, html body #main form button[type="submit"] *,
html body form[action*="vyhledavani"] input[type="submit"] *, html body form[action*="vyhledavani"] button[type="submit"] * {
  color: #ffffff !important;
}

/* Checkboxy ve vyhledávání */
html body #main #search label, html body #main .search-form label, html body #main form[action*="vyhledavani"] label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin: 0 8px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: #4a4d50 !important;
  cursor: pointer !important;
}

html body #main #search input[type="checkbox"], html body #main .search-form input[type="checkbox"], html body #main form[action*="vyhledavani"] input[type="checkbox"] {
  accent-color: var(--alumera-blue) !important;
  width: 16px !important;
  height: 16px !important;
  cursor: pointer !important;
}

/* Vyhledávací taby */
html body #main .search-tabs, html body #main .nav-tabs, html body #main ul.tabs {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  border-bottom: 2px solid #eaedf0 !important;
  padding: 0 0 14px 0 !important;
  margin-top: 25px !important;
  margin-bottom: 30px !important;
  list-style: none !important;
}

html body #main .search-tabs li, html body #main .nav-tabs li, html body #main ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
}

html body #main .search-tabs a, html body #main .nav-tabs a, html body #main ul.tabs a {
  display: inline-block !important;
  padding: 8px 20px !important;
  color: #666666 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  background-color: #f4f5f7 !important;
  transition: all 0.2s ease !important;
}

html body #main .search-tabs a:hover, html body #main .nav-tabs a:hover, html body #main ul.tabs a:hover {
  background-color: #eaedf0 !important;
  color: #1a1d20 !important;
}

html body #main .search-tabs .active a, html body #main .nav-tabs .active a,
html body #main .search-tabs a.active, html body #main .nav-tabs a.active {
  background-color: #1a1d20 !important;
  color: #ffffff !important;
}

/* ==========================================================================
18. UNIFIKOVANÉ KARTY S OBÍHAJÍCÍ VLNOU (ÚVOD, PRODUKTY, VÝROBA, BLOG)
========================================================================== */

/* 1. Animace obíhajícího světelného paprsku */
@keyframes alumeraBorderWave {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 2. Sjednocená 3sloupcová mřížka (Desktop) */
html body #main .section-3-col-bottom-text .row,
html body #main .section-3-col-bottom-text .section-cell-parent,
html body #main .section-3-col-top-text .row,
html body #main .section-3-col-top-text .section-cell-parent,
html body #main .section-columns-3 > .row,
html body #main .section-columns-3,
html body .container--articles .row,
html body #main .container--articles .row,
html body #main .article-list.row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 25px auto 45px auto !important;
  padding: 0 15px !important;
  list-style: none !important;
  box-sizing: border-box !important;
  height: auto !important;
}

/* Sloupce uvnitř mřížky */
html body .container--articles .article-item-wrapper,
html body .container--articles [class*="col-"],
html body .container--articles .col,
html body #main .section-3-col-bottom-text .section-cell-item,
html body #main .section-3-col-bottom-text .col,
html body #main .section-3-col-top-text .section-cell-item,
html body #main .section-3-col-top-text .col,
html body #main .section-3-col-top-text .blog-slot,
html body #main .section-columns-3 > div {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

/* 3. Tělo karty – 1:1 identický vzhled pro všechny rubriky i úvod */
html body #main .section-3-col-bottom-text .section-cell-item,
html body #main .section-3-col-bottom-text .col,
html body #main .section-3-col-bottom-text [class*="col-"],
html body #main .section-3-col-top-text .section-cell-item,
html body #main .section-3-col-top-text [class*="col-"],
html body #main .section-3-col-top-text .blog-slot,
html body #main .section-columns-3 > div,
html body #main .service-box,
html body #main .feature-box,
html body .container--articles .article-item,
html body .container--articles article,
html body article.article-item,
html body .article-item,
html body .product-item,
html body .category-item {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  height: 100% !important;
  min-height: auto !important;
  max-height: none !important;
  padding: 20px 20px 28px 20px !important;
  margin: 0 !important;
  background-color: #ffffff !important;
  border: 1.5px solid rgba(26, 29, 32, 0.09) !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

/* 4. Rotující světelný paprsek (Border Beam) na desktopu */
@media (min-width: 769px) {
  html body #main .section-3-col-bottom-text .section-cell-item::before,
  html body #main .section-3-col-bottom-text .col::before,
  html body #main .section-3-col-bottom-text [class*="col-"]::before,
  html body #main .section-3-col-top-text .section-cell-item::before,
  html body #main .section-3-col-top-text .blog-slot::before,
  html body #main .section-columns-3 > div::before,
  html body #main .service-box::before,
  html body #main .feature-box::before,
  html body .container--articles .article-item::before,
  html body .container--articles article::before,
  html body article.article-item::before,
  html body .article-item::before,
  html body .product-item::before,
  html body .category-item::before {
    content: "" !important;
    position: absolute !important;
    top: -65% !important;
    left: -65% !important;
    width: 230% !important;
    height: 230% !important;
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      transparent 260deg,
      rgba(13, 92, 168, 0.25) 300deg,
      #0d5ca8 340deg,
      #4facfe 360deg
    ) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    animation: alumeraBorderWave 2.8s linear infinite !important;
    transition: opacity 0.35s ease !important;
  }

  /* 5. Vnitřní bílá maska */
  html body #main .section-3-col-bottom-text .section-cell-item::after,
  html body #main .section-3-col-bottom-text .col::after,
  html body #main .section-3-col-bottom-text [class*="col-"]::after,
  html body #main .section-3-col-top-text .section-cell-item::after,
  html body #main .section-3-col-top-text .blog-slot::after,
  html body #main .section-columns-3 > div::after,
  html body #main .service-box::after,
  html body #main .feature-box::after,
  html body .container--articles .article-item::after,
  html body .container--articles article::after,
  html body article.article-item::after,
  html body .article-item::after,
  html body .product-item::after,
  html body .category-item::after {
    content: "" !important;
    position: absolute !important;
    inset: 1.5px !important;
    background-color: #ffffff !important;
    border-radius: 16.5px !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  /* Aktivace paprsku při najetí myší */
  html body #main .section-3-col-bottom-text .section-cell-item:hover::before,
  html body #main .section-3-col-bottom-text .col:hover::before,
  html body #main .section-3-col-top-text .section-cell-item:hover::before,
  html body #main .section-3-col-top-text .blog-slot:hover::before,
  html body #main .section-columns-3 > div:hover::before,
  html body #main .service-box:hover::before,
  html body #main .feature-box:hover::before,
  html body .container--articles .article-item:hover::before,
  html body .container--articles .article-item-wrapper:hover .article-item::before,
  html body article.article-item:hover::before,
  html body .article-item:hover::before,
  html body .product-item:hover::before,
  html body .category-item:hover::before {
    opacity: 1 !important;
  }
}

/* 6. Obsah karty nad vlnou */
html body #main .section-3-col-bottom-text .section-cell-item > *,
html body #main .section-3-col-bottom-text .col > *,
html body #main .section-3-col-top-text .section-cell-item > *,
html body #main .section-3-col-top-text .blog-slot > *,
html body #main .section-columns-3 > div > *,
html body #main .service-box > *,
html body #main .feature-box > *,
html body .container--articles .article-item > *,
html body article.article-item > *,
html body .article-item > *,
html body .product-item > *,
html body .category-item > * {
  position: relative !important;
  z-index: 3 !important;
}

/* 7. Hover efekt karet */
html body #main .section-3-col-bottom-text .section-cell-item:hover,
html body #main .section-3-col-bottom-text .col:hover,
html body #main .section-3-col-top-text .section-cell-item:hover,
html body #main .section-3-col-top-text .blog-slot:hover,
html body #main .section-columns-3 > div:hover,
html body #main .service-box:hover,
html body #main .feature-box:hover,
html body .container--articles .article-item:hover,
html body .container--articles .article-item-wrapper:hover .article-item,
html body article.article-item:hover,
html body .article-item:hover,
html body .product-item:hover,
html body .category-item:hover {
  border-color: rgba(13, 92, 168, 0.4) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(13, 92, 168, 0.14) !important;
}

/* 8. Fotografie v kartách (jednotná výška, ořez i hover zoom) */
html body .container--articles .article-item__thumbnail,
html body .container--articles .article-item__img-wrapper,
html body article.article-item .article-item__thumbnail,
html body .article-item .article-item__thumbnail,
html body .product-item__thumbnail,
html body .category-item__thumbnail,
html body #main .section-3-col-bottom-text .section-cell-item img,
html body #main .section-3-col-bottom-text img,
html body #main .section-3-col-top-text img,
html body #main .section-columns-3 img {
  width: 100% !important;
  max-width: 100% !important;
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
  margin: 0 0 16px 0 !important;
  transform: scale(1) !important;
  transition: transform 0.35s ease !important;
}

html body .container--articles .article-item__img,
html body article.article-item .article-item__img,
html body .article-item img,
html body .product-item img,
html body .category-item img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
  margin: 0 !important;
}

html body #main .section-3-col-bottom-text .section-cell-item:hover img,
html body #main .section-3-col-bottom-text .col:hover img,
html body .container--articles .article-item:hover img,
html body .article-item:hover img,
html body .product-item:hover img,
html body .category-item:hover img {
  transform: scale(1.03) !important;
}

/* 9. Nadpisy a texty */
html body #main .section-3-col-bottom-text h2,
html body #main .section-3-col-bottom-text h3,
html body #main .section-3-col-top-text h2,
html body #main .section-3-col-top-text h3,
html body #main .section-columns-3 h2,
html body #main .section-columns-3 h3,
html body .container--articles .article-item__title,
html body .container--articles .article-item__title h2,
html body .container--articles .article-item__title h3,
html body article.article-item h2.article-item__title,
html body article.article-item h3.article-item__title,
html body .article-item h2,
html body .article-item h3,
html body .product-item h2,
html body .category-item h2 {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1.30rem !important;
  font-weight: 800 !important;
  color: #1a1d20 !important;
  letter-spacing: -0.3px !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  text-align: center !important;
  line-height: 1.3 !important;
}

html body .container--articles .article-item__title a,
html body article.article-item .article-item__title a,
html body .article-item a,
html body .product-item a,
html body .category-item a,
html body #main .section-3-col-bottom-text h3 a {
  color: #1a1d20 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

html body .container--articles .article-item:hover .article-item__title a,
html body .article-item:hover a,
html body .product-item:hover a,
html body .category-item:hover a,
html body #main .section-3-col-bottom-text .section-cell-item:hover h3 a {
  color: #0d5ca8 !important;
}

html body #main .section-3-col-bottom-text p,
html body #main .section-3-col-top-text p,
html body #main .section-columns-3 p,
html body .container--articles .article-item p,
html body .container--articles .article-item__perex,
html body article.article-item p,
html body .article-item p {
  color: #6b7280 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  padding: 0 6px !important;
  margin: 0 0 18px 0 !important;
  text-align: center !important;
}

/* 10. Tlačítka – posunutí na dno karty */
html body #main .section-3-col-bottom-text .section-cell-item > p:last-of-type,
html body #main .section-3-col-bottom-text .col > p:last-of-type,
html body #main .section-3-col-top-text .section-cell-item > p:last-of-type,
html body #main .section-3-col-top-text .blog-slot > p:last-of-type,
html body .container--articles .article-item > p:last-of-type,
html body .article-item > p:last-of-type {
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

html body #main .section-3-col-bottom-text .btn,
html body #main .section-3-col-top-text .btn,
html body #main .section-columns-3 .btn,
html body .container--articles .article-item .btn,
html body article.article-item .btn,
html body .article-item .btn {
  display: inline-flex !important;
  margin-top: auto !important;
  padding: 10px 32px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 11. Ochrana harmoniky (FAQ) a služeb */
html body #main .section-accordion,
html body #main .section-accordion .row,
html body #main .section-accordion .accordion {
  display: block !important;
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

html body #main .section-accordion .accordion-item {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid #eaedf0 !important;
  border-radius: 12px !important;
  margin-bottom: 12px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

html body #main .section-accordion .accordion-item::before,
html body #main .section-accordion .accordion-item::after {
  content: none !important;
  display: none !important;
}

html body #main .section-services {
  display: block !important;
  text-align: center !important;
  margin: 40px auto !important;
}

html body #main .section-services ul {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  max-width: 900px !important;
  margin: 20px auto !important;
}

html body #main .section-services li {
  display: inline-flex !important;
  padding: 8px 20px !important;
  background: #f4f5f7 !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}

html body #main .section-services li::before,
html body #main .section-services li::after {
  content: none !important;
  display: none !important;
}

/* ==========================================================================
19. ANIMOVANÝ PÁS PARTNERŮ / LOG (INFINITE MARQUEE A LA LEDO)
========================================================================== */

/* Plynulý nekonečný posun */
@keyframes alumeraMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hlavní kontejner pásu – ohraničení, rozměry a maska do ztracena */
.alumera-marquee {
  position: relative !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 30px auto 45px auto !important;
  padding: 24px 0 !important;
  overflow: hidden !important;
  background: transparent !important;
  box-sizing: border-box !important;

  /* Jemný přechod do ztracena na levém i pravém okraji */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%) !important;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, transparent 100%) !important;
}

/* Pohyblivý pás */
.alumera-marquee__track {
  display: flex !important;
  align-items: center !important;
  width: max-content !important;
  gap: 60px !important;
  animation: alumeraMarqueeScroll 28s linear infinite !important;
  will-change: transform !important;
}

/* Pozastavení posunu při najetí myší */
.alumera-marquee:hover .alumera-marquee__track {
  animation-play-state: paused !important;
}

/* Jednotlivé položky / loga v pásu */
.alumera-marquee__item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  padding: 0 10px !important;
  opacity: 0.45 !important;
  filter: grayscale(100%) !important;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease !important;
  cursor: pointer !important;
}

/* Zvýraznění konkrétního loga při najetí myší */
.alumera-marquee__item:hover {
  opacity: 1 !important;
  filter: grayscale(0%) !important;
  transform: translateY(-2px) !important;
}

/* Typografické zpracování log */
.alumera-marquee__item span {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #1a1d20 !important;
  white-space: nowrap !important;
  user-select: none !important;
}

/* Podpora pro obrázková / SVG loga (pokud je v budoucnu nahradíš za <img>) */
.alumera-marquee__item img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Mobilní responzivita */
@media (max-width: 768px) {
  .alumera-marquee {
    margin: 20px auto 35px auto !important;
    padding: 16px 0 !important;
  }
  .alumera-marquee__track {
    gap: 40px !important;
    animation-duration: 20s !important;
  }
  .alumera-marquee__item span {
    font-size: 1.15rem !important;
    letter-spacing: 1.5px !important;
  }
}

/* ==========================================================================
20. ČÍSELNÉ POČÍTADLO / STATS BAR (EXTRA ŠIROKÝ ZAOKROUHLENÝ BOX)
========================================================================== */

/* 1. Extra široký tmavý box přesně podle nákresu */
.alumera-stats {
  position: relative !important;
  display: block !important;
  width: calc(100vw - 60px) !important; /* Ponechává jen 30px odsazení od krajů monitoru */
  max-width: 1700px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-top: 60px !important;
  margin-bottom: 60px !important;
  padding: 48px 50px !important;

  background-color: #1a1d20 !important;
  background-image: none !important;

  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18) !important;
  box-sizing: border-box !important;
  z-index: 2 !important;
}

/* 2. Mřížka se 4 sloupci roztažená do plné šířky rozšířeného boxu */
.alumera-stats__container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* 3. Jednotlivá položka s číslem */
.alumera-stats__item {
  flex: 1 1 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 20px !important;
  position: relative !important;
  transition: transform 0.3s ease !important;
}

/* Decentní oddělovací linky mezi sloupci */
.alumera-stats__item:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 1px !important;
  height: 52px !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.alumera-stats__item:hover {
  transform: translateY(-3px) !important;
}

/* 4. Čísla s příponou (+ / %) v Cabinet Grotesk */
.alumera-stats__number-wrap {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.8px !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
  text-shadow: none !important;
}

.alumera-stats__number {
  font-variant-numeric: tabular-nums !important;
  color: #ffffff !important;
}

.alumera-stats__suffix {
  font-size: 0.85em !important;
  margin-left: 2px !important;
  color: #0d5ca8 !important; /* Modrý akcent Alumera */
}

/* 5. Popisek pod číslem */
.alumera-stats__label {
  display: block !important;
  color: #d1d5db !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
}

/* 6. Tabletová responzivita (2x2) */
@media (max-width: 991px) {
  .alumera-stats {
    width: calc(100% - 30px) !important;
    padding: 40px 24px !important;
  }

  .alumera-stats__container {
    flex-wrap: wrap !important;
    row-gap: 32px !important;
  }

  .alumera-stats__item {
    flex: 1 1 calc(50% - 10px) !important;
    padding: 0 10px !important;
  }

  .alumera-stats__item:nth-child(2)::after {
    display: none !important;
  }
}

/* 7. Mobilní responzivita (1 sloupec) */
@media (max-width: 576px) {
  .alumera-stats {
    padding: 36px 16px !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .alumera-stats__container {
    flex-direction: column !important;
    row-gap: 26px !important;
  }

  .alumera-stats__item {
    width: 100% !important;
  }

  .alumera-stats__item::after {
    display: none !important;
  }
}

/* ==========================================================================
21. BÍLÁ MINIMALISTICKÁ ART LIŠTA DKFG (STRIKTNĚ BEZ PODTRŽENÍ)
========================================================================== */

/* 1. Full-width pás přes celou šířku obrazovky */
html body .alumera-subfooter,
html body #footer .alumera-subfooter,
html body footer .alumera-subfooter,
html body #footer .section-contact .alumera-subfooter {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 22px 20px !important;
  box-sizing: border-box !important;
  background-color: #ffffff !important;
  border-top: 1px solid #edf2f7 !important;
  overflow: hidden !important;
  z-index: 20 !important;
}

/* 2. SVG grafika linek */
.alumera-subfooter__art-svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100vw !important;
  min-width: 100vw !important;
  height: 95px !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* 3. Tlačítko / odznak DKFG – výchozí stav */
html body #footer .alumera-subfooter__badge,
html body .alumera-subfooter__badge {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 9px 24px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1.5px solid #181a1d !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
  z-index: 10 !important;
  transform: translate3d(0, 0, 0) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease !important;
}

/* 4. Efekt přeletu světla při hoveru */
.alumera-subfooter__badge::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -130% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(13, 92, 168, 0.12), rgba(255, 255, 255, 0.8), transparent) !important;
  transform: skewX(-20deg) !important;
  pointer-events: none !important;
  transition: left 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html body #footer .alumera-subfooter__badge:hover::before {
  left: 170% !important;
}

/* 5. Geometrický bod */
.alumera-subfooter__geo-icon {
  position: relative !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #e76f51 50%, #2a9d8f 50%) !important;
  box-shadow: 0 0 0 2px rgba(24, 26, 29, 0.08) !important;
  display: inline-block !important;
  transform: rotate(0deg) scale(1) !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}

html body #footer .alumera-subfooter__badge:hover .alumera-subfooter__geo-icon {
  transform: rotate(180deg) scale(1.25) !important;
  box-shadow: 0 0 0 3px rgba(13, 92, 168, 0.15) !important;
}

/* 6. Texty uvnitř odznaku – TRVALE VIDITELNÉ & BEZ PODTRŽENÍ */
html body #footer .alumera-subfooter__caption,
html body .alumera-subfooter__caption {
  color: #475569 !important;
  font-family: 'Space Grotesk', -apple-system, sans-serif !important;
  font-size: 0.70rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  transition: color 0.3s ease !important;
}

html body #footer strong.alumera-subfooter__brand,
html body #footer .alumera-subfooter__brand,
html body .alumera-subfooter__brand {
  color: #0f172a !important;
  font-family: 'Space Grotesk', -apple-system, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  transition: color 0.3s ease !important;
}

html body #footer .alumera-subfooter__arrow,
html body .alumera-subfooter__arrow {
  color: #0f172a !important;
  font-family: 'Space Grotesk', -apple-system, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease !important;
}

/* 7. Hover stavy odznaku – VYNUCENÍ ŽÁDNÉHO PODTRŽENÍ (Ctrl+U) */
html body #footer .alumera-subfooter__badge,
html body #footer .alumera-subfooter__badge:hover,
html body #footer .alumera-subfooter__badge:focus,
html body #footer .alumera-subfooter__badge:active,
html body #footer .alumera-subfooter__badge *,
html body #footer .alumera-subfooter__badge:hover *,
html body #footer .alumera-subfooter__badge:focus *,
html body #footer .alumera-subfooter__badge:active * {
  text-decoration: none !important;
  outline: none !important;
}

html body #footer .alumera-subfooter__badge:hover,
html body .alumera-subfooter__badge:hover {
  transform: translate3d(0, -3px, 0) scale(1.018) !important;
  border-color: #0d5ca8 !important;
  box-shadow: 0 12px 32px -4px rgba(13, 92, 168, 0.22), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

html body #footer .alumera-subfooter__badge:hover .alumera-subfooter__caption {
  color: #1e293b !important;
}

html body #footer .alumera-subfooter__badge:hover .alumera-subfooter__brand,
html body #footer .alumera-subfooter__badge:hover strong.alumera-subfooter__brand {
  color: #0d5ca8 !important;
}

html body #footer .alumera-subfooter__badge:hover .alumera-subfooter__arrow {
  transform: translate3d(4px, -4px, 0) scale(1.15) !important;
  color: #0d5ca8 !important;
}


/* ==========================================================================
22. UNIFIKOVANÁ TMAVÁ PATIČKA REALHOMES (STRIKTNĚ BEZ PODTRŽENÍ)
========================================================================== */

/* 1. Reset systémových obalů patičky */
html body #footer,
html body .footer,
html body #footer .section-contact,
html body .section-contact.alumera-realhomes-footer {
  background-color: transparent !important;
  border: 0 !important;
  position: relative !important;
  z-index: 10 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* 2. Diagonální šikmý přechod */
.alumera-footer-angle {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  height: 60px !important;
  margin-bottom: -1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.alumera-footer-angle svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

/* 3. Tmavý vnitřní kontejner */
.alumera-footer-wrap {
  background-color: #181a1d !important;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 10px 24px 30px 24px !important;
  box-sizing: border-box !important;
}

/* 4. Horní lišta (Logo + Slogan vlevo, Sociální sítě vpravo) */
.alumera-footer-topbar {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  max-width: 1200px !important;
  margin: 0 auto 35px auto !important;
  padding-bottom: 25px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.alumera-footer-brand {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.alumera-footer-logo {
  max-width: 160px !important;
  height: auto !important;
  display: block !important;
  filter: brightness(0) invert(1) !important;
}

.alumera-footer-sep {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 1.2rem !important;
  font-weight: 300 !important;
}

.alumera-footer-motto {
  color: #cbd5e1 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}

/* Sociální ikony – bez podtržení */
.alumera-footer-social-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.alumera-footer-soc-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.alumera-footer-soc-btn,
.alumera-footer-soc-btn:hover,
.alumera-footer-soc-btn:focus,
.alumera-footer-soc-btn:active {
  text-decoration: none !important;
  outline: none !important;
}

html body #footer .alumera-footer-soc-btn img,
.alumera-footer-soc-btn img {
  width: 16px !important;
  height: 16px !important;
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.alumera-footer-soc-btn:hover {
  background-color: #0d5ca8 !important;
  border-color: #0d5ca8 !important;
  transform: translateY(-2px) !important;
}

/* 5. Třísloupcový grid */
.alumera-footer-columns {
  display: grid !important;
  grid-template-columns: 1fr 1.15fr 1.15fr !important;
  gap: 40px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-bottom: 35px !important;
}

.alumera-footer-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

/* Nadpisy sloupců */
.alumera-footer-columns .alumera-footer-title {
  color: #ffffff !important;
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.alumera-footer-item-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  line-height: 1.6 !important;
}

/* Bílý text uvnitř sloupců */
.alumera-footer-columns .alumera-text-white {
  color: #ffffff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  text-decoration: none !important;
}

/* Světle šedý text (adresy, popisy) */
.alumera-footer-columns .alumera-text-muted {
  color: #cbd5e1 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
}

/* Štítky (E-MAIL, LINKA, PROVOZNÍ DOBA) */
.alumera-footer-columns .alumera-label {
  color: #94a3b8 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
}

/* Položky řádků kontaktu – striktně bez podtržení */
.alumera-footer-columns a.alumera-footer-link-row,
.alumera-footer-columns a.alumera-footer-link-row:hover,
.alumera-footer-columns a.alumera-footer-link-row:focus,
.alumera-footer-columns a.alumera-footer-link-row:active,
.alumera-footer-columns a.alumera-footer-link-row *,
.alumera-footer-columns a.alumera-footer-link-row:hover * {
  text-decoration: none !important;
  outline: none !important;
}

.alumera-footer-columns a.alumera-footer-link-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: transform 0.2s ease !important;
}

.alumera-footer-columns a.alumera-footer-link-row:hover .alumera-text-white {
  color: #38bdf8 !important;
}

/* Odkaz Zobrazit na mapě */
.alumera-footer-columns a.alumera-footer-map-btn {
  display: inline-flex !important;
  align-items: center !important;
  margin-top: 4px !important;
  color: #38bdf8 !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.alumera-footer-columns a.alumera-footer-map-btn:hover {
  color: #ffffff !important;
  transform: translateX(3px) !important;
  text-decoration: underline !important;
}

.alumera-footer-hours-box {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin-top: 4px !important;
}

/* 6. CTA blok ve 3. sloupci */
.alumera-footer-cta-col {
  padding-left: 10px !important;
}

.alumera-footer-columns p.alumera-footer-cta-p {
  color: #cbd5e1 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Tlačítko OZVĚTE SE NÁM – ABSOLUTNÍ ZÁKAZ PODTRŽENÍ */
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn,
html body .alumera-footer-columns a.alumera-footer-cta-action-btn,
.alumera-footer-cta-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  padding: 13px 34px !important;
  margin-top: 8px !important;
  background-color: #ffffff !important;
  color: #181a1d !important;
  border: 2px solid #ffffff !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25) !important;
  text-decoration: none !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn,
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:hover,
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:focus,
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:active,
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn *,
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:hover *,
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:focus *,
html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:active * {
  text-decoration: none !important;
  outline: none !important;
}

html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn * {
  color: #181a1d !important;
}

html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:hover {
  background-color: #0d5ca8 !important;
  border-color: #0d5ca8 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

html body #footer .alumera-footer-columns a.alumera-footer-cta-action-btn:hover * {
  color: #ffffff !important;
}

/* 7. Spodní Copyright */
.alumera-footer-bottom-copy {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
}

.alumera-footer-bottom-copy span {
  color: #94a3b8 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
}

.alumera-footer-bottom-copy strong {
  color: #cbd5e1 !important;
}

/* 8. Responzivita */
@media (max-width: 900px) {
  .alumera-footer-columns {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 600px) {
  .alumera-footer-topbar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .alumera-footer-columns {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }
}

/* ==========================================================================
FIX: DOTAŽENÍ PATIČKY NA ÚPLNÉ DNO STRÁNKY BEZ SPODNÍ MEZERY
========================================================================== */

/* 1. Nulování spodních systémových mezer všech obalů patičky */
html body #footer,
html body .footer,
html body #footer .section-container,
html body #footer .section-contact {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* 2. Skrytí výhradně prázdných odstavců generovaných systémem */
html body #footer > p:empty,
html body #footer p:empty,
html body #footer .section-contact + p:empty {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 3. Nulování spodního okraje u DKFG lišty */
html body .alumera-subfooter {
  margin-bottom: 0 !important;
}

/* ==========================================================================
23. GLOBÁLNÍ SMOOTH FYZIKA, KURZOR & MAGNETICKÁ TLAČÍTKA
========================================================================== */

/* Globální plynulý scroll a exponenciální easing pro všechny prvky webu */
html {
  scroll-behavior: smooth !important;
}

a,
button,
.btn,
.alumera-realizace-card,
.alumera-subfooter__badge,
.alumera-social-btn {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Zobrazení prémiového kurzoru pouze na zařízeních s myší */
@media (hover: hover) and (pointer: fine) {
  /* Vnější plynulý prstenec */
  .alumera-cursor-follower {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(13, 92, 168, 0.4) !important;
    background: rgba(13, 92, 168, 0.05) !important;
    pointer-events: none !important;
    z-index: 999999 !important;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%) !important;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      background-color 0.35s ease,
      border-color 0.35s ease,
      opacity 0.3s ease !important;
    will-change: transform !important;
  }

  /* Vnitřní přesný bod */
  .alumera-cursor-dot {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: #0d5ca8 !important;
    pointer-events: none !important;
    z-index: 1000000 !important;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%) !important;
    will-change: transform !important;
    transition: opacity 0.2s ease !important;
  }

  /* Reakce kurzoru při najetí na klikatelný prvek */
  .alumera-cursor-follower.is-hovered {
    width: 60px !important;
    height: 60px !important;
    background: rgba(13, 92, 168, 0.12) !important;
    border-color: #0d5ca8 !important;
  }

  /* Skrytí kurzoru při opuštění okna prohlížeče */
  .alumera-cursor--hidden {
    opacity: 0 !important;
  }
}

/* ==========================================================================
24. HERO CTA TLAČÍTKO V BANNERU ("SPOČÍTEJTE MI CENU!")
========================================================================== */

.alumera-hero-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin: 28px auto 0 auto !important;
  padding: 8px 10px 8px 26px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 60px !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 10 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    background-color 0.25s ease !important;
  animation: alumeraHeroTextSlide 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both !important;
}

.alumera-hero-cta__text {
  color: #1a1d20 !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  transition: color 0.25s ease !important;
}

.alumera-hero-cta__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background-color: #1a1d20 !important;
  color: #ffffff !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.25s ease !important;
}

.alumera-hero-cta__icon svg {
  width: 15px !important;
  height: 15px !important;
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 2.4 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.alumera-hero-cta::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -120% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent) !important;
  transform: skewX(-25deg) !important;
  transition: all 0.75s ease !important;
  pointer-events: none !important;
}

.alumera-hero-cta:hover {
  background-color: #ffffff !important;
  border-color: #0d5ca8 !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 16px 40px rgba(13, 92, 168, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.alumera-hero-cta:hover::before {
  left: 150% !important;
}

.alumera-hero-cta:hover .alumera-hero-cta__text {
  color: #0d5ca8 !important;
}

.alumera-hero-cta:hover .alumera-hero-cta__icon {
  background-color: #0d5ca8 !important;
  transform: scale(1.06) !important;
}

.alumera-hero-cta:hover .alumera-hero-cta__icon svg {
  transform: translate(2px, -2px) !important;
}

/* ==========================================================================
25. PLOVOUCÍ ŠIPKA PRO DALŠÍ KROKOVÁNÍ (ZOBRAZÍ SE AŽ PO ODSCROLLOVÁNÍ)
========================================================================== */

.alumera-floating-scroll-down {
  position: fixed !important;
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(20px) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: rgba(26, 29, 32, 0.88) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  backdrop-filter: blur(10px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  z-index: 99999 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease !important;
}

.alumera-floating-scroll-down svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #ffffff !important;
  stroke-width: 2.6 !important;
  fill: none !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: transform 0.25s ease !important;
}

.alumera-floating-scroll-down.is-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.alumera-floating-scroll-down:hover {
  background-color: #0d5ca8 !important;
  border-color: #0d5ca8 !important;
  transform: translateX(-50%) translateY(-3px) scale(1.06) !important;
  box-shadow: 0 12px 30px rgba(13, 92, 168, 0.35) !important;
}

.alumera-floating-scroll-down:hover svg {
  transform: translateY(2px) !important;
}

/* Zákaz podtrhávání odkazu a textu v odznaku */
.alumera-subfooter__badge,
.alumera-subfooter__badge * {
  text-decoration: none !important;
}

/* Jemné dotažení mezery pod copyrightem bez bourání kontejnerů */
.alumera-subfooter {
  margin-top: 8px !important;
}

/* ==========================================================================
26. NENÁPADNÉ POLOPRŮHLEDNÉ NASTAVENÍ COOKIES (DOKONALÉ VYCENTROVÁNÍ NA STŘED)
========================================================================== */

/* 1. Hlavní kontejner tlačítka – Flexbox na vertikální i horizontální střed */
html body button.cookies-settings-btn,
html body .cookies-settings-btn,
html body ._open-cookie-settings {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  top: auto !important;
  right: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 7px 15px !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1 !important;
  background: rgba(15, 23, 42, 0.4) !important;
  background-color: rgba(15, 23, 42, 0.4) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  box-sizing: border-box !important;
  font-family: "Montserrat", -apple-system, sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  opacity: 0.8 !important;
  z-index: 99999 !important;
  transition: all 0.25s ease !important;
}

/* 2. Vnitřní textový obal – nulování posunů a line-height na střed */
html body .cookies-settings-btn .cookies-settings-btn__icon-label,
html body .cookies-settings-btn span,
html body .cookies-settings-btn * {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
  text-decoration: none !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  transform: none !important;
}

/* 3. Hover stav */
html body button.cookies-settings-btn:hover,
html body .cookies-settings-btn:hover,
html body ._open-cookie-settings:hover {
  opacity: 1 !important;
  background: rgba(24, 26, 29, 0.85) !important;
  background-color: rgba(24, 26, 29, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
  text-decoration: none !important;
}

html body button.cookies-settings-btn:hover *,
html body .cookies-settings-btn:hover * {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* 4. Skrytí zavíracího křížku */
html body .cookies-settings-close {
  display: none !important;
}

/* 5. Dialogové okno #cookies-modal */
html body #cookies-modal .modal-content,
html body .modal#cookies-modal .modal-content {
  background: #181a1d !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5) !important;
  font-family: "Montserrat", -apple-system, sans-serif !important;
  padding: 24px !important;
}

html body #cookies-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 16px !important;
}

html body #cookies-modal .modal-title {
  color: #ffffff !important;
  font-family: "Cabinet Grotesk", "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
}

html body #cookies-modal .modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 16px !important;
}

html body #cookies-modal .btn-primary,
html body #cookies-modal .btn.btn-primary {
  background-color: #0d5ca8 !important;
  border: 1.5px solid #0d5ca8 !important;
  color: #ffffff !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  padding: 9px 22px !important;
}

html body #cookies-modal .btn-primary:hover {
  background-color: #1652f0 !important;
  border-color: #1652f0 !important;
}

html body #cookies-modal .btn-default,
html body #cookies-modal .btn.btn-default {
  background: transparent !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  color: #cbd5e1 !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  padding: 9px 20px !important;
}

html body #cookies-modal .btn-default:hover {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* ==========================================================================
27. PRODUKTOVÁ GALERIE (100% STEJNÁ VÝŠKA A VÝPLŇ PRO OBĚ FOTOGRAFIE)
========================================================================== */

/* Úvodní záhlaví podstránky */
.alumera-prod-header {
  max-width: 920px !important;
  margin: 35px auto 25px auto !important;
  text-align: center !important;
  padding: 0 15px !important;
}

.alumera-prod-title {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: clamp(2.2rem, 3.8vw, 3rem) !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.5px !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.2 !important;
}

.alumera-prod-perex {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  margin: 0 !important;
}

/* 2sloupcový grid galerie */
html body .container--article .alumera-product-gallery,
html body .alumera-product-gallery,
.alumera-product-gallery {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 40px auto 55px auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Karta v galerii – pevná výška a nulový padding pro čistou výplň */
html body .container--article .alumera-product-gallery .alumera-product-card,
html body .alumera-product-gallery .alumera-product-card,
.alumera-product-card {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 380px !important;
  min-height: 380px !important;
  max-height: 380px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.alumera-product-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(13, 92, 168, 0.35) !important;
  box-shadow: 0 16px 36px rgba(13, 92, 168, 0.12) !important;
}

/* Štítek v rohu přes fotografii */
.alumera-product-card__badge {
  position: absolute !important;
  top: 18px !important;
  left: 18px !important;
  background: rgba(24, 26, 29, 0.82) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  font-family: "Space Grotesk", "Montserrat", sans-serif !important;
  font-size: 0.70rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  padding: 5px 14px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

/* 1. Hlavní fotografie – 100% výplň celé karty bez deformace */
html body .container--article .alumera-product-gallery .alumera-product-card img,
html body .alumera-product-gallery .alumera-product-card img,
.alumera-product-card img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: scale(1) !important;
  transition: transform 0.5s ease !important;
}

.alumera-product-card:hover img {
  transform: scale(1.03) !important;
}

/* 2. Varianta pro technický řez (zobrazí se celý s odsazením) */
.alumera-product-card--contain {
  background: #f8fafc !important;
}

html body .container--article .alumera-product-gallery .alumera-product-card--contain img,
html body .alumera-product-gallery .alumera-product-card--contain img,
.alumera-product-card--contain img {
  object-fit: contain !important;
  background: transparent !important;
  padding: 24px !important;
  transform: none !important;
}

.alumera-product-card--contain:hover img {
  transform: none !important;
}

/* Mobilní responzivita */
@media (max-width: 768px) {
  html body .container--article .alumera-product-gallery,
  html body .alumera-product-gallery {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 25px auto 40px auto !important;
  }

  html body .container--article .alumera-product-gallery .alumera-product-card,
  html body .alumera-product-gallery .alumera-product-card {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
  }
}

/* ==========================================================================
28. PARTNERSKÉ PRODUKTOVÉ BOXY (DOKONALÉ VYCENTROVÁNÍ NA STŘED)
========================================================================== */

.alumera-systems-section {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 55px auto 40px auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

.alumera-systems-header {
  text-align: center !important;
  margin-bottom: 35px !important;
}

.alumera-systems-title {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
}

.alumera-systems-subtitle {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  color: #64748b !important;
  margin: 0 !important;
}

/* Flexbox kontejner – automaticky centruje 1, 2 i 3 boxy */
html body .container--article .alumera-systems-grid,
html body .alumera-systems-grid,
.alumera-systems-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 28px !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Karta systému – fixní responzivní šířka */
.alumera-system-card {
  flex: 0 1 360px !important;
  width: 100% !important;
  max-width: 380px !important;
  min-width: 280px !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  box-sizing: border-box !important;
  text-align: left !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.alumera-system-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(13, 92, 168, 0.35) !important;
  box-shadow: 0 16px 36px rgba(13, 92, 168, 0.12) !important;
}

.alumera-system-card--featured {
  border-color: #cbd5e1 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06) !important;
}

/* Obal obrázku a odznak */
.alumera-system-card__img-wrap {
  position: relative !important;
  width: 100% !important;
  height: 230px !important;
  background: #f8fafc !important;
  overflow: hidden !important;
}

html body .container--article .alumera-system-card img,
.alumera-system-card__img-wrap img {
  position: static !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  transition: transform 0.5s ease !important;
}

.alumera-system-card:hover .alumera-system-card__img-wrap img {
  transform: scale(1.04) !important;
}

.alumera-system-card__badge {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  background: rgba(24, 26, 29, 0.82) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  font-family: "Space Grotesk", "Montserrat", sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 5px 12px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  z-index: 5 !important;
}

.alumera-system-card__badge--schuco {
  background: #0d5ca8 !important;
  border-color: #0d5ca8 !important;
}

/* Vnitřní obsah karty */
.alumera-system-card__body {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  padding: 24px !important;
  background: #ffffff !important;
}

.alumera-system-card__title {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1.22rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 10px 0 !important;
}

.alumera-system-card__desc {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  color: #64748b !important;
  margin: 0 0 18px 0 !important;
  min-height: 56px !important;
}

/* Parametry (Specs) */
.alumera-system-card__specs {
  list-style: none !important;
  padding: 12px 0 !important;
  margin: 0 0 22px 0 !important;
  border-top: 1px solid #f1f5f9 !important;
  border-bottom: 1px solid #f1f5f9 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.alumera-system-card__specs li {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.alumera-system-card__specs .spec-label {
  color: #64748b !important;
}

.alumera-system-card__specs strong {
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* Tlačítko Poptat v kartě */
.alumera-system-card__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: auto !important;
  padding: 11px 18px !important;
  background-color: #f8fafc !important;
  color: #0d5ca8 !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.alumera-system-card__btn:hover {
  background-color: #0d5ca8 !important;
  border-color: #0d5ca8 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Spodní CTA blok pro další produkty */
.alumera-prod-bottom-cta {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  max-width: 900px !important;
  margin: 45px auto 10px auto !important;
  padding: 36px 24px !important;
  background: #f8fafc !important;
  border: 1.5px dashed #cbd5e1 !important;
  border-radius: 20px !important;
  box-sizing: border-box !important;
}

.alumera-prod-bottom-cta__text {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #334155 !important;
  margin: 0 0 16px 0 !important;
}

.alumera-prod-bottom-cta__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 32px !important;
  background-color: #181a1d !important;
  color: #ffffff !important;
  border: 1.5px solid #181a1d !important;
  border-radius: 100px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
  text-decoration: none !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  transition: all 0.25s ease !important;
}

.alumera-prod-bottom-cta__btn:hover {
  background-color: #0d5ca8 !important;
  border-color: #0d5ca8 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 26px rgba(13, 92, 168, 0.25) !important;
  text-decoration: none !important;
}

/* Responzivita pro menší obrazovky */
@media (max-width: 640px) {
  .alumera-system-card {
    max-width: 100% !important;
  }
  .alumera-system-card__desc {
    min-height: auto !important;
  }
  .alumera-prod-bottom-cta {
    padding: 26px 16px !important;
  }
  .alumera-prod-bottom-cta__btn {
    width: 100% !important;
    font-size: 0.78rem !important;
    padding: 12px 18px !important;
  }
}

/* ==========================================================================
29. INTELIGENTNÍ POPTÁVKOVÝ MODAL (ROZOSTŘENÉ SKLO & LUXUSNÍ DIALOG)
========================================================================== */

/* 1. Hlavní překryv celé obrazovky */
.alumera-modal {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease !important;
}

.alumera-modal.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* 2. Tmavé rozostřené pozadí za oknem */
.alumera-modal__backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  cursor: pointer !important;
}

/* 3. Vlastní vyskakovací dialogové okno */
.alumera-modal__dialog {
  position: relative !important;
  width: calc(100% - 32px) !important;
  max-width: 620px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 24px !important;
  padding: 40px 36px !important;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35) !important;
  box-sizing: border-box !important;
  transform: scale(0.92) translateY(20px) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 10 !important;
}

.alumera-modal.is-active .alumera-modal__dialog {
  transform: scale(1) translateY(0) !important;
}

/* 4. Zavírací tlačítko (Křížek) */
.alumera-modal__close-btn {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f1f5f9 !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #64748b !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.alumera-modal__close-btn:hover {
  background: #0f172a !important;
  color: #ffffff !important;
  transform: rotate(90deg) !important;
}

/* 5. Záhlaví dialogu */
.alumera-modal__header {
  margin-bottom: 25px !important;
  text-align: left !important;
}

.alumera-modal__badge {
  display: inline-block !important;
  font-family: "Space Grotesk", "Montserrat", sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #0d5ca8 !important;
  background-color: #e0f2fe !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  margin-bottom: 10px !important;
}

.alumera-modal__title {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.4px !important;
  margin: 0 0 6px 0 !important;
}

.alumera-modal__subtitle {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* 6. Zobrazení předvyplněného produktu */
.alumera-selected-product {
  display: flex !important;
  align-items: center !important;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
}

.alumera-selected-product__name {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #0d5ca8 !important;
}

/* 7. Formulářové prvky */
.alumera-modal__form {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  text-align: left !important;
}

.alumera-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.alumera-form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.alumera-form-label {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #334155 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
  margin: 0 !important;
}

.alumera-form-control {
  width: 100% !important;
  padding: 11px 16px !important;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 10px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.9rem !important;
  color: #0f172a !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}

.alumera-form-control:focus {
  border-color: #0d5ca8 !important;
  box-shadow: 0 0 0 4px rgba(13, 92, 168, 0.12) !important;
  outline: none !important;
}

.alumera-form-textarea {
  resize: vertical !important;
  min-height: 75px !important;
}

/* 8. Odesílací tlačítko */
.alumera-modal__submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 14px 28px !important;
  margin-top: 8px !important;
  background: #181a1d !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 12px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
}

.alumera-modal__submit-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #ffffff !important;
  stroke-width: 2.5 !important;
  fill: none !important;
  transition: transform 0.25s ease !important;
}

.alumera-modal__submit-btn:hover {
  background: #0d5ca8 !important;
  box-shadow: 0 12px 30px rgba(13, 92, 168, 0.3) !important;
  transform: translateY(-2px) !important;
}

.alumera-modal__submit-btn:hover svg {
  transform: translateX(4px) !important;
}

/* 9. Potvrzovací obrazovka úspěchu */
.alumera-modal__success {
  text-align: center !important;
  padding: 20px 10px !important;
}

.alumera-modal__success-icon {
  width: 60px !important;
  height: 60px !important;
  background: #e0f2fe !important;
  color: #0d5ca8 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  margin: 0 auto 20px auto !important;
}

/* Responzivita dialogu */
@media (max-width: 640px) {
  .alumera-modal__dialog {
    padding: 30px 20px !important;
  }
  .alumera-form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .alumera-modal__title {
    font-size: 1.35rem !important;
  }
}

/* ==========================================================================
30. REFERENCE: KARTY S VYJÍŽDĚJÍCÍM OBRÁZKEM (PŘIPRAVENO PRO VIZUÁLNÍ EDITOR)
========================================================================== */

html body .container--article .alumera-refs-grid,
html body .alumera-refs-grid,
.alumera-refs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 40px auto 60px auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

.alumera-ref-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 310px !important;
  background-color: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 22px !important;
  padding: 32px 28px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  box-sizing: border-box !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.alumera-ref-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(13, 92, 168, 0.5) !important;
  box-shadow: 0 18px 40px rgba(13, 92, 168, 0.2) !important;
}

.alumera-ref-card__body {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  flex-grow: 1 !important;
  z-index: 10 !important;
  pointer-events: auto !important; /* Umožňuje přímou editaci a výběr textu myší */
}

.alumera-ref-card__quote-mark {
  position: absolute !important;
  top: -15px !important;
  right: -5px !important;
  font-family: "Cabinet Grotesk", Georgia, serif !important;
  font-size: 4.5rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: #f1f5f9 !important;
  user-select: none !important;
  pointer-events: none !important;
  transition: color 0.4s ease, opacity 0.4s ease !important;
}

.alumera-ref-card:hover .alumera-ref-card__quote-mark {
  color: rgba(255, 255, 255, 0.12) !important;
}

.alumera-ref-card__text,
.alumera-ref-card p {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 0 24px 0 !important;
  transition: color 0.35s ease, text-shadow 0.35s ease !important;
}

.alumera-ref-card:hover .alumera-ref-card__text,
.alumera-ref-card:hover p,
.alumera-ref-card:hover em {
  color: #ffffff !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95) !important;
}

.alumera-ref-card__author {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  margin-top: auto !important;
  border-top: 1px solid #f1f5f9 !important;
  padding-top: 16px !important;
  transition: border-color 0.4s ease !important;
}

.alumera-ref-card:hover .alumera-ref-card__author {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.alumera-ref-card__name,
.alumera-ref-card strong {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  transition: color 0.35s ease, text-shadow 0.35s ease !important;
}

.alumera-ref-card:hover .alumera-ref-card__name,
.alumera-ref-card:hover strong {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.alumera-ref-card__company {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  color: #64748b !important;
  font-weight: 600 !important;
  transition: color 0.35s ease, text-shadow 0.35s ease !important;
}

.alumera-ref-card:hover .alumera-ref-card__company {
  color: #38bdf8 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

/* Vyjíždějící zmatněná fotografie */
.alumera-ref-card__media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  transform: translateY(102%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.alumera-ref-card:hover .alumera-ref-card__media {
  transform: translateY(0) !important;
}

html body .container--article .alumera-ref-card__media img,
html body .alumera-ref-card__media img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 20px !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  filter: brightness(0.35) contrast(1.1) saturate(0.7) blur(1px) !important;
  transform: scale(1.08) !important;
  transition: transform 0.8s ease, filter 0.5s ease !important;
}

.alumera-ref-card:hover .alumera-ref-card__media img {
  transform: scale(1) !important;
  filter: brightness(0.32) contrast(1.1) saturate(0.7) blur(1.5px) !important;
}

.alumera-ref-card__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.96) 0%,
    rgba(15, 23, 42, 0.88) 50%,
    rgba(15, 23, 42, 0.82) 100%
  ) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  border-radius: 20px !important;
}

@media (max-width: 992px) {
  html body .container--article .alumera-refs-grid,
  html body .alumera-refs-grid,
  .alumera-refs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  html body .container--article .alumera-refs-grid,
  html body .alumera-refs-grid,
  .alumera-refs-grid {
    grid-template-columns: 1fr !important;
  }
  .alumera-ref-card {
    padding: 26px 20px !important;
    min-height: 270px !important;
  }
}

/* ==========================================================================
31. REDESIGN KONTAKTNÍHO FORMULÁŘE (STRIKTNĚ POUZE UVNITŘ ČLÁNKU)
========================================================================== */

/* 1. Obal formuláře pouze v těle článku */
html body .container--article form:not(.search-form):not([action*="search"]),
html body .container--article form.form-horizontal {
  max-width: 780px !important;
  margin: 45px auto 60px auto !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 42px 38px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  box-sizing: border-box !important;
}

/* 2. Řádky a struktura prvků */
html body .container--article form:not(.search-form) table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}

html body .container--article form:not(.search-form) .form-group,
html body .container--article form:not(.search-form) .form-row,
html body .container--article form:not(.search-form) tr {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-bottom: 22px !important;
  border: 0 !important;
  background: transparent !important;
}

html body .container--article form:not(.search-form) td {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* 3. Názvy polí (Labels) */
html body .container--article form:not(.search-form) label,
html body .container--article form:not(.search-form) .control-label,
html body .container--article form:not(.search-form) td:first-child,
html body .container--article form:not(.search-form) th {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #334155 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 8px 0 !important;
  display: block !important;
  text-align: left !important;
}

/* 4. Textová pole a textové okno uvnitř kontaktního formuláře */
html body .container--article form:not(.search-form) input[type="text"],
html body .container--article form:not(.search-form) input[type="email"],
html body .container--article form:not(.search-form) input[type="tel"],
html body .container--article form:not(.search-form) textarea,
html body .container--article form:not(.search-form) .form-control {
  width: 100% !important;
  max-width: 100% !important;
  padding: 13px 18px !important;
  background-color: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 12px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  color: #0f172a !important;
  box-sizing: border-box !important;
  outline: none !important;
  transition: all 0.25s ease !important;
}

html body .container--article form:not(.search-form) input[type="text"]:focus,
html body .container--article form:not(.search-form) input[type="email"]:focus,
html body .container--article form:not(.search-form) input[type="tel"]:focus,
html body .container--article form:not(.search-form) textarea:focus,
html body .container--article form:not(.search-form) .form-control:focus {
  background-color: #ffffff !important;
  border-color: #0d5ca8 !important;
  box-shadow: 0 0 0 4px rgba(13, 92, 168, 0.12) !important;
}

html body .container--article form:not(.search-form) textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

/* 5. Upozornění na povinná pole */
html body .container--article form:not(.search-form) .help-block,
html body .container--article form:not(.search-form) .text-muted,
html body .container--article form:not(.search-form) .form-notice {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.80rem !important;
  color: #94a3b8 !important;
  margin-bottom: 20px !important;
}

/* 6. Kontrolní kód (CAPTCHA) */
html body .container--article form:not(.search-form) img[src*="captcha"],
html body .container--article form:not(.search-form) .captcha-img {
  border-radius: 10px !important;
  border: 1px solid #cbd5e1 !important;
  margin: 6px 0 10px 0 !important;
  display: inline-block !important;
}

/* 7. Odesílací tlačítko */
html body .container--article form:not(.search-form) input[type="submit"],
html body .container--article form:not(.search-form) button[type="submit"],
html body .container--article form:not(.search-form) .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 220px !important;
  padding: 14px 38px !important;
  margin-top: 10px !important;
  background-color: #181a1d !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 100px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.25s ease !important;
}

html body .container--article form:not(.search-form) input[type="submit"]:hover,
html body .container--article form:not(.search-form) button[type="submit"]:hover,
html body .container--article form:not(.search-form) .btn-primary:hover {
  background-color: #0d5ca8 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(13, 92, 168, 0.25) !important;
}

/* 8. Mobilní responzivita */
@media (max-width: 640px) {
  html body .container--article form:not(.search-form):not([action*="search"]) {
    padding: 28px 20px !important;
    margin: 30px auto 40px auto !important;
    border-radius: 20px !important;
  }

  html body .container--article form:not(.search-form) input[type="submit"],
  html body .container--article form:not(.search-form) button[type="submit"] {
    width: 100% !important;
  }
}

/* ==========================================================================
32. O SPOLEČNOSTI (PLNÁ VIZUÁLNÍ SHODA S PRODUKTOVÝMI STRÁNKAMI)
========================================================================== */

/* Dvouramenný horní grid */
.alumera-about-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
  max-width: 1200px !important;
  width: 100% !important;
  margin: 40px auto 50px auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

/* Karta o společnosti */
.alumera-about-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 38px 34px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  box-sizing: border-box !important;
  min-height: 420px !important;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.alumera-about-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(13, 92, 168, 0.35) !important;
  box-shadow: 0 16px 36px rgba(13, 92, 168, 0.12) !important;
}

.alumera-about-card--image {
  padding: 0 !important;
  overflow: hidden !important;
  background: #f8fafc !important;
}

html body .container--article .alumera-about-card--image img,
.alumera-about-card--image img {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 20px !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  transition: transform 0.6s ease !important;
}

.alumera-about-card--image:hover img {
  transform: scale(1.04) !important;
}

/* Štítek v rohu */
.alumera-about-card__badge {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  background: rgba(24, 26, 29, 0.82) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  font-family: "Space Grotesk", "Montserrat", sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 5px 14px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.alumera-about-card__title {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem) !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.4px !important;
  margin: 15px 0 14px 0 !important;
  line-height: 1.25 !important;
}

.alumera-about-card__text {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
  color: #475569 !important;
  margin: 0 0 12px 0 !important;
}

.alumera-about-card__list {
  list-style: none !important;
  padding: 12px 0 0 0 !important;
  margin: 0 !important;
  border-top: 1px solid #f1f5f9 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.alumera-about-card__list li {
  position: relative !important;
  padding-left: 24px !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.88rem !important;
  color: #334155 !important;
}

.alumera-about-card__list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #0d5ca8 !important;
  font-weight: 800 !important;
}

/* Číslování pilířů */
.alumera-pillar-number {
  font-family: "Cabinet Grotesk", sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  color: #0d5ca8 !important;
  padding: 24px 24px 0 24px !important;
  line-height: 1 !important;
}

/* Mobilní responzivita */
@media (max-width: 768px) {
  .alumera-about-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .alumera-about-card {
    min-height: auto !important;
    padding: 28px 20px !important;
  }
  .alumera-about-card--image {
    height: 260px !important;
    padding: 0 !important;
  }
}

/* ==========================================================================
33. BLOG A DETAIL ČLÁNKU (TYPOGRAFIE, HERO FOTO, TIPY A CTA)
========================================================================== */

/* 1. Obal článku s optimální šířkou pro čtení */
.alumera-blog-article {
  max-width: 900px !important;
  margin: 30px auto 60px auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

/* 2. Záhlaví článku */
.alumera-article-header {
  text-align: center !important;
  margin-bottom: 35px !important;
}

.alumera-article-meta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.alumera-article-badge {
  font-family: "Space Grotesk", "Montserrat", sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #0d5ca8 !important;
  background-color: #e0f2fe !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
}

.alumera-article-date {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.82rem !important;
  color: #64748b !important;
  font-weight: 600 !important;
}

.alumera-article-title {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: clamp(2rem, 3.4vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
  margin: 0 0 18px 0 !important;
}

.alumera-article-perex {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: #475569 !important;
  margin: 0 auto !important;
  max-width: 820px !important;
}

/* 3. Hlavní Hero obrázek článku */
.alumera-article-hero-media {
  position: relative !important;
  width: 100% !important;
  height: 440px !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06) !important;
  margin: 35px 0 45px 0 !important;
  background-color: #f8fafc !important;
}

html body .container--article .alumera-article-hero-media img,
.alumera-article-hero-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 24px !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* 4. Typografie těla článku */
.alumera-article-body {
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 0.96rem !important;
  line-height: 1.8 !important;
  color: #334155 !important;
  text-align: left !important;
}

.alumera-article-body h2 {
  font-family: "Cabinet Grotesk", "Montserrat", Arial, sans-serif !important;
  font-size: clamp(1.45rem, 2.2vw, 1.8rem) !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.3px !important;
  margin: 38px 0 16px 0 !important;
  line-height: 1.3 !important;
}

.alumera-article-body p {
  margin: 0 0 20px 0 !important;
}

.alumera-article-body strong {
  color: #0f172a !important;
}

/* 5. Zvýrazněný rámeček (Callout box) */
.alumera-article-callout {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  background: #f8fafc !important;
  border-left: 4px solid #0d5ca8 !important;
  border-radius: 0 16px 16px 0 !important;
  padding: 22px 24px !important;
  margin: 30px 0 !important;
  box-sizing: border-box !important;
}

.alumera-article-callout__icon {
  font-size: 1.5rem !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.alumera-article-callout__content {
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  color: #334155 !important;
}

/* 6. Stylovaný seznam s odrážkami */
.alumera-article-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 18px 0 28px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.alumera-article-list li {
  position: relative !important;
  padding-left: 28px !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
  color: #334155 !important;
}

.alumera-article-list li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-weight: 800 !important;
  color: #0d5ca8 !important;
  font-size: 1rem !important;
}

/* 7. Responzivita pro mobily */
@media (max-width: 640px) {
  .alumera-article-hero-media {
    height: 240px !important;
    border-radius: 18px !important;
    margin: 25px 0 35px 0 !important;
  }
  .alumera-article-callout {
    padding: 18px 16px !important;
    gap: 12px !important;
  }
}

/* ==========================================================================
35. MOBILNÍ RESPONZIVITA (DO 768PX)
========================================================================== */

@media (max-width: 768px) {
  /* Přepnutí mřížky do 1 sloupce na mobilu */
  html body #main .section-3-col-bottom-text .row,
  html body #main .section-3-col-top-text .row,
  html body #main .section-columns-3 > .row,
  html body #main .section-columns-3,
  html body .container--articles .row,
  html body #main .container--articles .row,
  html body #main .article-list.row {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 0 15px !important;
  }

  html body #main .section-3-col-bottom-text .section-cell-item,
  html body #main .section-3-col-bottom-text .col,
  html body #main .section-3-col-top-text .section-cell-item,
  html body .container--articles .article-item,
  html body .article-item {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Fotografie v kartách na mobilu */
  html body .container--articles .article-item__thumbnail,
  html body .article-item .article-item__thumbnail,
  html body .product-item__thumbnail,
  html body .category-item__thumbnail,
  html body #main .section-3-col-bottom-text .section-cell-item img,
  html body #main .section-3-col-bottom-text img,
  html body #main .section-3-col-top-text img {
    height: 190px !important;
    min-height: 190px !important;
    max-height: 190px !important;
  }
}