/*
Theme Name: Honda Centrum
Theme URI: https://honda-centrum.cz
Author: Jan Žáček
Author URI: https://webotvurci.cz
Description: Child theme pro Honda Centrum
Template: twentytwentyfive
Version: 1.0.0
Text Domain: honda-centrum
*/

/* Počáteční stav pro všechny animované prvky.
  Jsou neviditelné a posunuté mimo svou finální pozici.
*/
.col-md-6 {
  flex: inherit !important;
}

.fade-up,
.fade-right,
.fade-left {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
  /* Optimalizace pro prohlížeč */
}

/* Posunutí pro jednotlivé směry */
.fade-up {
  transform: translateY(40px);
}

.fade-right {
  transform: translateX(-40px);
}

.fade-left {
  transform: translateX(40px);
}

/* Koncový stav, který se aktivuje přidáním třídy 'is-visible'.
  Prvek se stane plně viditelným a vrátí se na původní pozici.
*/
.fade-up.is-visible,
.fade-right.is-visible,
.fade-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- KÓD PRO SEKVENČNÍ ANIMACE --- */

/* Toto pravidlo zajistí, že když je rodičovský kontejner viditelný,
  tak jeho děti (které mají naši fade třídu) se také stanou viditelnými.
  Samotné zpoždění definujeme níže.
*/
.stagger-children.is-visible .fade-up,
.stagger-children.is-visible .fade-left,
.stagger-children.is-visible .fade-right {
  opacity: 1;
  transform: translate(0, 0);
}

/*
  Zde definujeme zpoždění pro každé dítě zvlášť pomocí selektoru :nth-child().
  Zpoždění se aplikuje POUZE pokud je rodič viditelný.
  Můžete si hodnoty (0.15s, 0.3s, atd.) upravit podle sebe.
*/
.stagger-children.is-visible>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children.is-visible>*:nth-child(2) {
  transition-delay: 0.15s;
}

.stagger-children.is-visible>*:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children.is-visible>*:nth-child(4) {
  transition-delay: 0.45s;
}


section,
.footer-inner {
  padding-left: 20px !important;
  padding-right: 20px !important
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..800;1,100..800&family=Roboto:ital,wght@0,100..800;1,100..800&display=swap');

body,
p,
a,
li,
span,
input,
button,
textarea,
label,
.article-excerpt,
.news-excerpt,
.offer p,
.benefit-item p,
.footer-desc,
.footer-contact-address,
.footer-contact-ico,
.footer-contact-dic {
  font-family: 'Roboto', sans-serif, Arial;
}

h1,
h2,
h3,
h4,
h5,
h6,
.articles-title,
.news-title,
.references-title,
.about-content h2,
.offer h3,
.benefit-item h3,
.footer-col h4,
.article-headline,
.news-headline,
.reference-author {
  font-family: 'Montserrat', sans-serif, Arial;
  text-transform: uppercase;
  letter-spacing: -5% !important;
  line-height: 1;
}

p,
span,
a,
li {
  font-size: 16px;
  font-weight: 400;
}

/* --- TOPBAR STYLES --- */
html {
  margin-top: 0px !important;
}

.opening-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.topbar-dropdown a {
  margin-top: 10px;
}

.topbar {
  background: #3B3B3B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.topbar .topbar-dropdown a {
  color: black
}

.topbar .left {
  display: flex;
  gap: 15px;
}

.topbar-item {
  position: relative;
  display: flex;
  align-items: center;
}

.topbar-item p {
  margin-bottom: 0px !important;
}

.topbar-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-phone:hover .topbar-dropdown,
.topbar-phone:focus-within .topbar-dropdown {
  display: block;
}

.topbar-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  z-index: 99999;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.topbar-dropdown a {
  color: #EE203E;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  text-decoration: underline;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}

.topbar-menu a {
  font-size: 15px
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-menu {
  flex: 1 1 auto;
  text-align: center;
}

.topbar-menu-list {
  display: inline-flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-menu-list li a {
  font-weight: 600 !important;
  text-decoration: none;
  transition: color 0.2s;
  text-transform: uppercase;
  cursor: pointer;
}

.right {
  display: flex;
  background-color: #EE203E;
}

.right .topbar-email a,
.right .topbar-label,
.left {

  color: white !important;
  padding: 12px 20px;
}

.right>img {
  margin-right: 10px;
}

.left {
  background-color: #6B6B6B;
}

@media (min-width: 992px) {
  .right .topbar-email {
    border-left: 1px solid black;
  }
}


.header-search {
  display: flex;
  align-items: center;
  margin: 0 15px;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-field {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px 0 0 3px;
}

.search-submit {
  padding: 6px 12px;
  border: 1px solid #EE203E;
  background: #EE203E;
  color: #fff;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}

.search-submit:hover {
  background: #b80016;
}

/*menu*/
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 20px;
  background: #fff;
  position: relative;
  z-index: 1000;
}

.header-logo img {
  max-height: 60px;
  width: auto;
  display: block;
  max-width: 200px;
}

.header-logo .logo-motorbikes {
  min-height: 40px;
  min-width: max-content;
  align-self: anchor-center;
}

.header-logo a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px
}

.header-logo a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 1px;
  background-color: #E5E5E5;

}

.logo-motorbikes {
  border-right: 1px solid #E5E5E5;
  padding: 2px 20px;
}

.header-menu {
  display: flex;
}

.main-menu-wrapper {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-menu-wrapper li {
  position: relative;
  list-style: none;
}

.main-menu-wrapper li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  text-transform: uppercase;
  font-size: 15px;
}

.main-menu-wrapper li a:hover {
  text-decoration: underline;
}

.main-menu-wrapper li.menu-item-has-children>a::after {
  content: "";
  background: url('https://honda.webotvurci.cz/wp-content/uploads/2025/05/down.svg') no-repeat center;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 993px) {
  .main-menu-wrapper li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
  }

  .main-menu-wrapper li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

.main-menu-wrapper li.submenu-open>a::after {
  transform: rotate(180deg);
}

.main-menu-wrapper li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 5px 24px;
}

.main-menu-wrapper li .sub-menu li {
  white-space: nowrap;
}

.sub-menu a:hover {
  text-decoration: underline;
}

.menu-toggle {
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}

.menu-toggle-icon img {
  width: 32px;
  height: 32px;
}

@media screen and (max-width: 992px) {
  .header-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
  }

  .header-menu.open {
    display: flex;
  }

  .main-menu-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .header-search {
    display: none;
  }

  .main-menu-wrapper li .sub-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .header-logo img {
    max-width: 90px;
  }

  .header-logo a {
    margin-top: auto;
    margin-bottom: auto;
  }

  .header-logo p {
    line-height: 1;
  }

  .main-menu-wrapper li a {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }

  .main-menu-wrapper {
    justify-content: end;
    max-width: 350px;
  }
}

/* --- HERO SECTION --- */
.homepage-hero {
  padding: 0px !important;
}

.hero-carousel,
.hero-carousel .swiper-wrapper,
.hero-carousel .swiper-slide {
  height: 100vh;
  max-height: 600px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.hero-inner {
  max-width: 1468px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  height: 100%;
  padding: 0 20px;

}

.hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  margin-top: -75px;
  max-width: 600px;
}

.hero-content h1,
.hero-content h2.hero-headline {
  font-size: 62px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 100%;
  font-style: italic;
  text-transform: uppercase;
  line-height: 120%;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 147%;
  font-weight: 400;
  margin-bottom: 32px;
  color: #fff;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.hero-btn {
  background: #EE203E;
  color: #fff;
  font-style: italic;
  padding: 16px 32px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  border: 1px solid #EE203E;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  text-transform: uppercase;
}

.hero-btn::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 20px;
}

.hero-btn:nth-child(1)::after {
  background-image: url('https://honda.webotvurci.cz/wp-content/uploads/2025/04/rounded-down-white.svg');
}

.hero-btn:nth-child(1):hover::after {
  background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/04/rounded-red-right.svg) !important;
}

.hero-btn:nth-child(2) {
  background: #000;
  color: #fff;
  border: 1px solid #EE203E;
}

.hero-btn:nth-child(2)::after {
  background-image: url('https://honda.webotvurci.cz/wp-content/uploads/2025/04/rounded-red-right.svg');
}

.hero-btn:hover {
  background: #fff;
  color: #EE203E;
}

.hero-image {
  flex: 1 1 50%;
  min-width: 300px;
  /*display: flex;*/
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

/* Responsivita */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    min-width: 0;
    width: 100%;
  }

  .search-form {
    margin-top: 10px !important;
  }

  .hero-btn {
    width: max-content;
    margin: auto;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-content {
    margin-top: 50px;
    padding-top: 32px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: 0px
  }

  .hero-content {
    margin-top: 0px !important;
  }

  .categories-inner {
    border-radius: 0px !important;
    overflow: visible;

  }

  .homepage-categories {
    width: 100% !important;
    padding: 0px !important;

  }

}

@media only screen and (max-width: 375px) {
  .hero-carousel h1,
  .hero-carousel h2.hero-headline {
    font-size: 30px !important;
  }
}

/* --- KATEGORIE MOTOCYKLŮ --- */
.tax-produkt_kategorie .products-container
{
    margin-top: 75px;
}

.category-files {
  justify-content: center;
  margin: 32px auto 50px;
  display: grid;
  text-align: center;
  gap: 10px
}

.category-files h2 {
  font-weight: 700;
}

.main-text {
  text-align: start;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1468px;
  margin: 0 auto;
}

.main-text h1 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 20px;
}

.filter-container {
  max-width: 1428px;
  margin: 40px auto;
  padding: 40px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.select-categories .categories-inner {
  margin-top: 0px;
}


.select-categories {
  margin: 0px auto;
  max-width: 1468px;
}

.chose-category {
  font-weight: 800;
  max-width: 1468px;
}
/* Reset filter button styles */
.reset-filter-btn {
  background: #EE203E;
  border: 2px solid #EE203E;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reset-filter-btn:hover {
  background: #fff;
    color: #EE203E;
}

.reset-filter-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.filter-group {
  position: relative;
  display: inline-block;
}

.dropdown-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: -12px;   /* O kolik má přesahovat vpravo */
  height: 100%;
  width: 24px;    /* Šířka přesahu */
  background: #d5d5d5;
  border-radius: 0 3px 3px 0;
  z-index: 1;
  pointer-events: none;
}

.dropdown-bg select {
  position: relative;
  z-index: 2;
  padding: 10px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  background: #d5d5d5;
}

#filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.filter-group {
  display: flex;
  flex-direction: column;
  font-size: 16px !important;
}

.filter-group label {
  font-size: 16px;
  margin-bottom: 5px;
}

.filter-group select {
  padding: 10px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  background: #d5d5d5;
  max-width: 185px;
}
.filter-group select:focus-visible
{
        outline: transparent;
}
#price-slider {
  margin: 20px 0;
  max-width: 300px;
}

#price-label {
  margin-bottom: 5px;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  #filter-form {
    justify-content: left;
  }
}

.homepage-categories {
  width: 95%;
  padding: 24px 0 32px 0;
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 1468px;
  position: relative;
  z-index: 100;
}

.homepage-categories:before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 550px;
  height: 60px;
  right: 0;
  bottom: 10px;
  background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/05/zkosena-krafika.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
}

@media only screen and (min-width: 1680px) {
  .homepage-categories:before {
    right: -100px !important;
  }
}

.categories-inner {
  display: flex;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 5px 10px;
  align-items: center;
  margin-top: -75px;
  justify-content: space-between;
  width: -webkit-fill-available;
  height: 185px;
  z-index: 9;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-decoration: none;
  color: #222;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.2s, box-shadow 0.2s, background 0.2s;
  padding: 8px 0px;
  border-radius: 3px;
  position: relative;
  height: 100%;
}


.category-item img {
  margin-bottom: 10px;
  object-fit: fill;
  height: 100px;
  max-width: 150px;
}

.hover-bg {
  height: 150px;
}

.hover-bg:hover {
  background-color: #F1F1F1 !important;
  border-radius: 3px;
  margin-bottom: 15px !important;
  margin-top: 15px;
}

.hover-bg {
  position: relative;
}

.hover-bg:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;

  background: #F1F1F1;
}

.category-item::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  padding-bottom: 3px;
  background-color: #EE203E;
  border-radius: 3px;
  transition: width 0.3s;
  margin-top: 6px;
}

@media (max-width: 1200px) {
  .categories-inner {
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .categories-inner .swiper-wrapper {
    display: flex;
  }

  .categories-inner .category-item {
    flex-shrink: 0;
    width: auto;
  }

  /* Custom navigation buttons styling */
  .categories-inner .posuvnik-button-prev,
  .categories-inner .posuvnik-button-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .categories-inner .posuvnik-button-prev img,
  .categories-inner .posuvnik-button-next img {
    width: 32px;
    height: 32px;
  }

}

.category-item:hover::after,
.category-item:focus::after {
  width: 20px;
}

.category-icon {
  width: 56px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 8px;
}

.category-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -5% !important;
  margin-top: 2px;
  text-transform: uppercase;
  font-style: italic;
}

@media (min-width: 1280px) {
  .categories-inner {
    flex-wrap: nowrap;
    gap: 5px;
    padding: 5px 15px;
  }
}

@media (max-width: 1280px) {
  .category-item img {
    width: 132px;
  }
}

@media (max-width: 992px) {
  .categories-inner {
    gap: 5px;
    padding: 12px 5px;
  }

  .category-item {
    font-size: 0.95rem;
  }

  .category-icon {
    width: 40px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  .categories-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 2px;
  }

  .category-item {
    font-size: 0.9rem;
    padding: 6px 4px;
  }
}

.offer-icon {
  display: none;
}

/* --- HOMEPAGE REFERENCES --- */
.homepage-references {
  background: #fff;
  padding: 75px 0 32px 0;
  text-align: start;
}

.references-title {
  font-size: 36px;
  line-height: 120%;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: italic;
  text-align: center;
}

.references-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1468px;
  margin: 0 auto 32px auto;
}

.references-arrow {
  background: #e0e3e5;
  border: none;
  border-radius: 3px;
  width: 64px;
  height: 64px;
  font-size: 2.5rem;
  color: #222;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.references-arrow:hover {
  background: #EE203E;
  color: #fff;
}

/* Wrapper pro overflow */
.references-list-wrapper {
  width: 100%;
  max-width: 95%;
  overflow: hidden;
  position: relative;
}

/* Hlavní kontejner pro flex layout */
.references-list {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
  min-height: 220px;
}

/* Jednotlivé reference */
.reference-item {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  padding: 25px 20px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  position: relative;
}

.reference-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.reference-content {
  flex: 1;
  margin-bottom: 20px;
}

.reference-content p {
  margin: 0;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
  border: none;
  padding: 0;
}

.reference-more {
  color: #EE203E;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  margin-left: 2px;
}

.reference-more:hover {
  text-decoration: underline;
}

.reference-author {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: auto;
  font-family: 'Roboto', Arial, sans-serif;
  margin-left: 10px;
  text-transform: none;
}

.references-more-wrap {
  margin: 32px auto 0;
  text-align: center;
}

.references-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border: 2px solid #EE203E;
  color: #111;
  background: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  font-style: italic;
}

.references-more-btn:hover {
  background: #EE203E;
  color: #fff;
}

.references-more-arrow {
  font-size: 1.5rem;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.2s;
}

.references-more-btn:hover .references-more-arrow {
  transform: translateX(4px);
}

/* Responsivita */
@media (max-width: 1200px) {
  .reference-item {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 1100px) {

  .references-arrow,
  .references-arrow img {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .reference-item {
    padding: 20px 15px;
  }
}

@media (max-width: 992px) {
  .reference-item {
    flex: 0 0 calc(100% - 10px);
    max-width: 100%;
    margin: 0 10px;
  }

  .references-slider {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .homepage-references {
    padding: 40px 0 15px 0;
  }

  .references-title {
    font-size: 26px;
  }

  .references-arrow,
  .references-arrow img {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .reference-item {
    padding: 15px;
    text-align: center;
    margin: 0 5px;
  }

  .references-more-btn {
    font-size: 0.98rem;
    padding: 10px 18px;
  }

  .references-slider {
    gap: 10px;
  }

  .references-list-wrapper {
    max-width: 85%;
  }
}

/*homepage products carousel*/
.homepage-products-carousel .swiper {
  padding: 5px;
  width: 90%;
}

/* --- FOOTER NEWSLETTER --- */
.footer-newsletter {
  background-image: url('https://honda.webotvurci.cz/wp-content/uploads/2025/04/bg-newsletter.png') !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin-bottom: -1px;
}

.newsletter-inner {
  max-width: 1468px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-style: italic;
}

.newsletter-text {
  font-size: 32px;
  letter-spacing: 1px;
  text-align: left;
  max-width: 600px;
}

.newsletter-text strong {
  font-weight: 800;
  font-family: 'Montserrat', 'Roboto';
}

.newsletter-form {
  display: flex;
  gap: 0;

  margin-left: auto;
}

.newsletter-form input[type="email"] {
  padding: 12px 16px;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 1rem;
  width: 100%;
  background-color: #EE203E;
  color: white;
  -webkit-text-fill-color: white;
  border: 1px solid #ccc;
  min-width: 250px;
}

.newsletter-form button {
  padding: 12px 28px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 260px;
  font-style: italic;
}

.newsletter-form button:hover {
  background: #EE203E;
  color: #fff;
}


.ec-v-form-holder
{
    background-color: transparent !important;
    width: inherit !important;
}

 .ec-v-form-holder form, .ec-v-form-step.ec-v-form-step-visible
{
    min-height: inherit !important;
    height: inherit !important;
}
@media only screen and (min-width: 768px) {
.ec-v-form-html{
    display: flex;
}
}

.ec-v-form-html input[type="email"] {
    padding: 12px 16px;
    border: none;
    border-radius: 3px 0 0 3px;
    font-size: 1rem;
    width: 100%;
    background-color: #EE203E;
    color: white;
    -webkit-text-fill-color: white;
    border: 1px solid #ccc;
    min-width: 250px;
}

.ec-v-form-html button {
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 260px;
    font-style: italic;
        width: -webkit-fill-available;
}


/* --- FOOTER LAYOUT --- */
.footer-nav .sub-menu {
  padding-left: 20px !important;
  list-style: none;
  margin-top: 3px;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 48px 0 32px 0;
}

.footer-inner {
  max-width: 1468px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 24px;
}

.footer-desc {
  max-width: 260px;
}

.footer-desc p strong {
  font-weight: 600;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 18px;
  margin-left: -7px;
}

.footer-desc {
  font-size: 1rem;
  margin-bottom: 18px;
  opacity: 0.9;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social-icon {
  height: 40px;
  object-fit: contain;
  padding: 4px;
  transition: box-shadow 0.2s;
}

.footer-socials a:hover .footer-social-icon {
  box-shadow: 0 2px 8px #EE203E44;
}

.footer-col h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 1px;
  font-style: italic;
}

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

.footer-nav li,
.footer-links-list li {
  margin-bottom: 5px;
}

.footer-nav li a,
.footer-links-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  position: relative;
  padding-left: 22px;
  transition: color 0.2s;
  opacity: 0.9;
}

.footer-nav li a::before,
.footer-links-list li a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('https://honda.webotvurci.cz/wp-content/uploads/2025/04/kolo-ico.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 1px;
}

.footer-nav li a:hover,
.footer-links-list li a:hover {
  color: #EE203E;
}

.footer-contact-company {
  margin-bottom: 6px;
  font-size: 16px;
}

.footer-contact-address {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-contact-address p {
  margin-bottom: 0;
}

.footer-contact-phone a,
.footer-contact-email a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.footer-contact-phone {
  margin-top: 20px;
}

.footer-contact-email,
.footer-contact-phone {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-contact-ico {
  margin-top: 20px !important;
}

.footer-contact-phone a::before,
.footer-contact-email a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('https://honda.webotvurci.cz/wp-content/uploads/2025/04/red-phone.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0px;
  margin-right: 5px;
  position: relative;

}

.footer-contact-email a:before {
  background: url('    https://honda.webotvurci.cz/wp-content/uploads/2025/04/red-envelope.svg') no-repeat center !important;

}

.footer-contact-phone a:hover,
.footer-contact-email a:hover {
  color: #EE203E;
}

.footer-contact-ico,
.footer-contact-dic {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 2px;
}

/* --- RESPONSIVE FOOTER --- */
@media only screen and (max-width: 1200px) and (min-width: 992px) {
  .main-menu-wrapper li a {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
    font-size: 14px !important;
  }

  .hero-carousel,
  .hero-carousel .swiper-wrapper,
  .hero-carousel .swiper-slide {
    max-height: 450px;
  }

  .topbar-menu a {
    font-size: 14px !important;
  }

  .header-search {
    width: 320px;
  }
}

@media (max-width: 992px) {
  .footer-inner {
    gap: 24px;
    align-items: flex-start;
  }

  .footer-col {
    min-width: 0;
    margin-bottom: 18px;
  }

  .newsletter-inner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    max-width: 600px;
  }

  .newsletter-text {
    text-align: left;
    font-size: 1.2rem;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
    display: grid;
  }
}

@media (max-width: 992px) {
  .footer-col {
    flex: 0 1 calc(50% - 24px) !important;
    /* dvě vedle sebe s mezerou */
  }
}

@media (min-width: 768px) {
  .search .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-search {
    width: 400px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 32px 0 18px 0;
  }

  .footer-inner {
    gap: 12px;
  }

  .footer-col {
    margin-bottom: 12px;
  }

  .footer-logo {
    max-width: 90px;
  }

  .newsletter-inner {
    padding: 0 8px;
  }

  .newsletter-form input[type=\"email\"] {
    font-size: 0.95rem;
    padding: 10px 8px;
  }

  .newsletter-form button {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}



@media (max-width: 425px) {
  .footer-col {
    flex: 100% !important;
  }
}

/* --- AKTUÁLNÍ INFORMACE --- */
.homepage-news {
  padding: 40px 0 75px 0;
  text-align: center;
}
@media (max-width: 768px) {
.homepage-news {
  padding: 40px 0 40px 0;
}}

.news-title {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  line-height: 120%;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.news-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1468px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.news-item {
  flex: 1 1 0;
  padding: 0 24px 0 24px;
  text-align: left;
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-item-border {
  border-right: 1px solid #e0e0e0;
}

.news-date {
  color: #949494;
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 0;
}

.news-headline a {
  font-size: 22px;
  line-height: 120%;
  font-weight: 800;
  margin-top: 0px;
  text-transform: uppercase;
}

.news-headline a {
  text-decoration: none !important;
}

.news-excerpt {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: 'Roboto', Arial, sans-serif;
}

.news-excerpt p {
  margin-top: 0
}

.news-btn {
  color: #EE203E;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.2s;
  letter-spacing: -5% !important;
  font-family: 'Montserrat', Arial, sans-serif;
  width: -webkit-fill-available;
  justify-content: space-between;
}

.news-btn:hover {
  color: #a80015;
  text-decoration: underline;
}

.news-arrow {
  font-size: 1.2em;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s;
}

.news-btn:hover .news-arrow {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .news-list {
    flex-direction: column;
    align-items: center;
  }

  .news-item,
  .news-item-border {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    max-width: 100%;
    width: 100%;
    padding: 18px 0;
  }

  .news-item:last-child,
  .news-item-border:last-child {
    border-bottom: none;
  }
}

.hp-linear-gradient {
  background-image: linear-gradient(to bottom, #ffffff, #F0F2F4);
}

/* --- HOMEPAGE OFFERS --- */
.homepage-offers {
  padding: 40px 0 32px 0;
  display: flex;
  justify-content: center;
}

.offers-grid {
  display: flex;
  gap: 24px;
  max-width: 1468px;
  width: 100%;
  padding: 0 20px;
}

.offer {
  flex: 1 1 0;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  background: #000;
}

.offer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) brightness(0.6);
  z-index: 1;
}

.offer-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 650px;
}

.offer-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}

.offer h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 120%;
  font-style: italic;
}

.offer p {
  font-size: 16px;
  margin-bottom: 18px;
}

.offer-btn,
.offer-btns .offer-btn {
  display: inline-block;
  background: #EE203E;
  color: #fff;
  padding: 16px 24px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  margin-right: 12px;
  margin-bottom: 8px;
  border: none;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
  text-transform: uppercase;
}

.offer-btn:hover {
  background: #fff;
  color: #EE203E;
}

/* Specifické pravidlo pro tlačítko "OBJEDNAT DO SERVISU" */
a.offer-btn[href*="#wpcf7-f279-o1"]:hover {
  top: 90px;
}

.offer-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  margin-left: 5px;
}

.offer-tags span {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}

.offer-tags span:hover {
  color: #EE203E;
}

.offers-grid {
  position: relative;
}

.offers-grid::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -20px;
  bottom: -215px;
  background: url(https://honda.webotvurci.cz/wp-content/uploads/2025/05/prouzky_cervene.png) no-repeat;
  background-size: contain;
}

/* Responsivita */
@media (max-width: 1100px) {
  .offers-grid {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-top: 20px;
  }

  .offer-content {
    padding: 24px 16px 20px 16px;
    display: block;
    align-content: end;
    min-height: auto;
  }

  .offer {
    min-height: 320px;
  }
}

@media (max-width: 992) {
  .offers-grid {
    flex-direction: column;
    gap: 12px;

  }

  .offer {
    min-height: 220px;
  }
}

@media (max-width: 600px) {
  .homepage-offers {
    padding: 18px 0 12px 0;
    margin-bottom: 30px;
  }

  .offer h3 {
    font-size: 20px !important;
  }

  .offer-content {
    padding: 32px !important;
  }

  .offer-btn,
  .offer-btns .offer-btn {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .offer-tags span {
    font-size: 0.9rem;
    padding: 3px 8px;
  }
}

/* --- HOMEPAGE BENEFITS --- */
.homepage-benefits {
  padding: 50px 0 24px 0;
  display: flex;
  justify-content: center;
}

.homepage-benefits .benefit-icon {
  margin-left: auto;
}

.homepage-benefits .benefit-item h3 {
  text-align: center;
  max-width: 250px;
}

.homepage-benefits .benefit-item p {
  display: none;
}

.product-benefits {
  display: flex;
  justify-content: space-between;
}

.benefits-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 1468px;
  margin: 0 auto;
  padding: 0 16px;
}

.benefit-item {
  max-width: 220px;
  text-align: center;
  padding: 0 8px 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.benefit-icon {
  width: 77px;
  height: 77px;
  margin: auto;
  display: block;
  object-fit: contain;
}

.benefit-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 12px 0;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-item p,
.benefit-text {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

/* Responzivní breakpointy */
@media (max-width: 992px) {
  .benefits-inner {
    gap: 24px;
  }

  .benefit-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .product-benefits {
    display: ruby;
  }
}

@media (max-width: 480px) {
  .benefits-inner {
    gap: 20px;
    padding: 0 12px;
  }

  .benefit-item {
    padding: 0 4px 12px 4px;
  }

  .benefit-item h3 {
    font-size: 14px
  }
  .benefit-icon {
    width: 60px;
    height: 60px;
}

  .benefit-item p,
  .benefit-text {
    font-size: 15px;
  }

  .single-produkt .benefits {
    margin: 25px 0 40px !important;
    text-align: center;
  }
}


/* --- HOMEPAGE REFERENCES --- */




/* --- HOMEPAGE ABOUT --- */
.homepage-about {
  background: #fff;
  padding: 64px 0 75px 0;
  display: flex;
  justify-content: center;
}

.about-inner {
  max-width: 1468px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  position: relative;
  width: 100%;
}

.about-image-wrap {
  flex: 0 0 50%;
  position: relative;
  z-index: 2;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  font-style: italic;
}

.about-content p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #222;
  line-height: 1.5;
}

.about-content b {
  font-weight: 700;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #EE203E;
  color: #111;
  background: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 18px;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
  font-style: italic;
  position: relative;
  line-height: 1;
}

.about-btn:hover {
  background: #EE203E;
  color: #fff;
}

.about-btn img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.about-btn:hover img {
  transform: translateX(4px);
}

.about-btn:after,
.articles-more-btn:after {
  /* Nutné pro zobrazení pseudo-elementu */
  content: '';
  display: inline-block;
  text-transform: uppercase;
  /* Nastavení rozměrů pro ikonu */
  width: 24px;
  /* Upravte podle potřeby */
  height: 24px;
  /* Upravte podle potřeby */
  margin-left: 20px;
  /* Vaše pozadí */
  background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/04/rounded-red-right.svg);

  /* Doplňující vlastnosti pro lepší zobrazení obrázku */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about-btn:hover::after,
.articles-more-btn:hover::after {
  background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/04/rounded-down-white.svg);
}

/* Responsivita */


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

  .about-inner {
    display: block !important;
    width: initial;
  }

  .about-content h2 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-btn {
    font-size: 0.98rem;
    padding: 10px 18px;
  }
}

/* --- HOMEPAGE ARTICLES --- */
.homepage-articles {
  background: #fff;
  padding: 48px 0 48px 0;
  margin-bottom: 32px;
}

.articles-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1468px;
  margin: 0 auto 32px auto;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.articles-title-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

@media (max-width: 992px) {
  .articles-title-wrap {
    display: block !important;
  }

  .article-card.team-card .article-meta {
    text-align: center;
  }
}

.articles-title {
  font-size: 36px;
  line-height: 120%;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 2;
  height: fit-content;
  padding-left: 20px;
}

.articles-title::before {
  content: "";
  display: block;
  width: 200%;
  height: 70px;
  background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/04/article-title.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  margin-bottom: 20px;
  position: absolute;
  z-index: -1;
  margin-top: -15px;
  margin-left: -20px;
}

@media (max-width: 992px) {
  .articles-title::before {
    width: 100% !important;
    min-width: 305px;
  }
}

@media (max-width: 480px) {
  .articles-title::before {
    width: 100% !important;
    min-width: 275px;
  }

  .team-section .articles-title {
    line-height: 1 !important;
  }
}

.articles-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #EE203E;
  color: #000;
  background: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, color 0.2s;
  font-style: italic;
  z-index: 9
}

.articles-more-btn:hover {
  background: #EE203E;
  color: #fff;
}

.articles-more-arrow {
  font-size: 1.5rem;
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.2s;
}

.articles-more-btn:hover .articles-more-arrow {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .articles-more-btn {
    padding: 10px 18px !important;
  }
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1468px;
  margin: 0 auto 50px auto;
}

.article-card {
  background: #fff;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s;
  position: relative;
}

.article-card:hover {
  box-shadow: 0 8px 32px rgba(217, 0, 27, 0.10);
}

.article-image {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 200px;
  margin-bottom: 20px;
}

.article-image a {
  display: grid;
  padding: 20px;
  height: 200px;
  max-height: 200px;
}

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

.article-meta {
  padding: 0px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.article-date {
  color: #949494;
  font-size: 16px;
  margin-bottom: 8px;

}

.article-headline a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 0;
  text-transform: none;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #000;
}

.article-headline:hover {
  text-decoration: underline;
}

.article-excerpt {
  font-size: 16px;
  margin: 10px 0px 0px !important;
  color: #000;
  flex: 1 1 auto;
  padding-bottom: 15px;
}

.article-excerpt p {
  margin-top: 0px
}

.article-btn {
  color: #EE203E;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.2s;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  justify-content: space-between;
}

.article-btn:hover {
  color: #a80015;
  text-decoration: underline;
}

.article-btn-arrow {
  font-size: 24px;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s;
}

.article-btn:hover .article-btn-arrow {
  transform: translateX(4px);
}

/* Responsivita */
@media (max-width: 1200px) {
  .articles-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .article-card {
    min-height: 360px;
  }
}

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

  .articles-title {
    font-size: 1.1rem;
    padding: 6px 8px 6px 6px;
    margin-left: 15px;
  }

  .articles-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-card {
    min-height: 0;
  }

  .blog-archive .articles-title {
    font-size: 1.4rem;
  }

  .blog-intro {
    font-size: 0.98rem;
  }

  .category-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 0.98rem;
  }
}

/* --- PRODUCT DETAIL --- */

.single-produkt .swiper-wrapper {
  place-items: center;
}

.bazar 
{
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 20px;
    font-style: italic;
}

iframe {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  max-width: 100%;
  height: auto !important;
  display: block;
}

.single-produkt .site-main {
  max-width: 1468px;
  margin-left: auto;
  margin-right: auto;
}

.product-detail {
  max-width: 1468px;
  margin: 0 auto;
  padding: 40px 20px;

}

.product-variants {
  margin-bottom: 30px;
}

.product-variants .variants-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-variants .custom-dropdown {
  position: relative;

  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 0;
  cursor: pointer;
}

.product-variants .dropdown-selected,
.product-variants .dropdown-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  font-size: 16px;
}
@media (max-width: 480px) {
.product-variants .dropdown-selected, .product-variants .dropdown-item
{display: grid;}
.product-variants .variant-image {
  margin-bottom: 10px;
}
}
.product-variants .dropdown-arrow {
  margin-left: auto;
  font-size: 32px;
}

.product-variants .dropdown-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
}

.product-variants .dropdown-arrow img {
  width: 24px;
  height: 24px;
}

.product-variants .dropdown-item:hover {
  background: #f7f7f7;
}

.product-variants .variant-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
}

.product-variants .stock-status {
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
}

.product-variants .stock-status.in-stock {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.product-variants .stock-status.out-of-stock {
  background-color: #ffebee;
  color: #c62828;
}

.variant-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  padding: 2px 4px;
  border-top-right-radius: 3px;
}

/* Gallery */
.product-gallery {
  position: relative;
}

.gallery-main {
  margin-bottom: 20px;
  border-radius: 3px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-thumbs .thumb {
  width: 80px;
  height: 80px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.product-gallery .gallery-main .swiper-slide>img {
  width: 100%;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
  border-color: #EE203E;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumbs .swiper-slide {
  border: 1px solid #E6E6E6;
}

.gallery-thumbs .swiper-slide img {
  max-height: 125px;
}

.gallery-thumbs .swiper-slide-thumb-active {
  border-color: #EE203E;
  opacity: 1;
}


/* Product Info */
.product-info h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  font-style: italic;
  text-transform: uppercase;
}

.product-params-list {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px !important;
  border-top: 2px #C9C9C9 solid;
  border-bottom: 2px #C9C9C9 solid;

}

.product-params-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-params-list li {
  position: relative;
  display: flex;
  min-height: 45px;
  max-width: 175px;
}

@media (min-width: 768px) {
  .product-params-list li {
    min-height: 48px;
  }
}

.product-params-list .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #EE203E;
  border-radius: 50%;
  margin-right: 6px;
  margin-top: 7px;
}

.product-price-row {
  justify-content: space-between;
  display: flex;
  margin-top: 20px;
  margin-bottom: 24px;
}

.product-detail-box .product-price {
  font-size: 25px;
  font-weight: 800;
  color: #000;
  align-content: center;
}

.product-detail-box .product-price-dph {
  color: #A1A1A1;
  font-size: 18px;
  display: flex;
  align-items: anchor-center;
  margin-bottom: 10px;
}

.product-card .product-price-dph {
  color: #7E7E7E;
  font-size: 13px;
  display: flex;
  align-items: anchor-center;
}

.product-price {
  font-size: 22px;
  font-weight: 800;
  color: #000;
}
.product-price-akce
{
    font-size: 25px;
    font-weight: 800;
    margin-top: 10px;
    color: #EE203E;
}
.product-detail-actions
{
  align-content: center;
}
.dph-info {
  color: #2e7d32;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
}

.variant-vin-code
{
  display: grid;
}

@media (min-width: 768px) {
  .parametr-sidebar {
    will-change: transform;
    transition: transform 0.1s ease-out;
    margin-bottom: 24px;
  }

  a

  /* Základní struktura pro sticky sidebar */
  .description {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* mezera mezi sloupy */
  }

  .text-part {
    flex: 1;
    min-width: 0;
    /* důležité pro správné fungování flex */
  }

  .parametr-sidebar {

    align-self: flex-start;
    /* zarovnání na začátek */
    position: sticky;
    top: 0px;
    /* vzdálenost od vrchu při sticky pozici */
    max-height: calc(100vh - 40px);
    /* maximální výška - necháme místo pro padding */
    overflow-y: auto;
    /* scroll pokud je obsah delší */
  }

  .description-grid .parametr-sidebar {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
}


.homepage-products-carousel {
  margin-top: 32px;
}

.homepage-products-carousel>h2 {
  text-align: center;
}
.homepage-products-carousel>h2 a{
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: none;
}


.single-produkt .breadcrumb {
  margin-bottom: 0px;
}

.single-produkt .description {
  margin-bottom: 100px;
}

.single-produkt .benefits {
  margin: 75px 0 100px;
  z-index: -1;
  position: relative;
}

.single-produkt #rezervace {
  margin-bottom: 100px !important;
}
.single-produkt .servis-form.wpcf7-form
{
    max-width: 650px;
}

.single-produkt .servis-form label
{
    gap: 5px;
    display: grid!important;
}

.single-produkt .custom-radio-group .wpcf7-radio {
    justify-content: center;
    gap: 20px;
}
@media only screen and (min-width: 768px) {

  .single-produkt .description,
  .single-produkt .content-section-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .product-price-row {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .product-detail-box {
    display: block !important;
  }

  .product-detail-box .grid {
    margin-bottom: 10px;
    gap: 10px
  }

  .product-detail-actions .btn--outline {
    margin-bottom: 10px;
  }

  .homepage-products-carousel {
    padding: 0px !important;
  }

}


/* Desc*/
.product-short-desc img {
  width: -webkit-fill-available;
}
.product-short-desc figure
{
    width: 100% !important;
}
.section-text h1 {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  text-transform: inherit !important;
}

.product-detail-box {
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
  padding: 20px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.product-detail-box .grid {
  display: grid;
  width: fit-content;
  margin-right: 20px;
  line-height: 1;
}

.product-code {
  margin-bottom: 20px;
}

.product-code b {
  font-weight: 800;
}

.product-detail h2 {
  font-size: 32px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 32px;
}
.product-detail .text-part h2 {
  margin-top: 20px;
}

/* Parameters */
.parameters-fieldset {
  border: 1px solid #dddddd;
  border-radius: 3px;
  padding: 20px;
  margin-top: 25px;
  position: relative;
}

.parameters-fieldset legend {
  position: absolute;
  top: -12px;
  left: 10px;
  padding: 0 10px;
  background-color: white;
  font-weight: bold;
  font-size: 16px !important;
  width: auto;
}

.parameter-section th {
  background: #fff;
  font-weight: bold;
  text-align: left;
  font-size: 1.1em;
  padding: 12px;
  text-transform: uppercase;
}

.parameters-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px !important;
}

.parameters-table .parameter-row:nth-child(odd) {
  background-color: #f5f5f5;
}

.parameters-table td {
  padding: 10px;
}

.param-label {
  font-weight: 500;
  width: 30%;
}

.param-value {
  width: 70%;
}

/* Content Sections */
.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  font-style: italic;
  text-transform: uppercase;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.description .section-content {
  grid-template-columns: inherit !important;
  margin-bottom: 24px;
}

.section-text {
  font-size: 16px;
  line-height: 1.6;
}

.product-detail .section-image {
  align-self: self-start
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

/* Related Products */
.related-products {
  margin-top: 60px;
}

.related-products h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  font-style: italic;
  text-transform: uppercase;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  transform: translateY(0px);
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-card img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .product-card img {
    height: 200px;
  }
}

.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 20px;
  line-height: 1.3;
}

.product-excerpt {
  font-size: 15px;
  margin-bottom: 10px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 44px;
  overflow: hidden;
}

.product-excerpt ul
{
    padding-left: 20px;
}

.product-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #EE203E;
  margin: 0 20px 10px;
}

.product-card .more-info {
  display: inline-block;
  color: #EE203E;
  font-weight: 600;
  margin: 0 20px 20px;
  font-size: 14px;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.product-card-link:hover .product-card,
.product-card-link:focus .product-card {
  box-shadow: 0 4px 24px rgba(217, 0, 27, 0.12);
  /* případně další hover efekty */
}

.product-card .product-detail-btn {
  pointer-events: none;
  /* aby kliknutí na tlačítko neblokovalo kliknutí na kartu */
}

.product-gallery {
  max-width: 600px;
  margin-bottom: 24px;
}

.gallery-main {
  width: 100%;
  min-height: 350px;
  margin-bottom: 12px;
}



.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #EE203E;
}

/* Responsive */
@media (max-width: 1100px) {


  .section-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-info h1 {
    font-size: 32px;
  }
}

@media only screen and (min-width: 768px) {

  .info-section,
  .description {
    display: flex;
    gap: 20px
  }

  .content-section .section-content {
    display: flex;
    flex-wrap: nowrap;
  }

  .content-section .section-text,
  .content-section .section-image {
    width: 50%;
  }

  .content-section:nth-of-type(even) .section-content {
    flex-direction: row-reverse;
  }

  .content-section:nth-of-type(odd) .section-content {
    flex-direction: row;
  }


  .content-section-wrapper .section-image {
    position: relative;
    z-index: 12;
  }

  .content-section-wrapper .section-image img {
    position: relative;
    z-index: 12;
  }

  .content-section-wrapper .section-image::after {
    content: "";
    position: absolute;
    top: -40px;
    width: 100%;
    height: 80%;
    background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/05/sachovnice.png);
    background-size: contain;
    z-index: 0;
    background-repeat: no-repeat;
    background-repeat: repeat;

  }

  .content-section:nth-of-type(even) .section-content .section-image::after {
    left: -40px;
  }

  .content-section:nth-of-type(odd) .section-content .section-image::after {
    right: -40px;
  }
}


@media (max-width: 768px) {
  .product-detail {
    padding: 20px;
  }

  .product-benefits {
    grid-template-columns: 1fr;
  }

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

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
}

/* --- PRODUCTS ARCHIVE --- */
.products-archive {
  max-width: 1468px;
  margin: 0 auto;
  padding: 40px 20px;
}

.products-header {
  margin-bottom: 40px;
  padding: 0 14px;
  text-align: center;
}

.products-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
  font-style: italic;
  text-transform: uppercase;
}

.category-filters {
  margin-bottom: 40px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.filter-btn {
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  transition: all 0.2s;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
}

.filter-btn:hover,
.filter-btn.active {
  text-decoration: underline;
  font-weight: 800;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.product-card a {
  text-decoration: none;
  color: inherit;
}

.product-image {
  position: relative;
  /* 4:3 Aspect Ratio */
  overflow: hidden;
}

/*
.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}*/

.product-content {
  padding: 20px;
}

.product-content h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 55px;
  text-transform: inherit !important;
}

.product-content .price {
  font-size: 24px;
  font-weight: 700;
  color: #EE203E;
  margin-bottom: 15px;
}

.product-detail-btn {
  background-color: #EE203E;
  color: white !important;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  align-items: anchor-center;
  font-weight: 800;
  font-style: italic;
  border-radius: 3px;
}

.product-detail-btn img {
  max-width: 27px;
  max-height: 27px;

}

.product-categories {
  margin-bottom: 15px;
}

.category-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #f5f5f5;
  border-radius: 3px;
  font-size: 14px;
  margin-right: 8px;
  margin-bottom: 8px;
  color: #666;
}

.more-info {
  display: inline-block;
  color: #EE203E;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-right: 20px;
}

.more-info::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}

.product-card:hover .more-info::after {
  transform: translate(5px, -50%);
}

.promo {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  max-width: 1468px;
  width: -webkit-fill-available;
  margin: 0 auto 32px;
}

.products-grid .promo {
  grid-column: 1 / -1;
}

.promo__sidebar {
  background-color: #0199ED;
  color: #fff;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.promo__sidebar h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.2;
  font-style: italic;
}

.promo__content {
  position: relative;
  flex: 1;
  background-image: url("https://honda.webotvurci.cz/wp-content/uploads/2025/05/akcni-model-bg.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  color: #fff;
}

.promo__info {
  max-width: 400px;
}

.promo__info h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 10px;
}

.promo__info p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.promo__bike img {
  max-height: 200px;
  margin-left: auto;
}

.promo__cta {
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  height: -webkit-fill-available;
  display: block;
  text-align: start;
}

.promo__price {
  margin-right: 20px;
  margin-bottom: 12px;
}

.promo__price-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.promo__price-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
}

.promo__button {
  background-color: #EE203E;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  font-style: italic;
}

/* Pro tablety a menší desktopy (např. do 1024px) */
@media (max-width: 1024px) {
  .promo__sidebar {
    width: 200px;
    /* Zmenšíme sidebar */
  }

  .promo__sidebar h2 {
    font-size: 40px;
    /* Zmenšíme písmo v sidebar */
  }

  .promo__content {
    padding: 20px;
    /* Menší padding */
    flex-direction: column;
    /* Info, bike a CTA pod sebou */
    align-items: center;
    /* Vycentrujeme obsah */
    text-align: center;
    /* Vycentrujeme text v obsahu */
  }

  .promo__info {
    max-width: 100%;
    /* Info může zabrat celou šířku */
    margin-bottom: 20px;
  }

  .promo__bike {
    margin-left: 0;
    /* Resetujeme margin */
    margin-bottom: 20px;
    /* Mezera pod motorkou */
    padding: 0;
    /* Resetujeme padding */
    width: 100%;
    /* Motorka zabere plnou šířku kontejneru */
    justify-content: center;
  }

  .promo__bike img {
    max-height: 180px;
    /* Trochu menší motorka */
    margin-left: auto;
    margin-right: auto;
  }

  .promo__cta {
    margin-left: 0;
    /* Resetujeme margin */
    align-items: center;
    /* Vycentrujeme CTA prvky */
    width: 100%;
    /* CTA zabere plnou šířku */
    justify-content: center;
    display: grid;
  }

  .promo__price {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .promo__button {
    width: auto;
    /* Automatická šířka tlačítka nebo můžete nastavit max-width */
    padding: 12px 30px;
    /* Případně upravit padding tlačítka */
  }
}

/* Pro mobilní telefony (např. do 768px) */
@media (max-width: 768px) {
  .promo {
    flex-direction: column;
    /* Sidebar a content pod sebou */
  }

  .promo__sidebar {
    width: 100%;
    /* Sidebar na celou šířku */
    padding: 15px;
  }

  .promo__sidebar h2 {
    font-size: 32px;
    /* Ještě menší písmo */
  }

  .promo__content {
    padding: 20px 15px;
    /* Upravíme padding */
    text-align: center;
    /* Zajistíme centrování textu */
  }

  .promo__info h1 {
    font-size: 22px;
  }

  .promo__info p {
    font-size: 15px;
  }

  .promo__bike img {
    max-height: 150px;
    /* Ještě menší motorka */
  }

  .promo__price-value {
    font-size: 22px;
  }

  .promo__button {
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
    /* Tlačítko na celou šířku pro lepší klikatelnost */
    max-width: 300px;
    /* Omezíme maximální šířku tlačítka */
    margin: 0 auto;
    /* Vycentrujeme tlačítko, pokud má max-width */
  }

  .promo__cta {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}

/* Pro velmi malé mobilní telefony (např. do 480px) */
@media (max-width: 480px) {
  .promo__sidebar h2 {
    font-size: 28px;
  }

  .promo__info h1 {
    font-size: 20px;
  }

  .promo__info p {
    font-size: 14px;
  }

  .promo__bike img {
    max-height: 120px;
  }

  .promo__price-label {
    font-size: 14px;
  }

  .promo__price-value {
    font-size: 20px;
  }

  .promo__button {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.pagination {
  text-align: center;
  margin-top: 40px;
}
.pagination a:hover
{
    color: black !important;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 5px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #666;
  border-radius: 3px;
}

.pagination .page-numbers.current {
  background: #EE203E;
  color: #fff;
  border-color: #EE203E;
}

.pagination .page-numbers:hover:not(.current) {
  background: #f5f5f5;
}

.no-products {
  text-align: center;
  padding: 40px;
  background: #f5f5f5;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .products-archive {
    padding: 20px;
  }

  .products-header h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

/*reference page*/
.page-template-page-reference .perex {
  text-align: center;
}

.page-template-page-reference .perex h1 {
  font-weight: 800 !important;
}

.page-template-page-reference main {
  margin-bottom: 75px;
}

.reference-grid-section {
  padding: 10px 0px 40px;
  background-color: #fff;
  margin-bottom: 60px;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.reference-card {
  background: #f8f8f8;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.reference-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.reference-card-content {
  padding: 25px;
}

.reference-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

/* Paginace */
.reference-pagination {
  margin-top: 40px;
  text-align: center;
}

.reference-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.reference-pagination .page-numbers li {
  display: inline-block;
  margin: 0 5px;
}

.reference-pagination .page-numbers a,
.reference-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.reference-pagination .page-numbers a:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.reference-pagination .page-numbers .current {
  background-color: #e31e24;
  border-color: #e31e24;
  color: #fff;
}

.reference-pagination .page-numbers .prev,
.reference-pagination .page-numbers .next {
  width: auto;
  padding: 0 15px;
}

.reference-pagination .page-numbers img {
  width: 20px;
  height: 20px;
}

/* Responzivní design */
@media (max-width: 992px) {
  .reference-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .reference-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .reference-card-content {
    padding: 20px;
  }

  .reference-pagination .page-numbers a,
  .reference-pagination .page-numbers span {
    width: 35px;
    height: 35px;
  }

  .breadcrumb {
    height: 60px !important;
  }

  .breadcrumb::before {
    max-height: 60px !important;
  }

  .flex-desc {
    display: block !important;
  }

  .col-xs-12 {
    width: 100%;
  }

  .wpcf7-submit {
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  .contact-form .flex-desc {
    display: block !important;
  }


  .contact-form .button-group {
    margin-top: 20px;
    display: grid;
    justify-content: end;
  }



  .contact-form .col-xs-12.col-md-6 {
    width: 100% !important;
  }
}

.wpcf7-acceptance label a {
  font-size: 15px;
}

.wpcf7-acceptance label {
  display: flex !important;
}

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

  .reference-pagination .page-numbers li {
    margin: 0 2px;
  }

  .reference-pagination .page-numbers a,
  .reference-pagination .page-numbers span {
    width: 30px;
    height: 30px;
  }
}

/* --- BLOG ARCHIVE STYLES --- */
.breadcrumb {
  font-size: 14px;
  margin: 0px 0 75px 0;
  top: 28px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100px;
  align-content: center;
  background-color: #F7F5F6 !important;
  max-width: 1468px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb a {
  color: #222;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.breadcrumb a img {
  margin-top: -2px;
}

.breadcrumb {
  padding-left: 20px !important;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 14px;
  color: #000
}

.breadcrumb-inner {
  width: 1500px !important;
  margin-left: auto !important;
  margin-right: atuo !important;
  display: flex;
  padding: 80px 0px !important;
}

.breadcrumb .sep {
  margin: 0 6px;
}

.breadcrumb::before {
  background-color: #F7F5F6;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 99vw;
  height: -webkit-fill-available;
  max-height: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.blog-archive .articles-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-style: italic;
  text-transform: uppercase;
}

.blog-intro {
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.pagination {
  margin: 40px auto 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.pagination .page-numbers {
  display: inline-block;
  min-width: 36px;
  height: 1.2;
  line-height: 36px;
  border-radius: 3px;
  background: #f5f5f5;
  color: #222;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  font-size: 1.08rem;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #e0e0e0;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: #EE203E;
  color: #fff;
  border-color: #EE203E;
}

blog-archive .article-excerpt {
  margin-top: 10px !important;
}

@media (max-width: 1200px) {
  .articles-list {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .articles-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .article-card {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .articles-list {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .article-card {
    min-height: 0;
  }

  .blog-archive .articles-title {
    font-size: 1.4rem;
  }

  .blog-intro {
    font-size: 0.98rem;
  }

  .category-filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 0.98rem;
  }
}

/* BLOG ARCHIVE - sjednocení gridu s homepage */
.blog-title {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.blog-archive .filter-btn.active {
  background-color: #000 !important;
  color: white;
  text-decoration: none;
}

.blog-archive .filter-btn {
  background-color: #D9D9D9;
  padding: 12px 24px !important;
  text-transform: inherit;
  font-weight: 800;
}

.blog-archive {
  margin-bottom: 75px;
}

/* --- SINGLE ARTICLE (DETAIL ČLÁNKU) --- */
.single-article {
  background: #fff;
  padding: 0 0 60px 0;
  max-width: 1100px;
  margin: auto;
}

.single-article .container {
  max-width: 1468px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-featured-image {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin: 32px 0 24px 0;
}

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

.article-title {
  font-size: 36rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: left;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-meta {
  color: #888;
  font-size: 15px;
  text-align: left;
}

.article-meta .article-categories {
  color: #EE203E;
  font-weight: 600;
  margin-left: 8px;
}

.article-meta .post-category {
  color: #EE203E;
  text-decoration: none;
  font-weight: 600;
  margin-right: 6px;
  transition: color 0.2s;
}

.article-meta .post-category:hover {
  color: #b80016;
  text-decoration: underline;
}

.article-content {
  font-size: 1.15rem;
  color: #222;
  line-height: 1.7;
  margin-bottom: 40px;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 36px 0 18px 0;
  font-style: italic;
  text-transform: none;
}

.custom-excerpt-box {
  background: #f5f5f5;
  border-left: 5px solid #e53935;
  padding: 10px 20px;
  margin: 20px 0;
  color: black;
  font-weight: 800;
}

.single-post h3 {
  font-style: italic;
  font-weight: 800;
  margin-bottom: 20px;
}

.article-content blockquote {
  background: #f5f5f5;
  border-left: 4px solid #EE203E;
  margin: 24px 0;
  padding: 18px 24px;
  font-style: italic;
  color: #444;
  border-radius: 3px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  font-size: 24px;
  font-weight: 500;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 10px;
  justify-content: space-between;
}

.article-share span {
  color: #000;
  font-weight: 800;
  font-size: 24px;
  font-style: italic;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: background 0.2s, box-shadow 0.2s;
  margin-right: 4px;
}

.share-btn img {
  width: 32px;
  height: 32px;
  display: block;
}

.related-articles .articles-list {
  grid-template-columns: repeat(3, 1fr);
}

.related-articles {
  margin-top: 60px;
}

.related-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
}

.related-articles .articles-list {
  margin-top: 0;
}

@media (max-width: 992px) {
  .single-article .container {
    max-width: 98vw;
    padding: 0 6px;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .article-featured-image {
    margin: 18px 0 14px 0;
    max-height: 260px;
  }

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

  .related-title {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 600px) {
  .article-featured-image {
    max-height: 160px;
  }

  .article-title {
    font-size: 1.1rem;
  }

  .article-meta {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }

  .article-share {
    gap: 10px;
    font-size: 0.98rem;
  }

  .share-btn {
    width: 36px;
    height: 36px;
  }

  .share-btn img {
    width: 16px;
    height: 16px;
  }
}

/* --- KONTAKT PAGE --- */
.contact-page {
  background: linear-gradient(#fefefe, #F0F2F4);
  padding-bottom: 60px;
}

.contact-container {
  display: flex;
  max-width: 1468px;
  margin: 0 auto 60px auto;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 0 15px;
  }

  .contact-map-wrap,
  .contact-map-popis {
    text-align: start;
  }

  .contact-page {
    padding-bottom: 15px;
  }
}

.contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.contact-intro {
  font-size: 16px;
  color: #000;
  margin-bottom: 28px;
}

.contact-section-title {
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  margin: 32px 0 12px 0;
  text-transform: uppercase;
}

.contact-details {
  font-size: 16px;
  color: #000;
  margin-bottom: 24px;
}

.contact-details strong {
  font-size: 16px;
}

.contact-row a {
  font-weight: 700;
  text-decoration: none;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.contact-map-wrap {
  margin: 32px 0 18px 0;
  text-align: center;
  position: relative;
}

.contact-map-wrap img {
  max-width: 100%;
  border-radius: 50%;
    border: 7px solid #ED1C3F;
}

.contact-wrap {
  margin: 20px 0;
}

.contact-map-wrap::after {
  content: "Klikněte pro zobrazení mapy";
  position: absolute;
  top: -45px;
  right: -5px;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1;
  font-size: 16px;
  color: #000;
  pointer-events: none;
  z-index: 10;
  max-width: 170px;
  text-align: end;
  text-transform: uppercase;
 font-style: italic;
     font-family: 'Montserrat', sans-serif, Arial;
}


.contact-map-popis {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  margin-top: 10px;
  color: #111;
  text-align: center;
}

.contact-socials {
  margin-top: 36px;
}

.contact-socials-title {
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-socials-list {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.contact-social-link img {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(238, 32, 62, 0.07);
  transition: box-shadow 0.2s, background 0.2s;
}

.contact-social-link img:hover {
  box-shadow: 0 4px 16px #ee203e33;
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 24px;
  text-transform: none;
}

.contact-form-wrap {
  margin-bottom: 0;
}

/* Skryjeme původní radio buttony */
.custom-radio-group input[type="radio"] {
  display: none;
}

.custom-radio-group {
  display: block;
  margin-bottom: 20px;
}


.custom-radio-group .wpcf7-list-item {
  margin-right: 0 !important;
  /* Odstraní případný defaultní margin CF7 */
}

.custom-radio-group label {
  display: block;
  /* Aby label zabral celou šířku custom buttonu */
  cursor: pointer;
}

.custom-radio-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  min-width: 200px;
  /* Minimální šířka, upravte podle potřeby */
  text-align: center;
}

.radio-title {
  font-weight: bold;
  font-size: 1.4em;
  /* Velikost hlavního textu, upravte */
  text-transform: uppercase;
  line-height: 1.2;
}

.radio-subtitle {
  font-size: 0.9em;
  /* Velikost podtextu, upravte */
  margin-top: 5px;
  line-height: 1.2;
}

.platce-dph .wpcf7-list-item-label {
  display: none !important;
}


.wpcf7-select {
  padding: 12px 14px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  font-size: 15px;
  background: #fafafa !important;
  margin-bottom: 0;
  font-family: inherit;
  transition: border 0.2s;
  width: 100%;
}

.platce-dph {
  display: flex !important;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}

/* Neaktivní stav (Zapůjčení) */
.custom-radio-group input[type="radio"]+.custom-radio-button {
  background-color: #FFF0F3;
  /* Světle růžová */
  border-color: #FFF0F3;
  /* Nebo #EAD8DB pro jemný okraj */
  color: #333333;
  /* Tmavá barva textu */
}

.custom-radio-group input[type="radio"]+.custom-radio-button .radio-title,
.custom-radio-group input[type="radio"]+.custom-radio-button .radio-subtitle {
  color: #333333;
  /* Tmavá barva textu */
}

/* Aktivní stav (Demo jízda) */
.custom-radio-group input[type="radio"]:checked+.custom-radio-button {
  background-color: #E72E4A;
  /* Červená */
  border-color: #C61A33;
  /* Tmavší červená pro okraj */
  color: #ffffff;
  /* Bílá barva textu */
}

.custom-radio-group input[type="radio"]:checked+.custom-radio-button .radio-title,
.custom-radio-group input[type="radio"]:checked+.custom-radio-button .radio-subtitle {
  color: #ffffff;
  /* Bílá barva textu */
}

/* Volitelné: Hover efekt pro neaktivní tlačítko */
.custom-radio-group input[type="radio"]:not(:checked)+.custom-radio-button:hover {
  background-color: #FADDE2;
  /* Lehce tmavší růžová při najetí */
  border-color: #F0C4CB;
}


.custom-radio-group .wpcf7-radio {
  display: flex;
  gap: 20px;
}

.page-template-page-kontakt .faq-section {
  margin-bottom: 75px;
}

/* Responzivita*/
@media (max-width: 600px) {
  .custom-radio-group {
    flex-direction: column;
  }

  .custom-radio-button {
    width: 100%;
    /* Na mobilu zaberou celou šířku */
    min-width: auto;
  }

  .custom-radio-group .wpcf7-radio {
    display: grid !important;
    justify-content: center;
  }
}

/* --- TÝM & SERVIS (využívá .articles-list, .article-card) --- */
.page-template-page-kontakt .team-section {
  margin-top: 100px;
}

.team-section,
.servis-section {
  background: #fff;
  padding: 0 0 48px 0;
  margin-top: 32px;
}

.team-title {
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  margin: 0px 0 18px 0;
  text-transform: uppercase;
}

.team-block-headline {
  font-size: 1.2rem;
  font-weight: 800;
  font-style: italic;
  margin: 24px 0 12px 0;
  text-transform: uppercase;
  color: #222;
  display: flex;
  align-items: center;
  gap: 18px;
}

.team-card .article-meta {
  padding-bottom: 18px;
}

.team-position {
  font-size: 1.05rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-section .articles-list,
.servis-section .articles-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.team-section section
{
    padding: 0px !important;
}

.team-section,
.servis-section {
  margin-bottom: 32px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.team-section .articles-title {
  font-size: 22px;
  margin-bottom: 32px;
  line-height: 2
}

.article-card.team-card .article-meta {
  padding-bottom: 0px;
}

.article-card.team-card .article-image {
  padding: 20px;
}

.article-card.team-card .article-headline {
  color: black;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0px;
}

.article-card.team-card .team-position {
  margin: 0 0 12px;
  color: black;
  font-size: 14px;
  font-weight: 200;
}

.servis-section .articles-title {
  font-size: 22px;
  line-height: 2;
}

@media (max-width: 1100px) {
  .contact-container {
    flex-direction: column;
    gap: 24px;
  }

  .contact-right {
    margin-top: 0;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .contact-title {
    font-size: 1.3rem;
  }

  .contact-section-title,
  .team-title {
    font-size: 1.1rem;
    margin: 24px 0 10px 0;
  }

  .contact-right {
    padding: 18px 6px 18px 6px;
  }
}


/*kontak form*/
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 3px;
}

.contact-form h2 {
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 32px;
  text-transform: inherit;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-weight: 400;
  color: #344054;
  font-size: 15px;
}

.input,
.textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D1D9E0;
  border-radius: 3px;
  font-size: 15px;
  color: #344054;
  font-family: inherit;
  margin-top: 8px;
  background-color: #f5f8f7;
}

.field.full {
  grid-column: 1 / -1;
}

.field.zvolena-barva label {
  display: grid;
  margin-bottom: 20px;
}

.field.zvolena-barva label select {
  padding: 12px 14px;
  border: 1px solid #D1D9E0;
  border-radius: 3px;
  font-size: 16px;
  color: #344054;
  font-family: inherit;
  margin-top: 8px;
  background-color: #f5f8f7;
  width: 100%;
}

.textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 20px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;

}

.checkbox-group span {
  font-size: 15px;
}

.checkbox-group input {
  margin-right: 10px;
}

.checkbox-group a {
  text-decoration: underline;
  font-size: 15px;

}

.button-group {
  text-align: right;
}

.btn {
  background: #ED1C3F !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-style: italic;
  text-transform: uppercase;
  padding: 16px 36px !important;
  border: none;
  border-radius: 3px !important;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

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

  .button-group {
    text-align: center;
  }
}

.wpcf7-list-item {
  margin: 0 0 0 0em;
}

.flex-desc {
  display: flex;
}

.wpcf7-form .wpcf7-list-item input[type="checkbox"] {
  -webkit-appearance: none;
  /* Odstraní výchozí styl v Chrome/Safari */
  appearance: none;
  /* Odstraní výchozí styl v moderních prohlížečích */
  margin: 0 10px 0 0;
  width: 24px;
  min-width: 24px;
  height: 24px;
  position: relative;
  background-color: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  cursor: pointer;
}

/* Styl pro zaškrtnutý stav */
.wpcf7-form .wpcf7-list-item input[type="checkbox"]:checked {
  background-color: #e1e1e1;
  /* Změna pozadí při zaškrtnutí */
  /* Můžete přidat i "fajfku" přes pozadí, ale je to složitější */
}

.wpcf7-form .wpcf7-list-item input[type="checkbox"]:checked::before {
  content: '✓';
  display: block;
  text-align: center;
  color: #333;
  font-size: 14px;
  line-height: 24px;
  /* Zarovnání na střed */
}

/* --- Výměna ikony kalendáře v Contact Form 7 --- */

/* Cílíme na konkrétní pole s názvem "termin", aby se změna neprojevila na jiných datech */
.wpcf7-form-control-wrap[data-name="termin"] input[type="date"] {
  position: relative;
  background-color: #fff;
  /* Zajistíme bílé pozadí */

  /* 1. Vložíme vaši vlastní ikonu jako obrázek na pozadí */
  background-image: url('https://honda.webotvurci.cz/wp-content/uploads/2025/05/kalendar.svg');

  /* 2. Nastavíme, aby se neopakovala a byla na správném místě */
  background-repeat: no-repeat;
  background-position: right 15px center;
  /* Pozice: 15px od pravého okraje, vertikálně na střed */
  background-size: 20px 20px;
  /* Velikost vaší ikony */

  /* 3. Vytvoříme místo pro ikonu, aby ji nepřekrýval text */
  padding-right: 45px;
  /* Důležité! Musí být větší než pozice + velikost ikony */
}

/* 4. Skryjeme ošklivou výchozí ikonu kalendáře v Chrome, Safari, Edge */
.wpcf7-form-control-wrap[data-name="termin"] input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;

  /* Uděláme původní ikonu zcela průhlednou a neaktivní */
  opacity: 0;
  cursor: pointer;
  /* Zajistí, že i na místě ikony bude kurzor ukazovátko */
}

/* --- O NÁS PAGE --- */
.about-page {
  background: #fff;
  padding-bottom: 60px;
  max-width: 1468px;
  margin-left: auto;
  margin-right: auto;
}

.about-inner {
  max-width: 1468px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  position: relative;
  width: 100%;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}

.about-inner .col-md-6 {
  flex: inherit !important
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-intro {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}

.about-text {
  font-size: 16px;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-image-wrap {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  justify-content: flex-start;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: block;
}

.page-template-page-kontakt .article-image img,
.page-id-104 .article-image img {
  object-fit: contain;
}

.page-template-page-kontakt .article-image,
.page-id-104 .article-image {
  height: 125px;
  margin-bottom: 10px;
}

.page-template-page-kontakt .article-excerpt img,
.page-id-104 .article-excerpt img {
  max-width: 24px !important;
  margin-right: 8px;
}

/* TIMELINE */

.timeline-title {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.about-timeline {
  padding: 0 0 64px 0;
  background: #fff;
  text-align: center;
  position: relative;
  max-width: 1468px;
  margin: 75px auto 0;
}

.timeline-slider {
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}

.timeline-slider .timeline-list {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.timeline-slider .timeline-item {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 10px;
}

.timeline-year-wrap {
  display: inline-block;
  position: relative;
}

.timeline-dot {
  width: 36px;
  height: 36px;
  margin-left: 12px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: border 0.2s, background 0.2s;
  box-sizing: border-box;
  vertical-align: bottom;
}

.timeline-item:not(.active) .timeline-dot {
  background: #EE203E;
  border: 1px solid #EE203E;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #EE203E;
}

.timeline-item.active .timeline-dot {
  background: #111;
  border: 1px solid #111;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}

.timeline-year {
  font-size: 28px;
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 0;
  color: #111;
  transition: color 0.2s;
  text-align: center;
}

.timeline-item .timeline-vertical-line {
  position: relative;
  display: block;
  top: 5px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: none;
  background-image: url("https://honda.webotvurci.cz/wp-content/uploads/2025/06/cara-doli.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 2px 40px;
  z-index: 1;
}


.timeline-desc {
  margin-top: 16px;
  color: #000;
  font-size: 17px;
  line-height: 1.5;
  display: block !important;
}

.timeline-slider .timeline-button-prev,
.timeline-slider .timeline-button-next {
  position: absolute;
  top: 40%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.timeline-slider .timeline-button-prev {
  left: 10px;
}

.timeline-slider .timeline-button-next {
  right: 10px;
}

@media (max-width: 768px) {
  .timeline-slider .timeline-item {
    flex: 0 0 50%;
  }

  .timeline-slider .timeline-button-prev,
  .timeline-slider .timeline-button-next {
    width: 24px;
    height: 24px
  }
}

@media (max-width: 600px) {

  .timeline-slider .timeline-button-prev img,
  .timeline-slider .timeline-button-next img {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .timeline-slider .timeline-item {
    flex: 0 0 100%;
  }
}


.values {
  padding: 2rem;
  text-align: center;
  margin-top: 75px;
}

.values__title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1rem;
}

@media only screen and (max-width: 1240px) and (min-width: 768px) {
  .values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem;
  }
}

.values__item {
  background-color: #F7F8F9;
  padding: 1.5rem;
  border-radius: 3px;
  text-align: center;
}

.values__item img {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.values__item h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.values__item p {
  font-size: 16px;
  margin: 0;
}


.partners-section {
  background: #fff;
  padding: 48px 0 32px 0;
  text-align: center;
}

.partners-header h2 {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 18px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.partners-header p {
  max-width: 800px;
  margin: 0 auto 40px;
}

.partners-posuvnik {
  max-width: 1480px;
  margin: 0 auto 32px;
  position: relative;
  padding: 0 48px;
  overflow: hidden;
}

.posuvnik-wrapper {
  display: flex;
  align-items: center;
  transition: transform 0.6s ease;
  width: 100%;
  margin: auto;
  min-height: 150px;
  gap: 10px;
}

.posuvnik-slide {
  flex: 0 0 20%;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .posuvnik-slide {
    flex: 0 0 25%;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .posuvnik-slide {
    flex: 0 0 33.3333%;
  }
}

@media (max-width: 767px) {
  .posuvnik-slide {
    flex: 0 0 50%;
  }

}

@media (max-width: 600px) {

  .posuvnik-button-prev img,
  .posuvnik-button-next img {
    width: 40px;
  }

  .posuvnik-button-next {
    right: 0px !important;
  }

  .posuvnik-button-prev {
    left: 0px !important;
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;

}

.partner-logo img {
  max-width: 100%;

  object-fit: contain;

  transition: filter 0.2s;
}

.partner-logo:hover img {
  filter: grayscale(0);
}

.posuvnik-button-prev,
.posuvnik-button-next {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.posuvnik-button-prev {
  left: 10px;
}

.posuvnik-button-next {
  right: 10px;
}



.posuvnik-button-prev img,
.posuvnik-button-next img {

  transition: filter 0.2s;
}

/*stránka servis*/

.servis-form .form-row {
  margin-bottom: 1rem;
}

.servis-form .two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.red {
  color: #ED1C3F;
  display: contents !important;
}

.servis-form .two-cols.checkboxes {
  gap: 10px
}

.servis-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.servis-form .form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
  margin-bottom: 0;
}

.servis-form .checkboxes {
  grid-template-columns: repeat(2, 1fr);
}

.servis-form .checkboxes span{
  display: flex;
  align-items: center;
}

 .servis-form .form-row span
 {
  align-items: center;
}

label span {
  margin-top: 5px;
}

.servis-form .checkboxes input,
.servis-form .form-row input[type="checkbox"] {
  margin-right: 0.5rem;
}

.note {
  font-size: 0.875rem;
  color: #666;
  font-weight: normal;
  margin-left: 0.5rem;
}

.servis-form .submit-btn {
  width: 100%;
  padding: 1rem;
  background: #e60023;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.servis-form .submit-btn::after {
  content: "»»";
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
}

.servis-form .submit-btn:hover {
  background: #c5001f;
}

.servis-uvod {
  max-width: 1468px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 20px 0 75px;
}

.servis-uvod::before {
  background-color: #f7f7f7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 99vw;
  height: -webkit-fill-available;
  max-height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  margin-top: -35px;
}

.servis-uvod h1 {
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -5% !important;
  margin-bottom: 20px;
  justify-content: center;
}

.servis-uvod .btn {
  margin-top: 15px;
}


.page-template-page-univerzalni-sluzba .breadcrumb {
  margin-bottom: 0px;
}

.servis-uvod,
.desc-flex {
  display: flex;
  gap: 20px
}

.servis-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media only screen and (max-width: 768px) {
  .servis-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.servis-gallery img {
  width: 100%;
  height: auto;
  display: block;
}


.list-of-services {
  text-align: center;
  padding: 4rem 1rem;
}

.list-of-services.quick-services {
  padding-bottom: 1rem !important;
}

.list-of-services h2 {
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  color: #000;
}

.list-of-services p {
  max-width: 850px;
  margin: 0 auto 40px;
}

.list-of-services .row {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}


.list-of-services .service-item {
  background-color: #f7f7f7;
  border-radius: 3px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

.list-of-services .service-icon img {
  max-width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.list-of-services .service-description {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin: 0;
}

.list-of-services .service-btn-wrap {
  text-align: center;
}

.list-of-services .service-btn-wrap .servis-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #EE203E;
  color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  font-style: italic;
}

.list-of-services .service-btn-wrap .servis-btn:hover {
  background-color: #c51b33;
}

.doprovodny-text {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1468px;
  width: fit-content;
  justify-content: center;
}

.doprovodny-text .col-xs-12 {
  width: 100%;
}

.o-nas-img img {
  position: relative;
  z-index: 12;
  width: -webkit-fill-available;
}

@media (min-width: 768px) {
  .doprovodny-text .col-md-6 {
    width: 50%;
  }

  .doprovodny-text:nth-of-type(odd) .col-md-6:first-child {
    /* První .col-md-6 v lichém elementu (text) */
    order: 1;
  }

  .doprovodny-text:nth-of-type(odd) .col-md-6:last-child {
    /* Druhý .col-md-6 v lichém elementu (obrázek) */
    order: 2;
  }

  /* Pro sudé elementy ponecháme výchozí pořadí (nebo explicitně nastavíme) */
  .doprovodny-text:nth-of-type(even) .col-md-6:first-child {
    /* První .col-md-6 v sudém elementu (text) */
    order: 2;
    /* Výchozí pořadí */
  }

  .doprovodny-text:nth-of-type(even) .col-md-6:last-child {
    /* Druhý .col-md-6 v sudém elementu (obrázek) */
    order: 1;
    /* Výchozí pořadí */
  }

  section.doprovodny-text.desc-flex>.col-xs-12.col-md-6:has(> img) {
    position: relative;
  }

  section.doprovodny-text.desc-flex>.col-xs-12.col-md-6:has(> img)::after {
    content: "";
    position: absolute;
    bottom: -40px;
    width: 100%;
    height: 80%;
    background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/05/sachovnice.png);
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat;
    background-repeat: repeat;
  }

  /*
  section.doprovodny-text.desc-flex:nth-of-type(odd)>.col-xs-12.col-md-6:has(> img)::after {
    right: -40px;
  }

  section.doprovodny-text.desc-flex:nth-of-type(even)>.col-xs-12.col-md-6:has(> img)::after {
    left: -40px;
  }*/

  section.doprovodny-text.desc-flex:nth-of-type(odd)>.col-xs-12.col-md-6:has(> img) img {
    width: calc(100% - 40px);
  }

  section.doprovodny-text.desc-flex:nth-of-type(even)>.col-xs-12.col-md-6:has(> img) img {
    width: calc(100% - 40px);
  }
  

  .o-nas-img {
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
  }

  .o-nas-img::after {
    content: "";
    position: absolute;
    bottom: -40px;
    width: 100%;
    height: 80%;
    background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/05/sachovnice.png);
    background-size: contain;
    z-index: 0;
    background-repeat: no-repeat;
    left: -40px;
    margin-top: -20px;
  }

  .sachovnice::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    background-image: url(https://honda.webotvurci.cz/wp-content/uploads/2025/05/sachovnice.png);
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat;
    background-repeat: repeat;
    right: -40px;
    margin-top: -20px;
  }

}

.doprovodny-text img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.doprovodny-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.doprovodny-text-content {
  font-size: 16px;
  line-height: 150%;
  color: #000;
  margin-bottom: 2rem;
}

.servis-uvod .btn {
  margin-top: 15px;
}


.buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.3s, color 0.3s;
}

.btn--red {
  background-color: #e60023;
  color: #fff;
  border: 2px solid #EE203E !important;
}

.btn--red:hover {
  background-color: #c5001f;
}

.btn--outline {
  background-color: transparent !important;
  color: #000 !important;
  border: 2px solid #EE203E !important;
}

.btn--outline:hover {
  background-color: #e60023 !important;
  color: #fff !important;
}

.rezervace h2 {
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 450px;
  font-style: italic;
}

.rezervace.desc-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1468px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.rezervace.desc-flex .col-xs-12.col-md-6 {
  width: 50%;
  margin-top: auto;
  margin-bottom: auto;
}

.galery-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.galery-flex img {
  flex: 1 1 calc(33.333% - 8px);
  max-width: calc(33.333% - 8px);
  height: auto;
}

@media only screen and (max-width: 768px) {
  .galery-flex img {
    flex: 1 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  .doprovodny-text-content {
    margin-bottom: 0px;
  }
}


.arrow img {
  width: -webkit-fill-available;
}

@media only screen and (max-width: 768px) {
  .rezervace.desc-flex {
    flex-direction: column;
    margin-top: 40px;
    gap: 0px;
  }

  .rezervace.desc-flex .col-xs-12.col-md-6 {
    width: 100%;
  }
}

/*služby*/
/* stránka servis */

.services-page {
  background: #fff;
  padding-bottom: 60px;
}

.services-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-style: italic;
}

.services-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #222;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-main {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.service-card {
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-end;
  min-height: 320px;
}

.main-service {
  flex: 1 1 30%;
  min-width: 280px;
  max-width: 420px;
  margin-bottom: 0;
  min-height: 500px;
}

.service-card-inner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.1) 100%);
  padding: 32px 24px 24px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

.page-template-page-univerzalni-sluzba .service-icon {
  margin: 0 auto 18px;
}

.service-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-style: italic;
}

.service-desc {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #fff;
}

.service-btn {
  background: #EE203E;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 1rem;
  margin-top: auto;
  border: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.service-btn:hover {
  background: #fff;
  color: #EE203E;
}

.services-subtitle {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin: 55px 0 55px 0;
  text-transform: uppercase;
  font-style: italic;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.service-btn-wrap {
  margin: 0 auto 50px !important;
  display: block;
  text-align: center;
}

@media (max-width: 1200px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-main {
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .services-main {
    flex-direction: column;
    align-items: center;
  }

  .main-service {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: 220px;
  }

  .service-card-inner {
    padding: 18px 10px 14px 10px;
  }
}

.odber-section {
  background: #f7f8fa;
  padding: 48px 0 32px 0;
  text-align: center;
}

.odber-title {
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.odber-posuvnik {
  max-width: 1480px;
  margin: 0 auto 32px;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.error-404.not-found {
  text-align: center;
  min-height: 500px;
  align-content: center;
}

.error-404 p {
  font-size: 20px;
  margin: 32px;
}

.financovani.pujcovna img {
  margin-top: 0px;
}
.page-template-page-financovani .sekundarni-text h3
{
    font-weight: 600;
}

.pujcovna h1 {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.page-template-page-pujcovna h3 {
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 16px;
}

.pujcovna-headline {
  text-align: center;
  margin-top: 75px;
}

.pujcovna-headline h2 {
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
}

.pujcovna .btn {
  margin-bottom: 12px !important;
}

@media only screen and (min-width: 768px) {
  .pujcovna .row {
    display: flex;
  }
}

.pujcovna {
  background: linear-gradient(to bottom, #FFFFFF, #F0F2F4);
  padding-bottom: 50px;
}

.pujcovna .row {
  max-width: 1468px;
  margin-left: auto;
  margin-right: auto;
}

.pujcovna img {
  margin-top: 24px;
  width: -webkit-fill-available;
}

.cenik-scroll {
  overflow-y: auto;
  position: relative;
  background: #f0f0f0;
  margin-bottom: 20px;
}

.cenik-scroll tbody {
  overflow-y: auto;
  position: relative;
  background: #f0f0f0;
  height: 274px;
}

.cenik-table {
  width: 100%;
  border-collapse: collapse;
}

.cenik-table th,
.cenik-table td {
  padding: 0.75rem 0.5rem;
  border: 1px solid #fff;
  font-size: 14px;
  white-space: break-spaces;
}

.cenik-table thead {
  display: block;
}

.cenik-table thead th {
  position: sticky;
  top: 0;
  background-color: #757575;
  color: #fff;
  z-index: 2;
  text-transform: uppercase;
  padding-right: 15px;

}

.cenik-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.cenik-table tfoot tr {
  position: sticky;
  bottom: 0;
  background-color: #e0e0e0;
}

.cenik-table tfoot td {
  padding: 0.75rem 0.5rem;
  font-weight: bold;
  border-top: 1px solid #fff;
}

.cenik-notes {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #333;
}

.cenik-notes p {
  margin: 0.25rem 0;
}

.cenik-table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.cenik-table tbody {
  display: block;
  max-height: 220px;
  /* nastavte podle potřeby */
  overflow-y: auto;
  width: 100%;
}

.cenik-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cenik-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.cenik-table th,
.cenik-table td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #ddd;
  white-space: nowrap;
}

.cenik-table thead {
  background-color: #f5f5f5;
  padding-right: 14px
}

.cenik-table tfoot {
  background-color: #f0f0f0;
  font-weight: bold;
}

@media (max-width: 768px) {

  .cenik-table th,
  .cenik-table td {
    padding: 10px 8px;
    font-size: 14px;
  }

  .cenik-table th {
    width: 115px !important;
  }

  .cenik-table td {
    width: 100px !important;
  }
}

@media (max-width: 480px) {

  .cenik-table th,
  .cenik-table td {
    padding: 8px 6px;
  }
}

tfoot {
  display: block;
  margin-right: 15px;
}

.cenik-notes {
  padding-left: 15px;
}

.pujcovna-conditions {
  background-color: #f7f9fa;
  background-image: url("https://honda.webotvurci.cz/wp-content/uploads/2025/05/Frame-2609520.svg");
  background-repeat: no-repeat;
  background-position: center;
  padding: 48px 0;
}


.pujcovna-conditions__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

.pujcovna-conditions__text {
  flex: 2 1 400px;
}

.pujcovna-conditions__text h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -5% !important;
  line-height: 120%;
  font-style: italic;
  text-transform: uppercase;
}

.pujcovna-conditions__desc {
  font-size: 1.05rem;
  color: #222;
}

.pujcovna-conditions__downloads {
  flex: 1 1 320px;
  text-align: left;
}

.pujcovna-conditions__downloads h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
  font-style: italic;
  text-transform: uppercase;
}

.pujcovna-conditions__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.after-form
{
    text-align: center;
    max-width: 1100px;
    margin: auto
}

.after-form h3
{
    font-weight: 700;
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ee203e;
  border-radius: 3px;
  background: #fff;
  color: #111;
  font-weight: 600;
  padding: 12px 24px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.download-btn__icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.download-btn:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .pujcovna-conditions__inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }

  .pujcovna-conditions__downloads {
    width: 100%;
  }
}

.header-logo {
  display: flex;
}

.header-logo p {
  display: grid;
  max-width: 125px;
  margin: auto 20px;
  font-size: 14px;
  font-style: italic;
  text-transform: uppercase;
}

@media (min-width: 992px) {

  .header-top-mobile,
  .header-search-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  :root {
    --topbar-height: 47px; /* <-- ZMĚŇTE TUTO HODNOTU podle skutečné výšky vaší horní lišty */
  }
  /* První menu, které se přilepí úplně nahoru */
  .topbar {
    position: -webkit-sticky; /* Pro kompatibilitu se Safari */
    position: sticky !important;
    top: 0;
    z-index: 1001; /* Zajistí, že bude nad ostatními prvky */
   
  }
  
  /* Druhé menu, které se přilepí hned pod první */
  .header-main {
    position: -webkit-sticky; /* Pro kompatibilitu se Safari */
    position: sticky !important;
    top: var(--topbar-height); /* Odsazení o výšku první lišty */
    z-index: 1000;
    background-color: white; /* Důležité, aby neprosvítal obsah pod menu */
  }}

@media (max-width: 992px) {
  .header-main {
    display: none !important;
  }

  .topbar,
  .header-search {
    display: none !important;
  }

  .header-top-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
    border-bottom: 1px solid #eee;
  }

  .header-logo {
    flex: 0 0 auto;
    margin-right: 12px;
  }

  .header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
    justify-content: end;
    margin-right: 10px;
  }

  .icon-link img {
    width: 32px;
    height: 32px;
    display: block;
    transition: filter 0.2s;
    cursor: pointer;
  }

  .menu-toggle {
    flex: 0 0 auto;
    margin-left: 12px;
    margin-right: 5px;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
  }

  .header-search-mobile {
    padding: 12px 16px 0 16px;
    background: #fff;
    min-height: 60px;
    margin-bottom: 32px
  }
}


@media (max-width: 992px) {
  .header-top-mobile {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 9999;
      width: 100%; /* Použijte raději 100% pro lepší kompatibilitu */
      
      /* Přidat pro plynulý efekt schování/zobrazení */
      transition: transform 0.3s ease-in-out; 
  }
  }

/* Tooltip stylování */
@media (max-width: 992px) {
  .phone-tooltip img {
      width: 24px !important;
      height: 24px !important;
      filter: brightness(0) invert(1);
  }
}
.store-tooltip-trigger {
  position: relative;
  display: inline-block;
}

.store-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 8px 16px;
  border-radius: 3px;
  font-size: 15px;
  white-space: nowrap;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.store-tooltip-trigger.active .store-tooltip,
.store-tooltip-trigger:focus .store-tooltip {
  display: block;
  pointer-events: auto;
  animation: fadeIn 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Phone tooltip styles */
.phone-tooltip-container {
  position: relative;
  display: inline-block;
}

.phone-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  min-width: 200px;
}

.phone-tooltip a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}

.phone-tooltip a:hover {
  color: #EE203E;
}

.phone-tooltip .phone-label {
  font-size: 12px;
  opacity: 0.8;
  margin-left: auto;
}

.phone-tooltip-container.active .phone-tooltip,
.phone-tooltip-container:focus .phone-tooltip {
  display: block;
  pointer-events: auto;
  animation: fadeIn 0.2s;
}

.phone-trigger {
  cursor: pointer;
}

/* Responsive adjustments for phone tooltip */
@media (max-width: 768px) {
  .phone-tooltip {
    min-width: 180px;
    font-size: 13px;
    padding: 10px 12px;
  }
  
  .phone-tooltip a {
    padding: 4px 0;
    gap: 6px;
  }
  
  .phone-tooltip .phone-label {
    font-size: 11px;
  }
}

/* Do 1200px */
@media (max-width: 1200px) {
  .hero-btn {
    line-height: 1.1;
  }
}


@media (max-width: 992px) {
  .header-logo img {
    padding: 5px;
    width: revert-layer;
  }
}


@media (max-width: 480px) {
  .header-logo img {
    max-height: 40px !important;
    margin: 8px 5px;
  }

}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu-list li {
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-list li a {
    display: block;
    padding: 14px 20px;
    color: #222;
    text-decoration: none;
    font-size: 18px;
  }

  .mobile-menu-list li a:hover {
    background: #f5f5f5;
    color: #EE203E;
  }

  .menu-toggle.active img {
    /* např. změna barvy ikony při otevření menu */
    filter: brightness(0) saturate(100%) invert(32%) sepia(99%) saturate(7492%) hue-rotate(346deg) brightness(97%) contrast(101%);
  }
}

.article-hero {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.article-hero img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  filter: brightness(0.7);
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 3px;
  z-index: 1;
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 40px 20px 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-hero .article-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.article-hero .article-meta {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.articles-list {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
}

.article-date {
  display: flex;
}

.article-date img {
  filter: brightness(1) !important;
  height: 24px;
  width: 24px;
  object-fit: contain !important;
}

.article-date span {
  display: flex;
  min-width: max-content;
  margin: 5px 10px;

}

.article-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.article-cat-btn {
  background: #EE203E;
  color: #fff !important;
  border-radius: 3px;
  padding: 7px 18px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin: 0 2px;
  transition: background 0.2s;
  display: inline-block;
}

.article-cat-btn:hover {
  background: #b80016;
  color: #fff;
}

@media (max-width: 768px) {
  .article-hero img {
    height: inherit;
  }

  .article-hero-content {
    padding: 18px 6px 18px 6px;
  }

  .article-hero .article-title {
    font-size: 1.5rem;
    text-align: center;
  }
}

/* --- SERVIS FORM STYLING --- */
.servis-form.wpcf7-form {
  max-width: 750px;
  margin: 30px auto;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
  font-family: 'Roboto', Arial, sans-serif;
}

.servis-form .form-row {
  margin-bottom: 18px;
}

.servis-form .two-cols {
  display: flex;
  gap: 20px;
}

@media (min-width: 768px) {
  .servis-form .two-cols label {
    width: 50%;
  }
}

.servis-form .two-cols>p {
  flex: 1;
  margin: 0;
}

.servis-form label {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
  display: grid;
  gap: 5px;
}

.servis-form input[type="text"],
.servis-form input[type="email"],
.servis-form input[type="tel"],
.servis-form input[type="number"],
.servis-form input[type="date"],
.servis-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  font-size: 15px;
  background: #fafafa;
  margin-bottom: 0;
  font-family: inherit;
  transition: border 0.2s;
}

.servis-form input[type="text"]:focus,
.servis-form input[type="email"]:focus,
.servis-form input[type="tel"]:focus,
.servis-form input[type="number"]:focus,
.servis-form input[type="date"]:focus,
.servis-form textarea:focus {
  border-color: #EE203E;
  outline: none;
}

.servis-form textarea {
  height: 130px;
  resize: vertical;
}

.form-control:focus
{
  box-shadow: none !important;
}

.servis-form .checkboxes {
  display: flex;
  gap: 16px;
}

.servis-form .checkboxes label,
.servis-form .form-row input[type="checkbox"]+.wpcf7-list-item-label {
  line-height: 1.2;
  font-size: 14px;
  margin: 0;
  align-items: center;
}

.servis-form .checkboxes input[type="checkbox"] {
  margin-right: 8px;
}

.servis-form .note {
  font-size: 12px;
  color: #888;
  font-weight: 400;
  margin-left: 8px;
}

.servis-form .submit-btn,
.servis-form input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: #EE203E;
  border: 2px solid #EE203E;
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
  position: relative;
  background-image: url('https://honda.webotvurci.cz/wp-content/uploads/2025/05/submit-arrow.svg');
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 32px 32px;
  text-align: start;
}

.servis-form .submit-btn:hover,
.servis-form input[type="submit"]:hover {
  border: 2px solid #EE203E;
  color: #000;
  background: #fff;
}

.servis-form .form-row:last-child {
  margin-bottom: 0;
}

/* Pro tablety - například obrazovky menší než 992px */
@media (max-width: 991.98px) {
  .list-of-services .row {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    /* 2 sloupce */
  }
}

/* Pro mobilní telefony - například obrazovky menší než 768px */
@media (max-width: 767.98px) {

  .servis-uvod,
  .desc-flex {
    display: block;
  }

  .servis-gallery,
  .doprovodny-text .buttons-group {
    margin-bottom: 36px;
  }

  .articles-title::before {
    width: 150%;
  }

  .list-of-services {
    padding: 2rem 1rem;
  }

  .doprovodny-text-wrapper .doprovodny-text {
    margin: 0rem 0 2rem;
  }
  .single-produkt .description {
    margin-bottom: 20px;
}
}

@media (max-width: 600px) {
  .single-produkt .rezervace
  {
      padding: 0px !important;
  }
  .rezervace form {
    padding: 16px 0px;
  }

  .servis-form .two-cols {
    flex-direction: column;
    gap: 0;
  }

  .posuvnik-slide.partner-logo {
    flex: 0 0 100%;
  }
}

.active-filters {
  max-width: 1468px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  background: #767676;
  color: #fff;
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.chip-close {
  margin-left: 6px;
  font-weight: bold;
}

.color-options {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap; /* allow color swatches to wrap into multiple rows */
}



/* Panel s color swatches */
.color-filter-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: rgb(213, 213, 213) !important;
  border-radius: 3px;
  padding: 12px !important;
  margin-top: -5px;
  box-shadow: none !important;
  box-sizing: border-box;
}

/* Kontejner pro color options */
.color-options {
  gap: 7px !important;
  flex-wrap: wrap; /* ensure wrapping also where this rule overrides */
}

/* Základní color swatch styly */
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid #000;
  transition: all 0.2s ease;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Checkmark pro aktivní color swatch */
.color-swatch.active::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/* Specifické barvy pro color swatches */
.color-swatch.color-blue {
  background-color: #007cba;
}

.color-swatch.color-black {
  background-color: #333333;
}

.color-swatch.color-yellow {
  background-color: #f1c40f;
}

.color-swatch.color-white {
  background-color: #ffffff;
  border-color: #ccc;
}

.color-swatch.color-green {
  background-color: #27ae60;
}

.color-swatch.color-red {
  background-color: #e74c3c;
}

.color-swatch.color-orange {
  background-color: #e67e22;
}

.color-swatch.color-purple {
  background-color: #9b59b6;
}

.color-swatch.color-gray {
  background-color: #95a5a6;
}

.color-swatch.color-silver {
  background-color: #bdc3c7;
}

/* Pro bílou barvu speciální border */
.color-swatch.color-white:not(.active) {
  border-color: #bbb;
}

.color-swatch.color-white.active::after {
  color: #007cba;
  text-shadow: none;
}

/* Responsivní design */
@media (max-width: 768px) {
  .color-filter-panel {
    left: auto;
    right: 0;
    min-width: 180px;
    max-width: calc(100vw - 24px); /* keep panel within viewport */
  }

  .color-swatch {
    width: 28px;
    height: 28px;
  }

  .color-swatch.active::after {
    font-size: 12px;
  }
}

.color-filter-toggle:focus {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* Loader při filtrování */
.products-archive.loading .color-filter-dropdown {
  pointer-events: none;
  opacity: 0.6;
}



.chip-close:hover {
  opacity: 0.7;
}

/* Kontejner pro aktivní filtry */


/* Speciální styly pro různé barevné kombinace */
.color-swatch.color-blue.active::after,
.color-swatch.color-black.active::after,
.color-swatch.color-green.active::after,
.color-swatch.color-red.active::after,
.color-swatch.color-purple.active::after {
  color: white;
}

.color-swatch.color-yellow.active::after,
.color-swatch.color-orange.active::after,
.color-swatch.color-silver.active::after {
  color: #333;
  text-shadow: none;
}

/* --- Price Filter Dropdown --- */
.price-filter-dropdown {
  position: relative;
  display: inline-block;
}

.price-filter-toggle {
  background: #D5D5D5;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-filter-panel {
  position: absolute;
  top: 110%;
  left: 0;
  background: #D5D5D5;
  color: #fff;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 24px 24px 16px 24px;
  z-index: 100;
  min-width: 320px;
}

.price-filter-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.price-filter-actions button {
  background: #fff;
  color: #222;
  border: none;
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}

.price-filter-dropdown.open .price-filter-panel {
  display: block;
}

.dropdown-arrow {
  margin-left: 8px;
}

.selected-price-label {
  margin-left: 8px;
  font-weight: 700;
  color: #00e0c6;
}

/* --- Color Filter Dropdown --- */
.color-filter-dropdown {
  position: relative;
  display: inline-block;
}

.color-filter-toggle {
  background: #D5D5D5;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-arrow img {
  width: 15px;
  height: 15px;
}

.color-filter-panel {
  position: absolute;
  top: 110%;
  left: 0;
  background: #222;
  color: #fff;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 24px 24px 16px 24px;
  z-index: 100;
  min-width: 220px;
  display: none;
}

.color-filter-dropdown.open .color-filter-panel {
  display: block;
}

.color-filter-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.color-filter-actions button {
  background: #fff;
  color: #222;
  border: none;
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
}

.selected-color-label {
  margin-left: 8px;
  font-weight: 700;
  color: #00e0c6;
}

.price-value-display {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  display: none;
}

/* --- Multi-Select Dropdown --- */
.multi-select-dropdown {
  position: relative;
  display: inline-block;
}

.multi-select-toggle {
  background: #D5D5D5;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 185px;
  justify-content: space-between;
}

.multi-select-label {
  flex: 1;
  text-align: left;
}

.multi-select-panel {
  position: absolute;
  top: 110%;
  left: 0;
  background: #D5D5D5;
  color: #000;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 16px;
  z-index: 100;
  min-width: 220px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.multi-select-dropdown.open .multi-select-panel {
  display: block;
}

.multi-select-option {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  font-size: 16px;
}

.multi-select-option:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.multi-select-option input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.multi-select-option span {
  flex: 1;
  user-select: none;
}


.filter-container h3 {
  font-size: 16px !important;
  text-transform: none;
  font-weight: 700;
}

.filter-group label {
  font-size: 16px;
  margin-bottom: 5px;
  color: black;
  font-weight: 700;
}

#price-select {
  background-color: black;
  border-radius: 3px;
  color: white;
  justify-content: space-between;
  position: relative;
  display: flex;
  width: -webkit-fill-available;
  margin-bottom: 10px;
  border-radius: 3px;
  padding: 8px 20px 8px 12px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#price-select:hover {
  background-color: #333;
}

#price-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #00e0c6;
}

#price-slider {
  margin-left: 15px;
}

/* --- SEARCH FORM --- */
/* Search Page Specific Styles */
.search .rounded {
  padding-left: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 0px !important;
}

.search .article-card {
  padding-top: 24px;
}

.search .article-card .article-meta {
  padding-bottom: 0px !important
}

.search .container {
  max-width: 1200px;
  margin: 32px auto 75px;
  padding: 2rem 1rem;
}

.search h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

.search h1 .text-primary {
  color: #E2001A;
}

.search .mb-2 {
  font-weight: 800;
}

/* Search Grid Layout */
.search .grid {
  display: grid;
  gap: 2rem;
}


@media (min-width: 1280px) {
  .search .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Search Specific Article Card Styles */
.search .article-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.search .article-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.search .article-excerpt {
  flex-grow: 1;
}

.search .article-btn {
  margin-top: auto;
}


/* No Results Styles */
.no-results {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-results h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.no-results p {
  color: #666;
  margin-bottom: 2rem;
}

/* Loading State */
.search-loading {
  text-align: center;
  padding: 2rem;
}

.navigation {
  margin-top: 24px;
}

.navigation a,
.navigation span {
  font-size: 20px !important
}


.search-loading::after {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #E2001A;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Search form styling for default WP search */
.search-form {
  position: relative;
  background: #fafafa;
  border: 1.5px solid #bbb;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.search-form label {
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
}

.search-form .search-field {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  width: 100%;
  outline: none;
  box-shadow: none;
}
.search-form .search-field:focus {
  background: none;
}
.search-form .search-field::placeholder {
  color: #aaa;
  opacity: 1;
  font-size: 15px;
  font-family: 'roboto' !important;
  font-weight: 300;
}

.search-form .search-submit {
  /* Skryjeme původní tlačítko */
  opacity: 0;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  z-index: 2;
  cursor: pointer;
}

/* Přidáme SVG lupu jako background do pole */
.search-form .search-field {
  background-image: url('https://honda.webotvurci.cz/wp-content/uploads/2025/05/lupa.svg');
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}

/* Pro lepší klikatelnost na mobilu */
@media (max-width: 600px) {
  .search-form .search-field {
    font-size: 1.1rem;
    background-size: 1.5rem 1.5rem;
    background-position: right 0.7rem center;
  }
}

.search .text-primary {
  color: black !important;
  font-size: 28px;
  font-weight: 800;
  display: grid;
  font-style: italic;
  margin-top: 20px;
}

.faq-section {
  margin: 40px 0;
}

.faq-section .articles-header {
  justify-content: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 1.1em;
  padding: 15px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
  color: #222;
  position: relative;
  font-style: italic;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 1.2em;
  color: #e30613;
  transition: transform 0.2s;
}

.faq-item.active .faq-question:after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 15px 0;
  color: #444;
  animation: fadeIn 0.3s;
}

.faq-item.active .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Zarovnání posledního submenu doprava, aby nepřetékalo */
.main-menu-wrapper>li:last-child .sub-menu {
  left: auto;
  right: 0;
}

/* Zabránění přetékání submenu */
.main-menu-wrapper li .sub-menu {
  max-width: 95vw;
  box-sizing: border-box;
  overflow-x: auto;
}

.product-gallery .swiper-button-next:after,
.product-gallery .swiper-button-prev:after {
  display: none;
}

.product-gallery img {
  border-radius: 0px !important;
}

.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background 0.2s;

}

@media (max-width: 600px) {
  .product-gallery {
    width: 100vw;
    max-width: 100vw;
    overflow-x: auto;
    margin-left: -20px;
    
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-main,
  .gallery-thumbs {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
}

@media (max-width: 992px) {
  .header-search-mobile {
    display: none;
  }

  .header-search-mobile.active {
    display: block;
  }
}


/* Do 1200px */
@media (max-width: 1200px) {
  h1 {
    font-size: 44px !important;
  }

  h2 {
    font-size: 32px
  }

  h3 {
    font-size: 20px
  }
}

/* Do 992px */
@media (max-width: 992px) {
  h1 {
    font-size: 40px !important;
  }

  h2 {
    font-size: 24px
  }

  h3 {
    font-size: 18px
  }
}

/* Do 768px */
@media (max-width: 768px) {
  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 20px !important;
    line-height: 1.2;
  }

  h3 {
    font-size: 16px !important;
    line-height: 1.2;
  }
}

/* --- MOBILE MENU --- */
/* --- GLOBAL STYLES --- */

/* Tlačítko pro rozbalení podmenu */
.submenu-toggle {
  display: none;
  /* Skryto ve výchozím stavu (na desktopu) */
  width: 20px;
  height: 20px;
  margin-left: 5px;
  position: relative;
  cursor: pointer;
}

.submenu-toggle::before,
.submenu-toggle::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.submenu-toggle::before {
  width: 10px;
  height: 2px;
  top: 9px;
  left: 5px;
}

.submenu-toggle::after {
  width: 2px;
  height: 10px;
  top: 5px;
  left: 9px;
}

.menu-item-has-children.submenu-open>.submenu-toggle::after {
  transform: rotate(90deg);
}

@keyframes slideDownSubmenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- MOBILE MENU --- */
@media (max-width: 992px) {

  /* Hlavní kontejner mobilního menu */
  .mobile-menu {
    display: block;
    width: 100vw;
    background: #fff;
    position: fixed;
    top: 65px;
    left: 0;
    z-index: 9999;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    border-top: 1px solid #eee;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.4s ease, visibility 0.4s ease;
  }

  .mobile-menu.open {
    max-height: 2000px;
    /* Dostatečně velká hodnota pro obsah */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  /* Seznamy položek v mobilním menu */
  .mobile-menu-list,
  .mobile-menu .topbar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu .topbar-menu-list {
    padding-bottom: 12px;
  }

  /* Jednotlivé položky seznamu */
  .mobile-menu-list>li,
  .mobile-menu .topbar-menu-list>li {
    border-bottom: 1px solid #eee;
    background: none;
    position: relative;
  }

  .mobile-menu-list>li:last-child,
  .mobile-menu .topbar-menu-list>li:last-child {
    border-bottom: none;
  }

  /* Odkazy v menu */
  .mobile-menu-list li a,
  .mobile-menu .topbar-menu-list li a {
    display: block;
    padding: 16px 24px;
    color: #222;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    border-radius: 0;
    text-align: center;
  }

  .mobile-menu-list li a:hover,
  .mobile-menu .topbar-menu-list li a:hover {
    background: #F5F5F5;
    color: #EE203E;
  }

  /* Položky s podmenu (rodiče) */
  .mobile-menu-list li.menu-item-has-children>a {
    position: relative;
    padding-right: 30px;
    /* Prostor pro šipku */
  }

  .mobile-menu-list li.menu-item-has-children>a::after {
    display: none;
    /* Skryjeme původní textovou šipku */
  }

  .mobile-menu-list li.menu-item-has-children>a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
    transition: transform 0.3s ease;
    margin-right: 15px;
  }

  .mobile-menu-list li.submenu-open>a::before {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Kontejner podmenu */
  .mobile-menu-list .sub-menu {
    display: none;
    background: #fafafa;
    padding-left: 0;
    margin: 0;
    border-left: 3px solid #EE203E;
    animation: slideDownSubmenu 0.4s;
  }

  .mobile-menu-list li.submenu-open>.sub-menu {
    display: block;
  }

  .mobile-menu-list .sub-menu li {
    border-bottom: none;
  }

  /* Odkazy v podmenu */
  .mobile-menu-list .sub-menu a {
    padding: 14px 36px;
    font-size: 16px;
    color: #444;
    font-weight: 500;
    background: none;
  }

  .mobile-menu-list .sub-menu a:hover {
    background: #f1f1f1;
    color: #EE203E;
  }

  /* Topbar menu uvnitř mobilního menu */
  .mobile-menu .topbar-menu {
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
    background: #fff;
  }

  /* Zobrazení přepínače podmenu pouze na mobilu */
  .submenu-toggle {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    top: 34px;
  }
  .header-logo a {
    padding-right: 0px
  }
  .header-logo a::after {
    display: none;
}
  .icon-link img {
    width: 25px !important;
}
.breadcrumb {
  margin: 0px 0 20px 0 !important;
}
}

.mobile-menu-list li.menu-item-has-children>a .submenu-arrow-overlay {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 2;
  cursor: pointer;
  background: transparent;
}

/* Přidáno: české názvy barev pro color-swatch */
.color-swatch[data-value="Modrá"] {
  background-color: #007cba;
}

.color-swatch[data-value="Bílá"] {
  background-color: #fff;
}

.color-swatch[data-value="Černá"] {
  background-color: #333;
}

.color-swatch[data-value="Zelená"] {
  background-color: #27ae60;
}

.color-swatch[data-value="Oranžová"] {
  background-color: #e67e22;
}

/* Pro aktivní bílou barvu speciální checkmark */
.color-swatch[data-value="Bílá"].active::after {
  color: #007cba;
  text-shadow: none;
}
.color-swatch[data-value="Červená"] {
  background-color: #FF0000;

}
.color-swatch[data-value="Hnědá"] {
  background-color: #964B00;
  
}
.color-swatch[data-value="Stříbrná"] {
  background-color: #C0C0C0

}
.color-swatch[data-value="Šedá"] {
  background-color: #808080

}
.color-swatch[data-value="Zelená"] {
  background-color: #008000
 
}
.color-swatch[data-value="Zlatá"] {
  background-color: #FFD700

}
.color-swatch[data-value="Žlutá"] {
  background-color: #FFFF00

}

/* Product Tags */
.product-detail .section-text .product-tags {
  position: relative !important; 
 margin-bottom: 20px !important;
 display: block;
 margin-left: -10px !important;
 margin-right: 5px;
}

.product-detail .section-text .product-tag {
     width: fit-content;
     margin-right: 5px 
}
.product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
}

.product-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

/* Video styly */
video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-short-desc video,
.section-text video {
    margin: 20px 0;
    display: block;
}

/* Responsive video */
@media (max-width: 768px) {
    video {
        border-radius: 4px;
    }
}

@media (max-width: 480px) and (min-width: 375px){
  /* Cílíme na formulář uvnitř kontejneru s filtry */
  .filter-container form {
    /* Použijeme Flexbox pro layout */
    display: flex;
    
    /* Povolíme zalamování prvků na další řádek */
    flex-wrap: wrap;
    
    /* Vytvoříme mezeru mezi sloupci */
    column-gap: 30px;
    
    /* Vytvoříme mezeru mezi řádky */
    row-gap: 30px;
  }

  .filter-container .filter-group {
  
    width: calc(50% - 20px);
    flex-shrink: 0;
    margin-right: 10px;
    font-size: 13px !important;
  }
  .color-filter-toggle, .price-filter-toggle {
    width: 106%;
}
}


.color-filter-toggle, .price-filter-toggle, .filter-container .filter-group  {

    font-size: 13px !important;
}


/* Alternativně pro konkrétní element */
#servis-kontakt {
    scroll-margin-top: 100px;
}
