/* ---------- VARIABLES ---------- */
:root {
    /*--main-width: 1180px;*/
    --main-width: 1330px;
    --gap: 25px;
    --color-web-bg: #f3f3f3;
    /*--color-web-bg: #f9f9f9;*/
    --color-text-light: #999999;
    --color-buttons-light: #D9D9D9;
    --color-text-dark: #5F5F5F;
    --color-active-yellow: #FFD800;
    --color-white: #ffffff;
    --color-yellow: yellow;
    --background-white: #ffffff;
    --border-radius: 8px;
    --magnifier-url: url("../imgs/magnifier.png");

    /* --------- no change ---------- */
    --color-text-dark-const: #5F5F5F;
    --color-text-light-const: #D9D9D9;
    --background-white-const: #ffffff;
    --color-red: #FF5B28;
    --color-green: #00770a;
}

::selection {
  background-color: var(--color-yellow);
  color: var(--color-text-dark-const);
}


html.dark-mode,
body.dark-mode {
  --color-web-bg: #000000;          /* hlavné pozadie */
  --color-text-light: #bbbbbb;      /* sekundárny text (popisy, meta) */
  --color-buttons-light: #333333;   /* neaktívne tlačidlá, panely */
  --color-text-dark: #f2f2f2;       /* hlavný text */
  --color-active-yellow: #ffd800;   /* accent farba – nechaj rovnakú */
  --color-white: #1a1a1a;           /* "biela" pre svetlé plochy */
  --color-yellow: #ffe44d;          /* jemnejšia žltá pre tmavé pozadie */
  --background-white: #1a1a1a;      /* alternatíva k --color-white */
}


/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Pre plynulejšie responzívne správanie */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--color-text-dark);
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
  background-color: var(--color-web-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html, body, * {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ---------- CONTAINERY ---------- */
.container {
  width: 100%;
  max-width: var(--main-width);
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}

.container-full {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

/* ---------- FLEX UTILITY ---------- */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-center-vertical {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
}

.flex-between-equal {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
}

.flex-between-equal > * {
  flex: 1;
}

.wrap {
  flex-wrap: wrap;
}

.flex-start {
  justify-content: flex-start;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-around {
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
}

/* ---------- LAYOUT ---------- */
.margin-bottom {
  margin-bottom: var(--gap);
}

.margin-bottom-less {
  margin-bottom: calc(var(--gap) / 2);
}

.margin-top {
  margin-top: var(--gap);
}

.margin-top-less {
  margin-top: calc(var(--gap) / 2);
}

.margin-right {
  margin-right: var(--gap);
}

.margin-right-less {
  margin-right: calc(var(--gap) / 2);
}

.gap {
  gap: var(--gap);
}

.gap-less {
  gap: calc(var(--gap) / 2);
}

.hidden {
  display: none;
}

.flex-end {
  align-items: flex-end;
}

.full-width {
  width: 100%;
}

.percent-10 {
  width: 10%;
}

.percent-20 {
  width: 20%;
}

.percent-25 {
    width: calc(25% - var(--gap));
}

.percent-30 {
  width: 30%;
}

.percent-40 {
  width: 40%;
}

.percent-50 {
  width: 50%;
}

.percent-60 {
  width: 60%;
}

.percent-70 {
  width: 70%;
}

.percent-80 {
  width: 80%;
}

.percent-90 {
  width: 90%;
}

/* ---------- BACKGROUNDS ---------- */
.bg-white {
  background-color: var(--color-white);
}

/* ---------- PADDINGS ---------- */
.no-top-padding {
  padding-top: 0;
}

.no-bottom-padding {
  padding-bottom: 0;
}

.no-bottom-margin {
  margin-bottom: 0;
}

.no-sides-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-padding {
  padding: 0;
}

.no-gap {
  gap: 0;
}

/* ---------- ODKAZY, TLAČIDLÁ, LINKY ---------- */
a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.num-box {
    padding: 0.5rem;
    border: 1px solid var(--color-text-light);
    border-radius: var(--border-radius);
    color: var(--color-text-light);
    display: inline-block;
    margin-bottom: 1rem;
    min-width: 2.5rem;
    text-align: center;
}

.faichat-word {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.raabe-client-resetpass__back a,
.raabe-client-lostpass__back a,
.raabe-client-login a,
.faichat-bubble--assistant a,
.product-authors a,
.breadcrumbs a,
.right-kontakt a {
  border-bottom: 1px solid var(--color-text-dark);
  transition: all 0.25s ease;
  padding-bottom: 4px;
}

.raabe-client-resetpass__back a:hover,
.raabe-client-lostpass__back a:hover,
.raabe-client-login a:hover,
.faichat-bubble--assistant a:hover,
.product-authors a:hover,
.breadcrumbs a:hover,
.right-kontakt a:hover {
  border-bottom: 1px solid var(--color-active-yellow);
  transition: all 0.25s ease;
}

.faichat-bubble a.faichat-link-typing {
  opacity: 0;
  text-decoration: none !important;
  border-bottom: none !important;
}

.faichat-bubble--assistant ul, 
.faichat-bubble--assistant ol {
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.faichat-bubble--assistant table {
  width: 100%;
}

.faichat-bubble--assistant th,
.faichat-bubble--assistant td {
  padding: 5px;
}

.hr-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-buttons-light);
}

/* ---------- OBRAZKY/OBALY ---------- */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

.box-shaddow {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.autor-link-box {
  border: 1px solid var(--color-web-bg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.autor-link-box:hover {
  border: 1px solid var(--color-buttons-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}

.authors-list-simple {
    margin: 0;
    padding: 0;
    list-style: none;

    /* viacstĺpcový layout */
    column-count: 4;        /* počet stĺpcov na desktop */
    column-gap: 2.5rem;     /* medzera medzi stĺpcami */
}

.authors-list-simple li {
    break-inside: avoid;    /* nech neroztrhne meno medzi stĺpce */
    margin: 0 0 .35rem 0;   /* rovnaká zvislá medzera medzi menami */
    padding: 0;
}


.border-radius {
  border-radius: var(--border-radius);
}

.overflow-hidden {
  overflow: hidden;
}

.border-radius-no-bottom {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.padding {
  padding: 1rem;
}

.padding-more {
  padding: 2rem;
}

.padding-left {
  padding-left: 1rem;
}

.gap-left {
  padding: var(--gap);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar:horizontal {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ---------- TYPOGRAPHY ---------- */
h1, .h1-like {
  font-size: 2.625rem;
  line-height: 3rem;
  margin-bottom: 0.82rem;
  width: 100%;
}

h2 {
  font-size: 1.8rem;
  line-height: 2.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: 100%;
}

.article h2 {
  margin-top: 1.5rem;
}

.article ul,
.article ol {
  padding: 0 3rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  width: 100%;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

strong {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

ul, ol {
  margin-left: 1rem;
}

p, li {
  margin-bottom: 0.5rem;
}

.text-center {
  text-align: center;
}

.smaller-text {
  font-size: 0.75rem;
}

.author-function {
  font-size: 0.75rem;
  font-style: oblique;
}

.italic {
  font-style: oblique;
}

/* ---------- END DEFAULTS ---------- */

ul.main-menu,
ul.right-menu {
    list-style-type: none;
    margin-left: 0;
}

ul.main-menu li,
ul.right-menu li {
  margin-bottom: 0;
}

ul.main-menu li a,
ul.right-menu li a {
    font-size: 14px;
    color: var(--color-text-light);
    position: relative;
    line-height: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--color-web-bg);
    transition: all 0.25s ease;
}

ul.right-menu li a:hover,
ul.right-menu li.current-menu-item a,
ul.main-menu li a:hover,
ul.main-menu li.current-menu-item a {
    color: var(--color-text-dark);
    border-bottom: 3px solid yellow;
    transition: all 0.25s ease;
}

.ico-domov > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 19px;
    background: url('../imgs/ico-domov.png') no-repeat top center;
    background-size: 20px 19bpx;
    text-indent: -9999px;
    overflow: hidden;
    box-sizing: content-box;
}


ul.main-menu li.current-menu-item.ico-domov > a,
.ico-domov > a:hover {
  background-image: url('../imgs/ico-domov-active.png');
}

.ico-navody > a,
.ico-light-mode > a,
.ico-profil > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 19px;
    background-size: 20px 19bpx;
    text-indent: -9999px;
    border-bottom: none !important;
    box-sizing: content-box;
  }
  
.ico-navody > a {  
    background: url('../imgs/ico-navody.png') no-repeat top center;
}

/*
.ico-light-mode > a {  
    background: url('../imgs/ico-sun.png') no-repeat top center;
} */

.ico-profil > a {  
    background: url('../imgs/ico-profil.png') no-repeat top center;
}

/*--------- START slideshow ----------*/
.slideshow-container {
    width: 100%;
    height: 282px;
    position: relative;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 282px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.dots-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 1rem;
    align-items: center;
    height: 30px;
    background-color: var(--main-lightgrey-bg-color);
}

.dot {
    width: 15px;
    height: 15px;
    background-color: var(--color-buttons-light);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--color-active-yellow);
}

.control-slide-button {
    background: none;
    border: none;
    color: var(--color-buttons-light);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    top: -1px;
    position: relative;
}

.control-slide-button:hover {
    color: var(--color-active-yellow);
}

.slide-content {
  width: 100%;
  max-width: var(--main-width);
  height: 282px;
  display: flex;
  gap: var(--gap);
  flex: 1;
  color: var(--color-text-dark-const);
}

.slide-content .left,
.slide-content .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}

.slide-content h2 {
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2rem;
    margin-bottom: 0.7rem;
}

.slide-content h3 {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.slide-content a,
.content-link,
a.content-link {
  display: inline-block;
  background-color: var(--color-yellow);
  padding: 10px 12px;
  border: 1px solid var(--color-yellow);
  border-radius: 12px;
  margin: 1rem 1rem 1rem 0 ;
  transition: all 0.25s ease;
  font-size: 1rem;
  color: var(--color-text-dark-const);
}

.content-link:hover,
.slide-content a:hover,
 a.content-link:hover {
  background-color: var(--background-white-const);
  border: 1px solid var(--color-text-dark-const);
  transition: all 0.25s ease;
}

span.content-inactive-link {
  display: inline-block;
  background-color: var(--color-buttons-light);
  padding: 10px 12px;
  border: 1px solid var(--color-buttons-light);
  border-radius: 12px;
  transition: all 0.25s ease;
  align-self: flex-start;
  margin-top: auto;
} 

/*--------- END slideshow ----------*/

/* --------- Tootltip ----------*/
.main-menu a.has-tooltip,
.right-menu a.has-tooltip {
  position: relative;
}

.menu-tooltip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--color-text-dark);
  color: var(--color-white);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity .15s ease, transform .15s ease;
  text-indent: 0;
}

.menu-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-text-dark);
}

.main-menu a.has-tooltip:hover .menu-tooltip,
.right-menu a.has-tooltip:hover .menu-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

@media (prefers-reduced-motion: reduce) {
  .menu-tooltip { transition: none; }
}

/* -------- Tooltip for IMG ---------- */
.has-tooltip-img {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* bublina */
.has-tooltip-img::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--color-text-dark);
  color: var(--color-white);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  white-space: normal;
  max-width: 260px;
  opacity: 0;
  pointer-events: none;
  z-index: 21;
  transition: opacity .15s ease, transform .15s ease;
}

/* šípka priamo pod bublinou (smerom dole) */
.has-tooltip-img::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px); /* zvýš o pár pixelov, bublina → šípka */
  transform: translateX(-50%);
  border-style: solid;
  border-width: 6px 6px 0 6px; /* trojuholník smerom dole */
  border-color: var(--color-text-dark) transparent transparent transparent;
  opacity: 0;
  z-index: 20;
  transition: opacity .15s ease;
}


/* zobrazenie */
.has-tooltip-img:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}
.has-tooltip-img:hover::before {
  opacity: 1;
}




/* --------- Products ----------*/
.product-item {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - var(--gap));
    background-color: var(--color-white);
    border: 1px solid var(
    --color-buttons-light);
    border-radius: var(
    --border-radius);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 1rem;
    position: relative;
}

.content-link {
  margin: 0;
  margin-top: auto;
  align-self: flex-start;
}

/* ------------- Start CHAT -------------- */

.front-chat {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--gap);
  flex-direction: column;
  min-height: 450px;
}

.front-chat h2 {
  text-align: center;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: var(--color-text-light);
}

.ask{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap:.5rem;
  padding:.5rem .5rem .5rem 1rem;
  background:var(--background-white);
  border:1px solid var(--color-text-light);
  border-radius:14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  transition: all 0.25s ease;
}

.ask input{
  border:0;
  outline:0;
  padding:.75rem 0;
  background:transparent;
  font-size: 1rem;
  color: var(--color-text-dark);
}

.ask button{
  border:0;
  padding:.55rem;
  border: 1px solid var(--color-yellow);
  border-radius: 8px;
  background:var(--color-yellow);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: all 0.25s ease;
}

.ask button:hover { 
  background-color: var(--color-white);
  border: 1px solid var(--color-text-light);
  place-items: 8px center;
  transition: all 0.25s ease;
}

.ask button:active { transform: translateY(1px); }

.ask:focus-within{
  box-shadow: 0 4px 24px rgba(0,0,0,0);
  border:1px solid var(--color-text-dark);
  transition: all 0.25s ease;
}

.chat-subscribe {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1rem;
}

/* CHAT OKNO */
.front-ai-chat-window {
  display: none;          /* kým nezačne chat */
  min-height: 240px;
  max-height: 480px;
  overflow-y: auto;
  width: 70%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.front-ai-chat-window.is-visible {
    opacity: 1;
    transform: translateY(0);
    /* display: flex !important; */
    flex-direction: column;
    justify-content: end;
    /* overflow-y: scroll; */
    width: calc(70% - 16px);
    padding-right: 16px;
}

.front-new-conversation {
    padding: .65rem;
    border: 1px solid var(--color-text-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    aspect-ratio: 1 / 1;
    place-items: center;
    height: calc(100% - 1rem);
    margin-top: 0.5rem;
    display: none;
}

.front-new-conversation img {
  transform: translateY(0x);
  transition: all 0.25s ease;
}

.front-new-conversation:hover img {
  transform: translateY(-3px);
  transition: all 0.25s ease;
}

/* BUBLINY */
/* jeden rad v chate */
.faichat-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

/* user vpravo, assistant vľavo */
.faichat-row--user {
  justify-content: flex-end;
}

.faichat-row--assistant {
  margin-bottom: var(--gap);
  transition: all 0.3s ease;
}

/* základná bublina */
.faichat-bubble {
  width: 100%;
  border-radius: var(--border-radius);
  padding: 14px 18px;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}

.faichat-bubble.is-visible {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.875rem;
}

.faichat-bubble--user {
  background-color: var(--color-yellow);
  color: var(--color-text-dark-const);
  width: 60%;
  transition: all 0.3s ease;
}

.is-swapped .faichat-bubble--user {
    width: 100% !important;
}

.faichat-bubble--user::selection {
  background-color: var(--color-web-bg);
  color: var(--color-text-dark-const);
}

/* assistant biela bublina */
.faichat-bubble--assistant {
  background-color: var(--color-white);
}

.faichat-bubble.is-visible::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 20px;
    width: 0;
    height: 0;
}

/* malý biely trojuholník smerom k avataru */
.faichat-bubble--assistant::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 18px;
    border-width: 14px;
    border-style: solid;
    border-color: transparent var(--color-white) transparent transparent;
    top: 8px;
}

.faichat-avatar {
  width: 60px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
}

/* meta riarok chatu */
.faichat-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.85rem;
  opacity: 1;
  margin-top: 0.25rem;
  width: 100%;
}

.faichat-main {
    width: 100%;
    display: flex;
    gap: calc(var(--gap) / 2);
}

.faichat-meta-actions {
  display: flex;
  gap: calc(var(--gap) / 2);
  padding-left: 100px;
}

.faichat-meta-time {
  margin-left: calc(var(--gap) / 2);
  color: var(--color-text-light);
}

.faichat-meta-btn {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  width: 23px;
  height: 23px;
}

.faichat-meta-copy {
  background: url('../imgs/ico-copy.png') no-repeat;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.faichat-meta-ok {
  background: url('../imgs/ico-ok.png') no-repeat;
}

.faichat-meta-refresh { 
  background: url('../imgs/ico-retry.png') no-repeat;  
  transition: all 0.3s ease;
  transform: translateY(0);
 }

 .faichat-meta-copy:hover, 
 .faichat-meta-refresh:hover { 
  transform: translateY(-3px);
 }


/* loader – dole */
.faichat-avatar-loader {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url('../imgs/avatar-loader.png') center/100% no-repeat;
  opacity: 0;
  z-index: 0;
}

/* samotná líška – hore */
.faichat-avatar-img {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url('../imgs/avatar.png') center/100% no-repeat;
  z-index: 1;
}

/* počas premýšľania sa loader zobrazí a točí */
.faichat-avatar.is-thinking .faichat-avatar-loader {
  opacity: 1;
  animation: faichat-spin 1s linear infinite;
}

@keyframes faichat-spin {
  to { transform: rotate(360deg); }
}




/* ------------- End CHAT -------------- */

/* ------------- FOOTER -------------- */

.footer, .footer-row {
  font-size: 0.87rem;
  color: var(--color-text-light);
}

.footer ul {
  list-style-type: none;
}

.footer-column-2,
.footer-column-3,
.footer-column-4 {
  margin-top: 2.9rem;
}

.footer-column-4 {
  display: flex;
  flex-direction: column;
  justify-content: right;
  gap: calc(var(--gap) / 2);
}

.footer-column-4 .social {
  display: flex;
  gap: calc(var(--gap) / 2);
  justify-content: right;
}

.footer-column-1 a,
ul.footer-menu-1 li a,
ul.footer-menu-2 li a {
  transition: all 0.25s ease;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--color-white);
}

.footer-column-1 a:hover,
ul.footer-menu-1 li a:hover,
ul.footer-menu-1 li.current-menu-item a,
ul.footer-menu-2 li a:hover,
ul.footer-menu-2 li.current-menu-item a {
    color: var(--color-text-dark);
    border-bottom: 3px solid yellow;
    transition: all 0.25s ease;
}

.ai-article-body a {
  transition: all 0.25s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-text-light);
}

.ai-article-body a:hover {
    color: var(--color-text-dark);
    border-bottom: 1px solid yellow;
    transition: all 0.25s ease;
}

.social > a {
  transition: all 0.25s ease;
}

.social > a:hover {
  transition: all 0.25s ease;
  transform: translateY(-5px);
}

.footer-row {
  border-top: 1px solid var(--color-buttons-light);
  padding: 1rem 0;
  justify-content: center;
  display: flex;
  width: 100%;
  background-color: var(--color-white);
}

/* ------------- Start VIDEO -------------- */

.video-fetch-wrapper { display: inline-block; }
.video-preview { border: none; background: transparent; padding:0; cursor:pointer; position:relative; }
.video-poster-img { display:block; max-width:100%; height:auto; border-radius:var(--border-radius); }
.play-icon {
  position:absolute;
  left:50%; top:50%; transform:translate(-50%,-50%);
  font-size:48px; color:rgba(255,255,255,0.95); text-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  pointer-events:none;
}

/* Modal */
.video-modal { display:none; position:fixed; inset:0; z-index:1200; align-items:center; justify-content:center; }
.video-modal[aria-hidden="false"] { display:flex; }

/* backdrop */
.video-modal__backdrop {
  position:absolute; inset:0; background:rgba(0,0,0,0.6);
}

/* box */
.video-modal__box {
  position:relative; z-index:2;
  max-width:90vw; width:fit-content; max-height:90vh;
  display:flex; align-items:center; justify-content:center;
  pointer-events:auto;
}

/* content */
.video-modal__content {
  width:min(1100px, 96vw);
  background:transparent;
  display:flex; flex-direction:column; gap:14px;
  align-items:center;
}

/* close btn */
.video-modal__close {
  position:absolute; right:-6px; top:-6px; z-index:3;
  background:var(--color-text-dark); color:var(--color-white); border:none; border-radius:50%; width:36px; height:36px;
  font-size:18px; cursor:pointer; box-shadow:0 6px 30px rgba(0,0,0,0.4);
}

/* loader area */
.video-loader { display:flex; gap:16px; align-items:center; background:rgba(0,0,0,0.5); padding:16px; border-radius:8px; color: var(--color-white); }
.video-loader__poster { width:120px; height:auto; border-radius:6px; object-fit:cover; }
.video-loader__status { min-width:220px; max-width:60vw; }
.video-loader__bar { width:100%; height:10px; background:rgba(255,255,255,0.12); border-radius:6px; overflow:hidden; }
.video-loader__bar-fill { height:100%; width:0%; background:linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.85)); transition:width 120ms linear; }
.video-loader__percent { margin-top:8px; font-weight:700; font-size:14px; }
.video-loader__text { font-size:13px; opacity:0.9; }

/* video player sizing */
.video-player {
  width:100%;
  height:auto;
  max-height:78vh;
  border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);
  background:black;
}
/* ------------- End VIDEO -------------- */

/* ------------- Start GALLERY -------------- */
.gallery .left {
  width: 40%;
}

.gallery .right {
  width: 60%;
}

.gallery .right img {
  border-radius: var(--border-radius);
  border: 1px solid var(--color-buttons-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: calc(var(--gap) / 2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery .right img:hover {
  border: 1px solid var(--color-text-light);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}

/* ------------- End GALLERY -------------- */

/* ------------- Start LIGHTBOX -------------- */
img.gall {
  display: block;
  position: relative;
  cursor: pointer;
}

img.gall::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%) scale(0.9);
  background-image: var(--magnifier-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

img.gall:hover::after,
img.gall:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.lb-modal {
  position: fixed; inset: 0; z-index: 1300;
  display: none;
  align-items: center; justify-content: center;
}

.lb-modal[aria-hidden="false"] { display: flex; }

.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
}

.lb-box {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: grid; gap: 8px;
}

.lb-img {
  max-width: 90vw; max-height: 82vh;
  width: auto; height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  background: var(--color-text-dark);
}

.lb-caption {
  color: var(--background-white-const); text-align: center; font-size: 14px; line-height: 1.4;
  max-width: 90vw; word-break: break-word;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.lb-close {
  position: absolute; right: -10px; top: -10px;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: var(--color-text-dark); color: var(--color-white); cursor: pointer;
  font-size: 18px; line-height: 36px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

.lb-noscroll { overflow: hidden; }
/* ------------- End LIGHTBOX -------------- */

/* ---------- Start FAQ ---------- */
.faq-item {
  padding: 1rem;
  padding-bottom: 0.5rem;
  width: 100%;
  border: 1px solid var(--color-text-light);
  border-radius: var(--border-radius);
  cursor: pointer;
  margin-bottom: 1.5rem;
  transition: all 0.25s ease;
}

.faq-item:hover {
  background-color: var(--color-white);
  transition: all 0.25s ease;

}

h3.faq-question {
  font-size: 1.15rem;
  font-weight: 500;
}

.faq-1-row {
  display: flex;
  justify-content: space-around;
}

.faq-1-row img {
  width: 22px;
  height: 22px;
}

.faq-2-row {
  transition: all 0.25s ease;
  max-height: 0;
  overflow: hidden;
}

.faq-2-row.active {
  border-radius: var(--border-radius);
  font-style: oblique;
  margin-bottom: 0.5rem;
  max-height: 1000px;
  transition: all 0.25s ease;
}
/* ---------- End FAQ ---------- */

/* ---------- Start KONTAKT ---------- */
.contact-form label,
.contact-form input,
.contact-form textarea {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid var(--color-text-light);
  border-radius: var(--border-radius);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form button.content-link {
  font-size: 1rem;
  color: var(--color-text-dark-const);
}

.contact-loader-wrapper,
.contact-result,
.cf-result {
  display: flex;
  width: 100%;
  justify-content: center;
  align-content: center;
}

.cf-result {
    min-height: 200px;
    flex-wrap: wrap;
    gap: 1rem;
}

.cf-result p {
  text-align: center;
  width: 100%;
}

/* ---------- End KONTAKT ---------- */



/* ---------- Start NAVODY ---------- */
.list-navody-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

/* odstránime margin na odkaze – spôsoboval medzery medzi li */
.list-navody-wrapper ul a {
  display: block;
  margin: 0;
  text-decoration: none;
  color: inherit;
}

/* vnorené ul – bez ďalších bodiek */
.list-navody-wrapper ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* každé dieťa – pozícia pre bodku */
.list-navody-wrapper ul li ul li {
  position: relative;
  margin-bottom: 0.3rem;
}

/* samotný odkaz – padding na bodku + pekný hover */
.list-navody-wrapper ul li ul li a {
  display: block;
  border-radius: var(--border-radius);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem; /* miesto pre bodku vľavo */
  transition: background-color 0.25s ease;
}

/* aktívny / hover */
.list-navody-wrapper ul li ul li.navod-active a,
.list-navody-wrapper ul li ul li a:hover {
  background-color: var(--background-white);
}

/* bodka */
.list-navody-wrapper ul li ul li::before {
  content: "•";
  position: absolute;
  left: 0.8rem;   /* zarovnanie v rámci paddingu */
  top: 0.65em;    /* zvislé dorovnanie s textom */
  color: var(--color-text-dark);
  font-size: 1.1em;
  line-height: 1;
}

/* parenty */
li.navod--parent {
  font-weight: 600;
  margin-top: 1rem;
}

li.navod--child {
  font-weight: normal;
}


.navod-content {
    width: calc(70% - var(--gap));
}

.navod-tools {
  display: flex;
  gap: var(--gap);
  justify-content: end;
}

.navod-tools img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

/* ---------- End NAVODY ---------- */

/* ---------- Start KLIENTI ---------- */

.raabe-client-login__inner {
  flex-direction: column;
  width: 100%;
}

p.raabe-client-login__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    width: 100%;
}

.raabe-client-resetpass__field input,
.raabe-client-lostpass__field input,
.raabe-client-login__field input {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .5rem;
    padding: .5rem .5rem .5rem 1rem;
    background: var(--background-white);
    border: 1px solid var(--color-text-light);
    border-radius: var(--border-radius);
    transition: all 0.25s ease;
    min-height: 2.5rem;
    width: 100%;
    background-color: var(--background-white);
    color: var(--color-text-dark);
}

.raabe-client-login__remember input {
  height: 30px;
  width: 30px;
}

.raabe-client-login__remember label,
.raabe-client-login__actions {
  align-items: center;
}

#menu-item-91 {
    position: relative;
}

/* Dropdown */
.profil-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-white);
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    z-index: 100;
}

.profil-dropdown::before {
    content: "";
    position: absolute;
    top: -8px; /* výška nad boxom */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;   
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--background-white); /* farba trojuholníka */
    z-index: 101;
}

.profil-dropdown ul {
    list-style: none;
    margin-left: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

#menu-item-91:hover .profil-dropdown {
    display: block;
}

.profil-dropdown li a {
    display: block;
    padding: 10px 15px;
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-web-bg) !important;
}

.profil-email {
  color: var(--color-text-light);
  padding: 10px 15px;
  border-bottom: 1px solid var(--color-buttons-light);
  font-size: 14px;
}

.profil-logout {
  border-bottom: none !important;
}

.profil-dropdown .profil-logout a {
    /*border-top: 1px solid var(--color-buttons-light);*/
    border-bottom: none !important;
    transform: translateY(-4px);
}

.profil-dropdown .profil-logout a::before {
    content: '';
    height: 20px;
    width: 22px;
    display: inline-block;
    background: url('../imgs/ico-logout.png');
    margin-right: 5px;
    transform: translateY(5px);
}

.raabe-client-resetpass__errors,
.raabe-client-login__errors {
    display: flex;
    justify-content: center;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    padding: 7px;
    padding-bottom: 0px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.raabe-client-login__notice,
.raabe-client-confirm {
    display: flex;
    justify-content: center;
    border: 1px solid var(--color-green);
    color: var(--color-green);
    padding: 7px;
    padding-bottom: 0px;
    border-radius: 8px;
    margin-bottom: 16px;
}


/* ---------- End KLIENTI ---------- */

/* ----------- Start KLIENT WORKSPACE ------------- */
.header-product-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

/* Wrapper */
.raabe-select {
    position: relative;
    width: 240px;
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-text-light);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    line-height: 1.3;
}

/* Trigger – zatvorený stav */
.raabe-select-trigger {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.raabe-select-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.raabe-select-icon {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.raabe-select:hover .raabe-select-icon {
    opacity: 1;
}

.raabe-select.open .raabe-select-icon {
    transform: rotate(180deg);
}

/* Dropdown box */
.raabe-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: var(--color-web-bg);
    border: 1px solid var(--color-text-light);
    border-radius: 8px;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* Zobrazenie pri .open */
.raabe-select.open .raabe-select-options {
    display: block;
    width: fit-content;
    overflow: hidden;
}

/* Každá položka */
.raabe-option {
    padding: 8px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text-light);
}

/* Hover efekt */
.raabe-option:hover {
    background: var(--color-web-bg);
    color: var(--color-text-dark);
}

.ai-product-container {
  height: calc(100vh - 140px);
}

.ai-product-left,
.ai-product-right {
    transition: width 0.3s ease;
}

.ai-product-left {
  width: 33%;
}

.product-left-content {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  position: relative;
}

.ai-product-left h3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--color-text-light);
    max-width: 300px;
}

.ai-product-header-left {
    width: 100%;
    padding-bottom: 10px;
}

.ai-product-right {
  width: 66%;
}

.ai-product-container.is-swapped .ai-product-left {
    width: 66%;
}

.ai-product-container.is-swapped .ai-product-right {
    width: 33%;
}

.maximize {
    background: yellow;
    height: 23px;
    aspect-ratio: 1/1;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    color: var(--color-text-dark-const);
}

.product-articles-tree {
  font-size: 0.875rem;
  max-height: calc(100vh - 360px);
  overflow-y: scroll;
  margin-left: 0;
  padding-right: 10px;
}

.product-articles-tree ul {
  list-style-image: url('../imgs/ico-article.png');
}

.product-articles-tree li {
  margin-left: 20px;
  margin-bottom: 0.7rem;
}

.product-articles-tree ul {
    margin-top: 0.5rem;
    margin-left: 0;
}

.product-articles-tree li a {
  text-decoration: none;
}

.product-articles-tree li a:hover {
  text-decoration: underline;
}

.product-left-content-first-row {
    position: relative;
    display: flex;
    gap: 1rem;
}

.product-left-content-first-row .article-tools {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;    /* nenechaj article-tools „plniť priestor“ */
}

.product-left-content-first-row .article-tools span {
    flex: 0 0 auto;
    display: flex;   /* aby tooltip fungoval rovnako */
    align-items: center;
}


.product-left-content-first-row .article-tools img {
    width: 22px;
    height: auto;
    flex: 0 0 auto;
}


.article-search-input {
    width: 100%;
    border-radius: var(--border-radius);
    height: 2rem;
    border: 1px solid var(--color-text-light);
    background-color: var(--background-white);
    margin: 0.7rem 0;
    color: var(--color-text-dark);
    padding-right: 100px;
    padding-left: 10px;
}

.search-highlight {
    background-color: var(--color-yellow);
    padding: 0 2px;
    border-radius: 3px;
}

.active-highlight {
    background-color: var(--color-red);
    color: white;
}

.arrows {
    position: absolute;
    right: 90px;
    top: 13px;
    display: none;
}

.arrow-numers {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    font-size: 0.8rem;
}

.arrows button {
    padding: 7px;
    border-radius: 10px;
    transition: all 0.25s ease;
    color: var(--color-text-dark);
}

.arrow-left {
  padding-right: 5px !important;
}

.arrow-right {
  padding-left: 0 !important;
}

/* Fade kontajner */
.ai-fade {
    opacity: 1;
    transition: opacity 0.25s ease;
    height: calc(100vh - 290px);
    display: block;
    align-content: center;
}

/* pri fade-out */
.ai-fade.fade-out {
    opacity: 0;
}

/* Loader centering */
.ai-article-loader {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.ai-article-loader img {
    width: 60px;
    height: 60px;
}

.crumb {
    font-size: 0.875rem;
}

.ai-article-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.4rem;            /* medzera medzi crumbami a › */
    white-space: nowrap;    /* všetko v jednom riadku */
    overflow: hidden;
    width: 100%;
}

/* Každý crumb + separator */
.ai-article-breadcrumbs .crumb,
.ai-article-breadcrumbs .current {
    flex: 1 1 0;            /* rovnaké šírky */
    min-width: 0;           /* DÔLEŽITÉ aby ellipsis fungoval */
    display: block;         /* block → funguje text-overflow */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ‘Obsah’ (home crumb) nech je auto-width */
.ai-article-breadcrumbs .crumb-home {
    flex: 0 0 auto;
    max-width: 20%;         /* ak chceš, aby nezjedol celý riadok */
    white-space: nowrap;
}

.ai-article-body {
    height: calc(100vh - 385px);
    overflow-y: scroll;
    padding-right: 1rem;
}

.ai-article-body {
  font-size: 0.875rem;
}

.ai-article-body h2 {
  margin: 1rem 0;
  font-weight: 600;
}

.ai-article-body h2:first-child {
  margin-top: 0;
}

.ai-article-body ul,
.ai-article-body ol {
    margin: 1.4rem 2.5rem;
}

.ai-article-body h1 {
    font-size: 1.725rem;
    line-height: 2rem;
}

.ai-article-body h2 {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    font-size: 1.5rem;
    font-weight: 500;
}

.ai-article-body h3 {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    font-size: 1.25rem;
}

.ai-article-body table {
  margin: 1rem 0;
}

.ai-article-body td {
  padding: 0.75rem;
}

.ai-article-tools {
    margin-top: 0.3rem;
    width: 100%;
    margin-bottom: 0.4rem;
}

.ai-article-tools .product-left-content-first-row {
    width: 100%;
}

.crumb {
    border-bottom: 1px solid var(--color-text-dark);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.crumb:hover {
    border-bottom: 1px solid var(--color-active-yellow);
    transition: all 0.3s ease;
}

span.crumb.current {
    border: none;
}

.article-tools {
    display: flex;
    gap: calc(var(--gap) / 2);
    justify-content: space-between;
    cursor: pointer;
}

.article-tools img {
  width: 30px;
}

a.section-anchor {
    display: none;
}

ul.toc-list {
    list-style-type: none;
    margin: 1rem 1rem;
    color: var(--color-text-light);
}

ul.toc-list a {
    border-bottom: 1px solid var(--color-text-dark);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

ul.toc-list a:hover {
    border-bottom: 1px solid var(--color-active-yellow);
    transition: all 0.3s ease;
}

.article-date, .article-meta {
    color: var(--color-text-light);
    margin: 0;
}

p.article-meta.article-laws {
    margin-bottom: 1rem;
}

img.emoji {
    display: none !important;
}

.product-ai-chat-element {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.product-ai-chat-header {
    height: 30px;
    display: flex;
    justify-content: space-between;
}

.product-ai-chat-footer {
    height: 24px;
}

.product-ai-chat-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    gap: var(--gap);
    max-height: calc(100% - 105px);
}

.product-ai-chat-wrapper h2 {
    text-align: center;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.7rem;
    max-width: 80%;
    color: var(--color-text-light);
}

.product-ai-chat-window {
    width: 100% !important;
    max-height: none;
    height: 100%;
    box-sizing: border-box;
    overflow-x: visible;
}

.product-ai-chat-wrapper .front-ai-chat-window {
    width: 100% !important;
    overflow-x: hidden;
}


.chat-search-input {
    width: 100%;
    border-radius: var(--border-radius);
    height: 2rem;
    border: 1px solid var(--color-text-light);
    background-color: var(--background-white);
    color: var(--color-text-dark);
    padding-right: 100px;
    padding-left: 10px;
}

.ai-chat-tools {
    width: 100%;
}

.ai-chat-tools-right {
    display: flex;
    gap: var(--gap);
    font-size: 0.875rem;
    width: 100%;
    justify-content: right;
}

.product-new-conversation, .product-history {
    display: flex;
    gap: calc(var(--gap) / 2);
    align-items: center;
    color: var(--color-text-light);
    cursor: pointer;
}

.faichat-meta-left {
  display: flex;
}

.faichat-product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 1;
    margin-top: 0.25rem;
    width: calc(100% - 20px);
}

.faichat-meta-tools {
    display: flex;
    gap: calc(var(--gap) / 2);
}

.ai-article-block-highlight {
    background-color: var(--color-yellow);
    color: var(--color-text-dark-const);
    border-radius: 4px;
}

.product-ai-chat-header .arrows {
    top: 2px;
    right: 80px;
}

.product-chat-history {
  display: none;
}

#product-chat-history {
    width: 100%;
    height: 100%;
}

.product-chat-history__item-main {
    display: flex;
    justify-content: space-between;
}

h4.product-chat-history__question {
    width: 70%;
}

.product-chat-history__meta {
    width: 30%;
    display: flex;
    justify-content: start;
    font-size: 0.875rem;
    gap: var(--gap);
}

.product-chat-history__header h3 {
    font-weight: 700;
}

.product-chat-history__header {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-text-light);
    margin-bottom: 30px;
}

button.product-chat-history__close {
    color: var(--color-text-light);
    width: 2rem;
    border: 1px solid var(--color-text-light);
    height: 2rem;
    transition: all 0.3s ease;
    transform: translateY(0);
    border-radius: var(--border-radius);
}

button.product-chat-history__close:hover {
  transform: translateY(-4px);
    transition: all 0.3s ease;
}

.product-chat-history__body {
    height: calc(100% - 60px);
    padding-right: 20px;
    overflow-y: scroll;
}

/* ----------- Stop KLIENT WORKSPACE ------------- */