/* ========================================

   Reset style START

   ======================================== */

ul > li {
  list-style: none;
}

.wpcf7-turnstile,
.cf-turnstile {
  display: none;
}

/**/

/* ========================================

   Reset style END

   ======================================== */

/* ========================================

   Sticky Header START

   ======================================== */

#head-main {
  position: relative;

  z-index: 99;

  width: 100%;
}

#head-main.sticky-active {
  position: fixed;

  top: 0;

  left: 0;

  transform: translateY(-100%);

  animation: slideDown 0.4s ease-out forwards;

  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#head-main.sticky-active .head-top {
  display: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);

    opacity: 0;
  }

  to {
    transform: translateY(0);

    opacity: 1;
  }
}

/* ========================================

   Sticky Header END

   ======================================== */

/* ========================================

   Back to Top Button START

   ======================================== */

#topBtn {
  position: fixed;

  bottom: 1em;

  right: -4em;

  opacity: 0;

  transition: 0.3s;

  cursor: pointer;

  z-index: 98;
}

#topBtn.visible {
  right: 1em;

  opacity: 1;
}

#topBtn {
  display: block;

  width: 32px;

  height: 32px;

  border-radius: 5px;

  background: #109adc;

  color: #fff;

  outline: none;

  position: fixed;

  bottom: 70px;

  right: -4em;

  z-index: 1;

  z-index: 999999;

  padding: 0;

  cursor: pointer;

  -webkit-transition: 0.2s;

  transition: 0.2s;
}

#topBtn:hover {
  background-color: #109adc;
}

.map {
  max-height: 400px;

  margin: 2em 0 4em 0;

  filter: grayscale(100%);
}

/* ========================================

   Back to Top Button END

   ======================================== */

/* ========================================

   Top header START

   ======================================== */

.head-top {
  /* padding: 12px 0; */
}

.head-top .site-max80 {
  display: flex;

  align-items: center;
}

.head-top .site50 {
  width: 50%;
}

.head-top a {
  font-weight: 600;
}

/* ========================================

   Top header END

   ======================================== */

/* ========================================

   Social header START

   ======================================== */

.cyber-header-social {
  display: flex;

  justify-content: end;

  align-items: center;

  gap: 16px;
}

/* ========================================

   Social header END

   ======================================== */

/* ========================================

   Tel i email top header START

   ======================================== */

.cyber-header-contact {
  display: flex;

  align-items: center;

  gap: 16px;
}

.cyber-header-contact-item {
  display: inline-flex;

  align-items: center;

  gap: 16px;

  text-decoration: none;
}

.cyber-header-contact-icon {
  display: inline-block;

  width: 20px;

  height: 20px;

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;

  flex-shrink: 0;
}

.cyber-icon-phone {
  background-image: url("/wp-content/themes/cyberframework/images/contact/phone.png");

  background-repeat: no-repeat;
}

.cyber-icon-email {
  background-image: url("/wp-content/themes/cyberframework/images/contact/email.png");

  background-repeat: no-repeat;
}

.cyber-icon-adres {
  background-image: url("/wp-content/themes/cyberframework/images/contact/mark.png");

  background-repeat: no-repeat;
}

/* ========================================

   Tel i email top header END

   ======================================== */

/* ========================================

   Mobile header START

   ======================================== */

.mobile-top {
  display: flex;
}

.mobile-top .mobile-right {
  display: flex;

  align-items: center;

  justify-content: end;
}

/* ========================================

   Mobile header END

   ======================================== */

/* ========================================

   Dropdown Arrows

   ======================================== */

.menu-dropdown {
  display: inline-block;

  margin-left: 6px;

  font-size: 0.7em;

  transition: transform 0.3s;
}

/* Obrót strzałki gdy submenu otwarte (mobile) */

.submenu-open > a > .menu-dropdown {
  transform: rotate(180deg);
}

/* ========================================

   Mobile Menu Toggle

   ======================================== */

#menu-glowne {
  display: none;
}

#menu-glowne.menu-open {
  display: block;
}

/* ========================================

   Mobile Submenu Animation

   ======================================== */

.mobile-main-menu .sub-menu {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.3s ease-out;
}

.mobile-main-menu .submenu-open > .sub-menu {
  max-height: none;
}

/* ========================================

   Desktop Dropdown (hover)

   ======================================== */

.cyber-desktop-main-menu .menu-item-has-children:hover > a > .menu-dropdown {
  transform: rotate(180deg);
}

/* ========================================

   CTA menu START

   ======================================== */

.cyber-cta-menu {
  display: flex;

  justify-content: end;

  align-items: center;

  gap: 12px;

  width: 270px;
}

/* ========================================

   CTA menu END

   ======================================== */

/* ========================================

   Lang switcher START

   ======================================== */

/* .cyber-lang-switcher {
  display: inline-flex;

  gap: 4px;
}

.cyber-lang-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 6px 12px;

  border-radius: 6px;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  color: #fff;

  background-color: transparent;

  transition: background-color 0.2s;
}

.cyber-lang-btn--active {
  background-color: #262626;

  color: #fff;
}

.cyber-lang-btn:not(.cyber-lang-btn--active):hover {
  background-color: rgba(0, 0, 0, 0.1);
} */

.cyber-lang-switcher {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  transform: translateY(25%);
}

.cyber-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: transparent;
  transition:
    background-color 0.2s,
    opacity 0.2s,
    transform 0.2s;
}

.cyber-lang-btn--active {
  background-color: #262626;
  color: #fff;
}

/* Nieaktywny język – domyślnie ukryty */
.cyber-lang-btn:not(.cyber-lang-btn--active) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  border: 2px solid #262626;
  color: #262626;
}

/* Hover na całym switcherze – pokaż drugi język */
.cyber-lang-switcher:hover .cyber-lang-btn:not(.cyber-lang-btn--active) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ========================================

   Lang switcher END

   ======================================== */

/* ========================================

   *woo menu header START

   ======================================== */

.cyber-woo-account,
.cyber-woo-cart {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;
}

.cyber-woo-account-icon,
.cyber-woo-cart-icon {
  display: inline-block;

  width: 26px;

  height: 26px;

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;

  margin-left: 16px;
}

.cyber-woo-account-icon {
  background-image: url("/wp-content/themes/cyberframework/images/woo/user.png");
}

.cyber-woo-cart-icon {
  background-image: url("/wp-content/themes/cyberframework/images/woo/cart.png");
}

/* Badge z licznikiem */

.cyber-woo-cart-count {
  position: absolute;

  top: -6px;

  right: -8px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 18px;

  height: 18px;

  border-radius: 50%;

  font-size: 11px;

  font-weight: 600;

  padding: 0 4px;
}

/* ========================================

   *woo menu header END

   ======================================== */

/*search start*/

.cyber-search-form {
  display: flex;

  align-items: center;

  height: 36px;

  border: 1px solid #d0d0d0;

  border-radius: 6px;

  overflow: hidden;

  background: #fff;
}

.cyber-search-input {
  flex: 1;

  width: 100%;

  padding: 0 6px;

  border: none;

  outline: none;

  font-size: 14px;

  background: transparent;

  /* color: #333; */
}

.cyber-search-input::placeholder {
  /* color: #aaa; */
}

.cyber-search-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  border: none;

  background: transparent;

  cursor: pointer;

  font-size: 16px;

  transition: opacity 0.2s;
}

.cyber-search-btn:hover {
  opacity: 0.6;
}

/*search end*/

/*footer*/

.foot-top .site-max80 {
  display: flex;

  flex-wrap: wrap;
}

.foot-top {
  padding: 32px 0;
}

.foot-top .foot-top-grid {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr 1fr;

  gap: 16px;
}

.foot-top .foot-title {
  display: block;

  margin-bottom: 12px;

  font-weight: 700;
}

.foot-column_1 {
  padding-right: 200px;
}

.foot-column_4 {
  display: flex !important;

  align-items: end;
}

.cyber-incentives-footer-imgs {
  display: flex;

  align-items: center;

  justify-content: end;

  gap: 16px;

  flex-wrap: wrap;

  width: 100%;
}

/*footer end*/

/*foot column start*/

.foot-column_1 {
}

.foot-column_2 {
}

.foot-column_3 {
}

.foot-column_4 {
}

/*foot column end*/

/*copy new*/

.foot-dn {
  background: rgba(215, 235, 255, 1);
}

.foot-dn .foot-dn-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  border-top: 1px solid #635d6fa6;
}

.foot-copyright p {
  margin: 0;
}

.foot-copyright {
  padding: 6px 0;
}

/*copy new end*/

/*style social nowe*/

/* wrapper */

.cyber-social-icons {
  display: flex;

  align-items: center;

  gap: 16px;

  flex-wrap: wrap;
}

/* pojedynczy link: tekst + ikona obok siebie */

.cyber-social-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  text-decoration: none;

  font-size: 14px;
}

.cyber-social-link:hover {
  opacity: 0.75;
}

/* etykieta tekstowa */

.cyber-social-label {
  font-size: 14px;
}

/* ikona */

.cyber-social-icon {
  display: inline-block;

  width: 28px;

  height: 28px;

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;
}

.cyber-icon-fb {
  background-image: url("/wp-content/themes/cyberframework/images/social/fb.png");
}

.cyber-icon-inst {
  background-image: url("/wp-content/themes/cyberframework/images/social/ig.png");
}

.cyber-icon-tw {
  background-image: url("/wp-content/themes/cyberframework/images/social/fb.png");
}

.cyber-icon-linked {
  background-image: url("/wp-content/themes/cyberframework/images/social/linkedin.png");
}

.cyber-icon-yt {
  background-image: url("/wp-content/themes/cyberframework/images/social/fb.png");
}

.cyber-icon-tt {
  background-image: url("/wp-content/themes/cyberframework/images/social/tiktok.png");
}

/*style social nowe end*/

/*kontakt elementy start*/

.cyber-contact {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.cyber-contact-item {
  display: flex;

  align-items: center;

  gap: 12px;
}

.cyber-contact-icon {
  display: inline-block;

  width: 24px;

  height: 24px;

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;

  flex-shrink: 0;
}

/*kontakt elementy end*/

/*copy link start*/

.copy p {
  font-size: 14px !important;
}

.cyber-policy-links {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 16px;

  margin: 16px 0;
}

.cyber-policy-link {
  text-decoration: none;

  border-right: 1px solid #ddd;

  color: #374151;

  font-size: 14px;
}

.cyber-policy-link:first-child {
  padding-left: 0;
}

.cyber-policy-link:not(:last-child) {
  padding-right: 16px;
}

.cyber-policy-link:last-child {
  border-right: none;
}

/*copy link end*/

/* ========================================

   Blog Archive — Item START

   ======================================== */

.blog-item {
  padding: 24px 0;

  border-bottom: 1px solid #e0e0e0;
}

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

.blog-item-meta {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 8px;
}

.blog-item-date {
  display: inline-block;

  padding: 6px 12px;
}

.blog-item-title {
  padding: 6px 0;
}

.blog-item-title a {
  text-decoration: none;
}

.blog-item-excerpt {
  padding: 6px 0;
}

.blog-item-more {
  display: inline-block;

  margin-top: 8px;

  text-decoration: none;

  font-weight: 600;
}

/* ========================================

   Blog Archive — Item END

   ======================================== */

/* ========================================

   Sidebar — Recent Posts START

   ======================================== */

.sidebar-recent-item {
  display: flex;

  gap: 12px;

  padding: 12px 0;

  border-bottom: 1px solid #e0e0e0;

  text-decoration: none;
}

.sidebar-recent-item:last-child {
  border-bottom: none;
}

.sidebar-recent-thumb {
  flex-shrink: 0;

  width: 100px;

  height: 75px;

  overflow: hidden;
}

.sidebar-recent-thumb img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.sidebar-recent-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 4px;
}

.sidebar-recent-title {
  padding: 0;
}

/* ========================================

   Sidebar — Recent Posts END

   ======================================== */

/* ========================================

   Media new START

   ======================================== */

@media all and (max-width: 1280px) {
}

@media all and (max-width: 1080px) {
  /* ========================================

   Sidebar — Recent Posts START

   ======================================== */

  .sidebar-recent-item {
    gap: 10px;
  }

  .sidebar-recent-thumb {
    width: 80px;

    height: 60px;
  }

  /* ========================================

   Sidebar — Recent Posts END

   ======================================== */

  /*footer start*/

  .foot-top .foot-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  /*footer end*/
}

@media all and (max-width: 980px) {
}

@media all and (max-width: 760px) {
  /*footer start*/

  .foot-top .foot-top-grid {
    grid-template-columns: 1fr;
  }

  /*footer end*/
}

@media all and (max-width: 550px) {
  /*copyright start*/

  .foot-dn .foot-dn-grid {
    grid-template-columns: 1fr;
  }

  /*copyright end*/
}

@media all and (max-width: 428px) {
}

/* ========================================

   Media new END

   ======================================== */
