html {
  height: 100%;
  scroll-behavior: smooth;
}

#realtySearch,
#projects-section,
#about-section,
#contact-section {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-repeat: no-repeat;
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 16px;
  color: #444;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

.img-detail {
  max-width: 300px;
  height: auto;
  border: 1px solid #E2E2E9;
  padding: 5px 5px 0;
  box-shadow: 0 3px 5px rgba(57, 10, 72, 0.1);
}

.img-login {
  width: 250px;
  margin-left: -59px;
}

/* BUTTONY */
#button {
  width: 455px;
  height: 40px;
  font-size: 15px;
  background: linear-gradient(black 0%, #222 100%);
  border: none;
  color: white;
}

#button:hover {
  background: linear-gradient(black 0%, #444 100%);
}

.btn {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  box-sizing: border-box;
  background: linear-gradient(black 0%, #222 100%);
  color: white;
  border: none;
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 15px;
}

.btn:hover {
  background: linear-gradient(black 0%, #444 100%);
}

/* FONTY */
.text {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 15px;
  color: #444;
}

.text a {
  text-decoration: none;
  color: #444;
}

.text a:hover {
  color: #0fadfb;
}

.text-chyba {
  color: #840000;
}

.text-mobil,
.biely,
.biely a {
  color: white;
}

.biely a:hover {
  color: #0fadfb;
}

.modry {
  color: #0fadfb;
}

.nadpis {
  font-size: 20px;
  color: #0fadfb;
  font-weight: 500;
  display: block;
}

.center {
  text-align: center;
}

.tucny {
  font-weight: 500;
}

.top {
  font-size: 35px;
  font-weight: 700;
  text-shadow: 0 1px 5px rgba(75, 75, 75, 0.5);
}

.vacsi {
  font-size: 20px;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(75, 75, 75, 0.5);
}

/* BODY / TOP */
#top-cele {
  margin: 0 auto;
  background-image: url("../images/top-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#top {
  max-width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.left-side {
  display: flex;
  align-items: center;
  gap: 30px;
}

#logo-top {
  height: 100px;
  margin-top: 10px;
}

.logos-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logos-right img {
  height: 120px;
}

.top-text {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 25px;
  color: #555;
  text-decoration: none;
}

/* SLIDER */
#slider {
  width: 100%;
  height: calc(100vh - 170px);
  min-height: 420px;
  max-height: 1200px;
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* obrázok slidera */
#slider .slider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  will-change: transform;
  z-index: 0;
}

/* obsah slidera */
#slider .slider-content {
  position: relative;
  z-index: 2;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 25px !important;
}

#slider .slider-content .top {
  display: block;
}

/* tlačidlá v slideri */
#slider .slider-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 750px;
}

#slider .button-slider {
  flex: 1;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

#slider .button-slider span {
  position: relative;
  z-index: 2;
  transition: color .35s ease;
  text-decoration: none !important;
}

#slider .button-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 1;
}

#slider .button-slider:hover::before {
  transform: scaleX(1);
}

#slider .button-slider:hover span {
  color: white;
}

/* šípka dole */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  cursor: pointer;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(45deg);
  }

  50% {
    transform: translateX(-50%) translateY(8px) rotate(45deg);
  }
}

@keyframes subtleZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

#slider.is-ready .slider-bg {
  animation: subtleZoom 10s ease-in-out forwards;
}

/* MOBIL */
@media (max-width: 700px) {
  #slider {
    height: clamp(430px, 120vw, 620px);
    min-height: 430px;
  }

  #slider .slider-content {
    padding: 0 20px;
  }

  #slider .slider-buttons {
    flex-direction: column;
    align-items: center;
    max-width: 320px;
  }

  #slider .button-slider {
    width: 100%;
    max-width: 320px;
  }

  .top {
    font-size: 28px;
  }

  .vacsi {
    font-size: 17px;
  }
}
/* KONIEC SLIDER */

#mapa {
  width: 100%;
}

#telo-cele {
  padding: 0;
  margin: 0px auto;
}

#telo {
  width: 75%;
  padding: 0;
  margin: 0px auto;
}

#detail-cele {
  padding: 0;
  margin: 0px auto;
}

#detail {
  width: 75%;
  padding: 0;
  margin: 0px auto;
}

#logo {
  float: left;
  height: 18px;
}

#logo-admin {
  height: 16px;
}

#filter-cele {
  margin: 0 auto;
  background-image: url("../images/top-bg-zaloha.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
}

#filter {
  width: 75%;
  padding: 0;
  margin: 0px auto;
}

/* ===== Footer bottom bar (ako na obrázku) ===== */
#down-cele {
  padding: 0;
  margin: 0px auto;
  background: linear-gradient(#242323 0%, black 100%);
}

#down {
  width: 75%;
  padding: 0;
  margin: 0px auto;
  margin-top: -5px;
}

#down-1 {
  float: left;
  margin-right: 50px;
}

.down-col {
  float: left;
  margin-right: 50px;
}

/**** LOGA v DOWN ****/
#down-3 {
  float: right;
  margin-top: 0;
  z-index: 100;
  height: auto;
  text-align: right;
}

/* hlavné logo */
#down-3 .footer-main-logo {
  height: 50px;
  width: auto;
  display: block;
  margin: 20px 0 14px auto;
}

/* partner logá desktop */
#down-3 .footer-partner-logos {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

#down-3 .footer-partner-logos .partner-logo {
  display: block;
  width: auto !important;
  height: 80px !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
}

/* MOBILE */
@media (max-width: 900px) {
  #down-3 {
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    height: auto;
  }

  #down-3 .footer-main-logo {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 12px auto;
  }

  #down-3 .footer-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  #down-3 .footer-partner-logos .partner-logo {
    display: block;
    width: auto !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
}


.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.4;
  padding: 10px 0;
}

.footer-bottom-bar a {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
}

.footer-bottom-bar a:hover {
  color: #0fadfb;
}

/* 3 rovnaké šírky aby stred ostal naozaj v strede */
.footer-bottom-bar>div {
  flex: 1;
}

.footer-bottom-bar .fb-left {
  text-align: left;
}

.footer-bottom-bar .fb-mid {
  text-align: center;
  white-space: nowrap;
}

.footer-bottom-bar .fb-right {
  text-align: right;
}

/* mobil: nech sa to zloží pod seba a vycentruje */
@media (max-width: 900px) {
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-bar>div {
    flex: none;
    width: 100%;
    text-align: left !important;
    white-space: normal;
  }
}

/* ===== Social line: čiara – ikonky – čiara ===== */
.footer-social-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin: 12px 0;
}

/* čiary */
.footer-social-line::before,
.footer-social-line::after {
  content: "";
  flex: 1;
  height: 3px;

  background:
    linear-gradient(to bottom,
      rgba(255, 255, 255, .60) 0px,
      rgba(255, 255, 255, .60) 1px,
      transparent 1px,
      transparent 2px,
      rgba(255, 255, 255, .60) 2px,
      rgba(255, 255, 255, .60) 3px);
}

/* ikonky v strede */
.fsl-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;

  border-radius: 2px;
  /* hranaté ako v tvojom štýle */
  border: 1px solid rgba(255, 255, 255, .60);
  background: rgba(255, 255, 255, .06);

  text-decoration: none;
  transition: .18s ease;
}

.fsl-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, .92);
}

.fsl-icon:hover {
  border-color: rgba(15, 173, 251, .75);
  background: rgba(15, 173, 251, .14);
  transform: translateY(-2px);
}

.fsl-icon:hover svg {
  fill: #0fadfb;
}

.footer-bottom-bar .fb-right {
  text-align: right;
  white-space: nowrap;
}

/* ===== Footer bottom bar (ako na obrázku) ===== */
#lava {
  padding: 10px;
  float: left;
  width: 48%;
  background: linear-gradient(#f9f9f9 0%, transparent 100%);
  border-radius: 6px;
}

#prava {
  padding: 10px;
  float: right;
  width: 48%;
}

/* === DETAIL ANIMATION === */

#lava-detail,
#prava-detail {
  opacity: 0;
  transform: translateX(0);
  transition: transform .8s cubic-bezier(.22, .61, .36, 1),
    opacity .8s ease;
  will-change: transform, opacity;
}

/* smer */
#lava-detail {
  transform: translateX(-80px);
}

#prava-detail {
  transform: translateX(80px);
}

/* keď sú vo viewporte */
#lava-detail.is-visible,
#prava-detail.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* malý delay pre pravú stranu (vyzerá to luxusnejšie) */
#prava-detail.is-visible {
  transition-delay: .15s;
}

/* rešpektovanie reduced motion */
@media (prefers-reduced-motion: reduce) {

  #lava-detail,
  #prava-detail {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

#lava-65 {
  padding: 10px;
  float: left;
  width: 70%;
  background: linear-gradient(#f9f9f9 0%, transparent 100%);
  border-radius: 6px;
}

#prava-35 {
  padding: 15px;
  float: right;
  width: 25%;
  border-left: 1px solid #E0E0E0;
}

#lava-35 {
  float: left;
  width: 310px;
  /* background: linear-gradient(#f9f9f9 0%, transparent 100%); */
  border-radius: 6px;
}

#prava-65 {
  float: right;
  width: 870px;
}

#lava-login {
  padding: 10px;
  float: left;
  width: 40%;
  background: linear-gradient(#f9f9f9 0%, transparent 100%);
  border-radius: 6px;
}

#prava-login {
  padding: 10px;
  float: right;
  width: 56%;
}

.detail-cols {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

#lava-detail {
  flex: 0 0 60%;
}

#prava-detail {
  flex: 1;
}

#lava-detail p {
  text-align: justify;
}

/* bonus: aby padding/border nerobili "pretečenie" */
#lava-detail,
#prava-detail {
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .detail-cols {
    flex-direction: column;
  }
}

/* MENU MOBIL */

#menu-mobil {
  display: none;
}

#menu {
  float: right;
  margin-right: -45px;
  margin-top: 2px;
}

.menu-nadpis {
  font-family: PT Sans;
  font-size: 14px;
  text-decoration: none;
  color: white;
}

.page_title,
.what_to_do {
  font-weight: 300;
  line-height: 120%;
  text-align: center;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .8);
  text-transform: uppercase;
}

a,
.side_menu {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.side_menu {
  background: linear-gradient(#000 0%, #000 13%, transparent 100%);
  height: 100vh;
  left: -250px;
  position: fixed;
  top: 0;
  width: 250px;
}

.side_menu .container {
  padding: 0 1em;
}

.burger_box {
  display: block;
  float: right;
  margin-right: -45px;
}

.burger_box a.menu-icon {
  display: inline-block;
  float: none;
  height: 25px;
  padding: 10px;
  opacity: .7;
  width: 25px;
  z-index: 100;
}

.burger_box a.menu-icon:hover,
.burger_box a.menu-icon.opened {
  opacity: 1;
}

.burger_box a.menu-icon.opened {
  background: #000;
}

.burger_box .menu-icon_box {
  display: inline-block;
  height: 25px;
  position: relative;
  text-align: left;
  width: 25px;
}

.burger_box .menu-icon_line {
  background: white;
  border-radius: 2px;
  display: inline-block;
  height: 3px;
  position: absolute;
  width: 100%;
}

.burger_box .menu-icon_line--1 {
  top: 2px;
}

.burger_box .menu-icon_line--2 {
  top: 10px;
}

.burger_box .menu-icon_line--3 {
  top: 18px;
}

.burger_box .menu-icon_line--1 {
  transition: top 200ms 250ms, transform 200ms;
  -webkit-transition: top 200ms 250ms, -webkit-transform 200ms;
}

.burger_box .menu-icon_line--2 {
  transition: opacity 0ms 300ms;
  -webkit-transition: opacity 0ms 300ms;
}

.burger_box .menu-icon_line--3 {
  transition: top 100ms 300ms, transform 200ms;
  -webkit-transition: top 100ms 300ms, -webkit-transform 200ms;
}

.burger_box .menu-icon.opened .menu-icon_box {
  transform: scale3d(0.9, 0.9, 0.9);
  -webkit-transform: scale3d(0.9, 0.9, 0.9);
}

.burger_box .menu-icon.opened .menu-icon_line {
  top: 10px;
}

.burger_box .menu-icon.opened .menu-icon_line--1 {
  transform: rotate3d(0, 0, 1, 45deg);
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transition: top 100ms, transform 200ms 250ms;
  -webkit-transition: top 100ms, -webkit-transform 200ms 250ms;
}

.burger_box .menu-icon.opened .menu-icon_line--2 {
  opacity: 0;
  transition: opacity 200ms;
  -webkit-transition: opacity 200ms;
}

.burger_box .menu-icon.opened .menu-icon_line--3 {
  transform: rotate3d(0, 0, 1, -45deg);
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transition: top 200ms, transform 200ms 250ms;
  -webkit-transition: top 200ms, -webkit-transform 200ms 250ms;
}

.list_load {
  display: none;
  list-style: none;
  padding: 0;
}

.list_item {
  margin-left: -20px;
  opacity: 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.list_item a {
  color: #fff;
  display: block;
  padding: 5px 10px;
  text-decoration: none;
}

.list_item a:hover {
  background: linear-gradient(to right, #0fadfb 0%, #0fadfb 30%, transparent 100%);
}

/* MENU HORIZONTALNE */

.menu-bar {
  height: 50px;
  background-color: #333;
}

.menu-inner {
  width: 75%;
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
}

.menu-bar a {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 15px;

  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 15px;
  text-decoration: none;
  color: white;
  box-sizing: border-box;
}

.menu-bar a:hover {
  background-color: black;
  color: white;
}

.menu-home {
  padding-right: 12px;
}

#logo {
  height: 18px;
  display: block;
}

#menu-h-prava {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

#menu-h-logo {
  height: 16px;
  display: block;
}

#menu-h-logo-mail {
  height: 15px;
  display: block;
}

#navbar {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  transition: top 0.3s;
  z-index: 99999999;
}

#navbar.is-visible {
  top: 0;
}

.active-menu-green {
  background: linear-gradient(#0fadfb 0%, transparent 80%);
  color: white;
}

.active-menu-red {
  background: linear-gradient(darkred 0%, transparent 80%);
  color: white;
}


/* SEPARATOR */
#separator {
  clear: both;
}

#separator-2 {
  clear: both;
  height: 2px;
}

#separator-5 {
  clear: both;
  height: 5px;
}

#separator-8 {
  clear: both;
  height: 8px;
}

#separator-9 {
  clear: both;
  height: 9px;
}

#separator-10 {
  clear: both;
  height: 10px;
}

#separator-20 {
  clear: both;
  height: 20px;
}

#separator-30 {
  clear: both;
  height: 30px;
}

#separator-40 {
  clear: both;
  height: 40px;
}

#separator-50 {
  clear: both;
  height: 50px;
}

#separator-60 {
  clear: both;
  height: 60px;
}

#separator-70 {
  clear: both;
  height: 70px;
}

#separator-80 {
  clear: both;
  height: 80px;
}

#separator-90 {
  clear: both;
  height: 90px;
}

#separator-100 {
  clear: both;
  height: 100px;
}

#separator-140 {
  clear: both;
  height: 140px;
}

/* SCROLL TOP */
.scrollToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
}

#scroll {
  width: 50px;
}

/* ============================= */
/* ===== ADMIN TABUĽKY ========= */
/* ============================= */

.moja-tabulka {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.moja-tabulka thead {
  background: #222;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
}

.moja-tabulka th {
  padding: 10px 12px;
  vertical-align: middle;
}

.moja-tabulka td {
  padding: 14px 12px;
  vertical-align: middle;
}

.moja-tabulka tbody tr {
  border-bottom: 1px solid #eee;
  transition: background .15s ease, box-shadow .15s ease;
}

.moja-tabulka tbody tr:hover {
  background: linear-gradient(to right, rgba(15, 173, 251, .08) 0%, rgba(0, 0, 0, 0) 55%);
  box-shadow: inset 3px 0 0 rgba(15, 173, 251, .9);
}

/* skryté ponuky */
.moja-tabulka tr.is-hidden {
  opacity: .55;
}

.moja-tabulka tr.is-hidden .cena {
  text-decoration: line-through;
}

/* helpery */
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.lokalita {
  font-size: 13px;
  color: #777;
}

.cena {
  font-weight: 600;
  color: #0fadfb;
}


/* ================================= */
/* ===== TABUĽKA PONUKY ============= */
/* ================================= */

.moja-tabulka.tab-ponuky th:nth-child(1),
.moja-tabulka.tab-ponuky td:nth-child(1) {
  width: 30px;
  padding: 0 8px;
  text-align: center;
}

.moja-tabulka.tab-ponuky th:nth-child(2),
.moja-tabulka.tab-ponuky td:nth-child(2) {
  width: 100px;
  text-align: center;
}

.moja-tabulka.tab-ponuky th:nth-child(3),
.moja-tabulka.tab-ponuky td:nth-child(3) {
  width: 60px;
  text-align: center;
}

.moja-tabulka.tab-ponuky th.col-title,
.moja-tabulka.tab-ponuky td.col-title {
  width: auto;
  text-align: left;
  white-space: normal;
}

/* názov ponuky max 2 riadky */

.moja-tabulka.tab-ponuky .ponuka-title {
  font-weight: 400;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.moja-tabulka.tab-ponuky .lokalita {
  display: block;
  margin-top: 6px;
}

.moja-tabulka.tab-ponuky th:nth-child(5),
.moja-tabulka.tab-ponuky td:nth-child(5) {
  width: 90px;
  text-align: center;
  font-size: 13px;
}

.moja-tabulka.tab-ponuky th:nth-child(6),
.moja-tabulka.tab-ponuky td:nth-child(6) {
  width: 90px;
  text-align: center;
  font-size: 13px;
}

.moja-tabulka.tab-ponuky th:nth-child(7),
.moja-tabulka.tab-ponuky td:nth-child(7) {
  width: 100px;
  text-align: right;
}

.moja-tabulka.tab-ponuky th:nth-child(8),
.moja-tabulka.tab-ponuky td:nth-child(8) {
  width: 120px;
  text-align: center;
}

.moja-tabulka.tab-ponuky th:nth-child(9),
.moja-tabulka.tab-ponuky td:nth-child(9) {
  width: 70px;
  text-align: center;
}


/* ================================= */
/* ===== TABUĽKA ČLÁNKY ============ */
/* ================================= */

.tab-clanky {
  width: 100%;
  table-layout: fixed;
  font-size: 15px;
}

/* ID */
.tab-clanky .col-id {
  width: 60px;
  text-align: left;
}

/* Nadpis */
.tab-clanky .col-title {
  text-align: left !important;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dátumy */
.tab-clanky .col-date {
  width: 200px;
  text-align: left !important;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 13px;
}

/* Akcie */
.tab-clanky .col-actions {
  width: 140px;
  text-align: right;
}

.moja-tabulka.tab-clanky th,
.moja-tabulka.tab-clanky td {
  padding: 8px 8px;
}

/* === TABUULKA DETAIL ==== */
.detail-tabulka {
  width: 100%;
  border-collapse: collapse;
}

.detail-tabulka td {
  padding: 7px 14px;
  vertical-align: middle;
}

.detail-tabulka tr:nth-child(even) {
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.025) 0%,
      rgba(0, 0, 0, 0.01) 40%,
      transparent 100%);
}

.detail-tabulka tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.detail-tabulka tr:last-child {
  border-bottom: none;
}

.detail-tabulka td:first-child {
  text-align: left;
}

.detail-tabulka td:last-child {
  text-align: right;
}

.detail-tabulka h3 {
  font-size: 15px;
  font-weight: 300;
  margin: 0;
}

/****** Druha tabuka ******/
.detail-box {
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.detail-box-head {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  background: #333;
}

.detail-box-head h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.detail-tabulka-location {
  border-top: 0;
}


/* ================================= */
/* ===== AKCIE / IKONY ============== */
/* ================================= */

.actions-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.admin-ikona {
  height: 18px;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}

.admin-ikona:hover {
  opacity: 1;
  transform: scale(1.1);
}

.delete:hover {
  filter: brightness(0.8) sepia(1) hue-rotate(-50deg);
}

/* === TLAČIDLÁ V EDIT ČLÁNKOCH ===== */
.button-row {
  display: flex;
  gap: 12px;
}

/* spoločné nastavenia */
.button-row .upload-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 0px !important;
}

/* HLAVNÉ tlačidlo */
.button-row .upload-btn:not(.secondary-btn) {
  background: #0fadfb;
  color: #fff;
}

.button-row .upload-btn:not(.secondary-btn):hover {
  background: #0a98dd;
}

/* SECONDARY tlačidlo – výrazná tmavšia modrá */
.button-row .secondary-btn {
  background: #0077cc;
  color: #fff;
}

.button-row .secondary-btn:hover {
  background: #0062a8;
}

/* ===== TOP tlačidlo (aby vyzeralo ako ikonka) ===== */
.move-top-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 16px;
  transition: .15s ease;
}

.move-top-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}

/* ===== FOTO (zjednotené - bez konfliktov) ===== */
.thumb-wrapper {
  display: inline-block;
  width: 100px;
  height: 70px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  vertical-align: middle;
}

.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}

.thumb-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s;
}

.thumb-wrapper:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

/* ===== DRAG HANDLE ===== */
.moja-tabulka .drag-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  cursor: grab;
  user-select: none;
  opacity: .55;
  font-size: 18px;
  line-height: 1;
}

.moja-tabulka tbody tr:hover .drag-handle {
  opacity: 1;
}

.moja-tabulka .drag-handle:active {
  cursor: grabbing;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff7d6;
  border: 1px solid #ffe08a;
  font-size: 16px;
}

.move-top-btn {
  font-size: 18px;
  line-height: 1;
  padding: 6px 10px;
}

.move-top-btn:hover {
  transform: translateY(-1px);
}

/* koniec tabulka admin */

/****** CENA V DETAILE – ZAUJIMAVEJSIA PREMIUM VERZIA ******/

#cena {
  position: relative;
  overflow: hidden;
  padding: 26px 26px 22px;
  color: #fff;
  box-sizing: border-box;
  border-radius: 0;

  background:
    linear-gradient(135deg, #1f6fbd 0%, #2a8bdc 55%, #46a8f0 100%);
}

/* dekor v pozadí */
#cena::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

#cena::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

#cena>* {
  position: relative;
  z-index: 1;
}

/* maly horny stitok */
#cena .cena-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(3px);
}

/* hlavna cast ceny */
#cena .cena-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

#cena h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

#cena .cena-side-note {
  flex: 0 0 auto;
  margin-bottom: 6px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* ciara */
#cena .cena-divider {
  height: 1px;
  margin: 18px 0 14px;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.45) 55%,
      rgba(255, 255, 255, 0.15) 100%);
}

/* spodne info */
#cena .cena-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cena .cena-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
}

#cena .cena-meta-label {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

#cena .cena-meta-value {
  color: #fff;
  font-weight: 600;
}

#cena .cena-meta-note {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.10);
  border-left: 3px solid rgba(255, 255, 255, 0.45);
}


/* responsive */
@media (max-width: 1200px) {
  #cena h1 {
    font-size: 38px;
  }
}

@media (max-width: 900px) {
  #cena {
    padding: 22px 20px 18px;
  }

  #cena .cena-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #cena h1 {
    font-size: 34px;
  }

  #cena .cena-side-note {
    margin-bottom: 0;
  }

  #cena .cena-meta-row {
    font-size: 14px;
  }
}


/* GALERIA */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
  gap: 5px;
}

.gallery img {
  width: 70px;
  height: 70px;
  border-radius: 0px;
  object-fit: cover;
}

/* FORM CONTROL */

.form-control {
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-bottom: 3px;
  padding: 6px 10px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.42857143;
  color: #292929;
  background-color: #F6F6F6;
  background-image: none;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: #0fadfb;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(36, 153, 214, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(36, 153, 214, 0.6)
}

.form-control-sprava {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  height: 250px;
  margin-bottom: 3px;
  padding: 6px 10px;
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 200;
  font-size: 14px;
  line-height: 1.42857143;
  color: #292929;
  background-color: #F6F6F6;
  background-image: none;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control-sprava:focus {
  border-color: #0fadfb;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(36, 153, 214, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(36, 153, 214, 0.6)
}

.admin-form-sprava {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

/* INPUTY V RIADKU = 50% */
.input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.input-row>.form-control,
.input-row>.cb.form-control {
  width: 100%;
  max-width: none;
  min-width: 0;
}

/* mobil: 1 stĺpec */
@media (max-width: 700px) {
  .input-row {
    grid-template-columns: 1fr;
  }
}

.full {
  width: 100%;
}

/* CUSTOM COMBOBOX v štýle form-control */
.cb.form-control {
  position: relative;
  padding: 0;
  /* obal */
  background: #F6F6F6;
  border-radius: 0;
  /* hranaté */
}

.cb__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 6px 40px 6px 10px;
  text-align: left;
  font: inherit;
  color: #292929;
  cursor: pointer;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.cb:focus-within {
  border-color: #0fadfb;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(36, 153, 214, .6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(36, 153, 214, .6);
}

.cb__list {
  position: absolute;
  left: -1px;
  right: -1px;
  top: calc(100% + 1px);
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 0;
  /* hranaté aj dropdown */
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  display: none;
  z-index: 9999;
}

.cb__group {
  font-weight: 700;
  cursor: default;
  pointer-events: none;
  /* nedá sa kliknúť */
  opacity: 0.7;
  padding-top: 10px;
}

.cb.is-open .cb__list {
  display: block;
}

.cb__item {
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.cb__item:hover {
  background: #0fadfb;
  color: white;
}

/* CB button – prebije globálne button:hover a vždy ponechá šípku */
.cb__btn,
.cb__btn:hover,
.cb__btn:focus,
.cb__btn:active {
  background-color: transparent !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 20px !important;

  color: #292929 !important;
}

.cb__btn {
  width: 100% !important;
  height: auto !important;
}

/* otvorené = kompaktnejší dropdown */
.cb.is-open .cb__list {
  padding: 2px 0 !important;
}

.cb.is-open .cb__item {
  padding: 4px 10px !important;
}

/* aj group nech je kompaktnejšia */
.cb.is-open .cb__group {
  padding-top: 6px !important;
  padding-bottom: 2px !important;
}

/* KOCKY */
.kocky {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.kocky>div {
  text-align: justify;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.kocka-left {
  /* border: 1px solid rgb(226, 226, 226); */
  background: linear-gradient(#eeeeee 0%, transparent 100%);
  text-align: center;
  border-radius: 4px;
}

/* .kocka-center {
    border: 1px solid rgb(226, 226, 226);
} */

/* .kocka-right {
    border: 1px solid rgb(226, 226, 226);
} */
.kocky h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0fadfb;
}

/* Ikony */
.ikony {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center;
}

/* NAHLAD HESLA */
.show-pass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  user-select: none;
}

.show-pass input {
  margin: 0;
}

/* =========================
   ADMIN HEADER
========================= */
#riadok-cele-admin {
  background: #222;
  height: 45px;
}

#riadok-admin {
  max-width: 75%;
  margin: 0 auto;
}

/* =========================
   ADMIN MENU (FLEX)
========================= */
.admin-menu {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  height: 44px;
}

/* li */
.admin-menu li {
  position: relative;
  /* kvôli dropdown absolute */
}

/* linky (aj dropbtn) */
.admin-menu li a,
.admin-menu li .dropbtn {
  display: block;
  /* dôležité pre dropdown a konzistentnú výšku */
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  white-space: nowrap;
}

/* hover pre top menu */
.admin-menu li a:hover,
.admin-menu li.dropdown:hover>a.dropbtn {
  background-color: black;
}

/* =========================
   DROPDOWN
========================= */
/* dropdown kontajner */
.admin-menu li.dropdown {
  position: relative;
}

/* panel dropdownu */
.admin-menu li.dropdown .dropdown-content {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 160px;
  background: #f9f9f9;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

/* odkazy v dropdown */
.admin-menu li.dropdown .dropdown-content a {
  display: block;
  width: 100%;
  box-sizing: border-box;

  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
}

/* hover v dropdown */
.admin-menu li.dropdown .dropdown-content a:hover {
  background-color: #0fadfb;
  color: #fff;
}

/* zobrazenie dropdownu */
.admin-menu li.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================
   PRAVÁ STRANA (Náhľad + Logout)
========================= */
/* prvá položka z pravej skupiny */
.admin-menu .right {
  margin-left: auto;
}

/* logout je hneď vedľa a má svoj štýl */
.admin-menu .logout a {
  background: linear-gradient(#770000 0%, #222 100%);
}

.admin-menu .logout a:hover {
  background: linear-gradient(#b60303 0%, #222 100%);
}

/* FIX: admin menu font aby sa nemenil */
#riadok-cele-admin .admin-menu,
#riadok-cele-admin .admin-menu a,
#riadok-cele-admin .admin-menu .dropbtn {
  font-family: "Google Sans Flex", sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 1;
}

#riadok-cele-admin .admin-menu li a,
#riadok-cele-admin .admin-menu li .dropbtn {
  padding: 15px 16px;
  /* tu si vieš doladiť výšku */
}

/* Výska dropdownu v adminovi*/
.admin-menu li.dropdown .dropdown-content a {
  height: 20px;
  display: flex;
  align-items: center;
  /* text bude vertikálne v strede */
  padding: 0 16px;
}

/**********************
  OKNO PONUKA
**********************/

#okno-ponuka {
  width: 100%;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 40px;
}
@media (max-width: 2000px) {
  .property-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1600px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .property-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* KARTA */
.property-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

/* LINK vyplní celú kartu */
.property-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.property-link:visited {
  color: inherit;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
}

.property-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform .35s ease;
  will-change: transform;
}

.property-card:hover {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12),
    0 25px 25px rgba(0, 0, 0, 0.10);
}

/* BADGES */
.image-wrapper {
  position: relative;
}

.badges {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.badge {
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  width: fit-content;
}

/* ===== HLAVNÁ BRAND (NECHÁVAME) ===== */
.badge-novinka {
  background: #0fadfb;
}

/* ===== POSTUPNÉ STMAVOVANIE ===== */
.badge-top {
  background: #0c9ae0;
}

.badge-zlava {
  background: #0a86c4;
}

.badge-rezervovane {
  background: #0872a8;
}

.badge-predane {
  background: #075f8c;
}

.badge-prenajate {
  background: #064c70;
}

.badge-pripravujeme {
  background: #053b59;
}

/* ===== PRERUŠENÉ (tmavšia modrá) ===== */
.badge-preruseny_predaj {
  background: #5e5f60;
}

.badge-preruseny_prenajom {
  background: #5e5f60;
}

/* ===== UKONČENÉ (takmer čierna modrá) ===== */
.badge-predaj_ukonceny {
  background: #5e5f60;
}

.badge-prenajom_ukonceny {
  background: #5e5f60;
}

.badge-bez_provizie {
  background: #16a34a;
}


/* CONTENT */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.content h3 {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: #111;
  font-weight: 600;
}

.info {
  color: #666;
  margin: 0 0 15px 0;
}

/* deliaca čiara v karte */
.card-divider {
  margin-top: auto;
  margin-bottom: 12px;
  height: 1px;
  width: 100%;
  background: #e0e0e0;
}

/* cena + ikonka (grid = stabilné) */
.bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 12px;
  width: 100%;
}

.price {
  /* color: #0fadfb; */
  color: #111;
  font-size: 22px;
  font-weight: 500;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 22px;
  height: 22px;
  /* transition: transform .2s ease; */
  /* filter: brightness(0) saturate(100%) invert(53%) sepia(93%) saturate(1660%) hue-rotate(170deg) brightness(101%) contrast(101%); */
  filter: brightness(0) saturate(100%);
}

.card-icon img:hover {
  /* transform: scale(1.10); */
}

/* ŠÍPKY – reset len v kartách (kvôli globálnemu button štýlu 455px) */
.property-card button {
  width: auto !important;
  height: auto !important;
  font-size: inherit !important;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  line-height: 1;
}

/* ARROWS */
.property-card .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px !important;
  height: 42px !important;

  background: rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 2px;
  cursor: pointer;
  pointer-events: auto;

  z-index: 5;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}

/* ukáž šípky iba keď je myš na obrázku (stabilné) */
.image-wrapper:hover .arrow,
.image-wrapper:focus-within .arrow {
  opacity: 1;
}

.property-card .arrow:hover {
  background: rgba(0, 0, 0, 0.65) !important;
}

.property-card .arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.property-card .arrow.left {
  left: 10px;
}

.property-card .arrow.right {
  right: 10px;
}

/* =====================================================
   DETAIL CAROUSEL (SLIDE + 4 THUMBS FULL WIDTH)
===================================================== */

.detail-carousel {
  width: 100%;
  display: block;
}

/* ---------- STAGE (hlavná fotka) ---------- */
.detail-carousel .dc-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;

  border: 1px solid #E2E2E9;
  box-shadow: 0 3px 5px rgba(57, 10, 72, .1);
  background: #fff;
  outline: none;
}

/* link pre fancybox */
.detail-carousel .dc-main-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.detail-carousel .dc-main-link:focus {
  outline: none;
}

/* viewport + track */
.detail-carousel .dc-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.detail-carousel .dc-track {
  height: 100%;
  display: flex;
  transform: translateX(0);
  transition: transform 420ms ease;
  will-change: transform;
}

/* slide */
.detail-carousel .dc-slide {
  flex: 0 0 100%;
  height: 100%;
}

.detail-carousel .dc-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 600ms ease;
}

.detail-carousel .dc-slide:hover img {
  transform: scale(1.01);
}

/* reset button */
.detail-carousel button {
  width: auto !important;
  height: auto !important;
  font-size: inherit !important;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  color: inherit;
}

/* ---------- THUMBS ---------- */
.detail-carousel .dc-thumbs-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 8px;
}

.detail-carousel .dc-thumbs {
  display: flex;
  width: 100%;
  gap: 10px;

  transform: translateX(0);
  transition: transform 320ms ease;
  will-change: transform;
}

/* 4 thumby */
.detail-carousel .dc-thumb {
  flex: 0 0 calc((100% - 30px) / 4);
  display: block;
  text-decoration: none;
  cursor: pointer;
  background: transparent;

  opacity: .72;
  transition: opacity .18s ease;
}

.detail-carousel .dc-thumb:hover,
.detail-carousel .dc-thumb.is-active {
  opacity: 1;
}

.detail-carousel .dc-thumb .image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  background: #fff;
}

.detail-carousel .dc-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

/* ---------- ZOOM IKONKA ---------- */
.dc-zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 2px;

  background: rgba(0, 0, 0, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5;
  opacity: 0.8;
  transition: opacity .2s ease, background .2s ease;
}

.dc-zoom-hint:hover {
  background: rgba(0, 0, 0, 0.65);
  opacity: 1;
}

.dc-zoom-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.dc-zoom-icon::before,
.dc-zoom-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
}

.dc-zoom-icon::before {
  top: 0;
  left: 0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.dc-zoom-icon::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* ---------- ARROWS ---------- */
.detail-carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px !important;
  height: 42px !important;

  background: rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;

  display: grid !important;
  place-items: center !important;

  border-radius: 2px;
  cursor: pointer;

  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}

.detail-carousel .dc-stage:hover .arrow,
.detail-carousel .dc-stage:focus-within .arrow {
  opacity: 1;
}

.detail-carousel .arrow:hover {
  background: rgba(0, 0, 0, 0.65) !important;
}

.detail-carousel .arrow.left {
  left: 10px;
}

.detail-carousel .arrow.right {
  right: 10px;
}

/* mobil bez hover */
@media (hover:none) {
  .detail-carousel .arrow {
    opacity: 1;
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

/* TABLET */
@media (max-width: 1350px) {
  #matterport {
    height: 300px;
  }
}

/* MENŠÍ NOTEBOOK */
@media (max-width: 1250px) {
  #matterport {
    height: 260px;
  }

  .detail-title {
    font-size: 34px;
  }

  .detail-carousel .dc-thumbs {
    gap: 8px;
  }

  .detail-carousel .dc-thumb {
    flex: 0 0 calc((100% - 24px) / 4);
  }
}

/* MOBILE */
@media (max-width: 700px) {

  .detail-carousel .dc-thumbs {
    gap: 6px;
  }

  .detail-carousel .dc-thumb {
    flex: 0 0 calc((100% - 18px) / 4);
  }

  .dc-zoom-hint {
    width: 32px;
    height: 32px;
    right: 8px;
    bottom: 8px;
  }

  .detail-carousel .arrow {
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
  }
}

/* ====== BUTTONS POD CENOU – IDENTICKÉ AKO CENA ====== */
.cena-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.cena-actions .cena-btn {
  min-height: 50px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1f6fbd 0%, #2a8bdc 55%, #46a8f0 100%);
  box-shadow: none;
  transition: all .18s ease;
}

/* jemný lesk (ako cena) */
.cena-actions .cena-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.04) 20%,
      rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}

/* hover */
.cena-actions .cena-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* klik efekt */
.cena-actions .cena-btn:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

/* mobil */
@media (max-width: 700px) {
  .cena-actions {
    grid-template-columns: 1fr;
  }
}

/* Admin - badge - checkbox */
.badge-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 5px;
  /* rovnaké medzery */
}

.badge-row label {
  display: flex;
  align-items: center;
  gap: 5px;
}

#matterport {
  width: 100%;
  height: 360px;
}

/* ADMIN GALERIA */

#admin-galeria {
  margin-top: 10px;
}

.upload-box {
  background: #f2f2f2;
  padding: 20px 20px;
  text-align: center;
  border-radius: 6px;
}

.upload-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.subtext {
  color: #666;
  margin-bottom: 25px;
}

.upload-btn {
  background: #0fadfb;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.upload-btn:hover {
  background: #0f9fe8;
}

.full-button {
  width: 100%;
  padding: 18px;
  justify-content: center;
}

.upload-btn .plus {
  font-weight: bold;
  font-size: 18px;
}

.info-text {
  margin-top: 25px;
  font-size: 14px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.file-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-box {
  position: relative;
}

.upload-box.is-dragover {
  outline: 2px dashed rgba(0, 0, 0, 0.15);
  outline-offset: 6px;
  transform: translateY(-1px);
}

.file-info {
  margin-top: 12px;
  font-size: 13px;
  opacity: .75;
}

/* Koniec admin galeria */

/*****************************
 Sprava po pridaní 
 ******************************/
/* ===== MODERN ALERT ===== */
.alert {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  margin-bottom: 22px;
  border-radius: 12px;

  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 500;

  backdrop-filter: blur(6px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);

  animation: alertIn .35s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  overflow: hidden;
}

/* jemná horná linka (moderný detail) */
.alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  opacity: .6;
}

/* ===== SUCCESS ===== */
.alert.success {
  /* background: linear-gradient(135deg, #2ec5ff, #0aa2e8); */
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.alert.success::before {
  background: rgba(255, 255, 255, .6);
}

/* ===== ERROR ===== */
.alert.error {
  background: #fff5f5;
  color: #b4232c;
}

.alert.error::before {
  background: #dc3545;
}

/* ===== ICON ===== */
.alert .icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}

/* ===== CLOSE BUTTON ===== */
.alert .close {
  margin-left: auto;
  border: none;
  background: rgba(255, 255, 255, .15);
  color: inherit;

  width: 32px;
  height: 32px;
  border-radius: 8px;

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .2s ease;
}

.alert .close:hover {
  background: rgba(255, 255, 255, .3);
  transform: scale(1.08);
}

/* ===== ANIMATIONS ===== */
@keyframes alertIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* hide animation (už používaš) */
.alert.hide {
  opacity: 0;
  transform: translateY(-10px);
  transition: all .35s ease;
}

/* Koniec - Sprava po pridaní */

/* Nahlady foto v adminovi */

.preview-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.preview-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

.preview-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
}

.preview-meta {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.preview-name {
  font-size: 12px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  opacity: .85;
}

.preview-actions {
  display: flex;
  gap: 6px;
}

.pbtn {
  border: 0;
  background: rgba(0, 0, 0, .06);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pbtn:hover {
  background: rgba(0, 0, 0, .1);
}

.badge-main {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
}

.drag-handle {
  cursor: grab;
  user-select: none;
}

.preview-item[draggable="true"] {
  touch-action: none;
}

.preview-item.is-dragging {
  opacity: .6;
  transform: scale(.98);
}

.preview-item.is-over {
  outline: 2px dashed rgba(0, 0, 0, .25);
  outline-offset: -6px;
}

.hint-text {
  margin-top: 10px;
  font-size: 13px;
  opacity: .7;
}

/* V admin zoznam posuvatko */
.drag-handle {
  cursor: grab;
  user-select: none;
  display: inline-block;
  padding: 0 6px;
  font-size: 18px;
  line-height: 1;
  opacity: .7;
}

.drag-handle:active {
  cursor: grabbing;
}

.drag-ghost {
  opacity: .4;
}

.drag-chosen {
  background: rgba(0, 0, 0, .03);
}

.save-toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1f7aec;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
  opacity: 0;
  transform: translateY(15px);
  transition: all .3s ease;
  pointer-events: none;
  z-index: 9999;
}

.save-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* DASHBOARD */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 3px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}

.stat-card:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  font-size: 22px;
  background: #f1f5f9;
  padding: 10px;
  border-radius: 3px;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 3px;
}

.stat-card.green .stat-icon {
  background: #e6f7ee;
}

.stat-card.red .stat-icon {
  background: #fdeaea;
}

/* Mini status */
.mini-stats {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.mini-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #555;
}

.mini-number {
  font-weight: 700;
  font-size: 16px;
  color: #111;
}

.mini-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #777;
}

.mini-item.green .mini-number {
  color: #2e7d32;
}

.mini-item.red .mini-number {
  color: #c62828;
}

/********************
SEARCH BAR
*********************/

/* wrapper */
.realty-filter-wrap {
  max-width: 1000px;
  margin: 0 auto 25px auto;
  position: relative;
  z-index: 999999;
}

/* grid */
.realty-filter {
  display: grid;
  background: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 999999;
}

/* bez filtra = 4 stĺpce */
.realty-filter.is-clean {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* s filtrom = 4 stĺpce + X */
.realty-filter.is-filtered {
  grid-template-columns: 1fr 1fr 1fr 1fr 70px;
}

/* stĺpce */
.rf-col {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* selecty */
.realty-filter select {
  width: 100%;
  height: 60px;
  border: 0;
  outline: none;
  padding: 0 16px;
  font-size: 15px;
  color: #fff;
  background: #333;
  appearance: none;
  cursor: pointer;
}

.realty-filter select:hover {
  background-color: #3b3b3b;
}

.realty-filter select:focus {
  background-color: #3b3b3b;
  box-shadow: inset 0 0 0 2px rgba(15, 173, 251, 0.55);
}

.realty-filter select option {
  border-radius: 0;
}

/* posledný stĺpec s X */
.rf-buttons {
  width: 70px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 50000;
}

.rf-reset-btn {
  width: 70px;
  height: 60px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.rf-reset-btn:hover {
  background: #e74c3c;
}

/* staré spodné resety */
.rf-under {
  margin-top: 8px;
  font-size: 14px;
}

.rf-reset {
  color: #0fadfb;
  text-decoration: none;
  margin-right: 15px;
}

.rf-reset:hover {
  text-decoration: underline;
}

.rf-count {
  color: #555;
}

/* ===== Custom Select ===== */
.cs {
  position: relative;
  z-index: 1;
}

.cs select.js-cs-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.cs-btn {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  box-sizing: border-box;
  color: #fff;
  background: #333;
  cursor: pointer;
  user-select: none;
}

.cs-label {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.rf-col .cs-btn {
  width: 100%;
}

/* toto je jediná šípka */
.cs-caret {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  opacity: 1;
  margin-left: auto;
  flex-shrink: 0;
  color: #fff;
  line-height: 1;
  transform-origin: center;
  opacity: 0.9;
  transition: transform 0.18s ease;
}

.cs-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0;
  border-radius: 0;
  background: #333;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  max-height: 320px;
  overflow: auto;
  z-index: 99999;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.18s ease;
}

.cs.is-open .cs-menu {
  opacity: 1;
  transform: translateY(0);
}

.cs-item {
  padding: 6px 14px;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.cs-item:hover {
  background: #3a3a3a;
  padding-left: 18px;
}

.cs-item.is-selected {
  background: #0fadfb;
}

.cs.is-open .cs-btn {
  background: #3b3b3b;
  box-shadow: none;
}

.cs.is-open .cs-caret {
  transform: rotate(180deg);
}

.cs-no-caret .cs-caret {
  display: none;
}

/* ===== PAGINATION – kompaktnejšia verzia ===== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 20px 0 6px;
  flex-wrap: wrap;
}

/* text (Predošlá / Ďalšia) */
.pg-btn {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0 4px;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;

  transition: color .15s ease;
}

.pg-btn:hover {
  color: #0fadfb;
}

.pg-btn.is-disabled {
  opacity: .45;
  pointer-events: none;
}

/* čísla */
.pg-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 0px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all .15s ease;
}

.pg-num:hover {
  background: #f6f8fa;
  border-color: #d0d5db;
}

.pg-num.is-active {
  background: #0fadfb;
  border-color: #0fadfb;
  color: #fff;
}

/* bodky */
.pg-dots {
  padding: 0 4px;
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* Page loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  /* tmavšie pozadie */
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#page-loader.is-on {
  opacity: 1;
  pointer-events: auto;
}

/* cube loader */
.cube-loader {
  width: 70px;
  /* pôvodne 110px */
  height: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  /* menšia medzera */
}

.cube-loader div {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 4px;
  /* jemnejšie rohy */
  animation: cubeMove 1.4s infinite ease-in-out;
}

.cube-loader div:nth-child(1) {
  animation-delay: 0s;
}

.cube-loader div:nth-child(2) {
  animation-delay: 0.2s;
}

.cube-loader div:nth-child(3) {
  animation-delay: 0.4s;
}

.cube-loader div:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes cubeMove {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.35);
    opacity: 0.35;
  }
}

/***********************
Admin slider 
************************/

/* iba malé doplnky aby to sedelo k tvojmu adminu */
.admin-wrap {
  margin: 0 auto;
}

/* .panel{
      background:#fff;
      box-shadow:0 6px 14px rgba(0,0,0,0.06);
      padding:0px;
    } */
.panel h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sub {
  font-size: 13px;
  opacity: .75;
  margin: 0 0 14px 0;
}

.upload-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.file {
  display: block;
  background: #f6f6f6;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 2px;
  width: 420px;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 2px;
  background: #0fadfb;
  color: #fff;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(.96);
}

.slider-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.slide-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
  position: relative;
}

.slide-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
}

.slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  gap: 10px;
}

.slide-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.drag {
  cursor: grab;
  user-select: none;
  font-size: 18px;
  opacity: .65;
}

.order {
  font-size: 12px;
  opacity: .7;
  white-space: nowrap;
}

.fname {
  font-size: 12px;
  opacity: .85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.slide-actions {
  display: flex;
  gap: 6px;
}

.icon-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(0, 0, 0, .06);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.icon-btn:hover {
  background: rgba(0, 0, 0, .1);
}

.danger:hover {
  background: rgba(220, 53, 69, .15);
}

.is-dragging {
  opacity: .6;
  transform: scale(.99);
}

.is-over {
  outline: 2px dashed rgba(0, 0, 0, .25);
  outline-offset: -6px;
}

.save-toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #1f7aec;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
  opacity: 0;
  transform: translateY(15px);
  transition: all .3s ease;
  pointer-events: none;
  z-index: 999999;
}

.save-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/******** VATERMARK **********/

.watermark-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222;
  margin-top: 10px;
  cursor: pointer;
}

.watermark-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.watermark-variants {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

/****** POSIELAC V DETAILE – MODREJSIA VERZIA ******/

.detail-inquiry {
  margin-top: 10px;
  padding: 26px;
  border-radius: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #2a8bdc 0%, #1f6fbd 100%),
    radial-gradient(600px 200px at 50% 0%, rgba(255, 255, 255, .06), transparent 60%);
}

/* NADPIS */
.detail-inquiry h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.detail-inquiry p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

/* INPUTY */
.inq-row {
  margin-bottom: 14px;
}

.detail-inquiry input[type="text"],
.detail-inquiry input[type="email"],
.detail-inquiry textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 0;
  outline: none;
  transition: all .25s ease;
}

.detail-inquiry input::placeholder,
.detail-inquiry textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.detail-inquiry input:focus,
.detail-inquiry textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.18);
}

/* TEXTAREA */
.detail-inquiry textarea {
  resize: vertical;
  min-height: 110px;
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
}

/* CHECKBOX */
.inq-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.inq-check input {
  margin-top: 4px;
}

/* TLACIDLO */
.inq-submit {
  width: 100%;
  border: 0;
  background: #14294a;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 15px;
  border-radius: 0;
  /* ostré */
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.inq-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: #0f223d;
}

/* HLASKY */
.form-msg {
  margin-bottom: 14px;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 0;
}

.hp-field {
  display: none !important;
}

/****** DETAIL NADPIS *******/

.detail-heading {
  padding: 28px 0 22px;
  margin-bottom: 22px;
}

.detail-title {
  margin: 14px 0 14px;
  width: 100%;
  font-size: 30px;
  line-height: 1.14;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.8px;

  /* text-transform: uppercase; */
}

.detail-heading-line {
  width: 100%;
  height: 1px;
  background: #d9e1ea;
  margin-bottom: 20px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #2d5f95;
  text-decoration: none;

  background: rgba(44, 143, 216, 0.06);
  border: 1px solid rgba(44, 143, 216, 0.18);

  border-radius: 0;
  transition: all .2s ease;
}

.back-btn:hover {
  background: rgba(44, 143, 216, 0.12);
  border-color: rgba(44, 143, 216, 0.35);
  color: #1f4f82;
}

.detail-heading-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: #2c8fd8;
  border-radius: 0;
  box-shadow: none;
  white-space: nowrap;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  text-decoration: none;
  color: #6b7785;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s ease;
}

.back-link:hover {
  color: #2d5f95;
}

.back-arrow {
  font-size: 15px;
  line-height: 1;
  transition: transform .2s ease;
  opacity: .9;
}

.back-link:hover .back-arrow {
  transform: translateX(-3px);
}

@media (max-width: 1200px) {
  .detail-title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .detail-heading {
    padding: 22px 0 18px;
    margin-bottom: 18px;
  }

  .detail-title {
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: -0.4px;
  }

  .detail-heading-line {
    margin-bottom: 16px;
  }

  .detail-heading-bottom {
    gap: 12px;
  }

  .detail-offer-badge {
    padding: 9px 13px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .back-link {
    font-size: 13px;
  }
}

/****** Detail text *********/
.detail-text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;

}

.detail-text p {
  margin-bottom: 12px;
}

.detail-text h3 {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #1f6fbd;
}

.detail-text p:first-of-type {
  font-size: 16px;
  font-weight: 500;
}

/** CIARA POD NADPISOM **/
/* .detail-title{
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.back-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #4e6f95;
    font-weight: 500;
    transition: color .2s ease;
} */

/****** Vystraha foto *******/
.photo-note {
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.5;
  background: rgba(31, 111, 189, 0.06);
  border-left: 3px solid #1f6fbd;
  color: #4a4a4a;
}

/* .photo-note{
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.6;
    color: #7a7a7a;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 12px;
} */
/* .photo-note{
    margin-top: 20px;
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.5;
    background: #f5f7fa;
    border: 1px solid rgba(0,0,0,0.06);
    color: #555;
} */

/*********** O MNE *********/

#about-section {
  padding: 0 0;
  background: #fff;
}

.about-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-header span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0fadfb;
}

.about-header-line {
  width: 80px;
  height: 2px;
  background: #0fadfb;
  margin: 18px auto 0;
}

.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 60px;
  align-items: start;
}

/* FOTO */
.about-left img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* PRAVÁ STRANA */
.about-right {
  padding-top: 0;
}

.about-kicker {
  display: none;
}

.about-title,
.about-right h2 {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 25px;
  color: #111;
  max-width: 630px;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 50px;
  max-width: 630px;
}

/* BENEFITY */
.about-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 60px;
  width: 100%;
  max-width: 100%;
}

.about-right {
  padding-top: 0;
  min-width: 0;
}

.benefit-box {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 22px;
  background: #fff;
  min-height: 260px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-sizing: border-box;
  min-width: 0;
  overflow-wrap: break-word;
}

.benefit-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-box h3 {
  margin: 0 0 15px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
}

.benefit-box .line {
  width: 55px;
  height: 3px;
  background: #0fadfb;
  margin-bottom: 18px;
}

.benefit-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-left img {
    height: 500px;
  }

  .about-benefits {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  #about-section {
    padding: 80px 0;
  }

  .about-header {
    margin-bottom: 45px;
  }

  .about-header span {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .about-header-line {
    width: 60px;
    margin-top: 14px;
  }

  .about-title,
  .about-right h2 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
  }

  .about-left img {
    height: 380px;
  }

  .benefit-box {
    min-height: auto;
    padding: 28px 24px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
}

/****** NADPIS PRED PONUKOU ******/
.section-heading {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 950px;
  padding: 38px 20px 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
}

.section-title {
  margin: 0;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
  text-transform: uppercase;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 18px;
  color: #555;
  font-weight: 200;
}

.section-subtitle span {
  color: #0fadfb;
  font-weight: 700;
}

/*********** NOVÉ PROJEKTY *********/

#projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 80px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Header */
.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header span {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0fadfb;
}

.projects-header-line {
  width: 80px;
  height: 2px;
  background: #0fadfb;
  margin: 18px auto 0;
}

/* Content */
.projects-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.projects-title {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
  margin: 0 0 30px;
  letter-spacing: -0.3px;
}

.projects-text {
  font-size: 18px;
  line-height: 1.85;
  color: #333;
  margin: 0 0 18px;
}

/* Button */
.projects-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 34px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.8px;
  background: transparent;
  transition: all .3s ease;
}

.projects-btn:hover {
  background: #111;
  color: #fff;
  /* transform: translateY(-3px); */
}

/* Responsive */
@media (max-width: 1100px) {
  #projects-section {
    padding: 100px 40px;
  }
}

@media (max-width: 700px) {
  #projects-section {
    padding: 80px 25px;
  }

  .projects-title {
    font-size: 32px;
  }

  .projects-text {
    font-size: 16px;
  }
}

/*********** KONTAKT *********/

#contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: start;
}

.contact-left {
  padding-top: 10px;
}

.contact-title {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 500;
  color: #111;
  margin: 0 0 25px;
  max-width: 700px;
}

.contact-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 40px;
  max-width: 650px;
}

.contact-info {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-value {
  font-size: 24px;
  line-height: 1.4;
  color: #111;
  text-decoration: none;
  font-weight: 400;
}

a.contact-value:hover {
  color: #0fadfb;
}

.contact-right {
  background: #fff;
  padding: 38px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form {
  width: 100%;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form-row.full {
  grid-template-columns: 1fr;
}

.contact-input,
.contact-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  background: #f8f8f8;
  color: #222;
  padding: 15px 16px;
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 15px;
  outline: none;
  transition: all .25s ease;
  border-radius: 0;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #0fadfb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 173, 251, 0.10);
}

.contact-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-btn {
  width: 100%;
  height: 58px;
  border: 0;
  background: #111;
  color: #fff;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .25s ease;
}

.contact-btn:hover {
  background: #0fadfb;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-right {
    padding: 30px;
  }
}

@media (max-width: 700px) {
  #contact-section {
    padding: 0;
  }

  .contact-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .contact-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .contact-value {
    font-size: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-right {
    padding: 24px;
  }
}

.contact-right .form-msg {
  margin-bottom: 14px;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 0;
}

.contact-right .form-msg.success {
  background: #eaf8ef;
  color: #1f7a3f;
  border: 1px solid #bfe3cc;
}

.contact-right .form-msg.error {
  background: #fff1f1;
  color: #b4232c;
  border: 1px solid #efc2c7;
}

.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.contact-check input {
  margin-top: 3px;
}

/****** Kontakt hlasky ******/
/* OVERLAY – tmavšie pozadie */
.flash-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 35, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2147483646;
  animation: fadeIn 0.25s ease forwards;
}

.flash-popup {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  opacity: 0;
  width: 420px;
  max-width: 92%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(13, 110, 253, 0.25);
  border-left: 4px solid #0d6efd;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  z-index: 2147483647;
  animation: slideDown 0.35s ease forwards;
}

/* vnútro */
.flash-popup-inner {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

/* titulok */
.flash-title {
  font-weight: 600;
  font-size: 15px;
  color: #0d6efd;
  margin-bottom: 6px;
  letter-spacing: .3px;
}

/* text */
.flash-text {
  font-size: 14px;
  color: #1b1b1b;
  line-height: 1.5;
}

/* close */
.flash-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: .6;
  transition: .2s;
}

.flash-close:hover {
  opacity: 1;
}

/* animácie */
@keyframes slideDown {
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* skrytie */
.flash-popup.is-hiding {
  animation: slideUp 0.25s ease forwards;
}

.flash-overlay.is-hiding {
  animation: fadeOut 0.25s ease forwards;
}

@keyframes slideUp {
  to {
    transform: translateX(-50%) translateY(-20px);
    opacity: 0;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

/**** TLAČ STRÁNKY DETAIL *****/
.print-meta,
.print-header,
.print-price,
.print-footer {
  display: none;
}

@media print {

  @page {
    size: A4;
    margin: 12mm;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
    animation: none !important;
    transition: none !important;
  }

  html,
  body {
    background: #fff !important;
    color: #111 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 10.5pt !important;
    line-height: 1.4 !important;
    font-family: Arial, sans-serif !important;
  }

  /* skryť zbytočnosti */
  #flash-overlay,
  #flash-popup,
  #navbar,
  #menu,
  #menu-h-prava,
  #menu-h-logo,
  .menu,
  header,
  nav,
  #top,
  #filter,
  .realty-filter-wrap,
  .back-link,
  .cena-actions,
  .detail-inquiry,
  .photo-note,
  #matterport,
  .dc-thumbs-wrapper,
  .arrow,
  iframe,
  footer,
  #down-cele,
  #separator-10,
  #separator-20,
  #separator-30,
  #separator-50,
  #prava-detail #cena {
    display: none !important;
  }

  body>*:not(#detail-cele) {
    display: none !important;
  }

  /* hlavný obsah */
  #detail-cele,
  #detail,
  .detail-cols,
  #lava-detail,
  #prava-detail {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    background: #fff !important;
  }

  /* tlačová hlavička */
  .print-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 10mm;
    border-bottom: 2px solid #1f1f1f;
    padding-bottom: 3mm;
    margin-bottom: 2mm;
  }

  .print-header-left {
    flex: 0 0 42mm;
  }

  .print-logo {
    max-width: 100%;
    max-height: 22mm;
    display: block;
  }

  .print-header-right {
    flex: 1;
    text-align: right;
  }

  .print-header-right h2 {
    margin: 0 0 2mm 0 !important;
    font-size: 16pt !important;
    color: #111 !important;
  }

  .print-header-right p {
    margin: 0.6mm 0 !important;
    font-size: 9.5pt !important;
    color: #333 !important;
  }

  /* názov */
  .detail-heading {
    margin: 0 0 2.5mm 0 !important;
    padding: 0 0 2mm 0 !important;
    border-bottom: 1px solid #d9d9d9 !important;
  }

  .detail-title {
    margin: 0 !important;
    font-size: 21pt !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #111 !important;
  }

  /* meta */
  .print-meta {
    display: flex !important;
    justify-content: space-between;
    gap: 10mm;
    margin: 0 0 3.5mm 0 !important;
    padding: 0 !important;
    font-size: 9pt !important;
    color: #555 !important;
    border-bottom: 1px solid #ececec;
  }

  .print-meta div {
    margin: 0 0 2.5mm 0 !important;
    word-break: break-word;
  }

  /* cena badge */
  .print-price {
    display: block !important;
    width: 72mm !important;
    margin: 0 0 6mm auto !important;
    padding: 4mm 5mm !important;
    border: 1px solid #cfcfcf !important;
    border-top: 3px solid #111 !important;
    background: #f8f8f8 !important;
    text-align: right !important;
    page-break-inside: avoid !important;
  }

  .print-price h2 {
    margin: 0 0 1.5mm 0 !important;
    font-size: 20pt !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    color: #000 !important;
  }

  .print-price p {
    margin: 0 0 1mm 0 !important;
    font-size: 9pt !important;
    line-height: 1.35 !important;
    color: #333 !important;
  }

  /* hlavná fotka */
  .detail-carousel {
    display: block !important;
    margin: 0 0 5mm 0 !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .dc-stage,
  .dc-main-link,
  .dc-viewport,
  .dc-track {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .dc-slide {
    display: none !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .dc-track .dc-slide:nth-child(2) {
    display: block !important;
  }

  .dc-slide img,
  .dc-main-link img,
  .dc-viewport img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 88mm !important;
    object-fit: cover !important;
    margin: 0 !important;
    border: 1px solid #dcdcdc !important;
  }

  /* boxy */
  .print-boxes {
    display: flex !important;
    gap: 6mm !important;
    align-items: flex-start !important;
    margin: 0 0 7mm 0 !important;
  }

  .print-boxes .detail-box {
    flex: 1 1 0 !important;
    margin: 0 !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    border: 1px solid #d9d9d9 !important;
    background: #fff !important;
  }

  .detail-box-head {
    background: #333 !important;
    color: #fff !important;
    border-bottom: none !important;
    padding: 2.5mm 3.5mm !important;

    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .detail-box-head h2 {
    margin: 0 !important;
    font-size: 11pt !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: 0.3px !important;

    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .detail-tabulka,
  .detail-tabulka-location {
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
  }

  .detail-tabulka tr,
  .detail-tabulka-location tr {
    page-break-inside: avoid !important;
  }

  .detail-tabulka td,
  .detail-tabulka-location td {
    padding: 1mm 1.8mm !important;
    border-bottom: 1px solid #ececec !important;
    vertical-align: top !important;
    width: 50% !important;
  }

  .detail-tabulka td:first-child,
  .detail-tabulka-location td:first-child {
    background: #fafafa !important;
  }

  .detail-tabulka h3,
  .detail-tabulka-location h3 {
    margin: 0 !important;
    font-size: 9pt !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    color: #111 !important;
  }

  /* popis */
  .detail-text {
    margin: 0 0 6mm 0 !important;
    padding: 4mm 0 0 0 !important;
    border-top: 1px solid #e5e5e5 !important;
    font-size: 10pt !important;
    line-height: 1.55 !important;
    color: #111 !important;
    text-align: justify !important;
  }

  /* footer */
  .print-footer {
    display: table !important;
    width: 100% !important;
    margin-top: 10mm !important;
    padding-top: 4mm !important;
    border-top: 2px solid #1f1f1f !important;
    font-size: 9pt !important;
    color: #555 !important;
    table-layout: fixed !important;
  }

  .print-footer-left,
  .print-footer-center,
  .print-footer-right {
    display: table-cell !important;
    vertical-align: top !important;
  }

  .print-footer-center {
    text-align: center !important;
  }

  .print-footer-right {
    text-align: right !important;
  }

  a,
  a:visited {
    color: #111 !important;
    text-decoration: none !important;
  }
}

/* ==== LOGIN ===== */

.img-login {
  display: block;
  max-width: 380px;
  margin-left: -40px;
}

/* LOGIN LAYOUT */
.login-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

#lava-login {
  padding: 30px;
  width: 100%;
  max-width: 600px;
  flex: 0 0 600px;
  background: linear-gradient(#f9f9f9 0%, transparent 100%);
  border-radius: 6px;
  box-sizing: border-box;
}

#prava-login {
  padding: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* FORM v login */
#lava-login .form-control {
  width: 100%;
  margin-bottom: 10px;
}

#lava-login .btn {
  width: 100%;
}

.show-pass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  user-select: none;
}

/* TABLET */
@media screen and (max-width: 1024px) {
  .login-wrap {
    gap: 30px;
  }

  #lava-login {
    padding: 24px;
  }

  #prava-login {
    flex: 0 1 320px;
  }

  .img-login {
    max-width: 280px;
  }
}

/* MOBIL */
@media screen and (max-width: 768px) {
  .login-wrap {
    flex-direction: column-reverse;
    gap: 20px;
  }

  #lava-login {
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
  }

  #prava-login {
    display: none;
  }

  .img-login {
    max-width: 220px;
    margin: 0 auto;
  }

  #lava-login .nadpis {
    font-size: 22px !important;
  }

  #lava-login .text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* MALÉ MOBILY */
@media screen and (max-width: 480px) {
  #lava-login {
    padding: 18px 14px;
  }

  .img-login {
    max-width: 180px;
  }

  #lava-login .btn {
    height: 44px;
    font-size: 14px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  right: 30px;
  bottom: 30px;
  left: auto;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.25s ease;
  width: min(620px, calc(100vw - 60px));
  max-width: none;
  box-sizing: border-box;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-box {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  /* veľmi dôležité */
  margin: 0;
  background: rgba(34, 34, 34, 0.96);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  padding: 24px 28px;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.cookie-text {
  flex: 1 1 auto;
  min-width: 0;
  /* dovolí textu sa zmenšiť namiesto pretečenia */
}

.cookie-text h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.cookie-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 780px;
}

.cookie-text a {
  color: #0fadfb;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 260px;
  /* bolo 300 */
  flex: 0 0 260px;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  height: 40px;
  min-width: 100%;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn-primary {
  background: #0fadfb;
  color: #fff;
}

.cookie-btn-primary:hover {
  background: #099ce3;
}

.cookie-btn-light {
  background: #f3f3f3;
  color: #222;
}

.cookie-btn-light:hover {
  background: #e7e7e7;
}

.cookie-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-box {
  width: 100%;
  max-width: 680px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 26px;
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.cookie-modal-head h3 {
  margin: 0;
  font-size: 28px;
  color: #222;
}

.cookie-close {
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #444;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #ececec;
}

.cookie-option:first-of-type {
  border-top: none;
}

.cookie-option strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  color: #222;
}

.cookie-option p {
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  max-width: 520px;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ===== SWITCH ===== */
.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: #cfcfcf;
  border-radius: 999px;
  transition: .2s;
}

.slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.switch input:checked+.slider {
  background: #0fadfb;
}

.switch input:checked+.slider:before {
  transform: translateX(24px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cookie-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-box {
    padding: 18px;
    border-radius: 16px;
  }

  .cookie-text h3 {
    font-size: 21px;
  }

  .cookie-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-modal-box {
    padding: 20px;
    border-radius: 16px;
  }

  .cookie-modal-head h3 {
    font-size: 24px;
  }

  .cookie-option {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    transform: translateY(20px);
  }

  .cookie-banner.show {
    transform: translateY(0);
  }

  .cookie-box {
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
    /* dôležité */
    justify-content: flex-start;
  }

  .cookie-text {
    width: 100%;
  }

  .cookie-text h3 {
    font-size: 21px;
  }

  .cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    max-width: none;
  }

  .cookie-actions {
    width: 100%;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: stretch;
    /* dôležité */
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
  }

  .cookie-modal-box {
    padding: 20px;
    border-radius: 16px;
  }

  .cookie-modal-head h3 {
    font-size: 24px;
  }

  .cookie-option {
    flex-direction: column;
  }
}

/***** GDPR STRÁNKA *****/
.gdpr-page {
  max-width: 900px;
  margin: 0 auto;
}

.gdpr-intro {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.gdpr-box {
  margin-bottom: 18px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.gdpr-box h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 600;
  color: #1f6fbd;
}

.gdpr-box p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}

.gdpr-box p:last-child {
  margin-bottom: 0;
}

.gdpr-box ul {
  margin: 0;
  padding-left: 22px;
}

.gdpr-box li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.gdpr-box a {
  color: #0fadfb;
  text-decoration: none;
}

.gdpr-box a:hover {
  text-decoration: underline;
}

.gdpr-note {
  margin-top: 28px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  background: rgba(31, 111, 189, 0.06);
  border-left: 3px solid #1f6fbd;
  color: #4a4a4a;
}

@media (max-width: 900px) {
  .gdpr-box {
    padding: 20px 18px;
  }

  .gdpr-box h2 {
    font-size: 20px;
  }

  .gdpr-intro {
    font-size: 16px;
  }
}

/***************** TLAČIDLO ZOBRAZ VIAC **************/

/* wrapper nechaj */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* dorovnanie pre button (lebo nie je <a>) */
.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

/* loading stav */
.load-more-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* animácia nových ponúk */
.property-card.is-new {
  opacity: 0;
  transform: translateY(24px);
}

.property-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/***************** MOBILE *****************/
@media (max-width: 768px) {
  .load-more-wrap {
    padding: 0 20px;
  }

  .load-more-btn {
    /* width: 100%;
    max-width: 420px; */
    text-align: center;
  }
}

/*==== ARTICLE =====*/
.article {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 17px;
  color: #222;
}

.article h1 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #0fadfb;
}

.article h3 {
  font-size: 18px;
  margin-top: 20px;
}

.article p {
  margin-bottom: 15px;
}

.article .lead {
  font-size: 20px;
  font-weight: 500;
}

.article ul {
  margin: 15px 0 20px 20px;
}

.article li {
  margin-bottom: 8px;
}

.article .highlight {
  background: #f0f8ff;
  padding: 15px;
  border-left: 4px solid #0fadfb;
  font-weight: 500;
}

.article .strong {
  font-weight: bold;
  font-size: 18px;
}

.article .author {
  margin-top: 40px;
  font-weight: bold;
  text-align: right;
}

.article h1 {
  position: relative;
  padding-bottom: 10px;
}

.article h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0fadfb;
  margin-top: 10px;
}

/*==== PDF ====*/
.pdf-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  background: #f5f7fa;
  border-left: 4px solid #0fadfb;

  padding: 18px 20px;
  margin-top: 25px;

  /* border-radius: 6px; */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ľavá časť */
.pdf-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.pdf-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.pdf-text {
  min-width: 0;
}

.pdf-text strong {
  display: block;
  font-size: 16px;
  color: #222;
  line-height: 1.3;
}

.pdf-text span {
  display: block;
  font-size: 13px;
  color: #777;
  line-height: 1.4;
  margin-top: 2px;
}

/* tlačidlo */
.pdf-btn {
  background: linear-gradient(135deg, #0fadfb, #0c8fd1);
  color: #fff;

  padding: 12px 20px;
  text-decoration: none;

  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;

  white-space: nowrap;
  transition: 0.2s ease;

  flex-shrink: 0;
  box-sizing: border-box;
}

.pdf-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* menšia verzia */
.pdf-btn-small {
  display: inline-block;
  padding: 10px 20px;
}

/*==== MOBILE ====*/
@media (max-width: 600px) {

  .pdf-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .pdf-left {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }

  .pdf-icon {
    font-size: 24px;
    margin-top: 1px;
  }

  .pdf-text {
    width: 100%;
  }

  .pdf-text strong {
    font-size: 15px;
  }

  .pdf-text span {
    font-size: 12px;
  }

  .pdf-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 12px 16px;
    white-space: normal;
  }
}

/*==== Matomo ADMIN ======*/
.top-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.top-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: #222;
  transition: all 0.15s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.top-card:hover {
  background: #fafafa;
}

.top-rank-box {
  min-width: 34px;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  flex-shrink: 0;
}

.top-card-text {
  flex: 1;
  min-width: 0;
}

.top-card-title {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-card-views {
  font-size: 12px;
  color: #0fadfb;
  margin-top: 2px;
}

/***** CHCEM PRIDAŤ PONUKU VĽAVO DOLE ******/
.floating-offer-btn {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 9999;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;

  background: transparent;
  color: #111;
  text-decoration: none;

  border: 0;
  border-radius: 999px;
  overflow: visible;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);

  transition:
    width .28s ease,
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}

.floating-offer-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-offer-btn:hover {
  width: 280px;
}

.floating-offer-btn::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 4px;
  right: 0;
  bottom: 4px;

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #00b4ff, #007cc3) border-box;

  border: 2px solid transparent;
  border-radius: 999px;

  opacity: 0;
  transform: scaleX(.75);
  transform-origin: left center;

  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  transition: opacity .22s ease, transform .28s ease;
}

.floating-offer-btn:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.floating-offer-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;

  background: linear-gradient(135deg, #00b4ff, #007cc3);
  position: relative;
  border-radius: 50%;

  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
  z-index: 2;
}

.floating-offer-icon::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 17px;
  left: 17px;
  top: 18px;
  background: #fff;
  border-radius: 4px;
}

.floating-offer-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 33px;
  width: 0;
  height: 0;
  border-top: 8px solid #fff;
  border-right: 9px solid transparent;
}

.floating-offer-content {
  position: relative;
  z-index: 2;

  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .18s ease .08s, transform .18s ease .08s;

  line-height: 1.05;
  white-space: nowrap;
  padding-left: 12px;
}

.floating-offer-btn:hover .floating-offer-content {
  opacity: 1;
  transform: translateX(0);
}

.floating-offer-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.floating-offer-content small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: #777;
}

.floating-offer-arrow {
  position: relative;
  z-index: 2;

  margin-left: auto;
  margin-right: 18px;

  font-size: 30px;
  line-height: 1;
  color: #009fe3;

  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .18s ease .1s, transform .18s ease .1s;
}

.floating-offer-btn:hover .floating-offer-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .floating-offer-btn {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .floating-offer-btn:hover {
    width: 52px;
  }

  .floating-offer-btn::before {
    display: none;
  }

  .floating-offer-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .floating-offer-icon::before {
    width: 22px;
    height: 16px;
    left: 15px;
    top: 16px;
  }

  .floating-offer-icon::after {
    left: 16px;
    top: 30px;
  }

  .floating-offer-content,
  .floating-offer-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .floating-offer-btn {
    display: none !important;
  }
}