.notices.success {
  background: #0f770f;
  color: #ffffff;
  padding: 20px;
  border-radius: 1.6rem;
}

/* Jednoduché styly pro plovoucí panel */
#request-sidebar {
  position: fixed;
  right: 16px;
  bottom: 72px; /* nad FAB tlačítkem */
  max-width: 400px;
  max-height: 60vh;
  z-index: 1001; /* nad obsahem, pod FAB stínem */
}

#request-sidebar .request-sidebar__inner {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.request-sidebar__body {
  display: block;
}

.request-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 10px 14px;
  overflow: auto;
  max-height: 46vh;
}

.request-sidebar__list li {
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
/ / font-size: 0.95 rem;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.request-sidebar__list li:last-child {
  border-bottom: none;
}

.request-remove {
  appearance: none;
  background: transparent;
  border: none;
  color: #b10000;
  cursor: pointer;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.request-remove:hover {
  background: #ffecec;
}

.request-sidebar__submit {
  margin: 8px 12px 12px 12px;
  padding: 10px 12px;
  background: #d20a11;
  color: #fff;
  display: block;
  border: none;
  border-radius: 6px;
  cursor: not-allowed; /* aktivuje se při položkách */
}

.request-sidebar__submit.is-active {
  cursor: pointer;
  background: #a1070d;
}

/* Panel standardně skryt atributem hidden; nezávisí na media query. */

/* Plovoucí mini košík (FAB) s počtem položek */
.request-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1001;
  background: #d20a11;
  color: #fff;
  border: none;
  border-radius: 999px;
  height: 54px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.request-fab:hover {
  background: #a1070d;
}

.request-fab__icon {
  font-size: 18px;
  line-height: 1;
}

.request-fab__count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #fff;
  color: #535353;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Animace FAB po přidání do košíku */
@keyframes fab-bump {


  50% {
    transform: scale(1.12);
    background-color: #4c0004;
  }
  100% {
    transform: scale(1);
    background-color: #d20a11;
  }
}

.request-fab.is-animating {
  animation: fab-bump 1s ease-out;
}

.request-fab.is-animating .request-fab__count {
  background: #000000; /* jemné zvýraznění */
  color: #ffffff;
  transform: translateZ(0); /* pro plynulejší vykreslení */
}

/* Modal základní styly */
.request-modal[hidden] {
  display: none !important;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
}
#request-modal .page-section--contact {
  padding: 0!important;
}

.request-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.request-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  width: min(800px, calc(100% - 32px));
  margin: 6vh auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
}

.request-modal__header {
  padding: 16px 20px 0 20px;
}

.request-modal__title {
  margin: 0;
}

.request-modal__body {
  padding: 16px 20px 24px 20px;
  overflow: auto;
}

.request-modal__close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 6px;
  border-radius: 6px;
}

.request-modal__close:hover {
  background: #f2f2f2;
}

.request-modal textarea {
  height: 28.1rem;

  font-size: 1.6rem;
  line-height: 2.6rem;
}


.reference-section {
  margin-bottom: -300px;
  padding-bottom: 300px;
}

.custom-select .nice-select .nice-select-dropdown .list li {
  line-height: 3.4rem;
}

.custom-select .nice-select {
  min-width: 360px;

}
@media only screen and (max-width: 500px) {
  .custom-select .nice-select {

    width: 100%;
  }
}

/* --- Reference filter UX helpers --- */
/* Křížek pro vymazání selectu */
.custom-select__clear {
  display: none; /* řízeno JS */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #b10000;
  z-index: 5; /* nad vykresleným .nice-select prvkem */
  padding: 2px 4px; /* zvětšení klikací plochy */
}

.custom-select {
  position: relative; /* pro pozicování clear tlačítka */
}

/* Aktivní filtr badge/box */
.realization-filter__active {
  display: none; /* řízeno JS */
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
  /* přebití děděného font-size:0 z .realization-filter */
  font-size: 1.6rem;
  line-height: 1.6;
}
.realization-filter__active a {
  color: #b10000;
}
.realization-filter__active-label {
  margin-right: 8px;
}

.realization-filter__clear {
  display: inline-block;
}

/* Box bez výsledků */
.realization-filter__noresults {
  display: none; /* řízeno JS */
  margin-top: 12px;
  padding: 10px 12px;
  background: #fff4f4;
  color: #5a0000;
  border: 1px solid #ffd1d1;
  border-radius: 8px;
  /* přebití děděného font-size:0 z .realization-filter */
  font-size: 1.6rem;
  line-height: 1.6;
}

.realization-filter__noresults a {
  color: #b10000;
  text-decoration: underline;
}

.realization-section__grid {
  min-height: 80px;
}
.custom-select.custom-select--white .nice-select .nice-select-dropdown {
  overflow: hidden;
}
.nice-select .list {
  max-height: 410px;
}
.realization-item__tag {
  position: relative;
  margin-bottom: 10px;
}


.faq-item-trigger__title {
  display: flex;
  align-items: center;
}
.reference-quote-slider-item__inner.no-image {
  padding-left: 0;
}
.base-footer-item__title {
  font-weight: 400;
}
.base-footer__text p {

  font-weight: 400;

}
.base-footer-item__link ul li a {
  font-weight: 400;
}

.base-button-bordered:not(:last-child) {
  margin-right: 10px;
}

/* Career detail gallery - 2 columns */
.career-detail__gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 40px;
}

@media (max-width: 768px) {
  .career-detail__gallery-grid {
    grid-template-columns: 1fr;
  }
}
.dz-button {
  border: 0;
  background: white;
}
.service-item__layer {
  opacity: 0.85;
}
.base-navbar {
  background-color: var(--navbar-bg);
  box-shadow: 0 0.2rem 0.3rem rgba(0, 0, 0, 0.05);
}
.career-box__img {

  aspect-ratio: 770 / 720;
}
.help-banner__logo img {
  max-width: 27.95rem;
}
@media only screen and (min-width: 64em) {

  }
.reference-quote__inner {
  padding: 0px;
}
.tns-gallery {

  min-height: 0;
}
.reference-quote-slider-item {
  padding: 2rem 3.4rem;
}
.tns-item {

  transition-duration: 0s!important;
  animation-duration: 0s!important;
}




a.timeline-item:hover .timeline-item__number span {
  background-color: #d20a11;
  color: #fff;
}

h1.underline {position: relative}
h1.underline::after {
  content: "";              /* Nutné, aby se pseudoprvek vůbec zobrazil */
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: .2rem;              /* Tloušťka čárky */
  background-color: red;    /* Barva čárky */
}

/* ══════════════════════════════
   FOOTER – redesign
══════════════════════════════ */
.base-footer {
  background: #eff3f7;
  color: #000;
  font-family: "DM Sans", sans-serif;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 0 36px;
  border-bottom: 1px solid rgba(0, 0, 0, .09);
  gap: 24px;
}

.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(0, 0, 0, .5);
  font-size: 14px;
  font-weight: 300;
  transition: color .18s;
}
.footer-contact-link:hover { color: #000; }

.footer-contact-link .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .13);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .18s, background .18s;
}
.footer-contact-link:hover .icon {
  border-color: #d20a11;
  background: rgba(210, 10, 17, .06);
}
.footer-contact-link .icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #d20a11;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact-link .contact-text strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  margin-bottom: 1px;
}
.footer-contact-link .contact-text span {
  font-size: 12px;
  color: rgba(0, 0, 0, .4);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px 48px;
  padding: 44px 0 48px;
  border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.footer-col__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .3);
  margin-bottom: 18px;
}

.footer-company-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  margin-bottom: 14px;
}

.footer-company-meta {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, .4);
  line-height: 2;
  margin-bottom: 16px;
}

.footer-address {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, .55);
  line-height: 1.85;
  margin-bottom: 28px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 40px;
  padding: 9px 20px;
  transition: border-color .18s, background .18s, color .18s;
  font-family: "DM Sans", sans-serif;
  background: transparent;
}
.footer-btn:hover {
  border-color: #d20a11;
  color: #d20a11;
  background: rgba(210, 10, 17, .04);
}
.footer-btn svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.footer-nav li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, .55);
  display: block;
  padding: 5px 0;
  position: relative;
  transition: color .15s, padding-left .18s;
}
.footer-nav li a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d20a11;
  opacity: 0;
  transition: opacity .15s;
}
.footer-nav li a:hover {
  color: #000;
  padding-left: 10px;
}
.footer-nav li a:hover::before { opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.footer-bottom__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-logos img {
  height: 26px;
  opacity: .3;
  display: block;
}

.footer-divider {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, .15);
}

.footer-copyright {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, .35);
}

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

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(0, 0, 0, .4);
  transition: border-color .18s, background .18s, color .18s;
}
.social-link:hover {
  border-color: #d20a11;
  color: #d20a11;
  background: rgba(210, 10, 17, .05);
}
.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 0 24px;
  }
  .footer-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 36px;
  }
  .footer-col:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.article-item:hover {
  box-shadow: 0px 0rem 1rem 0px rgba(0, 0, 0, .5);
  transform: scale(1.02);
}

/* Kariéra – výpis pozic: delší název pozice nesmí deformovat tlačítko.
   Tlačítko může růst do výšky, kruhová šipka si drží tvar. */
.career-header-grid .base-button-solid {
  height: auto;
  min-height: 6.2rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  line-height: 1.25;
  text-align: left;
}
.career-header-grid .base-button-solid .arrow-span {
  flex: 0 0 auto;
}
@media only screen and (min-width: 48em) {
  .career-header-grid .base-button-solid {
    min-height: 8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1650px) {
  .career-header-grid .base-button-solid {
    min-height: 6rem;
  }
}

/* HP – sekce referencí: dlouhý text tlačítka nesmí přetékat.
   Tlačítko může růst do výšky, kruhová šipka si drží tvar. */
.reference-section__button .base-button-solid {
  height: auto;
  min-height: 6.2rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  line-height: 1.25;
  text-align: left;
}
.reference-section__button .base-button-solid .arrow-span {
  flex: 0 0 auto;
}
@media only screen and (min-width: 48em) {
  .reference-section__button .base-button-solid {
    min-height: 8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1650px) {
  .reference-section__button .base-button-solid {
    min-height: 6rem;
  }
}
