/* Zmienne CSS dla bloków */
:root {
  --brand-color: #ffcb05;
  --brand-color-hover: #e6c100;
  --brand-radius: 20px;
  --brand-color-dark: #b39900;
  --brand-color-darker: #ccb300;
}

.color-b2b {
  color: #003591;
}
.color-b2c {
  color: #f79433;
}

/* Ustawienie video z takim samym odstępem od prawej jak .container */
.hero-page {
  position: relative;
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  right: 15px !important; /* padding .container na mobile */
  width: 500px;
  z-index: 1;
}
@media (min-width: 1200px) {
  .hero-video-wrapper {
    right: calc((100vw - 1140px) / 3) !important; /* margines .container na desktop */
  }
}

p {
  margin-top: 0;
}
.brand-color {
  color: var(--brand-color);
}
.brand-background {
  background-color: var(--brand-color);
  color: #fff;
}
.br-tl {
  border-top-left-radius: var(--brand-radius);
}
.br-tr {
  border-top-right-radius: var(--brand-radius);
}
.br-bl {
  border-bottom-left-radius: var(--brand-radius);
}
.br-br {
  border-bottom-right-radius: var(--brand-radius);
}
.br-all {
  border-radius: var(--brand-radius);
}

/* Text selection styles */
::selection {
  background-color: var(--brand-color);
  color: #fff;
}

::-moz-selection {
  background-color: var(--brand-color);
  color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: #000;
}
a:hover {
  color: var(--brand-color);
}

body {
  font-family: "Montserrat", "Uni Neue", sans-serif;
  background-color: #f4f4f4;
  letter-spacing: -0.01rem;
  max-width: 100vw;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 2rem;
}

.content {
  padding: 50px 20px;
  text-align: center;
}

.box {
  background: #fff;
  margin: 20px auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 2px 4px 12px #00000014;
  opacity: 0;
}
.b {
  font-weight: bold;
}
.text-box-foto-text {
  padding-right: 50px;
}
.text-box-foto-text p {
  padding-bottom: 15px;
}
.text-box-foto-text a {
  color: var(--brand-color);
  text-decoration: underline;
}

.wrapper-section {
  padding: 40px 0;
}
.white-box-simple {
  background: white;
  border-radius: var(--brand-radius);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
}

.white-box {
  background: white;
  padding: 50px;
  border-radius: var(--brand-radius);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 20px;
  transition: all;
}
.icon-box-slider {
  border-radius: var(--brand-radius);
}
.white-box-light {
  padding: 35px;
  transition: all;
}
.white-bg {
  border-radius: var(--brand-radius);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
  background: #fff;
}
.white-bg a .radius-box {
  display: none;
}
.padding-25 {
  padding: 25px 15px;
}

.white-box-2 {
  background: white;
  padding: 30px;
  border-radius: var(--brand-radius);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(1); /* Rozjaśnienie */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Domyślne przyciemnienie */
  transition: all 0.5s ease;
  border-radius: var(--brand-radius);
}

.box-news {
  position: relative;
  height: 340px;
  border-radius: var(--brand-radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}

/* .box-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: var(--theme-filter);
  z-index: 0;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: var(--theme-filter);
  z-index: 0;
  border-radius: 10px;
} */

.blog-card-imgbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background: rgba(0, 0, 0, 0.3); /* Domyślne przyciemnienie */
  z-index: 0;
  border-radius: var(--brand-radius);
  transition: all 0.3s ease;
}

.blog-card-imgbox:hover::before {
  background: none;
}

.box-news .text-box {
  position: relative;
  z-index: 2;
  width: 100%;
}

.box-news:hover .excerpt {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.box-news .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.box-news .text-box h3 {
  font-weight: bold;
}

.box-news:hover::before {
  filter: none;
}

.icon-item:hover {
  background: #e1e1e1;
}
.icon-item {
  transition: all 0.3s;
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #000;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--brand-radius);
}
.icon-item img {
  width: 24px;
  height: 24px;
}
a {
  text-decoration: none;
  cursor: pointer;
}
.nav-style {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--brand-radius);
  padding: 10px 25px;
  backdrop-filter: blur(10px); /* Rozmycie o promieniu 10px */
  -webkit-backdrop-filter: blur(10px); /* Obsługa dla Safari */
  box-shadow: 2px 4px 12px #00000014;
}
.blur-img {
  filter: blur(10px);
}
.blur-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2); /* opcjonalna mgiełka */
}
.navbar {
  margin-top: 20px;
}
.nav-item {
  font-weight: regular;
  margin-left: 10px;
  margin-right: 10px;
}
.nav-link {
  border-radius: var(--brand-radius);
  color: #000 !important;
}
.nav-link:hover {
  background-color: #ffffff81;
  color: var(--brand-color);
  border-radius: var(--brand-radius);
}
.nav-item.active {
  font-weight: bold;
  border-radius: var(--brand-radius);
  background-color: #fff;
}

/* Dropdown menu styles */
.nav-item.menu-item-has-children {
  position: relative;
}

.nav-item.menu-item-has-children .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 160px;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.nav-item.menu-item-has-children.show .dropdown-menu {
  display: block;
}

.nav-item.menu-item-has-children .dropdown-menu .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

.nav-item.menu-item-has-children .dropdown-menu .nav-link:hover,
.nav-item.menu-item-has-children .dropdown-menu .nav-link:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

.nav-item.menu-item-has-children .dropdown-menu .nav-item {
  margin: 0;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 450px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  border-radius: 10px;
  z-index: 1;
} */

.blog-card-top-text {
  transition: all 1s ease-in-out;
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  user-select: none;
}

/* Remove gradient from active slide */
.blog-slider-wrapper .swiper-slide-active .blog-card::before {
  background: none;
}

.product-icon {
  color: orange;
  font-size: 30px;
  margin-bottom: 10px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
}
.odd-card {
  background-color: white;
  border-radius: var(--brand-radius);
  padding: 35px;
}
.odd-card a {
  font-size: 14px;
  border-radius: var(--brand-radius);
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap; /* Zapobiega zawijaniu tekstu */
  overflow: hidden; /* Ukrywa nadmiarowy tekst */
  text-overflow: ellipsis; /* Dodaje "..." na końcu uciętego tekstu */
  display: block; /* Upewnia się, że działa poprawnie */
  max-width: 100%;
  padding: 2px 8px;
}
.odd-card a:hover {
  background-color: var(--brand-color-hover);
}
.hero {
  height: calc(100vh - 20px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  position: relative;
  padding: 40px;
  margin: 10px;
  overflow: hidden;
  margin-bottom: 60px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 100%);
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 0;
  max-width: 50vw;
  text-align: left;
}
.hero-h1 {
  font-size: 60px;
}
.interactive-island-wrapper {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  margin: 0 8px;
  color: #fff;
}

.breadcrumb-item a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb-item.active {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.breadcrumb-item-news a,
.breadcrumb-item-news.active,
.breadcrumb-item-news + .breadcrumb-item-news::before {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.interactive-island {
  display: inline-block;
  background-color: var(--brand-color);
  border-radius: 100px;
  padding: 16px;
  min-width: 200px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.radius-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30vw;
  height: 250px;
  background-color: #f4f4f4;
  color: #000;
  padding: 20px;
  transition: all 0.5s;
  z-index: 0;
  border-radius: var(--brand-radius) 0 0 0;
  box-shadow: 5px 5px 5px #f4f4f4;
}
.card-box-hero {
  border-radius: var(--brand-radius);
  box-shadow: 2px 4px 12px #00000014;
  background-color: #fff;
  transition: all 0.5s;
  overflow: hidden;
  height: 100%;
  padding: 20px;
}
.radius-box-small {
  width: 300px;
  height: 60px;
  border-radius: var(--brand-radius) 0 0 0;
  box-shadow: 5px 5px 5px #f4f4f4;
}
.radius-box-small-h-auto {
  width: 300px;
  height: auto;
  border-radius: var(--brand-radius) 0 0 0;
  box-shadow: 5px 5px 5px #f4f4f4;
}
.h-auto {
  height: auto;
}

.radius-box-small-h-w-auto {
  width: 400px;
  height: auto;
  border-radius: var(--brand-radius) 0 0 0;
  box-shadow: 5px 5px 5px #f4f4f4;
}
.radius-box-smallx {
  width: 200px;
  height: 60px;
  border-radius: var(--brand-radius) 0 0 0;
  box-shadow: 5px 5px 5px #f4f4f4;
}

.radius-box-auto {
  width: auto;
  height: 60px;
  border-radius: var(--brand-radius) 0 0 0;
  box-shadow: 5px 5px 5px #f4f4f4;
}
.expanded {
  width: 94vw !important;
}
.radius-box p {
  font-size: 14px;
}
.radius-box::before {
  content: "";
  right: 0;
  left: initial;
  top: -30px;
  bottom: initial;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-bottom-right-radius: 30px;
  box-shadow: 8px 8px 0px 8px #f4f4f4;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #7fffd400;
  display: block;
  position: absolute;
}
.radius-box::after {
  content: "";
  left: -30px;
  bottom: 0px;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-bottom-right-radius: 30px;
  box-shadow: 8px 8px 0px 8px #f4f4f4;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #7fffd400;
  display: block;
  position: absolute;
}

/* BS RESTART */
h5 {
  font-size: 1.45rem;
}
.btn-primary {
  background-color: var(--brand-color);
  color: white;
  border-color: var(--brand-color);
}
.btn-primary:hover {
  background-color: var(--brand-color);
  color: white;
  border-color: var(--brand-color);
}
.blog-slider {
  padding: 0 0 150px 0;
}
.products-swiper {
  padding: 0 0 150px 0;
}
.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: rgb(0, 0, 0);
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  opacity: 0;
  transition: all 1s ease-in-out;
  height: auto;
  width: 650px;
  line-height: 19px;
  transform: translateY(0px);
  border-radius: 0 0 var(--brand-radius) var(--brand-radius);
}

.slide-content h3 {
  font-weight: bold;
}
.slide-content p {
  height: 100px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.slide-content a {
  color: #000;
  font-weight: bold;
}
.slide-content a:hover {
  color: var(--brand-color);
}

.blog-slider-wrapper .swiper-slide-active {
  width: 650px !important;
  transition: all 1s ease-in-out;
}

.blog-slider-wrapper .swiper-slide-active .blog-card-top-text {
  opacity: 0;
}

.blog-slider-wrapper .swiper-slide-active .slide-content {
  opacity: 1;
  width: 650px !important;
  transform: translateY(110px);
  z-index: 5;
}
.blog-slider-wrapper .swiper-slide {
  transition: all 1s ease-in-out;
  color: #fff;
}
.swiper-button-prev,
.swiper-button-next {
  background-color: var(--brand-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.box-slider {
  margin-bottom: 150px;
  margin-top: 30px;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: var(--brand-color);
  border: 1px solid #fff;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #fff;
}

/* FAQ */

.faq-wrapper {
  background: white;
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.list-group button {
  border: none;
  background: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  transition: 0.3s ease-in-out;
}

.list-group button i {
  font-size: 1.3rem;
  color: var(--brand-color);
}

.list-group-item.active i {
  color: #fff;
}

.list-group button.active {
  background-color: var(--brand-color);
  color: white;
  border-radius: var(--brand-radius);
}

.list-group button:not(.active):hover {
  background-color: rgba(255, 120, 0, 0.1);
  border-radius: var(--brand-radius);
}

.wrapper-section-acordeon {
  padding: 20px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.accordion-button {
  background: none;
  font-weight: bold;
  color: black;
  border-bottom: 1px solid #ddd;
  transition: 0.3s;
  font-size: 1.3rem;
  gap: 15px;
}
.accordion-image-container {
  border-radius: var(--brand-radius);
}
.accordion-list-wrapper {
  padding: 70px;
}
#faq-categories {
  gap: 5px;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-color);
  border-bottom: none;
}

.accordion-button::after {
  content: none;
}
.accordion-button::after {
  font-family: "Font Awesome 6 Free";
  content: "\f067"; /* Plus icon */
  background: unset !important;
  font-weight: 900;
  color: var(--brand-color);
  transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  content: "\f068"; /* Minus icon */
}
.accordion-button:not(.collapsed) {
  background: none;
}
.accordion-button:focus {
  border-color: unset;
  box-shadow: unset;
}

.accordion-body {
  font-size: 0.9rem;
  color: #444;
  padding-top: 5px;
}
.description-text-acordeon {
  margin: 0 auto;
  max-width: 60vw;
}
.title-text-acordeon {
  margin: 0 auto;
  width: 80%;
  font-size: 3rem;
}

.accordion-item {
  border: 0;
  background-color: transparent;
  border-radius: 0;
}

.foto-center-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 170px 0;
  color: #fff;
  text-align: center;
  position: relative;
  border-radius: var(--brand-radius);
  margin-bottom: 60px;
  margin-top: 60px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  box-shadow: 2px 4px 12px #00000014;
  background-color: #000;
  z-index: 0;
}

/* MEGA MENU */

.mega-menu {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 9999999;
  transform: translateY(-70px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}
.mega-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu .container {
  background: #fff;
  padding: 60px;
  min-height: 50vh;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: var(--brand-radius);
}

/* Active mega menu link highlighting */
.nav-link.mega-menu-active {
  background-color: #fff !important;
  color: var(--brand-color) !important;
}

.nav-link.mega-menu-active:hover {
  background-color: var(--brand-color) !important;
  color: #fff !important;
}

/* Overlay blur effect */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}
.mega-menu-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sticky-effect {
  position: sticky;
  top: 0;
}

.sticky-effect-100 {
  position: sticky;
  top: 100px;
}
.img-theme-news {
  border-radius: var(--brand-radius);
  margin: 10px 35px 10px auto;
}
.img-theme {
  border-radius: var(--brand-radius);
  position: sticky;
  top: 100px;
}
.btn-primary,
.btn-dark {
  border-radius: var(--brand-radius);
  min-width: 150px;
}
.text-big {
  font-size: 3rem;
}
/* HERO NEWS */
.hero-news {
  margin-top: 100px;
  position: relative;
  border-radius: var(--brand-radius) var(--brand-radius);
  padding-top: 15px;

  /* margin: 80px;
  background-color: var(--brand-color);
  margin-top: 11px;
  padding-bottom: 65px;
  padding-top: 200px;
  color: #fff;
  position: relative; */
}
.hero-news-foto-block {
  border-radius: var(--brand-radius) var(--brand-radius) 0 0;
  min-height: 50vh;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-news-foto-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: var(--brand-radius) var(--brand-radius) 0 0;
  z-index: 1;
}

.hero-news-foto-block img {
  max-height: 40vh;
  width: auto;
  position: relative;
  z-index: 2;
}
.hero-news-text-block {
  background-color: var(--brand-color);
  color: #ffffff;
  padding: 30px;
  padding-bottom: 65px;
  border-radius: 0 0 var(--brand-radius) var(--brand-radius);
  position: relative;
}
.hero-news-text-block h1 {
  font-size: 30px;
}

.form-check {
  margin-bottom: 10px;
  width: 100%;
}

/* Form Contact Styles */
.form-contact {
  background: white;
  padding: 50px;
  border-radius: var(--brand-radius);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.04);
  margin: 20px 0;
  padding-top: 70px;
}

.form-contact-photo {
  border-radius: var(--brand-radius);
}

.form-contact h2 {
  color: var(--brand-color);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-contact p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0px;
}

/* CF7 Wrapper Styles */
.cf7-wrapper input[type="text"],
.cf7-wrapper input[type="email"],
.cf7-wrapper input[type="tel"],
.cf7-wrapper input[type="url"],
.cf7-wrapper input[type="password"],
.cf7-wrapper textarea,
.cf7-wrapper select {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e1e1e1;
  border-radius: var(--brand-radius);
  font-size: 1rem;
  font-family: "Montserrat", "Uni Neue", sans-serif;
  background-color: #fff;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.cf7-wrapper input[type="text"]:focus,
.cf7-wrapper input[type="email"]:focus,
.cf7-wrapper input[type="tel"]:focus,
.cf7-wrapper input[type="url"]:focus,
.cf7-wrapper input[type="password"]:focus,
.cf7-wrapper textarea:focus,
.cf7-wrapper select:focus {
  outline: none;
  border-color: var(--brand-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.cf7-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}

.cf7-wrapper input[type="checkbox"],
.cf7-wrapper input[type="radio"] {
  width: auto;
  margin-right: 10px;
  margin-bottom: 0;
}

.cf7-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-weight: 200;
  color: #333;
  font-size: 0.7rem;
  line-height: 0.8rem;
}

.cf7-wrapper .wpcf7-submit {
  background-color: var(--brand-color);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: var(--brand-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cf7-wrapper .wpcf7-submit:hover {
  background-color: var(--brand-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cf7-wrapper .wpcf7-submit:active {
  transform: translateY(0);
}

/* Form validation styles */
.cf7-wrapper .wpcf7-not-valid {
  border-color: #dc3545 !important;
}

.cf7-wrapper .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.88rem;
  margin-top: -8px;
  min-height: 20px;
  margin-left: 15px;
}

.cf7-wrapper .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 15px 20px;
  border-radius: var(--brand-radius);
  margin-top: 20px;
  font-weight: 500;
}
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7-response-output {
  padding: 15px 20px;
  border-radius: var(--brand-radius);
}

.cf7-wrapper .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.cf7-wrapper .wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.cf7-wrapper .wpcf7-spam-blocked {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .form-contact {
    padding: 30px 20px;
  }

  .form-contact h2 {
    font-size: 1.5rem;
  }

  .cf7-wrapper input[type="text"],
  .cf7-wrapper input[type="email"],
  .cf7-wrapper input[type="tel"],
  .cf7-wrapper input[type="url"],
  .cf7-wrapper input[type="password"],
  .cf7-wrapper textarea,
  .cf7-wrapper select {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .cf7-wrapper .wpcf7-submit {
    width: 100%;
    padding: 12px 20px;
  }
}

.fade-right {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
}
.img-flags {
  width: 15px;
  height: 15px;
  margin-left: 15px;
  margin-right: 5px;
  border: 0px solid #fff;
  border-radius: 50%;
}
.fade-in {
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
}
.pictogram-small-hymon {
  width: 25px;
  height: 25px;
  margin-right: 5px;
  margin-top: -5px;
}
.pictogram-small-hymon-absolute {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.hero-page {
  margin: 10px;
  margin-top: 11px;
  padding-bottom: 65px;
  background-color: var(--brand-color);
  padding-top: 70px;
  border-radius: var(--brand-radius) var(--brand-radius);
  color: #fff;
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  overflow: unset;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-page .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-page .container {
  position: relative;
  z-index: 1;
}

.hero-page-white {
  background-color: #fff;
  color: #000;
  background-position: 85% 0px;
  background-size: 500px;
  background-repeat: no-repeat;
  padding-top: 270px;
  margin: 10px;
}

.intro-block {
  height: 80vh;
  width: 90vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--brand-radius);
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  justify-content: space-between;
  background-image: url("../img/b2c/intro-bg.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.intro-block h1 {
  font-size: 40px;
  font-weight: bold;
}
.intro-columns {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-top: 20px;
  align-items: center;
}
.row-b2b {
  display: none;
}
.intro-column {
  flex: 1;
  padding: 20px;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.intro-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.intro-column-b2c {
  text-align: right;
  background-size: cover;
  background-position: center;
  align-items: flex-end;
}
.intro-column-b2b {
  text-align: left;
  background-size: cover;
  background-position: center;
  align-items: flex-start;
}
.intro-column h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--brand-color);
}
.intro-column h1 {
  font-size: 80px;
}
.intro-column p {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
.mask-b2c {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background-color: #f79433;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}

.mask-b2b {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 100%;
  background-color: #003591;
  z-index: -1;
  transition: width 0.3s ease-in-out;
}

.initial-state .mask-b2c,
.initial-state .mask-b2b {
  display: none;
}

.logo-wrapper {
  text-align: center;
  padding: 30px;
  position: relative;
  height: 100px;
}

.logo-wrapper .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease-in-out;
}

.logo-wrapper .logo[data-b2b] {
  opacity: 0;
}

.intro-bottom-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}
.switch-wrapper {
  border-radius: 400px;
  background-color: #f79433;
  color: #fff;
  display: flex;
  gap: 10px;
  bottom: 10px;
  width: 600px;
  justify-content: space-between;
}
.switch-button-item {
  padding: 25px 50px;
}
.switch-button-item.active {
  background-color: #989898;
  color: #fff;
  border-radius: 400px;
  font-weight: bold;
}

.intro-column-content-video {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.intro-column-content-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-video {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.product-card-title {
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.product-card {
  position: relative;
  overflow: hidden;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-b2c {
  display: block;
}

.video-b2b {
  display: none;
}

[data-b2b] .video-b2c {
  display: none !important;
}

[data-b2b] .video-b2b {
  display: block !important;
}

.intro-block-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.video-b2c {
  opacity: 1;
}

.video-b2b {
  opacity: 0;
}

[data-b2b] .video-b2c {
  opacity: 0;
}

[data-b2b] .video-b2b {
  opacity: 1;
}

.overlay-b2c,
.overlay-b2b {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.overlay-b2c {
  left: 0;
  opacity: 0;
}

.overlay-b2b {
  right: 0;
  opacity: 0;
}

.intro-column-b2c:hover ~ .overlay-b2c,
.intro-column-b2c:hover ~ .overlay-b2b {
  opacity: 1;
}

.intro-column-b2b:hover ~ .overlay-b2c,
.intro-column-b2b:hover ~ .overlay-b2b {
  opacity: 1;
}
.wp-block-heading {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
  font-size: 2rem !important;
}
h1.wp-block-heading {
  font-size: 3rem !important;
}
h2.wp-block-heading {
  font-size: 2rem !important;
}
h3.wp-block-heading {
  font-size: 1.5rem !important;
}
.menu-item a {
  color: #fff;
}
.menu-item a:hover {
  color: #fff;
}
.list-unstyled-padding {
  padding-left: 0px;
  padding-right: 0px;
}
/* Bootstrap container responsive widths */
.wp-block-heading,
.wp-block-list,
.wp-theme-hymon-theme > p {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}
.progress {
  border-radius: 100px;
}

.documents-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.document-category {
  margin-bottom: 7rem;
  padding: 20px;
  margin-bottom: 3rem;
}

.category-title {
  color: #333;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  font-size: 3rem;
  font-weight: 600;
  border-bottom: 2px solid #eee;
  padding: 20px;
}

.document-title {
  color: #333;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  border-bottom: 2px solid #eee;
  padding: 20px;
}

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

.document-item {
  margin-bottom: 1rem;
}

.document-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--brand-radius);
  box-shadow: 2px 4px 12px #00000014;
  background-color: #fff;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.document-link:hover {
  color: #0066cc;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.document-link.disabled {
  color: #999;
  cursor: not-allowed;
  background: #f5f5f5;
}

.document-link .btn {
  margin-left: auto;
}

.document-link-text {
  font-size: 1.2rem;
  font-weight: 100;
  color: #333;
  margin-left: 25px;
}

.fa-file-pdf {
  color: #ff0000;
}

.fa-file-word {
  color: #2b579a;
}

.fa-file-excel {
  color: #217346;
}

@media (min-width: 576px) {
  .wp-block-heading,
  .wp-block-list,
  .wp-theme-hymon-theme > p {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .wp-block-heading,
  .wp-block-list,
  .wp-theme-hymon-theme > p {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .wp-block-heading,
  .wp-block-list,
  .wp-theme-hymon-theme > p {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .wp-block-heading,
  .wp-block-list,
  .wp-theme-hymon-theme > p {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .wp-block-heading,
  .wp-block-list,
  .wp-theme-hymon-theme > p {
    max-width: 1320px;
  }
}

/* RESPONSIVE */

@media (max-width: 768px) {
  /* Theme color for mobile browser top bar */
  :root {
    --theme-color: var(--brand-color);
  }

  /* Safari and iOS specific theme color */
  @supports (-webkit-touch-callout: none) {
    :root {
      --theme-color: var(--brand-color);
    }
  }

  .fixed-switch,
  .fixed-switch-left,
  .fixed-switch-right {
    display: none !important;
  }
  .breadcrumb {
    overflow: scroll;
  }
  .hero-h1 {
    font-size: 32px;
  }
  .hero-content {
    position: absolute;
    top: 0px;
    left: 18px;
    z-index: 0;
    max-width: 84vw;
    text-align: left;
  }

  .nav-link {
    padding-left: 10px;
  }

  .radius-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    background-color: #f4f4f4;
    color: #000;
    padding: 20px;
    transition: all 0.5s;
    z-index: 9;
    min-width: 60px;
    min-height: 60px;
  }
  .radius-box p {
    font-size: 12px;
  }
  .hero-page {
    padding-bottom: 100px;
    padding-top: 20px;
  }
  .text-big {
    font-size: 24px;
  }
  .wp-block-heading {
    padding-left: 10px;
    padding-right: 10px;
  }
  .title-text-acordeon {
    font-size: 24px;
  }
  .description-text-acordeon {
    font-size: 16px;
  }
  .accordion-button {
    font-size: 16px;
  }
  .accordion-list-wrapper {
    padding: 10px;
  }
  .faq-wrapper {
    padding: 10px;
  }
  .faq-wrapper .list-group button {
    padding: 10px 10px;
  }
  h1.wp-block-heading {
    font-size: 24px !important;
  }
  h2.wp-block-heading {
    font-size: 20px !important;
  }
  h3.wp-block-heading {
    font-size: 16px !important;
  }
  .nav-style {
    padding: 10px 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .flag-box {
    display: none;
  }
  .navbar-toggler {
    border: 0;
  }
  .navbar {
    margin-top: 0px;
  }
  .mega-menu .container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 30px;
  }
  .img-theme {
    position: relative;
    top: 0;
  }
  .fixed-top {
    max-width: 100vw;
  }
  .lightbox-link {
    margin-bottom: 20px;
  }
  .box-social-media {
    display: none;
  }
  .mega-menu {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-width: calc(100vw - 20px);
  }
  .text-box-foto-text {
    padding-right: 0;
  }
  .wp-block-heading,
  .wp-block-list,
  .wp-theme-hymon-theme > p {
    padding-right: 10px;
    padding-left: 10px;
  }
  .menu-footer-box {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-footer-box ul {
    list-style: none;
  }
  .logo-footer-box {
    text-align: center;
    display: block;
  }
  .tag-bar-menu-box {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    padding: 25px;
  }
  .product-card {
    margin: 20px;
  }
  .sidebar {
    margin-bottom: 30px;
  }
  .hero-news-text-block {
    padding-bottom: 100px;
  }
  .hero-news {
    margin-top: 30px;
  }
  .interactive-island-wrapper {
    z-index: 10;
  }
  .hero-news-foto-block {
    min-height: auto;
  }
  .blog-card-imgbox {
    min-height: 350px;
  }
  .radius-box-small-h-w-auto {
    width: 80vw;
  }
  .hero-video-wrapper {
    height: 340px;
    width: 100%;
  }
  .hero-page {
    padding-top: 80px;
  }
  .hero-page-product {
    padding-top: 140px;
  }
  .documents-container {
    padding: 10px;
  }
  .document-category {
    padding: 0;
  }
  .document-link-text {
    margin-left: 0;
  }
  .document-link {
    padding: 10px;
  }
  .document-title {
    font-size: 2rem;
  }
  .document-link-text {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  .switch-container {
    display: none;
  }
  .nav-style {
    justify-content: space-around !important;
  }
  .separator-h {
    display: none;
  }
  .progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
  #wpadminbar {
    display: none;
  }
  .blog-card-top-text {
    display: none;
  }
  .swiper-button-prev,
  .swiper-button-next {
    margin-top: -100px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-65%, -50%) rotate(45deg);
  border-radius: 0;
}

.swiper-button-prev::after {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.button-tts-small {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #fff;
  background-color: var(--brand-color) !important;
  padding: 10px;
  border-radius: var(--brand-radius);
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  font-weight: 500;
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* FOOTER HIGH Z-INDEX */
footer {
  position: relative;
  z-index: 100000;
}

/* VIDEO PLAY OVERLAYS FOR MOBILE */
.video-play-overlay,
.product-video-play-overlay {
  transition: opacity 0.3s ease;
}

.video-play-overlay:hover,
.product-video-play-overlay:hover {
  opacity: 0.8;
}

/* Mobile-specific video overlay styles */
@media (max-width: 768px) {
  /* Ensure video containers are properly positioned for overlays */
  .hero-video-wrapper,
  .product-card {
    position: relative;
  }

  .video-play-overlay {
    font-size: 36px !important;
  }

  .product-video-play-overlay {
    font-size: 20px !important;
  }

  /* Ensure videos are properly sized on mobile */
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-card-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  .open-panel .box-news {
    height: 166px;
    min-height: 166px;
  }
}

/* Efekt zoom + rozjaśnienie */
.white-box-2:hover {
  transform: scale(1.03);
  filter: brightness(1.2);
}

/* Rozjaśnienie nakładki po najechaniu */
.white-box-2:hover .overlay {
  background: rgba(0, 0, 0, 0.2);
}

/* Contact Form 7 Checkbox Layout */
.wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.wpcf7-list-item input[type="checkbox"] {
  flex-shrink: 0;
  margin: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.wpcf7-list-item-label {
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .wpcf7-list-item {
    gap: 8px;
  }

  .wpcf7-list-item-label {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

/* Flexbox dla wiersza checkboxa Contact Form 7 */
.cf7-checkbox-row label,
.wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}

/* Checkbox w osobnej kolumnie */
.cf7-checkbox-row input[type="checkbox"],
.wpcf7-list-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  margin-top: 2px;
}

/* Tekst zgody w drugiej kolumnie */
.cf7-checkbox-row .wpcf7-list-item-label,
.wpcf7-list-item-label {
  flex: 1;
  min-width: 0;
  font-size: 1.05em;
  line-height: 1.5;
  color: #222;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

/* Mniejsza czcionka dla akceptacji polityki prywatności */
.cf7-consent1 .wpcf7-acceptance label {
  font-size: 0.95em;
  color: #555;
}

/* Ujednolicenie stylu wszystkich zgód w formularzu */
.cf7-checkbox-row .wpcf7-list-item-label,
.cf7-consent1 .wpcf7-list-item-label,
.wpcf7-list-item-label {
  font-size: 0.7em;
  line-height: 1.5;
  color: #222;
  font-family: inherit;
  font-weight: 400;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

.content-section ol,
.content-section ul {
  margin-left: 20px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-item {
    margin-left: 0px;
    margin-right: 0px;
  }
}
