:root {

  /* BRAND */
  --color-header-bg: #0f7699;
  --color-header-bg-dark: #0c5f7a;
  --color-header-text: #ffffff;

  /* BUTTONS */
  --color-btn-bg: #ffffff;
  --color-btn-text: #0f7699;
  --color-btn-bg-hover: #e6f2f6;
  --color-btn-text-hover: #0c5f7a;

  /* TEXT */
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --color-bg: #ffffff;

  /* LAYOUT */
  --layout-max-width: 1200px;
  --layout-padding-mobile: 16px;
  --layout-padding-desktop: 20px;

  --header-height-mobile: 56px;
  --header-height-desktop: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 
    -apple-system,       /* iOS, macOS */
    BlinkMacSystemFont,  /* Chrome on macOS */
    "Segoe UI",          /* Windows */
    Roboto,              /* Android, ChromeOS */
    Oxygen-Sans, 
    Ubuntu, 
    Cantarell, 
    "Helvetica Neue", 
    Arial, 
    sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

h1 {
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 38px);
  line-height: 1.2;
  margin-bottom: 32px;
}

h2 {
  font-weight: 400;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.25;
  margin-bottom: 20px;
}

#main {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.main-layout {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.preprava_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.full_white_login {
    background-color: #ffffff;
    width: 100%;
    max-width: 420px; 
    padding: 28px 26px 30px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.full_white_login h1 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 500;
    color: #1f2933;
    text-align: center;
}
.new_mail {

    flex-direction: column;
    gap: 12px;
}
.new_mail input[type="email"],
.new_mail input[type="text"],
.new_mail input[type="password"],
.new_mail input[type="number"] {
    width: 100%;
    padding: 11px 12px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.new_mail input:focus {
    border-color: #0f7699;
    box-shadow: 0 0 0 3px rgba(15,118,153,0.15);
}
.new_mail input::placeholder {
    color: #9ca3af;
}
.new_mail button {
 margin:0 auto;
    margin-top: 6px;
    background-color: #0f7699;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .2s ease, transform .1s ease;
    max-width:500px;
    width:100%;
   
}
.new_mail button:hover {
    background-color: #0c5f79;
}

.new_mail button:active {
    transform: translateY(1px);
}
.new_mail button.secondary {
    background-color: #ffffff;
    color: #0f7699;
    border: 1px solid #0f7699;
}

.new_mail button.secondary:hover {
    background-color: #f0f9fc;
}

.new_mail textarea {
    width: 100%;
    min-height: 170px;
    padding: 8px;
    font-size: 14px;
    line-height: 1.5;

    border-radius: 8px;
    border: 1px solid #ddd;

    box-sizing: border-box;
    resize: vertical;
}

.new_mail textarea::placeholder {
    color: #9ca3af;
}

.new_mail textarea:focus {
    outline: none;
    border-color: #9ca3af;
    background-color: #ffffff;
}

.login-note {
    text-align: center;
    font-size: 14px;
    color: #ef4444;
    margin: 18px 0 8px;
}
@media (max-width: 480px) {

    .full_white_login {
        padding: 24px 20px 26px;
        border-radius: 10px;
    }

    .full_white_login h1 {
        font-size: 22px;
    }
}

.container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding-left: var(--layout-padding-mobile);
  padding-right: var(--layout-padding-mobile);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--layout-padding-desktop);
    padding-right: var(--layout-padding-desktop);
  }
}

.site-header {
  position: fixed;
  top: 0;                 /* ⬅️ KĽÚČOVÉ */
  left: 0;
  right: 0;
  z-index: 1000;

  background-color: var(--color-header-bg);
  border-bottom: 1px solid var(--color-header-bg-dark);
}

.header-inner {
  height: var(--header-height-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .header-inner {
    height: var(--header-height-desktop);
  }
}

.site-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  color: var(--color-header-text);
  text-decoration: none;

  line-height: 1.05;
  letter-spacing: 0.06em;
}


.site-title__primary {
  font-weight: 800;
  font-size: 1.2rem;
}

.site-title__secondary {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Desktop */
@media (min-width: 768px) {
  .site-title__primary {
    font-size: 1.6rem;
  }

  .site-title__secondary {
    font-size: 1.6rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header {
  background-color: #ffffff;
  color: #0c5f7a;

  border: none;
  border-radius: 4px;
  padding: 7px 12px;

  font-size: 1.05rem;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
}

@media (min-width: 768px) {
  .btn-header {
    padding: 8px 16px;
    font-size: 1.05rem;
  }
}
.btn-header:focus-visible {
  outline: 2px solid rgba(0,0,0,0.25);
  outline-offset: 2px;
}

/* =====================================================
   LOGIN ICON
   ===================================================== */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-header-text);
  padding: 4px;
}

.login-btn svg {
  display: block;
}

.login-btn:hover {
  opacity: 0.85;
}

/* =====================================================
   POSUN OBSAHU POD HEADER
   ===================================================== */
body {
  padding-top: var(--header-height-mobile);
}

@media (min-width: 768px) {
  body {
    padding-top: var(--header-height-desktop);
  }
}



/* =====================================================
   ULTRA SMALL DEVICES (< 400px)
   ===================================================== */
@media (max-width: 399px) {

  /* HEADER HEIGHT */
  .header-inner {
    height: 52px;
  }

  /* CONTAINER – menej odsadenia */
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* SITE TITLE – menší font */
  .site-title {
    line-height: 1.02;
    letter-spacing: 0.05em;
    align-items: center;
    text-align: center;
   }

  .site-title__primary {
    font-size: 0.9rem;
    font-weight: 800;
  }

  .site-title__secondary {
    font-size: 0.8rem;
    font-weight: 400;
  }

  /* HEADER ACTIONS – menší rozostup */
  .header-actions {
    gap: 6px;
  }

  /* CTA BUTTON – kompaktnejšie */
  .btn-header {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  /* LOGIN ICON – bez paddingu navyše */
  .login-btn {
    padding: 2px;
  }
}
.service-expiry {
    background: linear-gradient(135deg, #34c759, #28a745);
    color: #ffffff;
    padding: 28px 16px;
}

.service-expiry__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.service-expiry__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-expiry__content {
    font-size: 16px;
    line-height: 1.5;
}

.service-expiry__cta {
    margin-top: 18px;
}

.service-expiry__btn {
    display: inline-block;
    padding: 12px 22px;
    background-color: #ffffff;
    color: #28a745;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.service-expiry__btn:hover {
    background-color: #f2f2f2;
    transform: translateY(-1px);
}

/* ===============================
   HERO INTRO
   =============================== */

.hero-intro {
    text-align: center;
    padding: 48px var(--layout-padding-mobile) 40px;
    background-color: var(--color-bg);
}

@media (min-width: 768px) {
    .hero-intro {
        padding: 56px var(--layout-padding-desktop) 48px;
    }
}

.hero-intro__title {
    max-width: var(--layout-max-width);
    margin: 0 auto 32px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 400;
    color: var(--color-text);
}

/* ===============================
   CTA BOX
   =============================== */

.hero-cta-box {
    max-width: 760px;
    margin: 0 auto;
    background-color: var(--color-header-bg);
    border-radius: 16px;
    padding: 26px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

@media (min-width: 768px) {
    .hero-cta-box {
        padding: 30px 28px;
    }
}

.hero-cta-box__text {
    color: var(--color-header-text);
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    line-height: 1.4;
}


/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
    .hero-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta-box__text {
        text-align: center;
    }
}

.hero-cta-box {
    animation: fadeUp 0.4s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   ADS SECTION
   =============================== */

.ads-section {
    background-color: #f7f7f7; /* jemná sivá ako na obrázku */
    padding: 48px var(--layout-padding-mobile);
}

@media (min-width: 768px) {
    .ads-section {
        padding: 56px var(--layout-padding-desktop);
    }
}

.ads-section__inner {
    max-width: var(--layout-max-width);
    margin: 0 auto;
}

/* ===============================
   TITLE
   =============================== */

.ads-section__title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.25;
}

/* ===============================
   PLACEHOLDER FOR ADS
   =============================== */

.ads-section__list {
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 24px 20px; 
    box-sizing: border-box;
}
/* =====================================================
   RIADOK POPTÁVKY
   ===================================================== */

.preprava_line {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: box-shadow .2s ease, transform .2s ease;
  position: relative;
  min-height:120px;
  color:#000000;
}

.preprava_line:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.preprava_line h4
{
color:#0f7699;
font-weight:bold;
font-size: 18px;
padding:0;
margin:0;
}



/* =====================================================
   TEXTOVÁ ČASŤ
   ===================================================== */

.preprava_line a {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.preprava_line h3 {
  flex-basis: 100%;
}
.reklama_detail {
  flex: 1 1 0;
  min-width: 0; /* KRITICKÉ – bez toho text padá dolu */
  color: #494949;
  font-size: 14px;
  line-height: 1.5;
}

/* popis */
.reklama_detail p {
  color: #222222;
  margin: 0 0 8px 0;
  max-height: 7.5em;            /* cca 5 riadkov */
  overflow: hidden;
}

.reklama_detail_img {
  width: 220px;
  max-width: 30%;
  height: auto;          /* KĽÚČOVÉ */
  max-height: none;      /* poistka */
  object-fit: contain;   /* bezpečné pre flex */
  align-self: flex-start;/* aby sa nenaťahoval na výšku kontajnera */
  flex-shrink: 0;
}
.reklama_detail {
  flex: 1 1 0;
  min-width: 0;
}
/* kontakty */
.reklama_detail br {
  line-height: 1.6;
}

/* =====================================================
   LINKY
   ===================================================== */

.preprava_line:hover {
  background: #dedede;
  transition: background 0.2s ease;
}


/* =====================================================
   MOBILNÁ VERZIA
   ===================================================== */

@media (max-width: 768px) {

  .preprava_line a {
    flex-direction: column;
  }

  .reklama_detail_img {
    width: 100%;
    max-width: 100%;
  }

  .reklama_detail p {
    max-height: none; /* na mobile zobraz celý text */
  }
}
/* =====================================================
   PARNE / NEPARNE
   ===================================================== */

.preprava_line.parne {
  background-color: #cccccc;
}

.preprava_line.neparne {
  background-color: #eeeeee
}

/* =====================================================
   NADPIS
   ===================================================== */

.preprava_line h3 {
    margin: 0;
    font-size: 20px;      /* bolo 16px → lepšia hierarchia */
    font-weight: 500;     /* môže zostať 400–500 */
    color: #1f2933;
    line-height: 1.45;
}

/* =====================================================
   DETAIL / ZAVRIEŤ (LEGACY LOGIKA)
   ===================================================== */

.detail_prepravy,
.zavri_detail_prepravy {
  float: right;
  margin-top: 5px;
  width: 150px;
  position: relative;
  z-index: 2;
  color: #173F5F;
  text-decoration: underline;
  font-weight: bold;
  text-align: right;
  cursor: pointer;
}

.zavri_detail_prepravy {
  display: none;
  color: #6b7280;
}

/* mobilný textový detail */
.detail_prepravy_m {
  display: none;
  margin-top: 6px;
}

.detail_prepravy_m1 {
  color: #173F5F;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}

/* =====================================================
   SKRYTÝ DETAIL
   ===================================================== */

.preprava_line_hiden {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

/* =====================================================
   KONTAKTY
   ===================================================== */

.preprava_line_hiden table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.preprava_line_hiden table td {
  padding: 4px 0;
}

.preprava_line_hiden_td {
width:60px;
  color: #6b7280;
  padding-right: 10px;
  white-space: nowrap;
  vertical-align: top;
  font-size: 13px;
}

/* =====================================================
   TLAČIDLÁ
   ===================================================== */

.preprava_line_hiden button {
  background-color: #0f7699;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s ease;
}

.preprava_line_hiden button:hover {
  background-color: #0c5f79;
}

/* =====================================================
   ODKAZY
   ===================================================== */

.preprava_line a {
  color: #0f7699;
  text-decoration: none;
}

.preprava_line a:hover {
  text-decoration: underline;
}

/* =====================================================
   MOBIL
   ===================================================== */

@media (max-width: 768px) {

    /* wrapper okolo zoznamu – zjednodušiť */
    .ads-section__list {
        background: transparent;   /* zrušíme bielu vrstvu */
        padding: 0;                /* odstránime vnútorný rám */
        border-radius: 0;
    }

    /* samotné riadky nech sú „cards“ */
    .preprava_line {
        margin-left: 2px;
        margin-right: 2px;
        border-radius: 10px;
    }
    
    .preprava_line h3 {
        font-size: 17px;
    }

  .preprava_line {
    padding: 14px;
  }

    .detail_prepravy {
        display: none !important;
 }

  .detail_prepravy_m {
    display: block;
  }

  .detail_prepravy_m1 {
    display: inline-block;
  }

.zavri_detail_prepravy {
        display: none !important;
    }
      
  

}
.preprava-btn {
    display: block !important;
    margin-top: 6px;
    background-color: #0f7699;
    color: #ffffff !important;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 18px;
    text-decoration: none !important;
    max-width:155px;
    text-align:center !important;
    border:0;
}

.preprava-btn:hover {
    background-color: #0c5f79;
    text-decoration: none;
}
.full-btn 
{
text-align:center;
margin:0 auto;
width:100%;
}
.full-btn a {
    display: inline-block;
    margin-top: 6px;
    background-color: #0f7699;
    color: #ffffff !important;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 18px;
    text-decoration: none !important;
    max-width:400px;
    width:100%;
}

.full-btn a:hover {
    background-color: #0c5f79;
    text-decoration: none;
}

.pagination {
margin:0 auto;
    margin-top: 18px;
    font-size: 14px;
    text-align:center;
    width:100%;
}

.pagination a,
.pagination span {
    display: inline-block;
    margin: 2px 8px;
    color: #666;
    text-decoration: none;
}

.pagination a.active {
    text-decoration: underline;
    font-weight: 600;
}

.pagination a:hover {
    color: #0f7699;
}

.full-white {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}
.read-white{
    margin:0 auto;
    width: 100%;
    max-width:950px;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}




@media (max-width: 768px) {
    .full-white, .read-white {
        padding: 40px 16px;
    }
}
/* ===============================
   OFFERS COUNT
   =============================== */

.offers-count {
    margin-top: 18px;
    font-size: 14px;
    color: #555;
}
    
 
.success-box {
    max-width: 700px;
    margin: 10px auto 10px auto;
    padding: 15px;
    border-radius: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    text-align: center;
    position: relative;
}

.success-icon {
    font-size: 36px;
    color: #16a34a;
    margin-bottom: 10px;
}

.success-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* =========================================
   STEPS
   ========================================= */

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.step {
    background: #f9fafb;
    border-radius: 10px;
    padding: 8px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120px; /* 🔑 zabráni rozbitiu */
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    margin-bottom: 4px;

    background-color: var(--color-header-bg);
    color: #fff;
    border-radius: 50%;

    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    line-height: 1.45;
    color: #333;
}

@media (max-width: 768px) {

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        min-height: auto;
        padding: 0;
        background: #ffffff;
    border-radius: 0;
    
    
    }

    .step-number {
        margin-bottom: 0;
        margin-right: 14px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .step-text {
        font-size: 14px;
    }
}

/* =========================================
   FORM
   ========================================= */

/* =========================================
   FORM WRAPPER
   ========================================= */

.demand-form {
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* =========================================
   HEADINGS
   ========================================= */

.demand-form h2 {
    font-size: 28px;
    font-weight: 500;
    color: #222;
    margin-bottom: 14px;
    text-align: center;
}

/* =========================================
   TEXTAREA BLOCK
   ========================================= */

.form-block {
    margin-bottom: 4px;
}

.form-block textarea {
    width: 100%;
    min-height: 210px;
    padding: 8px;
    font-size: 14px;
    line-height: 1.5;

    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f9fafb;

    box-sizing: border-box;
    resize: vertical;
}

.form-block textarea::placeholder {
    color: #9ca3af;
}

.form-block textarea:focus {
    outline: none;
    border-color: #9ca3af;
    background-color: #ffffff;
}

/* =========================================
   FORM ROW (INPUTS)
   ========================================= */

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.form-col {
    margin-bottom: 6px;
}

.form-col input {
    width: 100%;
    padding: 8px 8px;
    font-size: 14px;

    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f9fafb;

    box-sizing: border-box;
}

.form-col input::placeholder {
    color: #9ca3af;
}

.form-col input:focus {
    outline: none;
    border-color: #9ca3af;
    background-color: #ffffff;
}

/* =========================================
   SUBMIT
   ========================================= */

.form-submit {
    text-align: center;
    margin-top: 28px;
}

.form-submit button {
    width: 100%;
    max-width: 360px;

    background-color: #0f7699;
    color: #ffffff;

    border: none;
    border-radius: 10px;

    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.form-submit button:hover {
    background-color: #0c6482;
    transform: translateY(-1px);
}

/* =========================================
   CONSENT
   ========================================= */

.form-consent {
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
    color: #666;
}

.form-consent a {
    color: #666;
    text-decoration: none;
}

.form-consent a:hover {
    text-decoration: underline;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .demand-form h2 {
        font-size: clamp(24px, 4vw, 32px);
        text-align: left;
        margin-bottom: 4px;
    }



    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 4px;
    }

    .form-col {
        margin-bottom: 8px;
    }

    .form-block {
        margin-bottom: 4px;
    }

    .form-submit {
        margin-top: 4px;
    }
}
 
    
.login-message {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.login-message--ok {
    color: #0f766e;
}

.login-message--info {
    color: #1f2933;
}

.login-note {
    color: #cc0000;
    font-size: 14px;
    margin: 0 0 8px;
}
.login-forgot {
    margin-top: 14px;
    text-align: center;
    font-size: 13px;
}

.login-forgot a {
    color: #0f7699;
    text-decoration: none;
}

.login-forgot a:hover {
    text-decoration: underline;
}


/* =====================================================
   REGISTRÁCIA – LANDING
   ===================================================== */

.registration-box {
    max-width: 700px;
    margin:0 auto;
    margin-bottom:150px;
}
.registration-box form {
    margin:0 auto;
    width:100%;
}

.reset_height
{
min-height:0 !important;
margin-bottom:0 !important;
padding-top: 0;
}
.reset_height  p a {
    color: inherit;
}
.cena_podmienky
{
color:#0f7699;
font-weight:bold;
font-size: 18px;
padding:0;
margin:0;
}
.cena_podmienky a
{
color:#0f7699;
font-weight:bold;
font-size: 18px;
padding:0;
margin:0;
}


/* TITULOK */
.reg-title {
    text-align: center;
    margin-bottom: 24px;
}

/* PODTITULOK */
.reg-subtitle {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 28px;
    color: #0f7699;
}

/* BENEFITY */
.reg-benefits {
    margin: 0 auto 32px;
    max-width: 560px;
}

.reg-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg-benefits li {
    position: relative;
    padding-left: 30px; /* viac miesta pre výraznú ikonu */
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.5;
}

.reg-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f7699' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}




/* POZNÁMKA */
.reg-note {
    text-align: center;
    font-weight: 600;
    margin: 36px 0;
}

/* CTA */
.reg-cta {
    text-align: center;
    margin-bottom: 36px;
}

/* ZÁVEREČNÝ TEXT */
.reg-footer-text {
    text-align: center;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* MOBIL */
@media (max-width: 600px) {

    .registration-box {
        padding: 0;
    }

    .reg-benefits li {
        font-size: 14px;
    }
}

/* ================================
   PARTNER SECTION
================================ */

.partner-section {
    background-color: #f7f7f7; /* jemná sivá ako na obrázku */
    padding: 48px var(--layout-padding-mobile);
    margin:0 auto;
}

.partner-section-in {

 }   
/* Row */
.partner-row {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Image */
.partner-image {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
}

.partner-image img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* Text */
.partner-text {
    flex: 1;
    max-width: 520px;
}

.partner-text h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #222;
}

.partner-text p {
    font-size: 16.5px;
    line-height: 1.6;
    color: #555;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .partner-row {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .partner-image {
        flex: none;
    }

    .partner-image img {
        max-width: 100%;
    }

    .partner-text {
        max-width: 100%;
    }
}

/* =====================================================
   FOOTER – ZÁKLAD
   ===================================================== */

.site-footer {
    background-color: #0f172a; /* tmavá, profesionálna */
    color: #e5e7eb;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 32px;
}

/* =====================================================
   GRID
   ===================================================== */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col p {
    margin: 0;
    line-height: 1.7;
}

/* =====================================================
   TITULKY
   ===================================================== */

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

/* =====================================================
   ODKAZY
   ===================================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.site-footer a {
    color: #cbd5f5;
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* =====================================================
   PLATBY
   ===================================================== */

.footer-payments {
    text-align: center;
    margin-bottom: 24px;
}

.footer-payments img {
    max-width: 220px;
    opacity: 0.9;
}

/* =====================================================
   SPODNÁ ČASŤ
   ===================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    margin: 6px 0;
    font-size: 13px;
}
.footer-bottom  a {
  color: #cfe0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hover / focus – silnejší vizuálny signál */
.footer-bottom  a:hover,
.footer a:focus-visible {
  color: #ffffff;
  text-decoration-thickness: 2px;
}

.footer-legal {
    font-size: 12px;
    color: #9ca3af;
}

.footer-legal span {
    margin: 0 6px;
}

/* =====================================================
   MOBIL
   ===================================================== */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-container {
        padding: 40px 16px 28px;
    }
}

/* =====================================================
   COOKIE BANNER – VEĽKÝ, ALE FÉROVÝ
   ===================================================== */
#pokracovatcoo {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;

  z-index: 9999;

  /* skryté defaultne */
  display: none;
  opacity: 0;
  transform: translateY(20px);

  transition: opacity 0.4s ease, transform 0.4s ease;

  /* vzhľad */
  background: linear-gradient(180deg, #eef5fb 0%, #dce9f5 100%);
  color: #1f2933;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
  padding:40px 0;
}

/* =====================================================
   ZOBRAZENIE
   ===================================================== */

#pokracovatcoo.is-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   SKRÝVANIE (FADE-OUT)
   ===================================================== */

#pokracovatcoo.is-hiding {
  opacity: 0;
  transform: translateY(20px);
}

/* =====================================================
   VNÚTORNÝ OBSAH
   ===================================================== */

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* text */
#pokracovatcoo p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1f2933;
  max-width: 700px;
}

/* nadpis */
.cookie-banner__title {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #0f4c81;
}

/* link */
#pokracovatcoo a {
  color: #0f4c81;
  text-decoration: underline;
}

#pokracovatcoo a:hover {
  text-decoration: none;
}

/* =====================================================
   TLAČIDLÁ
   ===================================================== */

.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

#pokracovatcoo button {
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #9bb9d6;
  background-color: #ffffff;
  color: #0f4c81;
  font-weight:600;

  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#pokracovatcoo button:hover {
  background-color: #f3f8fd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* primárne tlačidlo */
#pokracovatcoo .btn-primary {
  background-color: #006600;
  border-color: #008a44;
  color: #ffffff;
}

#pokracovatcoo .btn-primary:hover {
  background-color: #008a44;
}

/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  #pokracovatcoo button {
    width: 100%;
    text-align: center;
  }
}

.onoffswitch {
    position: relative;
    width: 90px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #999;
    border-radius: 20px;
}

.onoffswitch-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in;
}

.onoffswitch-inner:before,
.onoffswitch-inner:after {
    float: left;
    width: 50%;
    height: 28px;
    line-height: 28px;
    font-size: 13px;
    font-weight: bold;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "Áno";
    padding-left: 12px;
    background-color: #2ecc71;
    color: #fff;
}

.onoffswitch-inner:after {
    content: "Nie";
    padding-right: 12px;
    background-color: #eee;
    color: #777;
    text-align: right;
}

.onoffswitch-switch {
    width: 18px;
    margin: 6px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 56px;
    border: 2px solid #999;
    border-radius: 20px;
    transition: all 0.3s ease-in;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0;
}
.ake_prepravy {
    margin:0 auto;
    border-collapse: collapse;
}

.ake_prepravy td {
    padding: 2px 6px;
    vertical-align: middle;
}

.ake_prepravy label {
    cursor: pointer;
}

.ine_input {
    max-width:500px;
    width:100%;
    padding: 8px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.company-toggle-wrap {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-toggle-wrap input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.company-toggle-wrap label {
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    user-select: none;
    line-height: 1.4;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    width:100%;
}

.dashboard-box {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 150px;
    background: #0f7699;
    color: #fff;


    text-decoration: none;
    font-size: 18px;
    font-weight: 500;

    border-radius: 22px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.dashboard-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.dashboard-box--cta {
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        
    }
    
.dashboard-box {
    min-height:48px;
    border-radius: 6px;
 
}
}


.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.overlay-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;

    aspect-ratio: 16 / 9;       /* 🔑 žiadne prebliknutie */
    background: #111;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}
#previewImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* loading stav */
#previewImage.loading {
    opacity: 0;
}



.overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;

    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;

    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.support
{
color: #33cc33;
margin: 0 auto;
text-align:center;
font-size:18px;
margin-top:40px;
}
.support a
{
color: #33cc33;

}
.activation-info {
  margin-bottom: 20px;
}

.activation-link {
  text-decoration: underline;
  color: #0f7699;
}

.activation-subtitle {
  font-weight: bold;
  color: #0f7699;
  margin-top: 20px;
}

.activation-note {
  text-align: justify;
  margin-top: 20px;
}
.customer-contact {
  margin-top: 20px;
}

.customer-contact__title {
  color: #0f7699;
  font-weight: bold;
  margin-bottom: 10px;
}

.customer-contact__table {
  border-collapse: collapse;
}

.customer-contact__label {
  padding-right: 10px;
  white-space: nowrap;
  font-weight: 600;
}
.fast-contact {
  margin-top: 20px;
}

.fast-contact__info {
  margin-top: 15px;
}

.fast-contact__title {
  color: #0f7699;
  font-weight: bold;
  margin-bottom: 10px;
}

.fast-contact__rules {
  padding-left: 20px;
  margin-bottom: 15px;
}

.fast-contact__rules li {
  margin-bottom: 6px;
}
.fast-contact__info.is-hidden {
  display: none;
}
.is-hidden { display:none !important; }

.fast-contact__title--error {
  color: #cc0000;
  font-weight: bold;
}

.fast-contact__errors {
  padding-left: 18px;
  margin-bottom: 10px;
}

.fast-contact__errors li {
  margin-bottom: 6px;
}

.fast-contact__info {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.fast-contact__textarea {
  width: 100%;
  min-height: 160px;
  font-size: 12px;
  color: #555;
  background: #f5f5f5;
  margin-bottom: 8px;
}

.fast-contact__note {
  font-size: 12px;
  color: #828282;
}

.fast-contact__title {
  color: #0f7699;
  font-weight: bold;
  margin-bottom: 8px;
}
.msg {
  padding: 12px 14px;
  margin: 12px 0;
  border-radius: 4px;
  font-weight: 600;
}

.msg-success {
  background: #e6f6ec;
  color: #1b7a3c;
}

.msg-error {
  background: #fde8e8;
  color: #b91c1c;
}
.msg-error a {
  background: #fde8e8;
  color: #b91c1c;
  }

.msg-info {
  background: #eef2ff;
  color: #3730a3;
}

.photo-scroll {
    display: flex;
    gap: 10px;

    overflow-x: auto;
    overflow-y: hidden;

    width: 100%;
    padding: 10px 0;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS */
    margin-bottom:20px;
    /* maska LEN vpravo */
    mask-image: linear-gradient(
        to right,
        black 0,
        black calc(100% - 40px),
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        black 0,
        black calc(100% - 40px),
        transparent 100%
    );
    }





/* voliteľné – skryť scrollbar (ak chceš) */
.photo-scroll::-webkit-scrollbar {
    height: 8px;
}
.photo-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}




/* každá fotka */
.photo-container {
    position: relative;
    display: inline-block;
    margin: 6px;
    flex: 0 0 auto;          /* 🔑 NEZMENŠOVAŤ */
    width: 120px;            /* presná šírka thumb */
    
}

/* obrázok */
.photo-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #0d6786;
    }
    .img-admin {
    position: relative;
    display: inline-block;
    max-width: 750px;
    border: 1px solid #0d6786;
    width: 100%;
    
    aspect-ratio: 16 / 9;
    background: #f3f4f6; /* jemný placeholder */
    overflow: hidden;
    
    
}

/* obrázok */
.img-admin img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
   
    object-fit: contain; /* alebo cover podľa preferencie */
}
.contact-box{
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
  line-height: 1.5;
  width: 100%;
}

.contact-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
}

.contact-ico{
  width: 22px;
  flex: 0 0 22px;
  text-align: center;
  opacity: .9;
}

.contact-text{
  flex: 1;
  font-size: 16px;
  color: #111;
}

.contact-link{
  color: #0b5bd3;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.contact-link:hover{
  text-decoration-thickness: 2px;
}

.region-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-badge{
margin-top:3px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
}
.small_h2 h2
{
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 600;
  
}
.kraje{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  margin-bottom:15px;
}

.kraje a{
  display: inline-flex;
  align-items: center;
  padding: 8px;
  border-radius: 4px;              /* pill */
  background: #f2f4f7;
  color: #173F5F;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e1e6ee;
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease, box-shadow .12s ease;
  user-select: none;
}

.kraje a:hover{
  background: #e9eef6;
  border-color: #cfd9e8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.kraje a:active{
  transform: translateY(0);
  box-shadow: none;
}

.kraje a:focus-visible{
  outline: 3px solid rgba(23,63,95,.25);
  outline-offset: 2px;
}

/* Voliteľne: zvýrazni "aktívny" kraj (ak doplníš class="is-active") */
.kraje a.is-active{
  background: #173F5F;
  color: #fff;
  border-color: #173F5F;
}
#najnovsie_dopyty
{
background-color: #f7f7f7;
margin:0;height:10px;
}
.faq {
    background: #f6f7f8;
    padding: 22px 26px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq h2 {
    margin-top: 0;
    font-size: 1.3em;
}

.faq h3 {
    margin-top: 18px;
    font-size: 1.05em;
}

.faq p {
    margin-bottom: 10px;
    color: #333;
}