/* VESTCAR Cookie Consent - frontend */

.vc-cc {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  background: #1a1a1a;
  color: #f2f2f2;
  border: 1px solid #333;
  border-left: 4px solid #ffd154;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  font-family: inherit;
  display: none;
}
.vc-cc.vc-cc--show { display: block; }
.vc-cc__inner { max-width: 1140px; margin: 0 auto; padding: 20px 24px; }
.vc-cc * { box-sizing: border-box; }

.vc-cc__main {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.vc-cc__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  flex: 1 1 380px;
  color: #d8d8d8;
}
.vc-cc__text a { color: #ffd154; text-decoration: underline; }

.vc-cc__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.vc-cc__btn {
  border: 1px solid transparent;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.vc-cc__btn--primary { background: #ffd154; color: #1a1a1a; border-color: #ffd154; }
.vc-cc__btn--primary:hover { background: #cd942b; border-color: #cd942b; }
.vc-cc__btn--ghost { background: transparent; color: #f2f2f2; border-color: #555; }
.vc-cc__btn--ghost:hover { border-color: #ffd154; color: #ffd154; }

/* Nastavenia (rozbalené) */
.vc-cc__settings { margin-top: 18px; border-top: 1px solid #333; padding-top: 16px; }
.vc-cc__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  cursor: pointer;
}
.vc-cc__row-txt { display: flex; flex-direction: column; }
.vc-cc__row-txt strong { font-size: 14px; color: #fff; }
.vc-cc__row-txt small { font-size: 12px; color: #9a9a9a; margin-top: 2px; }
.vc-cc__row input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; accent-color: #ffd154; cursor: pointer; }
.vc-cc__row input[disabled] { opacity: 0.6; cursor: not-allowed; }
.vc-cc__settings-actions { margin-top: 12px; }

/* Plávajúca ikonka na znovuotvorenie (decentná, okrúhla, len ikona) */
.vc-cc-reopen {
  position: fixed !important;
  left: 20px !important;
  bottom: 20px !important;
  z-index: 99998 !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  background: #1a1a1a !important;
  color: #ffd154 !important;
  border: 1px solid #3a3a3a !important;
  border-radius: 50% !important;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
  opacity: 0.85;
  line-height: 1 !important;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.vc-cc-reopen.vc-cc--show { display: inline-flex !important; }
.vc-cc-reopen:hover { opacity: 1; transform: translateY(-2px); border-color: #ffd154; }
.vc-cc-reopen svg { display: block; width: 22px; height: 22px; }
/* poistka: ikona je vždy líniová (žiadne globálne CSS jej nesmie vyplniť tvar) */
.vc-cc-reopen svg path { fill: none !important; stroke: currentColor !important; stroke-width: 1.8px; }
/* pri scrollovaní k pätičke ikonku schovať - nikdy neprekryje claim */
.vc-cc-reopen.vc-cc--nearfoot { opacity: 0; visibility: hidden; pointer-events: none; }

.vc-cc-open-link { cursor: pointer; }

@media (max-width: 600px) {
  .vc-cc__inner { padding: 16px; }
  .vc-cc__actions { width: 100%; }
  .vc-cc__btn { flex: 1 1 auto; text-align: center; }
}
