html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #1E1E1F;
}

a {
  color: #15304C;
  text-decoration: underline;
  transition: all 0.4s;
}

a:hover {
  color: #0B7EE3;
  text-decoration: none;
}

button, input {
  font-family: Inter, sans-serif;
}

p {
  color: #566F85;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

strong {
    font-weight: 700;
}


h1 {
  font-size: 56px;
  line-height: 1.1;
}

h2 {
  font-size: 32px;
  line-height: 1.1;
}

.btn-outline {
  color: #0B7EE3;
  border: 1px solid #0B7EE3;
  padding: 14px 32px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
  border-radius: 25px;
  display: table;
  align-items: center;
}

.btn-outline:hover {
  background: #0B7EE3;
  color: #fff;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  max-width: 1300px;
  margin: auto;
}

.top-left {
    display: flex;
    gap: 50px;
}

.contacts-top {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 40px;
}

.contacts-top a {
    display: flex;
    align-content: center;
    align-items: center;
    text-decoration: none;
    gap: 5px;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 50px 20px;
}

section.products .container {
    padding: 20px 20px 60px;
}

.slide-main h1 span {
    font-size: 36px;
}

.slide-main h1 {
 line-height: 50px;
}

.container.about-container {
    padding: 35px 20px;
}


.contacts {
  display: flex;
  gap: 20px;
}

.contact-item:nth-child(1)::before {
  content: url(../images/header/phone.svg)
}

.contact-item:nth-child(2)::before {
  content: url(../images/header/email.svg)
}


.search {
  display: flex;
  align-items: center;
  background: #F6F8FA;
  border-radius: 25px;
  overflow: hidden;
}

.search input {
    border: none;
    background: transparent;
    padding: 20px 32px;
    outline: none;
    min-width: 500px;
}

.search button {
  border:0;
  background: none;
  margin-right: 28px;
}

section.search-results {
    margin-top: 30px;
}

.search input {
    border: none;
    background: transparent;
    padding: 0px 32px;
    outline: none;
    min-width: 500px;
}

.search input[type="submit"] {
    background: url(../images/header/search.svg) no-repeat center;
    background-size: 20px;
    color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    display: flex;
    min-width: auto;
}

.searchandfilter ul li {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: flex;
    align-items: center;
    padding-right: 18px;
}


.btn.reservation {
  background: #FB2C1D;
  color: #fff;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn.reservation:hover {
  background: #e02315;
  color: #fff;
}

.btn.reservation::before {
  content: url(../images/header/reservation.svg);
}

.bg-blue {
  background: linear-gradient(261.88deg, #E8F4FF 20.37%, #F7FBFF 86.99%);
}


.btn {
  background: #0B7EE3;
  color: #fff;
  padding: 14px 32px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 500;
  display: table;
  align-items: center;
  gap: 6px;
}

.btn:hover {
  background: #0870CB;
  color: #fff;
}

.center {
text-align: center;margin: auto;
}

a.btn.center {
  margin: 20px auto;
}

.carousel {
    padding: 0 0 0;
}

.carousel .slide-main {
    display: flex;
    align-items: center;
}

.carousel p {
    padding: 12px 0 16px;
}

.slick-dots {
    position: absolute;
    bottom: 75px;
    display: block;
    width: 100%;
    padding: 0;
    left: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.slick-dots {
  display: flex !important;
  gap: 10px; /* mezera mezi čárkami */
}

.carousel.slick-initialized:not(.has-multiple) .slick-dots {
  display: none !important;
}


.slick-dots li {
  width: 30px;   /* délka čárky */
  height: 3px;   /* tloušťka čárky */
  margin: 0;
}

.slick-dots li.slick-active {
    width: 60px;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}

.slick-dots li button:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #BDD9F2; /* barva neaktivní */
  border-radius: 3px;  /* zaoblení konců */
  opacity: 1;          /* vypnout default průhlednost */
}

.slick-dots li.slick-active button:before {
  background: #0B7EE3; /* barva aktivní (modrá) */
}

.features h2 {
  margin-bottom: 50px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.features-grid a {
  text-decoration: none;
}

.feature-item {
  text-align: left;
}

.feature-item .icon {
  margin: 0 0 20px;
  display: flex;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.feature-item p {
  line-height: 1.5;
  font-size: 0.95rem;
}

.services {
  text-align: center;
}

.services h2 {
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}


.service-box {
  background: #F2F9FF;
  border-radius: 20px;
  text-align: left;
  padding: 40px 40px 40px 60px;
  position: relative;
  width: 100%;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-header img {
  width: 40px;
  height: 40px;
}

.service-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-box ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #566F85;
  line-height: 1.5;
}

.service-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a73e8;
  font-size: 1.2rem;
}

form#search-filter-form-255 ul {
    display: flex;
}

.drops-block {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    justify-content: center;
}

.drops-block a p {
  font-size: 16px;
    color: #000;
}

.drops-block a {
  color: #000;
  text-decoration: none;
}

.drops-block a:hover {
  transform: scale(1.04);
}

.drops-block a:hover {
  color: #000;
  text-decoration: none;
}

.drops-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px; /* zaoblené rohy obrázku */
}

.drops-card__title {
    margin-top: 16px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}


.center-title {
  margin: 80px auto 40px;

}

section.features.detail-line h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #000;
}

a.btn.center.bottom-20 {
  margin-bottom: 50px
}

.steps {
  max-width: 900px;
  margin: 0 auto 90px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}


main#primary {
    max-width: 800px;
    margin: auto;
}

.search-results-list article {
    padding: 30px;
    margin: 20px 0;
    background: #f6f8fa;
    line-height: 1.7;
    border-radius: 17px;
}

.step__circle {
  width: 80px;
  height: 80px;
  background: #E8F1FF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #1e5384;
}

.step__content h3 {
    margin: 10px 0 3px 0;
    font-size: 22px;
    font-weight: 700;
}

.step__content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}


.step__content {
    width: 90%;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  width: 24%;
}

.product-wrapper {
    width: 70%;
    position: relative;
}
.product-wrapper button.prev.slick-arrow {
  position: absolute;
  z-index: 999
}

.product-wrapper .slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    left: 0;
    right: 0;
    margin: auto;
    list-style: none;
    text-align: left;
    bottom: -30px;
}

.product-wrapper .slick-dots {
    display: flex !important;
    gap: 10px;
    justify-content: center;
}

.products-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.products-header .link {
  color: #0B7EE3;
  font-weight: 500;
  text-decoration: underline;
}

.single-post h3 {
    color: #000000;
}

.single-post ul {
    margin: 0 20px;
}

.arrows {
  display: flex;
  gap: 20px;
}

.arrows button {
    background: none;
    border: 2px solid #0B7EE3;
    color: #0B7EE3;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    bottom: 0;
    top: 0;
    margin: auto;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    position: absolute;
}

.arrows button:hover {
  background: #0B7EE3;
  color: #fff;
}


ul.page-numbers {
    display: flex;
    list-style: none;
    gap: 20px;
}

ul.page-numbers a {
    text-decoration: none;
}

span.page-numbers.current {
    font-weight: 600;
    color: #0a7ee3;
}

.page-template-default hr {
    margin: 30px 0;
}

.page-template-default ul {
    margin: 10px 20px;
    color: #566F85;
    line-height: 1.5;
}

.page-id-700 h2 {
    font-size: 28px;
    margin-top: 20px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.page-id-700 h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

address {
    color: #567085;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-wrapper button.prev.slick-arrow {
    position: absolute;
    z-index: 999;
    left: -80px;
}

.product-wrapper button.next.slick-arrow {
    position: absolute;
    z-index: 999;
    right: -80px;
}

.products-carousel .product-item {
  text-align: center;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  padding: 30px;
  margin: 0 10px;
}

.products-carousel .product-item img {
  width: 150px;
  margin: 0 auto 20px;
}

.products-carousel .product-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.products-carousel .product-item p {
  color: #5f7285;
}


section.products .container {
    display: flex;
    justify-content: space-between;
}

.contact-section {
  background: #eaf4ff;
  text-align: center;
}

.single p {
    margin-bottom: 20px;
}

.slick-slide img {
    display: block;
    width:55%;
    max-width:800px;
}

.contact-title {
  margin-bottom: 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    transition: box-shadow 0.2s ease;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.contact-icon {
  margin-bottom: 20px;
}

.contact-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-text,
.contact-link {
  color: #566F85;
  font-size: 1rem;
  display: block;
}

.flex {
    display: none;
  }

  .first-faq {
    width: 86%;
  }


.contact-link:hover {
  color: #0B7EE3;
}

/* WhatsApp */
.contact-whatsapp {
  color: #1a9c43;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-top: 6px;
  text-decoration: none;
}

.contact-whatsapp:hover {
  text-decoration: underline;
}

.contact-whatsapp-icon {
  width: 18px;
  height: 18px;
}



.visit-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.visit-info {
  flex: 0 0 50%;
}

.visit-title {

  margin-bottom: 20px;
}

.visit-subtitle {
  color: #5f7285;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.visit-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-item {
  display: flex;
  align-items: flex-start;
  border-radius: 20px;
  padding: 25px;
  gap: 20px;
  border: 1px solid #F0EFEF;
}



.visit-heading {
  font-weight: 700;
  margin-bottom: 5px;
}

.visit-description {
  color: #5f7285;
  line-height: 1.5;
}

.visit-link {
  color: #0B7EE3;
  text-decoration: underline;
  font-weight: 500;
}

.visit-map {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    min-height: 420px;
    margin-top: 115px;
}


.reviews-section {
  background: #E8F4FF;
  text-align: center;
}

.reviews-title {

  margin-bottom: 10px;
}

.reviews-subtitle {
  color: #5f7285;
  font-size: 1.05rem;
  margin-bottom: 50px;
}

.reviews-rating {
  color: #566F85;
  font-weight: 500;
}

.reviews-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.reviews-carousel {
  width: 80%;
}

.reviews-card {
  background: #fff;
  border-radius: 8px;
  padding: 48px 40px;
  text-align: left;
  margin: 0 10px;
  min-height: 300px;
}

.reviews-text {
  color: #5f7285;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reviews-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

/* Šipky */
.reviews-arrow {
  background: none;
  border: 2px solid #0B7EE3;
  border-radius: 50%;
  width: 50px;
  color: #0B7EE3;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: 0.2s ease;
}

.reviews-arrow img {
  width: 16px;
  height: 16px;
}

.reviews-arrow:hover {
  background: #0B7EE3;
  color: #fff
}

.reviews-arrow:hover img {
  filter: brightness(0) invert(1);
}

.reviews-section .slick-dots {
    position: absolute;
    bottom: -35px;
    justify-content: center;
  }

  .blog-section {
    text-align: center;
  }

  .blog-grid .slick-slide img {
      display: block;
      width: 100%;
      max-width: 800px;
  }
.page-template-blog .blog-title {
    margin-bottom: 50px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .blog-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .blog-content {
      padding: 30px 38px 40px;
  }

  .blog-card {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    transition: box-shadow 0.2s ease;
  }

  .blog-card:hover {
    box-shadow: 0 4px 35px rgba(0,0,0,0.08);
    border: 1px solid #fff;
  }

  .blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .blog-date {
    display: block;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #0B7EE3;
    letter-spacing: 0.2px;
  }

  .blog-heading {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #1E1E1F;
    margin: 15px 0
  }

  .blog-text {
    color: #566F85;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .blog-link {
    color: #0B7EE3;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
  }

  .blog-link:hover {
    color: #125ecb;
  }

  .blog-footer {
    margin-top: 50px;
  }


  .blog-footer .btn {
      margin: auto;
  }


  .newsletter-section {
    background: #E8F4FF;
    text-align: center;
  }

  .newsletter-title {

    margin-bottom: 10px;
  }

  .newsletter-subtitle {
      color: #566F85;
      font-size: 16px;
      margin: 14px 0;
  }


  .services-grid .slick-dots {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    bottom: -20px;
}

.blog-grid .slick-dots {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    bottom: -25px;
}

  /* Formulář */
  .newsletter-form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 600px;
    margin: 0 auto 14px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;

  }

  .newsletter-input {
    flex: 1;
    border: none;
    padding: 20px 30px;
    font-size: 14px;
    border-radius: 50px 0 0 50px;
    outline: none;
  }

  .newsletter-input::placeholder {
    color: #9fb1c5;
  }

  .newsletter-button {
    background: #0B7EE3;
    color: #fff;
    font-weight: 600;
    padding: 0 35px;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
  }

  .newsletter-button:hover {
    background: #125ecb;
  }

  /* Poznámka */
  .newsletter-note {
    color: #789EC2;
    font-size: 0.9rem;
  }

  .newsletter-note a {
    color: #789EC2;
    text-decoration: underline;
  }

  .newsletter-note a:hover {
    text-decoration: none;
  }


  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .about-video {
    flex: 1;
  }

  .about-video video {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .about-content {
    flex: 1;
  }

  .about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .about-text {
    color: #5f7285;
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 30px;
  }

  .about-button {
    display: inline-block;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 40px;
    transition: background 0.2s ease;
  }

  .about-button:hover {
    background: #125ecb;
    color: #fff
  }

  .products-carousel a {
    text-decoration: none;
  }



/* Detail */

.category-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5f7285;
  max-width: 1300px;
  margin: 50px auto 0;
}

.article-detail .breadcrumb {
    margin: 0 0 30px;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  color: #5f7285;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #1a73e8;
      text-decoration: none;
}

.breadcrumb img {
  width: 18px;
  height: 18px;
}

.category-hero-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.category-hero-text {
  color: #5f7285;
  margin-bottom: 20px;
  max-width: 660px;
}

.category-hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-width: 450px;
}

section.features.detail-line .container {
  border-top: 1px solid;
  margin-top: 20px;
  color: #EBEBEB;
}


@media (max-width: 991px) {
  .category-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .category-hero-text {
      margin: 0 auto 30px;
      text-align: left;
  }

  .category-hero-container {
    gap: 30px;
  }

  section.features.detail-line .container {
    border-top: 0;
    margin-top: 0;
    color: #EBEBEB;
}

section.features.detail-line {
    padding: 0;
}

  .category-hero-btn {
    margin: 0 auto;
  }

  .breadcrumb {
    padding: 0 20px;
  }

  .category-hero-title {
    text-align: left;
}

}





/* FAQ */


.faq-section {
  background: #F2F9FF;
}

.faq-section .container {
    max-width: 800px;
    padding: 50px 20px 70px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid #dbe6f4;
  padding: 20px 0;
}

.first-faq {
  width: 90%;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #101820;
}

.faq-question:hover {
  color: #1a73e8;
}

.faq-icon {
  background: #e9f2ff;
  color: #1a73e8;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  color: #5f7285;
  margin: 15px 0 0;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  max-width: 670px;
}

.faq-item.active .faq-icon {
  background: #1a73e8;
  color: #fff;
}




/* Blog */


.blog-filter {
  padding: 60px 20px 20px;
  background: #fff;
}

.blog-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.blog-heading a {
  text-decoration: none;
}

.blog-filter-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
      margin-bottom: 30px;
}

.filter-label {
  font-weight: 700;
  font-size: 14px;
  color: #101820;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-tag {
  background: #f5f5f5;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  color: #1E1E1F;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tag:hover {
  background: #e9f2ff;
  color: #1a73e8;
}

.filter-tag.active {
  background: #1a73e8;
  color: #fff;
}




.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
  font-family: system-ui, sans-serif;
}

.page-number,
.page-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  color: #5f7285;
  transition: all 0.2s ease;
}

.page-number:hover {
  background: #f0f6ff;
  color: #1a73e8;
}

.page-number.active {
  background: #e9f2ff;
  color: #000;
  font-weight: 600;
}

.page-arrow {
  border: 1px solid #1a73e8;
  color: #1a73e8;
  width: 48px;
  height: 48px;
}

.page-arrow.disabled {
  border: 1px solid #ddd;
  color: #ccc;
  pointer-events: none;
}

.page-arrow:hover {
  background: #1a73e8;
  color: #fff;
}

.page-dots {
  color: #5f7285;
  font-size: 1.2rem;
  padding: 0 5px;
}


/* Detail blog */


.article-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}

.article-image {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 18px;
}

.article-section-image {
  margin-bottom: 40px;
  text-align: center;
}

.article-section-image img {
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  height: auto;
  display: inline-block;
  object-fit: cover;
}

.article-section-image {
    margin: 40px auto;
    text-align: center;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.article-lead p {
  font-size: 22px;
  font-weight: 600;
  color: #101820;
  margin-bottom: 35px;
  line-height: 1.6;
}

section.article-detail .container {
    max-width: 980px;
    margin: auto;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5f7285;
  max-width: 850px;
}

.article-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #101820;
  margin: 40px 0 15px;
}

.date {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  color: #0B7EE3;
  margin-bottom: 20px
}

section.blog-section.other-article h2 {
    font-size: 32px;
    text-align: center;
}

section.blog-section.other-article .container {
    padding: 0 0 60px;
}

section.blog-section.other-article p {
    margin-bottom: 15px;
}

/* Kontakt */


.flex-style {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

section.contact-section.main-contact .contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 60%;
}

section.contact-section.main-contact .container {
    max-width: 1300px;
    margin: auto;
    padding: 50px 0px;
}


section.contact-section.main-contact h2.contact-title {
    margin-bottom: 40px;
    text-align: left;
    font-size: 44px;
}


section.contact-section.main-contact .contact-card {
    padding: 20px;
}

.contact-place {
  max-width: 40%;
}

.contact-place img {
  width: 100%;
  border-radius: 20px;
}

/* Team */

.team-section {
  background: #fff;
}

.team-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  border: 1px solid #F0EFEF;
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 192px;
    margin-bottom: 20px;
    max-width: 120px;
}

.team-member h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.position {
  color: #1a73e8;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
}

.bio {
  color: #5f7285;
  line-height: 1.6;
  font-size: 0.95rem;
}


.billing-section {
    text-align: center;
    background: #f9fcff;
}

.billing-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #101820;
}

.billing-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5f7285;
  margin: 0;
}

.billing-info strong {
  color: #101820;
  font-weight: 700;
}

.billing-info .note {
  margin-top: 20px;
  font-size: 1rem;
  color: #5f7285;
  font-weight: 500;
}

/* Responsivita */
@media (max-width: 768px) {
  .billing-section {
    padding: 0 20px;
  }

  .category-hero-title {
    font-size: 32px;
}

  .step {
      display: flex;
      align-items: center;
      text-align: center;
      padding: 0 10px;
      gap: 8px;
      flex-direction: column;
      margin-bottom: 40px;
      justify-content: center;
  }

  .step__circle {
    width: 60px;
    height: 60px;
  }

  .step__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}


  .billing-title {
    font-size: 1.6rem;
  }

  .drops-block {
    flex-direction: column;
}


  .billing-info p {
    font-size: 1rem;
  }

  .team-member {
      border: 1px solid #F0EFEF;
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      transition: transform 0.2s
  ease, box-shadow 0.2s
  ease;
  }

  .flex-style {
    flex-direction: column;
  }

  section.contact-section.main-contact .contact-cards {
    width: 100%;
}

section.contact-section.main-contact .container {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;
}

.contact-place {
    max-width: 100%;
}

}


/* Responzivita */
@media (max-width: 768px) {
  .article-title {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }

  section.blog-section.other-article .container {
    padding: 0 20px 40px;
}

.blog-card {
      margin: 0 10px 10px;
}

  .article-content {
    font-size: 1rem;
  }

  .article-lead {
    font-size: 1rem;
  }
  .article-image img {
    width: 100%;
    height: 270px;
    display: block;
    object-fit: cover;
}

.article-detail .breadcrumb {
    margin: 0 0 30px;
    padding: 0;
}

}





  /* Responsivita */
  @media (max-width: 991px) {


    .about-container {
    flex-direction: column-reverse;
    text-align: center;
        gap: 50px;
}

.page-arrow {
    width: 38px;
    height: 38px;
}

.page-number, .page-arrow {
    width: 38px;
    height: 38px;
}

    .about-video {
              width: 100%;
    }

    .about-button {
      margin: 0 auto;
    }
  }
  /* === HAMBURGER === */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 42px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
            align-items: flex-end;
  }

  .mobile-menu-toggle span {
      width: 100%;
      height: 2px;
      background: #1a73e8;
      border-radius: 1px;
  }

  .mobile-menu-toggle span:nth-child(1) {
    width: 60%;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 80%;
}



  /* === OVERLAY === */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  /* === MENU === */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 25px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }



  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  /* === HLAVIČKA === */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }

  .mobile-menu-logo {
    width: 80px;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #1a73e8;
    cursor: pointer;
  }

  /* === KONTAKTY === */
  .mobile-menu-contact {
    margin-bottom: 20px;
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    text-decoration: none;
    margin: 16px 0;
  }

  .mobile-menu-link img {
    width: 18px;
    height: 18px;
  }

  /* === SEZNAM === */
  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .mobile-menu-item {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 14px 0;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
  }

  .mobile-submenu {
    display: none;
    padding-left: 15px;
    margin-bottom: 10px;
  }

  .mobile-submenu li {
    margin-bottom: 6px;
  }

  .mobile-menu-list a {
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #1E1E1F;
    padding: 20px 0;
    display: block;
    text-decoration: none;
    border-top: 1px solid #F0EFEF;
  }

  .mobile-submenu a:hover {
    color: #1a73e8;
  }

  /* === HLEDÁNÍ === */
  .mobile-menu-search {
      display: flex;
      width: 100%;
      align-items: center;
      gap: 8px;
      background: #f5f7fa;
      border-radius: 20px;
      padding: 0px 25px;
      margin-top: auto;
      margin-bottom: 15px;
  }

    .mobile-menu-search form#search-filter-form-255 {
      width: 100%;
  }

    .mobile-menu-search li.sf-field-search {
      width: 90%;
}
    .mobile-menu-search li.sf-field-submit {
      width: 10%;
}





  .mobile-menu-search input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
  }

  .mobile-menu-search button {
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-search img {
    width: 20px;
  }

  /* === TLAČÍTKO === */
  .mobile-menu-btn {
    background: #e42e2e;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    padding: 14px 0;
    display: block;
  }

  /* === RESPONSIVITA === */
  @media (max-width: 991px) {
    .mobile-menu-toggle {
      display: flex;
    }

    .menu { /* schovej desktop menu */
      display: none;
    }
  }



  .footer-section {
  background: #fff;
  color: #5f7285;
  padding: 30px 20px 30px;
  font-size: 0.95rem;
}

/* === GRID === */
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-column.footer-col-contact p {
    color: #000;
}

/* === LOGO === */
.footer-col-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo {
  width: 100px;
  height: auto;
}

/* === KONTAKT === */
.footer-col-contact p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom:13px;
}

.footer-contact img {
  width: 18px;
  height: 18px;
}



/* === OBECNÉ / KATEGORIE / SOCIÁLNÍ === */
.footer-heading {
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #5f7285;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #1a73e8;
}

/* === SOCIÁLNÍ SÍTĚ === */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

/* === SPODNÍ ŘÁDEK === */
.footer-bottom {
  border-top: 1px solid #e6e9ef;
  padding-top: 20px;
  text-align: center;
  color: #5f7285;
  font-size: 0.9rem;
}

/* === RESPONSIVITA === */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-col-logo {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

.visit-map {
      min-height: auto;
}

.visit-map iframe {
    height: 300px;
}

  .footer-social {
    justify-content: center;
  }

  .footer-col-logo {
    justify-content: center;
    margin-bottom: 20px;
  }
  .services h2 {
    margin-bottom: 20px;
}

.container.about-container {
    padding: 15px 12px;
}

section.services .container {
    padding: 20px 20px 0;
}

.products-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.products-carousel .product-item img {
  width: 100%;
  margin: 0 auto 10px;
}

.products-header {
    width: 100%;
    text-align: left;
}

.products-carousel .product-item {
  text-align: center;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 20px;
  padding: 30px;
  margin: 0 5px;
}

}


  /* Responsivita */
  @media (max-width: 600px) {
    .newsletter-form {
      flex-direction: column;
      border-radius: 20px;
      overflow: visible;
      background: none;
      gap: 12px;
    }

    .newsletter-input,
    .newsletter-button {
      border-radius: 20px;
    }

    .newsletter-button {
        margin-top: 0px;
        width: 100%;
        justify-content: center;
        padding: 18px;
    }
  }



  /* Responsivita */
  @media (max-width: 991px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid1 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }

    .blog-grid1 {
      grid-template-columns: 1fr;
    }

    .blog-image {
      height: 200px;
    }
  }



/* Responsivita */
@media (max-width: 991px) {
  .reviews-carousel {
    width: 100%;
  }

  .reviews-card {
    padding: 30px;
  }

  .reviews-wrapper {
    flex-direction: column;
  }

  .reviews-arrow {
      order: 2;
      display: none!important;
  }
}



/* Responsivita */
@media (max-width: 991px) {
  .visit-container {
    flex-direction: column;
  }

  .visit-map {
    width: 100%;
    margin-top: 30px;
  }

  .footer-contact li {
    display: flex
;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: center;
}
}




/* Responsivita */
@media (max-width: 991px) {

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dva stejně široké sloupce */
        gap: 10px;
}

.contact-text, .contact-link {
    color: #566F85;
    font-size: 14px;
    display: block;
}


.services-grid {
  grid-template-columns: 1fr;
}



  section.products .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
  }

}


@media (max-width: 1400px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .search,
  .contacts-top {display: none;}

  .container {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;
}

.products-header {
    justify-content: flex-start;
    margin-bottom: 40px;
    width: 100%;
}

.product-wrapper {
    width: 100%;
    position: relative;
}

.arrows  {
  display: none;
}

.visit-container {
    display: flex
;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.container.carousel img {
    width: 80%;
}

h1 {
    font-size: 38px;
    line-height: 1.1;
    text-align: center;
}

.carousel p {
    padding: 12px 0 16px;
    text-align: center;
}

section.features {
    padding: 50px 0 0;
}

.visit-title,
.visit-subtitle {
  text-align: center;
}
.container.carousel .slick-dots {
    position: absolute;
    bottom: -30px;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.carousel .slide-main {
    display: flex
;
    align-items: center;
    flex-direction: column;
}

.container.carousel {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px 0;
}

.container.carousel .btn {
    background: #0B7EE3;
    color: #fff;
    padding: 14px 32px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 500;
    display: table;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin: auto;
}


.flex {
    flex-direction: row;
    display: flex;
    gap: 20px;
    align-items: center;
    align-content: center;
}


.service-box {
    background: #F2F9FF;
    border-radius: 20px;
    text-align: left;
    padding: 40px 15px 40px 35px;
    position: relative;
}

}




.mobile-menu-search input[type="submit"] {
    background: url(../images/header/search.svg) no-repeat center;
    background-size: 20px;
    color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    display: flex;
    min-width: auto;
}


  #scrollTopBtn{
    position: fixed;
    right: 4px;
    bottom: 4px;
    z-index: 9999;

    content: url(../images/scroll.svg);
    transition: opacity .2s ease, transform .2s ease;

    /* defaultně schované */
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  /* viditelné při scrollu nahoru */
  #scrollTopBtn.is-visible{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* DESKTOP/TABLET schovat úplně */
  @media (min-width: 992px){
    #scrollTopBtn{
      display: none !important;
    }
  }
