/**
* Template Name: stavajkvalitne
* Template URL: http://stavajkvalitne.sk/
* Updated: 25.6.2025
* Author: Fresh Mill studio, tvorba webovych stranek
* License: https://freshmill.cz
*/

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@160..700&display=swap');

/* Smooth scroll */
:root {
  scroll-behavior: smooth;

  --swiper-theme-color: black;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
.container {
  max-width: 1540px;
  width: 100%;
  margin: 0 auto;
}
body {
  color: #000;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

a {
  color: #c09d00;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: 'Exo', sans-serif;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #faf7f5;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo img {
  width: auto;
  height: 90px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 0;
  }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  .header .navigace {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
  background-color: #faf7f5;;
  border-bottom: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 18px 15px;
    font-size: 18px;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000;
    font-weight: 700;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fcf9f6;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown--full {
      position: static;
  }

  .navmenu .dropdown--full > ul {
      display: flex;
      align-items: flex-start;
      gap: 1.00em;
      padding-inline: 1.50em;
      padding-block: 0.50em;
      left: 0;
      right: 0;
  }

  .navmenu .dropdown--full > ul > li > a {
      display: inline-block;
      width: 100%;
      text-align: center;
  }

  .navmenu .dropdown--full ul ul {
      position: static;
      list-style-type: initial;
      list-style-position: inside;
      box-shadow: initial;
  }

  .navmenu .dropdown--full:hover ul ul a {
      font-weight: normal !important;
  }

  .navmenu .dropdown--full ul li:hover a {
      color: black !important;
  }

  .navmenu .dropdown ul ul li {
      padding-inline: 0.50em 0.10em;
  }

  .navmenu .dropdown ul ul a {
      display: inline;
      padding-inline: 0.25em;
      padding-block: 0.25em;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 17px;
    text-transform: none;
    color: #000;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover a {
    color: #fdcf00;
  }
  .navmenu .dropdown:hover ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fcf9f6;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 10px 20px;
    font-family: 'Exo', sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #fcf9f6;
    color: #000;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu ul {
  display: block;
}

.navmenu .dropdown ul {
  display: none;
}

.navmenu .dropdown.dropdown-open ul {
  display: block;
}
}

.navmenu .dropdown-arrow {
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s;
  width: 12px;
  height: 12px;
}

.navmenu li.menu-item-has-children:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.header-actions {
  gap: 16px;
}
.social-icons a {
  transition: color 0.2s ease;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  background-color: #fccf00;
  border: none;
  padding: 18px 25px;
  width: 70px;
  display: flex;
  transition: .5s;
  justify-content: center;
}
.social-icons a:hover {
  color: #faf7f5; /* nebo jiná barva na hover */
}

@media (max-width: 1199px) {
  .header {
    padding: 15px 0;
  }

  .header .logo img {
    height: 75px;
  }

  .navmenu a {
    font-size: 16px;
    padding: 10px 16px;
  }

  .social-icons a {
    padding: 14px 20px;
    font-size: 16px;
    width: auto;
  }
}

@media (max-width: 991px) {
  .header .logo img {
    height: 65px;
  }

  .social-icons a {
    padding: 12px 18px;
    font-size: 15px;
  }

  .header-actions {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .header .logo img {
    height: 60px;
  }

  .social-icons a {
    font-size: 14px;
    padding: 10px 14px;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    height: 55px;
  }

  .navmenu ul {
    inset: 50px 15px 15px 15px;
  }

  .navmenu a {
    font-size: 15px;
    padding: 10px 15px;
  }

  .mobile-nav-active .mobile-nav-toggle {
    font-size: 28px;
    top: 10px;
    right: 10px;
  }

  .social-icons a {
    font-size: 13px;
    padding: 10px 12px;
    width: auto;
  }
}

@media (max-width: 425px) {
  .header .logo img {
    height: 50px;
  }

  .navmenu a {
    font-size: 14px;
    padding: 8px 12px;
  }

  .social-icons a {
    font-size: 12.5px;
    padding: 9px 10px;
  }
}

@media (max-width: 320px) {
  .navmenu a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .social-icons a {
    font-size: 12px;
    padding: 8px;
  }
}

@media (max-width: 1199px) {
  .mobile-social-icons {
    display: flex;
  }
  .header ul#menu-main-menu-cz {
    margin-top: 45px;
  }

  .mobile-social-icons a {
    font-size: 18px;
    color: #000;
    background-color: #fccf00;
    padding: 12px;
    border-radius: 0;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
    display: flex;
    transition: 0.3s;
  }

  .mobile-social-icons a:hover {
    background-color: #000;
    color: #fff;
  }
}
@media (max-width: 1200px) {
  .social-icons {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #1e1e1e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background-color: #fccf00;
  color: #000000;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 64px;
  }
}
@media only screen and (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}


/*--------------------------------------------------------------
# NADPIS
--------------------------------------------------------------*/
.nadpis h2 {
  font-size: 55px;
  font-weight: 800;
  color: #1e1e1e;
  padding-bottom: 25px;
}
.nadpis h3 {
  font-size: 25px;
  font-weight: 800;
  color: #1e1e1e;
  padding-bottom: 25px;
}
.nadpis h2 span {
  color: #fdcf00;
}
.nadpis p {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
/* ≤ 1199px */
@media (max-width: 1199px) {
  .nadpis h2 {
    font-size: 48px;
  }
  .nadpis p {
    font-size: 17px;
  }
}
/* ≤ 991px */
@media (max-width: 991px) {
  .nadpis h2 {
    font-size: 42px;
  }
  .nadpis p {
    font-size: 16px;
  }
}
/* ≤ 768px */
@media (max-width: 768px) {
  .nadpis h2 {
    font-size: 36px;
    padding-bottom: 20px;
  }
  .nadpis p {
    font-size: 15px;
  }
}
/* ≤ 767px */
@media (max-width: 767px) {
  .nadpis {
    text-align: center;
  }
  .nadpis h2 {
    font-size: 32px;
  }
  .nadpis p {
    font-size: 14px;
  }
}
/* ≤ 575px */
@media (max-width: 575px) {
  .nadpis h2 {
    font-size: 28px;
    padding-bottom: 18px;
  }
  .nadpis p {
    font-size: 13px;
  }
}
/* ≤ 425px */
@media (max-width: 425px) {
  .nadpis h2 {
    font-size: 24px;
  }
  .nadpis p {
    font-size: 12px;
  }
}
/* ≤ 320px */
@media (max-width: 320px) {
  .nadpis h2 {
    font-size: 22px;
    padding-bottom: 15px;
  }
  .nadpis p {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
.cta {
  margin-top: 35px;
}
/* BTN BLACK */
button.btn-black {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border: 3px solid #000;
  padding: 15px 35px;
  transition: .5s;
}
button.btn-black:hover {
  background-color: #fdcf00;
  border-color: #fdcf00;
  color: #000;
}

/* BTN CATEGORY */
button.btn-yellow {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #fdcf00;
  border: 3px solid #fdcf00;
  padding: 15px 35px;
  transition: .5s;
}
button.btn-yellow:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

/* BTN CATEGORY */
button.btn-category {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  padding: 5px;
  transition: .5s;
}
button.btn-category:hover {
  background-color: #fdcf00;
  color: #000;
}

/* BTN BORDER */
button.btn-border {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  border: 3px solid #000; 
  background-color: transparent;
  padding: 15px 35px;
  transition: .5s;  
}
button.btn-border:hover {
  background-color: #000;
  color: #fff;
}

/* BTN BORDER SMALL */
button.btn-border-small {
  font-family: 'Readex Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  border: 3px solid #000; 
  background-color: transparent;
  padding: 9px 11px;
  transition: .5s;  
}
button.btn-border-small:hover {
  background-color: #000;
  color: #fff;
}


/* ≤ 1199px */
@media (max-width: 1199px) {
  button.btn-black,
  button.btn-border, 
  button.btn-yellow {
    padding: 16px 30px;
    font-size: 15px;
  }
}
/* ≤ 991px */
@media (max-width: 991px) {
  .cta {
    margin-top: 30px;
  }
  button.btn-black,
  button.btn-border, 
  button.btn-yellow {
    padding: 14px 28px;
    font-size: 15px;
  }
}
/* ≤ 768px */
@media (max-width: 768px) {
  button.btn-black,
  button.btn-border, 
  button.btn-yellow {
    padding: 12px 24px;
    font-size: 14px;
  }
  button.btn-category {
    padding: 4px 8px;
    font-size: 14px;
  }
}
/* ≤ 767px */
@media (max-width: 767px) {
  .cta {
    margin-top: 25px;
    text-align: center;
  }
  button.btn-black,
  button.btn-border,
  button.btn-category,
  button.btn-yellow    {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    font-size: 14px;
  }
}
/* ≤ 575px */
@media (max-width: 575px) {
  button.btn-black,
  button.btn-border,
  button.btn-yellow  {
    font-size: 13px;
    padding: 10px;
  }
}

/* ≤ 470px */ 
@media (max-width: 470px) {
  .poptavka .text-label {
    display: none;
  }

  .poptavka .icon-label {
    display: inline-block !important;
    font-size: 18px;
  }
}

/* ≤ 425px */
@media (max-width: 425px) {
  button.btn-black,
  button.btn-border,
  button.btn-yellow  {
    font-size: 12px;
    padding: 9px;
  }
}
/* ≤ 320px */
@media (max-width: 320px) {
  button.btn-black,
  button.btn-border,
  button.btn-category,
  button.btn-yellow  {
    font-size: 11px;
    padding: 8px;
  }
}


/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.logoslider-bg {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
}
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 25px !important;
  color: #000; 
}
/* ODBER NOVINEK */
.odbernovinek .left-side {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.odbernovinek .left-side p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}
.odbernovinek .form-group p.buttonred {
  margin-bottom: 0; 
}
.odbernovinek .buttonred {
font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  background-color: #fdcf00;
  border: none;
  padding: 18px 35px;
  transition: .5s;
}
.odbernovinek .buttonred:hover {
  background-color: #ffffff;
  color: #000;
}
.odbernovinek .form-group.odber p {
  margin-bottom: 0;
}
.odbernovinek .wpcf7-form-control.wpcf7-text {
  margin-top: 0;
}
.odbernovinek .right-side p {
  color: #fff;
}
.odbernovinek .right-side a {
  color: #fdcf00;
  text-decoration: underline;
}
.odbernovinek .right-side a:hover {
  color: #fff;
  text-decoration: none;
}
input::placeholder,
textarea::placeholder {
  transition: opacity 0.2s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

/* FOOTER */  
footer {
  background-color: #1e1e1e;
}
.paticka {
  border-top: 1px solid #ffffff27;
  padding-top: 70px;
  margin-top: 70px;  
}
.paticka h5 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff;
  padding-bottom: 15px;
}
.paticka ul li {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.5;
}
.paticka ul li a {
  color: #fff;
}
.paticka ul {
  list-style: none;
  padding-left: 0;
}
.paticka ul li a:hover {
  color: #fdcf00;
  text-decoration: underline;
}

.paticka .column3 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
}
.paticka .column3 a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
.paticka .column3 a:hover {
  color: #fdcf00;
  text-decoration: underline;
}
.paticka ul li.wp-social-link {
  font-size: 30px;
}
/* SOCKET */
.socket {
  border-top: 1px solid #ffffff27;
  padding-top: 70px;
  margin-top: 70px;
}
.socket .copy p {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}
.socket .copy a {
  color: #fdcf00;
}
/* ============================== */
/* === RESPONSIVE FOOTER CSS ====*/
/* ============================== */

/* ≤ 1199px */
@media (max-width: 1199px) {
  .odbernovinek .buttonred {
    padding: 16px 30px;
    font-size: 15px;
  }
  .paticka {
    padding-top: 60px;
    margin-top: 60px;
  }
  .socket {
    padding-top: 60px;
    margin-top: 60px;
  }
}
/* ≤ 991px */
@media (max-width: 991px) {
  .odbernovinek .left-side,
  .odbernovinek .right-side {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .paticka h5 {
    font-size: 18px !important;
  }
  .paticka ul li {
    font-size: 15px;
  }
  .paticka .column3 {
    font-size: 15px;
  }
}
/* ≤ 768px */
@media (max-width: 768px) {
  .odbernovinek {
    text-align: center;
  }
  .odbernovinek .left-side,
  .odbernovinek .right-side {
    justify-content: center;
    align-items: center;
  }
  .odbernovinek .left-side p,
  .odbernovinek .right-side p {
    text-align: center;
  }
  .odbernovinek .buttonred {
    width: 100%;
    padding: 16px;
  }
  .paticka h5 {
    font-size: 17px !important;
    text-align: center;
    padding-bottom: 0;
    padding-top: 15px;
  }
  .social-icons, .column3 {
    display: flex;
    justify-content: center;
  }
  .menu-paticka-sloupec-2-container, .menu-paticka-sloupec-1-container {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .socket .copy p {
    text-align: center;
  }
  .paticka {
    padding-top: 30px;
    margin-top: 30px;
  }
}
/* ≤ 767px */
@media (max-width: 767px) {
  .paticka {
    padding-top: 20px;
    margin-top: 20px;
  }
  .socket {
    padding-top: 20px;
    margin-top: 20px;
  }
  span.wpcf7-list-item-label {
    font-size: 14px;
  }
  .paticka .column3 {
    text-align: center;
  }
  .paticka ul {
    text-align: center;
  }
  .socket .copy p {
    text-align: center;
  }
  .wp-block-social-links.has-large-icon-size {
    font-size: 36px;
    text-align: center;
    display: flex;
    justify-content: center;
}
  .odbernovinek .left-side p {
    margin-bottom: 10px;
  }
}
/* ≤ 575px */
@media (max-width: 575px) {
  .odbernovinek .buttonred {
    font-size: 14px;
    padding: 14px 20px;
  }
  .paticka h5 {
    font-size: 16px !important;
  }
  .paticka ul li {
    font-size: 14px;
  }
  .paticka .column3 {
    font-size: 14px;
  }
  .socket .copy p {
    font-size: 11px;
  }
}
/* ≤ 425px */
@media (max-width: 425px) {
  .odbernovinek .buttonred {
    font-size: 13px;
    padding: 12px 15px;
  }
  .paticka,
  .socket {
    padding-top: 40px;
    margin-top: 40px;
  }
  .paticka h5 {
    font-size: 15px !important;
  }
}
/* ≤ 320px */
@media (max-width: 320px) {
  .odbernovinek .buttonred {
    font-size: 12px;
    padding: 10px 12px;
  }
  .paticka h5 {
    font-size: 14px !important;
  }
  .paticka .column3,
  .paticka ul li {
    font-size: 13px;
  }
  .socket .copy p {
    font-size: 10px;
  }
}



/*--------------------------------------------------------------
# UVOD
--------------------------------------------------------------*/
/* BANNER */
section.banner-bg {
  background-color: #faf7f5;
  padding-bottom: 0;
}
.banner .left-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.banner .left-side .desc h1 {
  font-size: 60px;
  font-weight: 800;
  color: #1e1e1e;
  padding-bottom: 20px;
}
.banner .left-side .desc h1 span {
  color: #fdcf00;
}
.banner .left-side .desc p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
}
.banner .right-side img {
  width: auto;
  height: 650px;
  object-fit: contain;
}
/* ========== RESPONSIVE: BANNER ========== */
/* ≤ 1199px */
@media (max-width: 1199px) {
  .banner .left-side .desc h1 {
    font-size: 50px;
  }
  .banner .right-side img {
    height: 500px;
  }
}
/* ≤ 991px */
@media (max-width: 991px) {
  .banner .left-side .desc h1 {
    font-size: 42px;
  }
  .banner .right-side img {
    height: 400px;
  }
  section.banner-bg {
    padding-top: 120px;
  }
}
/* ≤ 768px */
@media (max-width: 768px) {
  .banner .left-side .desc h1 {
    font-size: 36px;
  }
  .banner .left-side .desc p {
    font-size: 15px;
  }
  .banner .right-side img {
    display: block;
    height: 350px;
    margin-inline: auto;
  }
}
/* ≤ 767px – SKRÝT OBRÁZEK */
@media (max-width: 991px) {
  .banner .left-side, .banner .right-side {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .banner .cta {
    margin-top: 20px;
  }
.banner .left-side button {
  margin-bottom: 10px;
}
  .banner .left-side .desc h1 {
    font-size: 30px;
  }
  .banner .left-side .desc p {
    font-size: 14px;
  }
}
/* ≤ 575px */
@media (max-width: 575px) {
  .banner .left-side .desc h1 {
    font-size: 26px;
  }
  .banner .left-side .desc p {
    font-size: 13px;
  }
}
/* ≤ 425px */
@media (max-width: 425px) {
  .banner .left-side .desc h1 {
    font-size: 22px;
  }
}
/* ≤ 320px */
@media (max-width: 320px) {
  .banner .left-side .desc h1 {
    font-size: 20px;
  }
  .banner .left-side .desc p {
    font-size: 12px;
  }
}


/* TIPY A RADY */
section.blog-bg {
  background-color: #faf7f5;  
}
.blogbox {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 25px;
  height: 100%;
  border-radius: 0;
}
.blogbox .head {
  margin-bottom: 15px;
}
.blogbox .head h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
}
.yellow-bar {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #000 50%, #FFD000 50%);
  margin: 25px 0;
}
.blogbox .head span a {
  font-size: 13px;
  font-weight: 600;
  color: #b6b6b6;
  text-transform: uppercase;
}
.blogbox .head a {
  font-size: 15px;
  font-weight: 600;
  color: #b6b6b6;
  text-transform: uppercase;
}
.blogbox .thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  transform-origin: center center;
}
.blogbox .thumb {
  overflow: hidden;
  position: relative;
}
.blogbox:hover .thumb img {
  transform: scale(1.05);
}
.blog .blogbox .thumb {
  overflow: hidden;
  position: relative;
}
.blog .blogbox .thumb img {
  display: block;
  width: 100%;
  height: 310px;
  transition: transform 0.4s ease;
  transform-origin: center center;
}
.blogbox:hover .thumb img {
  transform: scale(1.05);
}
.blogbox  .thumb .date {
  background-color: #fff;
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  display: none;
}

.blog-bg.predajne-akcie .thumb img,
.blog-detail-bg.predajne-akcie .post-thumbnail img {
    object-fit: contain;
    aspect-ratio: 4 / 3;
}

/* BLOG FEATURED */
.blogbox-featured .left-side img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.blogbox-featured .right-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.blogbox-featured .right-side .head h3  {
  font-size: 30px;
  font-weight: 800;
  color: #1e1e1e;
}
.yellow-bar {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #000 50%, #FFD000 50%);
  margin: 25px 0;
}
.blogbox-featured .right-side .head span a {
  font-size: 15px;
  font-weight: 600;
  color: #b6b6b6;
  text-transform: uppercase;
}
.blogbox-featured .right-side .desc {
  margin-top: 30px;
  margin-bottom: 30px;
}
.blogbox-featured .right-side .desc p {
  font-size: 18px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.5;
}
.blogbox-featured .right-side .more-link span {
  font-family: 'Readex Pro', sans-serif;
  font-weight: 600;
  color: #1e1e1e;
}
.blogbox-featured .right-side .more-link i {
  font-size: 10px;
  margin-left: 10px;
}
.blogbox-featured .right-side .more-link span:hover {
  color: #FFD000;
  text-decoration: underline;
}
.tipyarady-bg .cta .right-side {
  display: flex;
  justify-content: flex-end;
}
.tipyarady-bg .cta .right-side button {
  margin-left: 10px;
}

@media (max-width: 768px) {
    .tipyarady-bg .cta .right-side button {
        margin-left: 0px;
    }
}

/* OTHER BLOG */
.blogSwiper {
  padding: 10px 0;
  overflow-x: auto;
}
.blogSwiper .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}
.blogSwiper .swiper-slide {
  flex-shrink: 0;
  width: 420px !important; /* zde upravíš velikost – např. 420–480px */
  margin-right: 24px;
}
/* Nastaví oběma sloupcům plnou výšku v rámci .row */
.blogbox-featured,
.blogSwiper {
  height: 100%;
}

/* Zajistí, že slider se natáhne stejně jako levý blok */
.col-lg-6 > .swiper,
.col-lg-6 > .blogbox-featured {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.full-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.full-link:hover {
  cursor: pointer;
}
/* ≤ 1199px */
@media (max-width: 1199px) {
  .blogbox-featured .left-side img {
    height: 400px;
  }
  .blogbox-featured .right-side .head h3 {
    font-size: 26px;
  }
  .blogbox-featured .right-side .desc p {
    font-size: 16px;
  }
  .blogSwiper .swiper-slide {
    width: 360px !important;
  }
}

/* ≤ 991px */
@media (max-width: 991px) {
  .blogbox-featured .left-side img {
    height: 350px;
  }
  .blogbox-featured .right-side {
    align-items: flex-start;
  }
  .blogbox-featured .right-side .head h3 {
    font-size: 24px;
  }
  .blogbox-featured .right-side .desc p {
    font-size: 15px;
  }
  .blogSwiper .swiper-slide {
    width: 320px !important;
  }
  section.blog-bg {
    padding-top: 0;
  }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .blogbox-featured .left-side img {
    height: 300px;
  }
  .blogbox-featured .right-side .head h3 {
    font-size: 22px;
  }
  .blogbox-featured .right-side .desc p {
    font-size: 14px;
  }
  .blogbox .thumb img {
    height: 260px;
  }
  .blogSwiper .swiper-slide {
    width: 280px !important;
  }
}

/* ≤ 767px */
@media (max-width: 767px) {
  .blogbox-featured .left-side,
  .blogbox-featured .right-side {
    width: 100%;
    padding: 0;
  }
  .blogbox-featured .right-side {
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .blogbox-featured .right-side .head {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .blogbox-featured .right-side .desc {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .blogbox-featured .right-side .head h3 {
    font-size: 20px;
  }
  .blogbox-featured .right-side .desc p {
    font-size: 13px;
  }
  .blogbox .thumb img {
    height: 230px;
  }
  .tipyarady-bg .cta .right-side {
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
}

/* ≤ 575px */
@media (max-width: 575px) {
  .blogbox {
    padding: 20px;
  }
  .blogbox .head h3 {
    font-size: 16px;
  }
  .blogbox .thumb img {
    height: 200px;
  }
  .blogbox-featured .left-side img {
    height: 250px;
  }
  .blogSwiper .swiper-slide {
    width: 240px !important;
  }
}

/* ≤ 425px */
@media (max-width: 425px) {
  .blogbox-featured .right-side .head h3 {
    font-size: 18px;
  }
  .blogbox-featured .right-side .desc p {
    font-size: 12px;
  }
  .blogbox .thumb img {
    height: 180px;
  }
  .blogSwiper .swiper-slide {
    width: 200px !important;
  }
}

/* ≤ 320px */
@media (max-width: 320px) {
  .blogbox-featured .right-side .head h3 {
    font-size: 16px;
  }
  .blogbox-featured .right-side .desc p {
    font-size: 11px;
  }
  .blogbox .thumb img {
    height: 160px;
  }
  .blogSwiper .swiper-slide {
    width: 180px !important;
  }
}





/* KVALITNI REALIZATORI */
.filters select.form-select {
  min-width: 220px;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 0;
  border: 1px solid #ccc;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.filters select.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
@media (max-width: 576px) {
  .filters {
    flex-direction: column;
    gap: 10px !important;
  }
  .filters select.form-select {
    width: 100%;
  }
}

.realizatori-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-top: 20px;
}
.realizatori-table thead th {
  background-color: #f7f7f7;
  border: 1px solid #eeeeee;
  padding: 12px;
  text-align: left;
  font-weight: bold;
  color: #333;
}
.realizatori-table tbody td {
  border: 1px solid #eee;
  padding: 20px 12px;
  vertical-align: top;
  background-color: #fff;
  color: #444;
}
.realizatori-table tbody tr:hover {
  background-color: #f9f5f0;
}
.realizatori-table .btn-border {
  padding: 6px 14px;
  border: 1px solid #555;
  background-color: #f9f5f0;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.realizatori-table .btn-border:hover {
  background-color: #1e1e1e;
  color: #fff;
}

.realizatori-login,
.realizatori-register {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.realizatori-login .errors,
.realizatori-register .errors {
    color: red;
}

.hidden-contact,
.full-contact {
  display: inline-block;
  font-size: 14px;
  color: #1e1e1e;
}
.full-contact a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}
.full-contact a:hover {
  color: #f7ce00;
  text-decoration: underline;
}
.hidden-contact a {
  margin-left: 6px;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  color: #fccf00;
}
.hidden-contact a:hover {
  color: #1e1e1e;
}
.full-contact {
  margin-left: 5px;
  font-weight: bold;
}

#verify-modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* BLBOST
@media (max-width: 768px) {
    .realizatori-table,
    .realizatori-table tbody,
    .realizatori-table tr,
    .realizatori-table th,
    .realizatori-table td {
        display: block;
    }

    .realizatori-table thead {
        display: none;
    }

    .realizatori-table tr:nth-child(2n) td {
        background-color: hsl(0 0% 95% / 100%);
    }
}
*/

/* SIPKY */
@media (max-width: 991px) {
  .table-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-hint-arrows span {
    background: #e6e6e6;
    padding: 4px 8px;
    border-radius: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }
  .scroll-hint-arrows {
    position: absolute;
    width: 100%;
    display: flex;
    pointer-events: none;
    z-index: 10;
  }
}


/* Obsah modalu */
@media (max-width: 991px) {
  .realizatori-table {
    display: none;
  }

  .realizatori-table.show-on-mobile {
    display: table;
  }
}
@media (min-width: 992px) {
  .filter-hint-mobile {
    display: none;
  }
}


#verify-modal form {
  background-color: #fff;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Skrytí/zobrazení formulářů */
#verify-modal form:not(:first-child) {
  margin-top: 20px;
}

#verify-modal label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

#verify-modal input[type="email"],
#verify-modal input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 0;
}

#verify-modal button {
  background-color: #000;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
}

#verify-modal button:hover {
  background-color: #333;
}
#verify-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

#verify-modal .close-modal:hover {
  color: #ddd;
}

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive-wrapper table {
  min-width: 800px;
}


/* KONTAKT */
section.kontakt-bg {
  background-color: #f9f5f0;
  padding-bottom: 0;
}
.kontakt .left-side {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.kontakt .left-side img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  border-bottom: 8px solid #fdcf00;
}
.kontakt .right-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.kontakt .right-side h3 {
  font-size: 40px;
  font-weight: 800;
  color: #1e1e1e;
  padding-bottom: 10px;
}
.kontakt .right-side p {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.kontakt .right-side a {
  text-decoration: underline;
}
.kontakt .right-side a:hover {
  text-decoration: none;
  color: #000000;
}
/* FORMULAR */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #20201e;
  border-color: #20201e;
  color: #fff;
  padding: 15px;
  font-weight: 700;
}
.item-form .cta p {
  margin-bottom: 0
}
.form .cta {
text-align: center;
}
.buttonred {
font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  border: none;
  padding: 6px 35px;
  transition: .5s;
}
.buttonred:hover {
  background-color: #fdcf00;
  color: #000;
}
.wpcf7 .wpcf7-validation-errors,.wpcf7 .wpcf7-acceptance-missing {
  border: 5px solid red;
  margin-top: -30px;
}
.wpcf7 span.wpcf7-not-valid-tip {
font-family: 'Readex Pro', sans-serif;
background-color: #ff0000;
color: #ffffff;
font-size: 12px;
padding: 5px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border: 5px solid #dce5fe;
  margin-top: -30px;
}
div.wpcf7-response-output {
  margin: 2em .5em 1em;
  padding: 1em;
  font-size: 14px;
}
.wpcf7-form-control.wpcf7-text {
background-color: #fff;
border: 2px solid #f0f0f0;
border-radius: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
}
.wpcf7-form-control.wpcf7-select {
background-color: #fff;
border: 2px solid #f0f0f0;
border-radius: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
  font-weight: 400;
  width: 100%;
  padding-left: 25px;
  font-size: 14px;
  margin-top: 15px;
}
.wpcf7-form-control.wpcf7-select--extend {
    height: auto;
    min-height: 8.00em;
    max-height: 12.00em;
}
.wpcf7-form-control {
  margin-top: 15px;
}
.required-asterisk {
  color: red;
}
.wpcf7-form-control.wpcf7-textarea {
background-color: #fff;
border: 2px solid #f0f0f0;
border-radius: 0;
height: 180px;
font-family: 'Poppins', sans-serif;
  font-weight: 400;
width: 100%;
padding-left: 25px;
padding-top: 15px;
height: 100px;
font-size: 14px;
}

.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-tel {
background-color: #fff;
border: 2px solid #f0f0f0;
border-radius: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
  font-weight: 400;
width: 100%;
padding-left: 25px;
font-size: 14px;
margin-top: 15px;
}

.wpcf7 :focus {
  color: #000;
  background-color: #ffffff!important;
  outline: 0;
  border: 2px solid #000!important;
}

.wpcf7-form-control.wpcf7-number {
background-color: #fff;
border: 2px solid #f0f0f0;
border-radius: 0;
height: 60px;
font-family: 'Poppins', sans-serif;
  font-weight: 700;
width: 100%;
padding-left: 25px;
font-size: 14px;
margin-top: 15px;
}
.wpcf7-form-control-wrap.yourmessage:before {
  width: 0rem!important;
  position: relative
}
.wpcf7-form-control-wrap.your-name:before {
  width: 0rem!important;
  position: relative;
}
.wpcf7-form-control-wrap.last-name:before {
  width: 0rem!important;
}
.wpcf7-form-control-wrap.phone-number:before {
  width: 0rem!important;
}
.wpcf7-form-control-wrap.youremail:before {
  width: 0rem!important;
}
.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output {
  background-color: #ca0e0eb3;
  border: 2px solid #ca0e0e;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  font-family: 'Readex Pro',sans-serif;
  font-size: 15px;
  font-weight: 700;
}
::-webkit-input-placeholder {
  color: #000000!important;
  opacity: 1
}
:-moz-placeholder {
  color: #000000!important;
  opacity: 1
}
::-moz-placeholder {
  color: #000000!important;
  opacity: 1
}
:-ms-input-placeholder {
  color: #000000!important;
  opacity: 1
}
.ochrana-os p {
  color: #000000;
  text-align: left;
  font-size: 12px;
}
.ochrana-os a {
  color: #dc0b25;
  text-decoration: underline;
}
.ochrana-os p a:hover {
color: #000;
}
@media (max-width: 1199px) {
  .kontakt .left-side img {
    height: 500px;
  }
  .kontakt .right-side h3 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .kontakt .left-side img {
    height: 400px;
  }
  .kontakt .right-side h3 {
    font-size: 32px;
  }
  .kontakt .right-side p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .kontakt .left-side img {
    height: 350px;
  }
  .kontakt .right-side h3 {
    font-size: 28px;
    text-align: center;
  }
  .kontakt .right-side p {
    font-size: 14px;
    text-align: center;
  }
  .kontakt .right-side {
    justify-content: center;
    text-align: center;
  }
  .form .cta {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .kontakt .left-side,
  .kontakt .right-side {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .kontakt .left-side img {
    height: auto;
    max-height: 300px;
  }

  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-select,
  .wpcf7-form-control.wpcf7-textarea,
  .wpcf7-form-control.wpcf7-validates-as-tel,
  .wpcf7-form-control.wpcf7-number {
    font-size: 14px;
    padding-left: 15px !important;
    height: 50px;
  }

  .wpcf7-form-control.wpcf7-textarea {
    height: 90px;
    padding: 10px 15px;
  }

  .buttonred {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .kontakt .right-side h3 {
    font-size: 24px;
  }
  .wpcf7-form-control {
    font-size: 13px;
  }
  .ochrana-os p {
    text-align: center;
    font-size: 11px;
  }
}

@media (max-width: 425px) {
  .kontakt .right-side h3 {
    font-size: 22px;
  }
  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-textarea {
    font-size: 13px;
    padding-left: 10px;
  }
}

@media (max-width: 320px) {
  .kontakt .right-side h3 {
    font-size: 20px;
  }
  .wpcf7-form-control {
    font-size: 12px;
  }
  .buttonred {
    font-size: 13px;
    padding: 12px;
  }
}


/* LOGO SLIDER */
.logoSwiper {
  padding: 20px 0;
}
.logoSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.logoSwiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logoSwiper .swiper-slide img {
  max-height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.logoSwiper .swiper-slide img:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# BLOG
--------------------------------------------------------------*/
/* BREAD */
section.bread-bg {
  background-color: #faf7f5;
  padding-top: 150px;
}
.bread h1 {
  font-size: 60px;
  font-weight: 800;
  color: #1e1e1e;
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .bread h1 {
    font-size: 52px;
  }
  section.bread-bg {
    padding-top: 130px;
  }
}
@media (max-width: 991px) {
  .bread h1 {
    font-size: 44px;
  }
  section.bread-bg {
    padding-top: 110px;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .bread h1 {
    font-size: 36px;
    text-align: center;
  }
  section.bread-bg {
    padding-top: 90px;
  }
}
@media (max-width: 575px) {
  .bread h1 {
    font-size: 30px;
  }
  section.bread-bg {
    padding-top: 90px;
    padding-bottom: 0;
  }
}
@media (max-width: 425px) {
  .bread h1 {
    font-size: 26px;
  }
}
@media (max-width: 320px) {
  .bread h1 {
    font-size: 22px;
  }
  section.bread-bg {
    padding-top: 60px;
  }
}


/* BLOG */
.blog .blogbox .thumb img {
  height: 310px;
}
.categoryblogbox {
  padding: 40px;
  border: 1px solid #dcdcdc;
  background-color: #fff;
}
.categoryblogbox .head {
  text-align: center;
}
.categoryblogbox .head h3 {
  font-size: 30px;
  font-weight: 800;
  color: #1e1e1e;
  padding-bottom: 5px;
}
.categoryblogbox .bloghorizont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
.categoryblogbox .bloghorizont .left {
  width: 50%;
}
.categoryblogbox .bloghorizont .left img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  transform-origin: center center;
}
.categoryblogbox .bloghorizont .left {
  overflow: hidden;
  position: relative;
}
.categoryblogbox .bloghorizont .left:hover img {
  transform: scale(1.05);
}
.categoryblogbox .bloghorizont .right {
  width: 50%;
  padding-left: 18px;
}
.categoryblogbox .bloghorizont .right h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1e1e1e;
}
.categoryblogbox .bloghorizont .right p {
  font-size: 14px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}
.categoryblogbox .bloghorizont .right a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1e1e1e;
}
.categoryblogbox .bloghorizont .right a:hover {
  text-decoration: underline;
  color: #fdcf00;
}
.categoryblogbox .bloghorizont .right a i {
  font-size: 10px;
  margin-left: 10px;
}
@media (max-width: 1199px) {
  .categoryblogbox .bloghorizont .right h3 {
    font-size: 17px;
  }
  .categoryblogbox {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .categoryblogbox {
    padding: 25px;
  }
  .categoryblogbox .head h3 {
    font-size: 26px;
  }
  .categoryblogbox .bloghorizont .right h3 {
    font-size: 16px;
  }
  .categoryblogbox .bloghorizont .right p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .categoryblogbox .bloghorizont {
    flex-direction: column;
    gap: 20px;
  }
  .categoryblogbox .bloghorizont .left,
  .categoryblogbox .bloghorizont .right {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .categoryblogbox .bloghorizont .right p {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .categoryblogbox .bloghorizont .right a {
    display: inline-block;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .categoryblogbox .head h3 {
    font-size: 22px;
  }
  .categoryblogbox .bloghorizont .right h3 {
    font-size: 15px;
  }
  .categoryblogbox .bloghorizont .right p {
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .categoryblogbox {
    padding: 20px;
  }
  .categoryblogbox .head h3 {
    font-size: 20px;
  }
  .categoryblogbox .bloghorizont .right h3 {
    font-size: 14px;
  }
  .categoryblogbox .bloghorizont .right p {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .categoryblogbox .head h3 {
    font-size: 18px;
  }
  .categoryblogbox .bloghorizont .right p {
    font-size: 11px;
  }
  .categoryblogbox .bloghorizont .right a {
    font-size: 13px;
  }
}


/* ODBER NOVINEK */
section.odbernobinek-bgwhite {
  background-color: #faf7f5;
  margin-top: 70px;
  margin-bottom: 70px;
}
.odbernovinek-white .buttonred {
font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e1e1e;
  background-color: #fdcf00;
  border: none;
  padding: 18px 35px;
  transition: .5s;
}
.odbernovinek-white .buttonred:hover {
  background-color: #ffffff;
  color: #000;
}
.odbernovinek-white .form-group.odber p {
  margin-bottom: 0;
}
.odbernovinek-white .wpcf7-form-control.wpcf7-text {
  margin-top: 0;
}
.odbernovinek-white .right-side a {
  color: #c09d00;
  text-decoration: underline;
}
.odbernovinek-white .right-side a:hover {
  color: #1e1e1e;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .odbernovinek-white .buttonred {
    padding: 16px 30px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .odbernovinek-white .buttonred {
    padding: 14px 28px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .odbernovinek-white .buttonred {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
  }
  .odbernovinek-white .form-group {
    text-align: center;
  }
  .odbernovinek-white .right-side {
    text-align: center;
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .odbernovinek-white .buttonred {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .odbernovinek-white .buttonred {
    padding: 9px 18px;
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .odbernovinek-white .buttonred {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# PODSTRANKA
--------------------------------------------------------------*/
.pages p {
  font-size: 15px;
  font-weight: 400;
}
.pages a {
  color: #1e1e1e;
  text-decoration: underline;
}
.pages a:hover {
text-decoration: none;
}
.pages ul {
  margin-left: 45px;
  font-size: 15px;
}
.pages ol {
  margin-left: 45px;
  font-size: 15px;
}
.narrow-content {
  max-width: 800px; /* nebo 70% z containeru */
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .pages p {
    font-size: 15px;
  }
  .narrow-content {
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .pages {
    font-size: 14px;
  }
  .pages ul,
  .pages ol {
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .pages {
    font-size: 14px;
    line-height: 1.6;
  }
  .narrow-content {
    max-width: 95%;
  }
  .pages ul,
  .pages ol {
    margin-left: 25px;
  }
}
@media (max-width: 575px) {
  .pages {
    font-size: 13px;
  }
  .pages ul,
  .pages ol {
    margin-left: 20px;
  }
}
@media (max-width: 425px) {
  .pages {
    font-size: 12.5px;
  }
  .pages ul,
  .pages ol {
    margin-left: 18px;
  }
}
@media (max-width: 320px) {
  .pages {
    font-size: 12px;
  }
  .pages ul,
  .pages ol {
    margin-left: 15px;
  }
}

/* DALSI CLANKY */
  .tipyaradymon-bg .swiper {
    overflow: visible !important; 
    padding-bottom: 40px;
  }
  .tipyaradymon-bg .swiper-slide {
    width: auto !important;
  }
  .tipyaradymon-bg .swiper-button-prev,
  .tipyaradymon-bg .swiper-button-next {
    color: #000;
    top: 35%;
    z-index: 10;
  }
  .tipyaradymon-bg .blogbox {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .tipyaradymon-bg .blogbox .thumb img {
    width: 100%;
    border-radius: 6px;
  }


article.page {
    padding-top: 150px;
}

/*--------------------------------------------------------------
# LOGIN
--------------------------------------------------------------*/
body.login {
  background-image: url('/wp-content/uploads/2025/06/jezko-s-nakresom-domu.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: #edebe8;
  background-size: cover;
}
#login h1 a {
  background-image: url("/wp-content/uploads/2025/06/StavajKvalitne_logo-2048x885.png");
  background-size: 180px;
  height: 50px;
  width: auto;
}
.login form {
  box-shadow: none;
  padding: 20px;
  background: #fff;
}
#login {
    background: #fff;
    margin: 50px auto;
    padding: 40px 20px;
    width: 400px;
    border-radius: 20px;
}
.login label {
    font-weight: 700;
    color: #003F66;
    font-size: 14px
}
.login form .forgetmenot {
    float: none
}
#login form p.submit {
    margin-top: 15px
}
.login.wp-core-ui .button-primary {
font-family: 'Readex Pro', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    border: none;
    padding: 18px 35px;
    transition: .5s;
}
.login.wp-core-ui .button-primary:hover {
    background-color: #fdcf00;
    color: #000;
}
.login form {
    border: none
}
.login form .input,.login form input[type=checkbox],.login input[type=text] {
    background: #d9dbe1;
}
.login form .input,.login input[type=password],.login input[type=text] {
    font-size: 24px;
    line-height: 1.33333333;
    width: 100%;
    border-width: .0625rem;
    padding: .1875rem .3125rem;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
    border: 2px solid #ffffff;
    border-radius: 0;
}
p#backtoblog {
    display: none;
}
.privacy-policy-page-link a {
    font-size: 15px;
    color: #003F66;
    font-weight: 700
}
.login #nav a {
    font-weight: 500;
    text-decoration: none;
    color: #003F66;
  text-decoration: underline;
}
.login #nav a:hover {
    color: #143649;
}

/*--------------------------------------------------------------
# DETAIL CLANKU
--------------------------------------------------------------*/
section.blog-detail-bg {
  padding-top: 180px;
  background-color: #faf7f5;
}
.blog-article {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 80px;  
}
.blog-article .post-meta.top-meta {
  text-align: center;
  margin-bottom: 10px;
}
.blog-article span.category a {
  font-size: 13px;
    font-weight: 600;
    color: #b6b6b6;
    text-transform: uppercase;
}
.blog-article h1 {
  font-size: 35px;
  font-weight: 800;
  color: #1e1e1e;  
  text-align: center;
}
.blog-article .post-meta.bottom-meta {
  text-align: center;
  margin: 20px 0;
  font-size: 12px;
}
.blog-article .post-meta.bottom-meta i {
  color: #1e1e1e;
}
.blog-article .post-thumbnail img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.blog-article .post-content {
  font-size: 14px;
  padding-top: 30px;
}
.blog-article .post-content h2 {
  font-size: 25px;
  font-weight: 700;
  padding-top: 15px;
}
.blog-article .post-content h3 {
  font-size: 21px;
  font-weight: 700;
  padding-top: 15px;
}
.blog-article .post-content a {
  color: #000;
  text-decoration: underline;
} 
.blog-article div#ez-toc-container {
  display: none;
}
.wp-block-gallery .wp-block-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2; /* Alternativně: height: 250px; */
}
.wp-block-gallery .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
  border-radius: 0;
}
.wp-block-gallery .wp-block-image a:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
  cursor: zoom-in;
}
@media (max-width: 1199px) {
  .blog-article {
    padding: 60px;
  }
  .blog-article h1 {
    font-size: 32px;
  }
  .blog-article .post-thumbnail img {
    height: 400px;
  }
}
@media (max-width: 991px) {
  section.blog-detail-bg {
    padding-top: 120px;
  }
  .blog-article {
    padding: 45px;
  }
  .blog-article h1 {
    font-size: 30px;
  }
  .blog-article .post-content h2 {
    font-size: 23px;
  }
  .blog-article .post-content h3 {
    font-size: 19px;
  }
  .blog-article .post-thumbnail img {
    height: 350px;
  }
}
@media (max-width: 768px) {
  section.blog-detail-bg {
    padding-top: 120px;
  }
  .blog-article {
    padding: 30px;
  }
  .blog-article h1 {
    font-size: 26px;
  }
  .blog-article .post-content {
    font-size: 13.5px;
  }
  .blog-article .post-thumbnail img {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .blog-article {
    padding: 25px;
  }
  .blog-article h1 {
    font-size: 24px;
  }
  .blog-article .post-content h2 {
    font-size: 21px;
  }
  .blog-article .post-content h3 {
    font-size: 17px;
  }
  .blog-article .post-thumbnail img {
    height: 250px;
  }
}
@media (max-width: 425px) {
  .blog-article {
    padding: 20px;
  }
  .blog-article h1 {
    font-size: 22px;
  }
  .blog-article .post-content {
    font-size: 13px;
  }
  .blog-article .post-thumbnail img {
    height: 220px;
  }
}
@media (max-width: 320px) {
  .blog-article h1 {
    font-size: 20px;
  }
  .blog-article .post-content {
    font-size: 12.5px;
  }
  .blog-article .post-content h2 {
    font-size: 19px;
  }
  .blog-article .post-content h3 {
    font-size: 16px;
  }
}


/* SOCAIL SHARE */
.social-share {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.social-share p {
  font-weight: bold;
  margin-bottom: 10px;
}
.share-buttons {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}
.share-buttons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  background-color: #3b5998; /* Facebook default */
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}
.share-buttons li:nth-child(2) a {
  background-color: #0077b5; /* LinkedIn */
}
.share-buttons li:nth-child(3) a {
  background-color: #000000; /* X (Twitter) */
}
.share-buttons li a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .share-buttons {
    gap: 10px;
  }
  .share-buttons li a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .social-share {
    text-align: center;
  }
  .share-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 15px;
  }
  .share-buttons li a {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}
@media (max-width: 425px) {
  .share-buttons li a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .share-buttons li a {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}



/* SIDEBAR */
.sidebar {
  background: #faf7f5;
  border: 1px solid #e1e1e1;
  padding: 20px;
}
.sidebar iframe {
  width: 100%;
  height: 200px;
}
h4.widget-title {
 font-size: 18px;
  font-weight: 600;
  color: #1e1e1e; 
}

/* Styl pro widget kategorií */
.widget_categories {
  background: #ffffff;
  padding: 20px 25px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: 'Readex Pro', sans-serif;
}
.widget_categories h2,
.widget_categories .widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e1e1e;
  border-bottom: 2px solid #FFD000;
  display: inline-block;
}
.widget_categories ul {
  list-style: circle;
  
}
.widget_categories li {
  margin-bottom: 12px;
}
.widget_categories li a {
  display: inline-block;
  color: #1e1e1e;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 0;
  transition: all 0.3s ease;
}
.widget_categories li a:hover {
  background-color: #FFD000;
  color: #000;
}

.custom-toc {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 0;
}
.custom-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.custom-toc ul {
  list-style: none;
  padding-left: 0;
}
.custom-toc li {
  margin-bottom: 5px;
}
.custom-toc .toc-level-3 {
  margin-left: 20px;
  font-size: 90%;
}
.custom-toc a {
  color: #000000;
  text-decoration: none;
}
.custom-toc a:hover {
  text-decoration: underline;
}

canvas#myCanvas {
  width: 100%;
}

@media (max-width: 1199px) {
  .widget_categories h2,
  .widget_categories .widget-title {
    font-size: 18px;
  }
  .widget_categories li a {
    padding: 6px 10px;
    font-size: 15px;
  }
  .custom-toc strong {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .sidebar {
    padding: 18px;
  }
  .widget_categories {
    padding: 18px 22px;
  }
  .custom-toc {
    padding: 18px;
  }
  .widget_categories li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .sidebar {
    margin-top: 0;
  }
  .widget_categories h2,
  .widget_categories .widget-title {
    font-size: 17px;
  }
  .custom-toc strong {
    font-size: 16px;
  }
  .custom-toc .toc-level-3 {
    margin-left: 15px;
    font-size: 85%;
  }
}
@media (max-width: 575px) {
  .sidebar {
    padding: 15px;
  }
  .widget_categories {
    padding: 15px 18px;
  }
  .widget_categories li a {
    font-size: 13px;
  }
  .custom-toc {
    padding: 15px;
  }
  .custom-toc strong {
    font-size: 15px;
  }
  .custom-toc a {
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .widget_categories li a {
    padding: 5px 8px;
    font-size: 12.5px;
  }
  .custom-toc {
    font-size: 13px;
  }
}
@media (max-width: 320px) {
  .widget_categories h2,
  .widget_categories .widget-title {
    font-size: 16px;
  }
  .widget_categories li a {
    font-size: 12px;
  }
  .custom-toc strong {
    font-size: 14px;
  }
  .custom-toc a {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# OSV MATERIALY
--------------------------------------------------------------*/
.matroz {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 25px;
  height: 100%;
  border-radius: 0;  
}
.matroz:hover {
  background-color: #e1e1e1;
}
.matroz h3 {
    font-size: 30px;
    font-weight: 800;
    color: #1e1e1e;
  padding-bottom: 15px;
}
.matroz p {
  font-size: 15px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.5;  
}
.matroz a {
  font-family: 'Readex Pro', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1e1e1e;
}
.matroz a i {
  font-size: 10px;
  margin-left: 10px;
}
.matroz a:hover {
  color: #a28500;
}
@media (max-width: 1199px) {
  .matroz h3 {
    font-size: 26px;
  }
  .matroz p {
    font-size: 14px;
  }
  .matroz a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .matroz {
    padding: 20px;
  }
  .matroz h3 {
    font-size: 24px;
  }
  .matroz p {
    font-size: 13.5px;
  }
}
@media (max-width: 768px) {
  .matroz {
    padding: 18px;
  }
  .matroz h3 {
    font-size: 22px;
    text-align: center;
  }
  .matroz p {
    font-size: 13px;
    text-align: center;
  }
  .matroz a {
    display: inline-block;
    font-size: 13.5px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .matroz h3 {
    font-size: 20px;
  }
  .matroz p {
    font-size: 12.5px;
  }
  .matroz a {
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .matroz h3 {
    font-size: 18px;
  }
  .matroz p {
    font-size: 12px;
  }
  .matroz a {
    font-size: 12.5px;
  }
}
@media (max-width: 320px) {
  .matroz {
    padding: 15px;
  }
  .matroz h3 {
    font-size: 16px;
  }
  .matroz p,
  .matroz a {
    font-size: 12px;
  }
}


/* SEARCH BAR */
.header-search-bar input.form-control {
	font-size: 16px;
	flex-grow: 1;
}
.search-toggle i {
  font-size: 20px;
  cursor: pointer;
  color: #000;
  padding-left: 20px;
  transition: color 0.3s ease;
}
.search-toggle i:hover {
  color: #555;
}
.header-search-bar {
  background: #fff;
  padding: 42px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-bottom: 1px solid #eee;
  animation: fadeIn 0.3s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.header-search-bar form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-search-bar input[type="search"] {
  flex-grow: 1;
  padding: 10px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.header-search-bar input[type="search"]:focus {
  border-color: #333;
}
.header-search-bar button {
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.header-search-bar .btn-dark {
  background-color: #000;
  color: #fff;
}
.header-search-bar .btn-dark:hover {
  background-color: #333;
}
.header-search-bar .btn-light {
  background-color: #eee;
  color: #333;
}
.header-search-bar .btn-light:hover {
  background-color: #ddd;
}
@media only screen and (max-width: 768px) {
  .header-search-bar {
    padding: 20px 0;
  }
  .poptavka .btn-black {
    font-size: 13px;
    padding: 4px 10px;
  }
}
@media only screen and (max-width: 575px) {
  .header-search-bar {
    padding: 10px 0;
  }
  .search-toggle {
    padding: 0 10px 0 0;
  }
}
@media only screen and (max-width: 470px) {
  .poptavka .btn-black {
    font-size: 0;
    padding: 3px 10px;
  }
}

/* SEARCH */
.searchpage {
  padding-top: 25px;
}
.search-results h2.h4 {
  font-size: 24px;
  font-weight: 800;
  color: #1e1e1e;
}
.searchpage h2.nadpis {
  font-size: 40px;
  font-weight: 800;
  color: #1e1e1e;
}
/* <= 1199px */
@media (max-width: 1199px) {
  .searchpage h2.nadpis {
    font-size: 37px;
  }
}
/* <= 991px */
@media (max-width: 991px) {
  .searchpage h2.nadpis {
    font-size: 32px;
  }
}
/* <= 768px */
@media (max-width: 768px) {
  .searchpage h2.nadpis {
    font-size: 30px;
  }
}
/* <= 767px */
@media (max-width: 767px) {
  .searchpage h2.nadpis {
    font-size: 28px;
  }
}
/* <= 575px */
@media (max-width: 575px) {
  .searchpage h2.nadpis {
    font-size: 25px;
  }
}
/* <= 425px */
@media (max-width: 425px) {
  .searchpage h2.nadpis {
    font-size: 24px;
  }
}
/* <= 320px */
@media (max-width: 320px) {
  .searchpage h2.nadpis {
    font-size: 21px;
  }
}

/* RESPONSIVE ARTICLE FLEX: */
@media (max-width: 600px) {
  .searchpage article.d-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .searchpage article.d-flex .me-4 {
    margin-right: 0 !important;
    width: 100% !important;
    margin-bottom: 15px;
  }
  .searchpage article.d-flex .me-4 img {
    width: 100%;
    height: auto;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.nav-links .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  font-size: 16px;
  color: #333;
  background-color: #f2f2f2;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-links .page-numbers:hover {
  background-color: #000;
  color: #fff;
}
.nav-links .page-numbers.current {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  cursor: default;
}
.nav-links .page-numbers.next,
.nav-links .page-numbers.prev {
  background-color: #e0e0e0;
  color: #000;
}
.nav-links .page-numbers.next:hover,
.nav-links .page-numbers.prev:hover {
  background-color: #000;
  color: #fff;
}


/*--------------------------------------------------------------
# DETAIL REALIZATORA
--------------------------------------------------------------*/
/* TABULKA */
.realizator-detailup .right-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
.realizator-detailup table {
  padding-bottom: 0 !important;
  margin-bottom: 0;
}
.realizator-detailup .right-side img {
  width: 100%;
  height: 205px;
  object-fit: contain;
}
.realizator-detailup .right-side {
  height: 205px;
}
/* PREDSTAVENI */
section.predstaveni-bg {
  padding-top: 0;
}


/* REFERENCE */
.reference-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.reference-item img:hover {
  transform: scale(1.03);
}
.reference-item p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}
#showMoreReferences {
  margin-top: 20px;
}

iframe {
  width: 100% !important;
}
