/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. ROOT VARIABLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  --color-header-background: transparent !important;
  --color-background: transparent !important;
  --color-body-background: transparent !important;
  --color-page-background: transparent !important;
  --color-content-background: transparent !important;
  --color-background-1: transparent !important;
  --color-background-2: transparent !important;
  --color-background-3: transparent !important;
  --color-section-background: transparent !important;
  --color-body: transparent !important;
  --color-main-background: transparent !important;
  --color-base-background: transparent !important;
  --colors-surface-white: transparent !important;
  --template-font: "Inter", sans-serif;
  --template-headings-font: "Montserrat", sans-serif;
  --color-mag: #FF0050;
  --color-cya: #00F2EA;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. BASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

body {
  background-image: url(/user/frontend_backgrounds/pozadi__-strendem-2-2.jpg) !important;
  background-attachment: fixed !important;
  background-repeat: repeat !important;
  background-size: cover;
  background-position: center;
  max-width: 1640px;
  margin: 0 auto;
}

.overall-wrapper {
  overflow-x: hidden;
}

.in-kurzy-a-mentoring .index-content-wrapper {
  padding-left: 25px;
  padding-right: 25px;
}

.btn, a.btn { text-transform: none; }

.h1, .h2, .h3, .h4, .h5, .h6,
body, h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #ffffff;
}

h1 {
  font-weight: 600;
  font-style: italic;
  margin: 30px 0;
}

p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.listingControls {
  color: #fff;
}

/* Entrance protection */
.entrance-protection-wrapper {
  background: transparent;
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entrance-protection-wrapper .entrance-protection {
  width: 100%;
  max-width: 480px;
  padding: 20px;
}

.entrance-protection-wrapper .entrance-protection-inner {
  background: rgba(10, 10, 16, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 40px 40px;
}

.entrance-protection-wrapper .site-name {
  margin-bottom: 30px;
}

.entrance-protection-wrapper .site-name img {
  max-width: 200px;
  height: auto;
}

.entrance-protection-wrapper h1 {
  font-family: var(--template-headings-font);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  color: #fff;
  margin: 0 0 8px;
}

.entrance-protection-wrapper h1::after {
  content: "Probíhá redesign e-shopu. Brzy budeme v novém kabátu!";
  display: block;
  font-family: var(--template-font);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.entrance-protection-wrapper .box {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
}

.entrance-protection-wrapper .form-group {
  margin-bottom: 16px;
}

.entrance-protection-wrapper .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  padding: 14px 18px;
  font-family: var(--template-font);
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.entrance-protection-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.entrance-protection-wrapper .form-control:focus {
  outline: none;
  border-color: var(--color-cya);
  box-shadow: 0 0 0 3px rgba(0, 242, 234, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.entrance-protection-wrapper .submit-wrapper {
  margin-top: 24px;
}

.entrance-protection-wrapper .submit-wrapper .btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: #fff;
  padding: 16px 42px;
  border-radius: 16px;
  border: 1px solid var(--color-cya);
  font-family: var(--template-headings-font);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.25s ease-in-out, background-color 0.28s ease-in-out;
}

.entrance-protection-wrapper .submit-wrapper .btn:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0.7) 0%,
    rgba(13, 234, 227, 0) 100%
  );
  opacity: 1;
  transition: opacity 0.28s ease-in-out;
}

.entrance-protection-wrapper .submit-wrapper .btn:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0) 0%,
    rgba(13, 234, 227, 1) 100%
  );
  opacity: 0;
  transition: opacity 0.28s ease-in-out;
}

.entrance-protection-wrapper .submit-wrapper .btn:hover {
  color: #fff;
  background-color: rgba(13, 234, 227, 0.5);
}

.entrance-protection-wrapper .submit-wrapper .btn:hover:before {
  opacity: 0;
}

.entrance-protection-wrapper .submit-wrapper .btn:hover:after {
  opacity: 0;
}

/* Entrance protection responsive → moved to MEDIA QUERIES section */

/* Hidden elements */
.breadcrumbs,
.p-variants-block,
.p-basic-info-block,
.p-param-block,
.type-product .extra_desc,
.navigation-buttons a[data-target=search] {
  display: none;
}

/* Links */
a:not([class]) {
  color: var(--color-cya);
  font-weight: 600;
}

a.glossary {
  color: var(--color-cya);
  font-weight: 600;
}

a.glossary:hover {
  color: var(--color-mag);
  text-decoration: underline;
}

/* Fade-in animation */
@keyframes fadeIn {
  0% { opacity: 0; }
  30% { opacity: 0; }
  100% { opacity: 1; }
}

#content {
  animation: 0.5s fadeIn;
}

.p .name {
    color: #ffffff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. TRANSPARENT BACKGROUND OVERRIDES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Header & navigation */
#header,
#header .container,
.header,
.header-navigation,
.navigation-wrapper,
.navigation-in,
#navigation {
  background-color: transparent !important;
  background: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  margin: 0;
}

.menu-helper,
.hamburgerMenu {
  background: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.menu-helper > ul {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: none !important;
  border-radius: 16px;
}

.color-header-background,
.content-wrapper-in,
.header-background-light {
  background-color: transparent !important;
  background: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

:where(body.ums_a11y_login--on) .top-nav-button-login {
  background-color: transparent !important;
  background: none !important;
}

/* Content areas */
.content-wrapper,
#content-wrapper,
.content-wide,
.content-inner,
#content,
.wide,
main.content {
  background-color: transparent !important;
  background: none !important;
}

.type-post .content-wrapper {
  background-color: transparent !important;
}

.type-post {
  background: transparent;
}

.bg_gray,
.bg_gray:after {
  background-color: transparent !important;
  background: none !important;
}

.news-item-detail,
.news-item-detail .text {
  background-color: transparent !important;
  background: none !important;
}

/* Generic layout elements */
#page,
main,
#main-content,
.page-content,
.main-content,
#content,
.overall-wrapper,
.container,
.container-fluid,
.row,
section {
  background-color: transparent !important;
  background-image: none !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. NAVIGATION ICONS & BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.navigation-buttons a[data-target="cart"]::before,
.navigation-buttons a[data-target="login"]::before,
.navigation-buttons a[data-target="search"]::before,
.navigation-buttons a[data-target="navigation"]::before,
.navigation-close::before {
  content: "";
  width: 38px;
  height: 38px;
  -webkit-mask-image: url("icons/sTrendem_icons_cart_white.svg");
  mask-image: url("icons/sTrendem_icons_cart_white.svg");
}

.navigation-buttons a[data-target="search"]::before {
  -webkit-mask-image: url("icons/sTrendem_icons_search_white.svg");
  mask-image: url("icons/sTrendem_icons_search_white.svg");
}

.navigation-buttons a[data-target="login"]::before {
  -webkit-mask-image: url("icons/sTrendem_icons_login_white.svg");
  mask-image: url("icons/sTrendem_icons_login_white.svg");
}

.navigation-buttons a[data-target="navigation"]::before {
  -webkit-mask-image: url("icons/sTrendem_icons_menu_white.svg");
  mask-image: url("icons/sTrendem_icons_menu_white.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #ffffff !important;
}

.navigation-buttons a[data-target="navigation"] {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-right: 5px;
  padding: 5px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

a.toggle-window[data-target="navigation"] {
  display: none;
}

@media (max-width: 991.9px) {
  a.toggle-window[data-target="navigation"] {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-right: 5px;
    padding: 5px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
  }
}

a.toggle-window[data-target="navigation"]::before {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  -webkit-mask-image: url("icons/sTrendem_icons_menu_white.svg");
  mask-image: url("icons/sTrendem_icons_menu_white.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #ffffff;
}


.navigation-window-visible a.toggle-window[data-target="navigation"]::before {
  -webkit-mask-image: url("icons/sTrendem_icons_menu_close.svg");
  mask-image: url("icons/sTrendem_icons_menu_close.svg");
}

.navigation-window-visible a[data-target="navigation"]::before,
.navigation-close::before {
  -webkit-mask-image: url("icons/sTrendem_icons_menu_close.svg");
  mask-image: url("icons/sTrendem_icons_menu_close.svg");
}


@media (max-width: 479px) {
    .navigation-close {
        display: block;
        position: fixed;
        right: 0px;
        top: 0px;
        scale: initial;
        z-index: 1000;
    }

        .navigation-close .before {
        position: fixed;
        right: 0px;
        top: 0px;
        scale: initial;
        z-index: 1000;
    }
}

/* Close button – same size & background as hamburger, only on mobile */
@media (max-width: 991.9px) {
  .navigation-close {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-top: 5px;
    margin-right: 5px;
  }

  .navigation-close::before {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
}

/* Default background for all nav buttons (more specific overrides above) */
.navigation-buttons a::before,
.navigation-close::before {
  background: transparent;
}

/* Close button always white */
.navigation-close::before {
  background: #fff;
}

.navigation-buttons a:hover::before,
.navigation-close:hover::before {
  background: var(--color-mag);
}

.navigation-buttons > a[data-target="cart"] i {
  background-color: var(--color-mag);
  color: var(--_color-header-contrast-text);
}

.menu-level-1 > li > a {
  color: #fff !important;
}

.top-nav-button.top-nav-button-login {
  display: none !important;
}

.toggle-window.cart-count {
  display: none !important;
}

.goToTop {
  display: none !important;
}

.responsive-nav {
  display: none;
}

.navigation-buttons > a.login-link {
  display: none;
}

.navigation-buttons a.header_btn,
.header_btn {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  line-height: 40px;
  color: #ffffffff;
  width: auto !important;
  height: 40px;
  isolation: isolate;
  background: #000000ff;
  border: solid 2px #00F2EA;
  border-radius: 12px;
  padding: 0px 20px;
  align-self: center;
}

.navigation-buttons a.header_btn:hover,
.header_btn:hover {
  background: var(--color-mag);
  border-color: var(--color-mag);
}

/* Checkout & form hiding */
.navigationActions,
label[for="another-shipping"],
input#another-shipping,
label[for="set-registration"],
input#set-registration {
  display: none !important;
}

.co-box-additional .form-group {
  margin-bottom: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. CAROUSEL & BANNERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.desktop .carousel-inner > .item > a > img,
.desktop .carousel-inner > .item > img {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}

.mobile .carousel-inner > .item > a > img,
.mobile .carousel-inner > .item > img {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.site-msg.information {
  max-width: 100%;
  background: transparent;
  color: #fff;
  box-shadow: none;
  position: unset;
  opacity: 1;
  height: 48px;
  text-align: center;
  font-size: 16px;
  display: flex;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  align-items: center;
}

.next-to-carousel-banners .banner-wrapper {
  max-width: 280px;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 !important;
}

.next-to-carousel-banners {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.row.banners-row .wide-carousel .carousel-inner > .item.active > a.extended-empty {
  display: block !important;
  position: relative !important;
  border-radius: 50px !important;
  overflow: hidden !important;
}

.row.banners-row .wide-carousel .carousel-inner > .item.active > a.extended-empty > img {
  display: block;
  width: 100%;
  border-radius: inherit;
}

.row.banners-row .wide-carousel .carousel-inner > .item.active > a.extended-empty > .extended-banner-texts {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
}

.row.banners-row .wide-carousel .carousel-inner > .item.active > a.extended-empty > .extended-banner-texts::before {
  content: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. SWIPER — GENERAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.swiper-container {
  margin-bottom: 50px;
  width: auto;
  max-width: 900px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  height: 100%;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 0.3s all;
  box-shadow: 0 0 20px #00000036;
  border-radius: 25px;
}

.swiper-slide img {
  border-radius: 25px;
}

/* Hide slides not in the visible window */
.swiper-slide:not(.swiper-slide-fully-visible) {
  opacity: 0 !important;
}

.swiper-slide-prev,
.swiper-slide-next {
  opacity: 1;
}

.swiper-slide-active {
  transition: 0.3s all;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -30px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background: #000;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.browse-p .p-next,
.browse-p .p-prev {
  background-color: transparent;
  height: 50px;
  width: 50px;
  line-height: 50px;
}

.browse-p .p-next:hover,
.browse-p .p-prev:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-cya);
  color: #000;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #000;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. SWIPER FLAT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.swiper-containerflat {
  width: calc(100vw + 200px);
  left: 50%;
  position: relative;
  margin-left: calc((-100vw - 200px) / 2);
}

.swiper-containerflat .swiper-slide:not(.swiper-slide-fully-visible).swiper-slide-next,
.swiper-containerflat .swiper-slide-next + .swiper-slide:not(.swiper-slide-fully-visible) {
  opacity: 1 !important;
}

.swiper-containerflat .swiper-slide:not(.swiper-slide-fully-visible) {
  opacity: 0.3 !important;
}

.swiper-containerflat .swiper-button-prev {
  left: 50%;
  margin-left: calc(-75vw / 2);
}

.swiper-containerflat .swiper-button-next {
  right: 50%;
  margin-right: calc(-75vw / 2);
}

.swiper-containerflat .swiper-slide img {
  border-radius: 25px;
}

.swiper-containerflat .swiper-slide a {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.swiper_flat_desc {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-align: left;
  color: #fff;
}

.swiper_flat_desc p {
  font-size: 20px;
  font-weight: 600;
}

.swiper_flat_desc p span {
  font-weight: 300;
}

.swiper_flat_desc h4 {
  margin: auto 0 0;
  font-size: 20px;
  color: #fff;
  max-width: 80%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. SWIPER BLOG
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.swiper-containerblog {
  position: relative;
}

.swiper-containerblog .swiper-slide {
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.swiper-containerblog .news-item .image {
  width: 100%;
  margin: 0;
  border-radius: 25px;
  overflow: hidden;
}

/* Merged from two separate rules */
.swiper-containerblog .news-item .text {
  padding: 20px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: unset;
}

.swiper-containerblog .news-item .text .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  width: 100%;
  color: var(--color-primary);
  text-align: left;
}

.swiper-containerblog .news-item .text .description {
  display: none;
}

.swiper-containerblog + .wide_btn_wrapper {
  margin-bottom: 50px;
}

.blog-hp .swiper-slide:not(.swiper-slide-fully-visible).swiper-slide-active,
.blog-hp .swiper-slide:not(.swiper-slide-fully-visible).swiper-slide-next {
  opacity: 1 !important;
}

.blog_heading {
  font-size: 32px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 50px auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. LAYOUT BLOCKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.kn_wrapper {
  position: relative;
  padding: 50px 0;
  isolation: isolate;
}

.in-pripadove-studie .kn_wrapper,
.in-blog .kn_wrapper {
  max-width: 1378px;
  width: calc(100% - 50px);
  margin: 0 auto;
}

.kn_wrapper:after {
  content: "";
  display: block;
  width: 300%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  z-index: -1;
}

.kn_wrapper > h1,
.kn_wrapper > h2,
.kn_wrapper > h3,
.kn_wrapper > h4 {
  width: 100%;
  margin-top: 0;
  margin-bottom: 50px;
  text-align: center;
}

/* Merged from two separate locations */
.kn_wrapper > p {
  text-align: left;
  color: #bebebe;
  max-width: 100%;
  margin-left: 0;
  margin-bottom: 50px;
}

.kn_wrapper h2 {
  font-size: 36px;
  text-align: left;
  font-weight: 600;
}

.wide_btn_wrapper {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 0px;
  text-align: center;
  min-height: 57px;
  padding-top: 20px;
}

.kn_flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Fix for Safari width */
.kn_flexbox:before,
.kn_flexbox:after {
  width: 100%;
}

.children2 > div,
.children13 > div {
  align-self: center;
}

.children2 > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.children2 p {
  font-size: 16px;
  line-height: 26px;
}

.children2 h3,
.children13 h3 {
  margin-top: 0;
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
}

.children13 iframe {
  border-radius: 25px;
}

.kn_flexbox.children3 {
  justify-content: center;
}

.kn_flexbox.children3 > div {
  flex-shrink: 0;
  width: auto;
}

.children3 > div {
  padding: 0px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.children3 > div > div {
  display: flex;
  flex-direction: column;
}

/* Heading underline decoration */
.kn_wrapper h2,
.homepage-group-title,
.blog_heading,
.basic-description h2 {
  position: relative;
  margin-bottom: 70px;
}

.kn_wrapper h2:after,
.bg_gray h2:after,
.homepage-group-title:after,
.blog_heading:after,
.basic-description h2:after {
  position: absolute;
  content: "";
  width: 250px;
  height: 1px;
  display: block;
  background: linear-gradient(
    to right,
    var(--color-cya) 0%,
    var(--color-cya) 40%,
    rgba(13, 234, 227, 0) 100%
  );
  left: 0;
  bottom: -25px;
}

.basic-description h2:after {
  transform: none;
  left: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.special_btn,
.next-prev .btn,
.p-tools .btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 20px 42px;
  border-radius: 16px;
  border: 1px solid var(--color-cya);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: color 0.25s ease-in-out, background-color 0.28s ease-in-out;
}

.special_btn:before,
.next-prev .btn:before,
.p-tools .btn:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0.4) 0%,
    rgba(13, 234, 227, 0) 100%
  );
  opacity: 1;
  transition: opacity 0.28s ease-in-out;
}

.special_btn:after,
.next-prev .btn:after,
.p-tools .btn:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0) 0%,
    rgba(13, 234, 227, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.28s ease-in-out;
}

.special_btn:hover,
.next-prev .btn:hover,
.p-tools .btn:hover {
  color: #fff;
  background-color: rgba(13, 234, 227, 0.5);
}

.special_btn:hover:before,
.next-prev .btn:hover:before,
.p-tools .btn:hover:before {
  opacity: 0;
}

.special_btn:hover:after,
.next-prev .btn:hover:after,
.p-tools .btn:hover:after {
  opacity: 0;
}

.special_btn2 {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 20px 42px;
  border-radius: 16px;
  border: 1px solid var(--color-cya);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: color 0.25s ease-in-out, background-color 0.28s ease-in-out;
}
.special_btn2:before,
.special_btn2:after {
  display: none;
}
.special_btn2:hover {
  color: #fff;
  background-color: rgba(13, 234, 227, 0.5);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. LISTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cyan_circle_list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 900px;
  font-weight: normal;
}

.cyan_circle_list li {
  padding: 15px 15px 15px 70px;
  font-size: 16px;
  line-height: 26px;
  position: relative;
}

.cyan_circle_list li:before {
  content: "";
  background-image: url(photos/logo_color_circle.png);
  width: 40px;
  height: 40px;
  display: block;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 10px;
}

.cyan_circle_list--large li {
  padding: 20px 15px 20px 85px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cyan_circle_list--large li:before {
  width: 55px;
  height: 55px;
  top: 15px;
}

.extra_desc {
  list-style-type: none;
  margin-bottom: 10px;
  font-size: 18px;
  color: #dcdcdc;
  text-align: left;
  padding-left: 50px;
}

.extra_desc li {
  line-height: 1.2;
  padding: 10px 0;
  position: relative;
}

.extra_desc li:before {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  background-image: url(photos/logo_color_circle.png);
  background-size: contain;
  position: absolute;
  left: -50px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   12. HERO BLOCK & STATS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero_block img {
  width: 100%;
  align-self: flex-end;
}

.hero_block {
  max-height: 700px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -25px;
  margin-right: -25px;
}

.hero_block .swiper_flat_desc {
  padding: 40px;
}

.hero_block .swiper_flat_desc h4 {
  font-size: 44px;
  max-width: 80%;
}

.hero_block .swiper_flat_desc p {
  font-size: 32px;
  line-height: 1.4;
  color: #000;
}

.hero_block .swiper_flat_desc p span {
  font-size: 24px;
}

/* Merged from two duplicate definitions — second gradient wins, margin-top kept from first */
.stats_block {
  border-radius: 25px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0.4) 0%,
    rgba(13, 234, 227, 0) 100%
  );
  padding: 20px;
  margin-top: 30px;
  border: 1px solid var(--color-cya);
  margin-left: -25px;
  margin-right: -25px;
}

.stats_block > h2 {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}

.stats_block > div {
  justify-content: center;
}

.stats_block .children3 > div {
  max-width: 300px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.stats_block .stat_number {
  font-size: 32px;
  font-weight: 600;
  text-align: left !important;
}

.stats_block .stat_label {
  font-size: 16px;
  color: #dcdcdc;
  text-align: left !important;
}

.stats_block .children3 > div img {
  width: 68px;
  height: 68px;
}

.page_hero_img {
  text-align: center;
}

.page_hero_img img {
  max-width: 1600px;
  width: 100%;
  margin: auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   13. PRODUCTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.tab-pane .products-block,
.products-block {
  max-width: 1600px;
  width: 100%;
}

.products-block > div .p {
  position: relative;
  isolation: isolate;
  padding: 0 14px;
  border: none;
}

.products-block > div .p:after {
  content: "";
  background: transparent;
  width: 100%;
  height: 75%;
  display: block;
  position: absolute;
  border-radius: 12px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.products-block > div .p > a img {
  border-radius: 12px;
}

.products-block > div .p .name {
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
}

.products-block .p .name:hover,
.products-block > div:hover .p .name {
  text-decoration: none;
}

/* Merged from three separate locations */
.products-block > div .p .p-in {
  padding-top: 0;
  position: relative;
  margin-top: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Merged from two separate locations */
.products-block > div .p .p-bottom {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  height: 100%;
}

.products-block > div .p .p-bottom > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-block > div .p .p-bottom > div .p-tools {
  margin-top: auto;
}

.products-block .p-bottom .prices {
  width: auto;
  display: block;
  background: transparent;
  padding: 10px 20px;
  border-radius: 12px;
  border: solid 1px #6eedeb;
  font-size: 16px;
  margin: 10px 0 20px;
}

.products-block > div .p .p-bottom > div .p-tools .btn,
.products-block > div .p .p-bottom > div .p-tools .btn.btn-cart {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 20px 42px;
  border-radius: 16px;
  border: 1px solid var(--color-cya);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: color 0.25s ease-in-out, background-color 0.28s ease-in-out;
}

.products-block > div .p .p-bottom > div .p-tools .btn:before,
.products-block > div .p .p-bottom > div .p-tools .btn.btn-cart:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0.7) 0%,
    rgba(13, 234, 227, 0) 100%
  );
  opacity: 1;
  transition: opacity 0.28s ease-in-out;
}

.products-block > div .p .p-bottom > div .p-tools .btn:after,
.products-block > div .p .p-bottom > div .p-tools .btn.btn-cart:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0) 0%,
    rgba(13, 234, 227, 1) 100%
  );
  opacity: 0;
  transition: opacity 0.28s ease-in-out;
}

.products-block > div .p .p-bottom > div .p-tools .btn:hover,
.products-block > div .p .p-bottom > div .p-tools .btn.btn-cart:hover {
  color: #fff;
  background-color: rgba(13, 234, 227, 0.5);
}

.products-block > div .p .p-bottom > div .p-tools .btn:hover:before,
.products-block > div .p .p-bottom > div .p-tools .btn.btn-cart:hover:before {
  opacity: 0;
}

.products-block > div .p .p-bottom > div .p-tools .btn:hover:after,
.products-block > div .p .p-bottom > div .p-tools .btn.btn-cart:hover:after {
  opacity: 0;
}

.products-block .extra_desc li:before {
  background-image: url(photos/logo_color_circle.png);
  top: 6px;
}

.products-block > div .p .p-bottom > div .p-tools .btn span {
  font-size: 0;
  display: flex;
}

.products-block > div .p .p-bottom > div .p-tools .btn span:after {
  font-size: 16px;
  content: 'Zjistit více';
}

.id-1 #products-1 .product .p-bottom .prices {
  display: none !important;
}

.homepage-group-title {
  display: block;
  width: 100%;
  margin: 50px auto;
  text-align: center;
  color: #000;
  font-weight: 600;
  font-size: 24px;
  max-width: 466px;
}

.body-banners {
  margin: 0;
}

.shp-tabs-wrapper.homepage-tabs-wrapper {
  margin-bottom: 50px;
}

.homepage-texts-wrapper .top-products-wrapper {
  display: none;
}

.homepage-texts-wrapper:has(.top-products-wrapper) .welcome-wrapper {
  max-width: 100%;
}

/* Flags */
.flags-default .flag:after,
.flags-default .flag:before {
  display: none;
}

.flags-default .flag {
  line-height: 14px;
  padding: 10px 20px;
  position: relative;
  font-size: 12px;
  border-radius: 0px 12px 12px 0px;
  font-weight: 600;
}

.flags-default .flag.flag-sluzba {
  color: #000;
}

.flags-default .flag.flag-prakticka-prirucka {
  background: var(--color-mag) !important;
}

.flag {
  max-width: unset;
}

.wide .image360:after, .wide .p-image:after {
  height: 0 !important;
}

.products-block .flags.flags-default,
.wide .p-detail .flags,
.p-detail .flags,
.wide .p-detail .p-switchable .flags {
  left: 7px;
  top: 37px;
}

/* Category header */
.subcategories,
.subcategories + h4,
#productsTop {
  display: none;
}

/* Merged two separate .category-header rules */
.category-header {
  border-bottom: none;
  justify-content: center;
}

.category-header input[type="radio"] + label {
  background: transparent;
  border: none !important;
  margin: 0;
  color: #666;
}

.category-header input[type="radio"]:checked + label {
  color: #000;
  background: #fff;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: var(--color-cya);
  text-decoration-thickness: 2px;
}

.category-header input[type="radio"] + label:hover {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--color-mag);
}

.category-header input[type="radio"] + label[for="order3"] {
  display: none;
}

/* Related products */
#productsRelated .products-block > div .p {
  padding: 0 10px;
}

.tab-content > .tab-pane#productsRelated {
  display: block;
  opacity: 1;
  background: transparent;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  isolation: isolate;
}

.tab-content > .tab-pane#productsRelated:after {
  content: "";
  position: absolute;
  background: transparent;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
  z-index: -1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   14. PRODUCT DETAIL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.p-detail-inner-header h1 {
  margin: 0 0 30px 0;
}

.p-detail-inner-header {
  display: flex;
  flex-direction: column-reverse;
}

/* Product detail responsive → moved to MEDIA QUERIES section */

.p-detail-inner {
  margin-bottom: 30px;
}

.stars .star,
.stars .star:hover {
  color: #222;
}

.stars .star.is-active:hover,
.stars .star.star-half:before,
.stars .star.star-on:before {
  color: var(--color-mag);
}

.p-short-description .cyan_circle_list {
  margin: 0;
}

.p-to-cart-block {
  display: none !important;
}

.wide .p-final-price-wrapper,
.p-final-price-wrapper,
.p-to-cart-block > .block,
.p-to-cart-block .p-add-to-cart-wrapper {
  width: auto;
  text-align: center;
  margin: 0;
}

.p-detail .add-to-cart .quantity {
  display: none;
}

.p-final-price-wrapper > strong {
  font-weight: 700;
  font-size: 32px;
  border: solid 2px var(--color-cya);
  padding: 10px 40px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.p-to-cart-block .add-to-cart-button.btn-conversion {
  border-radius: 12px;
  padding: 20px 50px;
  position: relative;
  isolation: isolate;
  border: solid 2px #00f2ea;
  font-weight: 700;
  width: 100%;
  min-width: 250px;
  text-transform: none;
  letter-spacing: 1px;
}

.p-to-cart-block .add-to-cart-button.btn-conversion:hover {
  background: var(--color-mag);
  border-color: var(--color-mag);
}

.p-to-cart-block .add-to-cart-button.btn-conversion:before {
  display: none;
}

.p-detail-tabs-wrapper {
  position: relative;
  isolation: isolate;
}

.p-detail-tabs-wrapper:after {
  content: "";
  position: absolute;
  background: transparent;
  width: 150%;
  height: 100%;
  top: 0;
  left: -25%;
  z-index: -1;
}

.basic-description {
  padding: 50px 0;
  margin: 0 auto 50px;
}

.tab-content > .tab-pane h2:not(:first-child) {
  margin-top: 50px;
}

.p-image a,
.wide .p-image {
  max-width: 447px;
  margin: auto;
}

.new_price_wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px 40px;
}

.type-product .availability-label {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}

.new_price_wrapper > .block {
  margin: 0 !important;
  padding: 15px;
  font-size: 20px;
}

.type-product .availability-label[style="color: #009901"] {
  color: #222 !important;
  background: var(--color-cya) !important;
  padding: 10px 20px;
  border-radius: 12px;
}

.availability-amount {
  color: #707070;
  margin: 0 10px;
}

.wide .image360 img,
.wide .p-image img {
  max-height: 670px;
  border-radius: 25px;
}

.container-product {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cp-text {
  width: 50%;
  flex: 1;
  display: flex;
  margin-right: 20px;
  flex-direction: column;
  justify-content: center;
}

.cp-image {
  width: 60%;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.cp-button {
  margin-top: auto;
  margin-bottom: 25px;
}

.container-product .cp-button {
  margin-top: 30px;
  margin-bottom: 25px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   15. PAGINATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pagination__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pagination__list li {
  display: flex;
}

.pagination__list .pagination__link:not(.pagination__link--next):not(.pagination__link--prev),
.pagination__list .pagination__link--last {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background-color: var(--color-cya) !important;
  color: #1a1a2e !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
}

.pagination__list .pagination__link:not(.pagination__link--next):hover,
.pagination__list .pagination__link--last:hover {
  opacity: 0.8;
}

/* Next button — all !important to override framework defaults */
.pagination__list .pagination__link--next,
.pagination__list .pagination__link--prev {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--color-cya) !important;
  background-image: none !important;
  border: none !important;
  color: #1a1a2e !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
}

.pagination__list .pagination__link--next:hover {
  opacity: 0.8;
}

.pagination__list .pagination__currentPage {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--color-cya) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-bottom: 2px solid var(--color-cya) !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   16. BLOG / NEWS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.in-pripadove-studie .news-item {
  padding-bottom: 0px !important;
}

.news-item .image > a {
  display: block;
}

.news-item .text {
  flex-direction: column;
}

.news-item .text .description {
  color: #b2b2b2 !important;
}

.news-item-detail .text > *:not(.kn_wrapper) {
  margin: 0 auto 30px;
  max-width: 900px;
}

.news-item-detail .text {
  max-width: 1200px;
  margin: auto;
}

.news-item-detail .text .hero_block .swiper_flat_desc h4 {
  max-width: 100%;
}

#article_product {
  margin: 0 auto 30px;
  max-width: 900px;
  width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   17. TYPE-POST PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Effective value from cascade (the font-size:0 rule was overridden by this) */
.type-post h1 {
  font-size: 38px;
  margin: 30px 0;
}

.type-post .hero_block {
  align-items: center;
}

.type-post h2 {
  padding-top: 10px;
  margin: 50px auto !important;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
  position: relative;
}

.type-post div:not(.stats_block) > h2:after {
  position: absolute;
  content: "";
  width: 250px;
  height: 1px;
  display: block;
  background: linear-gradient(
    to right,
    var(--color-cya) 0%,
    var(--color-cya) 40%,
    rgba(13, 234, 227, 0) 100%
  );
  left: 0;
  bottom: -25px;
}

.type-post .stats_block h2 {
  margin: 0px auto 50px !important;
  text-align: center;
}

.type-post .stats_block h2:after {
  display: none;
}

.type-post #article_product h2 {
  text-align: left;
}

.type-post #article_product h2:after {
  transform: none;
  left: 0;
}

.type-post .news-item time,
.type-post .news-item-detail time {
  text-align: center;
}

body:not(.type-product) h1 {
  text-align: center;
}

#article_product .children2 > div {
  gap: 30px;
}

#article_product .children2 > div > * {
  margin: 0 !important;
}

#article_product .wide_btn_wrapper {
  text-align: left;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   18. FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#faqs_wrapper:after,
.in-faqs h1:after {
  content: "";
  position: absolute;
  background: transparent;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
  z-index: -1;
}

/* Merged: position + isolation from shared rule, padding+margin from own rule */
#faqs_wrapper {
  max-width: 1024px;
  margin: auto;
  padding: 50px 0;
  position: relative;
  isolation: isolate;
}

.in-faqs h1 {
  padding: 30px;
  margin: 0;
  position: relative;
  isolation: isolate;
}

#faqs_wrapper h2 {
  color: #707070;
  font-size: 28px;
  margin: 30px 0;
}

#faqs_wrapper p {
  font-size: 18px;
  padding: 20px;
  background: transparent;
  margin: 0;
  border-radius: 12px;
  color: #1a1a1c;
}

#faqs_wrapper a {
  color: var(--color-mag);
  text-decoration: underline;
  padding: 7px 0;
  display: inline-block;
}

#faqs_wrapper a:hover {
  text-decoration: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   19. FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Merged: two duplicate #footer h4 rules merged into one */
#footer {
  background-color: transparent;
  border-top-color: #1a1a1c;
  margin-top: 0;
}

#footer h4 {
  color: #f3f3f6;
  font-size: 16px;
  text-transform: uppercase;
}

#footer a {
  text-decoration: none;
  color: #707070;
  font-style: italic;
  text-transform: uppercase;
}

#footer a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer ul li:before {
  display: none;
}

#footer ul {
  padding-left: 0;
}

#footer ul li {
  color: #707070;
  font-style: italic;
  padding: 5px 0;
}

#footer .banner {
  margin-bottom: 0px;
}

.nl_wrapper {
  background: transparent;
}

.custom-footer {
  padding: 40px 0;
  margin: 40px 0 20px;
  position: relative;
  border-bottom: solid 1px var(--color-cya);
}

.custom-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-cya) 0%, rgba(13, 234, 227, 0) 100%);
}

.footer-bottom,
.footer-newsletter {
  border: none;
}

.custom-footer > div {
  padding: 20px;
}

.footer-bottom {
  padding: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: #707070;
  font-style: italic;
  margin-right: auto;
  margin-bottom: 0;
}

#footer .footer-bottom .copyright a {
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-transform: none;
}

.footer-bottom .copyright a:hover {
  text-decoration: none;
  color: #fff;
}

#footer_contacts {
  font-size: 12px;
  max-width: 315px;
  color: #707070;
  display: flex;
  flex-direction: column;
  text-align: right;
}

#footer_contacts a {
  color: #fff;
  text-underline-offset: 4px;
  text-transform: none;
}

#footer_contacts a:hover {
  text-decoration: underline;
}

.custom-footer__banner8 img {
  border-radius: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   20. NEWSLETTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.newsletter-header h4 span {
  display: block;
  position: relative;
  isolation: isolate;
  color: #fff;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1px;
  max-width: 380px;
  width: 100%;
}

.newsletter-header h4 span:before,
.newsletter-header h4 span:after {
  content: "Chcete NEWSLETTER, který jde sTrendem?";
  position: absolute;
  color: var(--color-cya);
  top: -2px;
  left: -2px;
  z-index: -1;
}

.newsletter-header h4 span:after {
  color: var(--color-mag);
  top: 2px;
  left: 2px;
}

.newsletter-header p {
  color: #fff;
  max-width: 475px;
  margin: 0;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 30px 20px;
}

.newsletter-header h4 {
  display: flex;
}

.newsletter-header h4:after {
  content: "";
  background-image: url(icons/NL_logo.png);
  display: block;
  width: 100px;
  height: 67px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-newsletter .compact-form .btn .sr-only {
  clip: unset;
  height: auto;
  margin: unset;
  overflow: hidden;
  padding: 0 10px;
  position: relative;
  width: auto;
}

.footer-newsletter .compact-form .form-control {
  border-radius: 12px;
}

.footer-newsletter .btn.btn-default {
  background-color: #000;
  border: none;
  color: #fff;
  border-radius: 0 12px 12px 0;
}

.footer-newsletter .btn.btn-default:hover {
  background-color: var(--color-mag);
  border: none;
  color: #fff;
}

.footer-newsletter .consents.form-group label,
.footer-newsletter .consents.form-group label a {
  line-height: normal;
  color: #fff;
}

.footer-newsletter .consents.form-group label a:hover {
  text-decoration: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   21. COOKIE CONSENT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.siteCookies__form {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.siteCookies__link {
  border: none;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 0px;
}

.siteCookies__link:hover,
.siteCookies__text a {
  background: transparent;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.siteCookies__text a:hover {
  text-decoration: none;
}

.siteCookies__text,
.siteCookies__link {
  font-size: 12px;
}

.siteCookies__button {
  border-radius: 0px;
  line-height: 1;
  padding: 10px 15px;
}

.siteCookies__button:hover {
  background-color: green;
  color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   22. DIALOG
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.dialog.dialog--modal.dialog--fullscreen {
  background: transparent !important;
}

.dialog.dialog--modal.dialog--fullscreen .dialog__wrapper {
  background: rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.dialog.dialog--modal.dialog--fullscreen .dialog__content {
  background: rgba(10, 10, 16, 0.75) !important;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   23. CASE STUDIES SLIDER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cs-slider-section {
  padding: 40px 0px 0px 0px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.in-kurzy-a-mentoring .cs-slider-section {
  padding: 40px 0px 0px 0px;
}

.in-blog .cs-slider-section {
  padding: 40px 0px 0px 0px;
}

.swiper-container-casestudies {
  width: 75%;
  margin: 0 auto;
  padding: 20px 0 60px;
  position: relative;
  overflow: visible !important;
}

.swiper-container-blog {
  width: 75%;
  margin: 0 auto;
  padding: 20px 0 60px;
  position: relative;
  overflow: visible !important;
}

.swiper-container-casestudies .swiper-slide, .swiper-container-blog .swiper-slide {
  height: auto;
  transition: all 0.4s ease;
  opacity: 0.4 !important;
  transform: scale(0.92) !important;
  display: block !important;
  cursor: pointer;
}

.swiper-container-casestudies .swiper-slide-active,
.swiper-container-casestudies .swiper-slide-next,
.swiper-container-blog .swiper-slide-active,
.swiper-container-blog .swiper-slide-next {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 2;
}

.swiper-container-casestudies .swiper-slide .news-item, .swiper-container-blog .swiper-slide .news-item {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  height: 100% !important;
  padding-bottom: 0 !important;
  position: relative;
  border: 1px solid transparent;
  border-radius: 25px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.swiper-container-casestudies .swiper-slide .news-item:hover, .swiper-container-blog .swiper-slide .news-item:hover {
  transform: scale(1.03);
  border-color: var(--color-cya);
}

/* Merged: removed redundant background-color (background shorthand covers it) */
.cs-swiper-button-next,
.cs-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px !important;
  height: 50px !important;
  background: var(--color-cya) !important;
  color: #000 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 240, 255, 0.3);
  transition: transform 0.2s ease;
}

.cs-swiper-button-next:hover,
.cs-swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.cs-swiper-button-prev { left: -6%; }
.cs-swiper-button-next { right: -6%; }

.blog-swiper-button-prev { left: -6%; }
.blog-swiper-button-next { right: -6%; }

.cs-swiper-button-prev::after,
.cs-swiper-button-next::after {
  content: none !important;
  display: none !important;
}

.cs-swiper-button-prev svg,
.cs-swiper-button-next svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.swiper-container-casestudies .news-item .image, .swiper-container-blog .news-item .image {
  overflow: hidden;
}

.swiper-container-casestudies .news-item .image img, .swiper-container-blog .news-item .image img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-container-casestudies .news-item .text {
  position: absolute;
  top: 70%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 25px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.swiper-container-casestudies .news-item .text a {
  pointer-events: auto;
}

.swiper-container-casestudies .news-item .text .title {
  font-size: 15px !important;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper-container-casestudies .news-item .text .description {
  display: none !important;
}

.swiper-container-blog .swiper-slide .news-item {
  display: block !important;
  flex-direction: unset !important;
}

.swiper-container-blog .news-item .image,
.swiper-container-blog .news-item .image > a {
  display: block !important;
  width: 100% !important;
}

.swiper-container-blog .news-item .image img {
  width: 100% !important;
  max-width: 100% !important;
}

.swiper-container-blog .news-item .text {
  position: static !important;
  display: block !important;
  padding: 15px 5px 0;
  background: none;
  border-radius: 0;
  width: 100% !important;
}

.swiper-container-blog .news-item .text .title {
  font-size: 15px !important;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.swiper-container-blog .news-item .text time,
.swiper-container-blog .news-item time {
  display: none !important;
}

.swiper-container-blog .news-item .text .description {
  display: none !important;
}

.cs-slider-section #newsWrapper, .blog-slider-section #blogWrapper {
  display: block !important;
  gap: 0 !important;
}

.blog-slider-section #blogWrapper {
  padding: 40px 20px 0px 20px;
  overflow: hidden;
  position: relative;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   23b. FEEDBACK
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.feedback {
  margin-bottom: 5rem;
}

.feedback div {
  background: #fafafa;
  border-radius: 5px;
  padding: 2rem;
}

.feedback div video {
  width: 100%;
  height: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   24. SPECIAL PAGES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.in-pripadove-studie.type-post h1 {
  display: none;
}

.in-pripadove-studie.type-posts-listing #newsWrapper .news-item {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 25px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.in-pripadove-studie.type-posts-listing #newsWrapper .news-item:hover {
  transform: scale(1.03);
  border-color: var(--color-cya);
}

.in-pripadove-studie.type-posts-listing #newsWrapper .news-item .image {
  width: 100%;
  margin: 0;
  border-radius: 25px;
  overflow: hidden;
}

.in-pripadove-studie.type-posts-listing #newsWrapper .news-item .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 1080;
  object-fit: cover;
  display: block;
}

.in-pripadove-studie.type-posts-listing #newsWrapper .news-item .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 32px;
  padding: 20px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 2;
}

.in-pripadove-studie.type-posts-listing #newsWrapper .news-item .text .title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  padding: 20px;
  width: 100%;
}

.in-pripadove-studie.type-posts-listing #newsWrapper .news-item .text .description {
  display: none;
}

.in-pripadove-studie.type-posts-listing main .page_hero_img {
  display: none;
}

.in-pripadove-studie.type-posts-listing .sectionDescription > h1:first-child {
  display: none;
}

.in-blog.type-posts-listing .sectionDescription > h1:first-child {
  display: none;
}

.in-o-nas .pageArticleDetail > header[itemprop="headline"] {
  display: none;
}

/* ── Blog / listing layout (přesunuto z inline <style>) ── */
.type-posts-listing:not(.in-pripadove-studie) #newsWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.type-posts-listing:not(.in-pripadove-studie) #newsWrapper > .news-item {
  margin-bottom: 0;
  width: calc((100% - 80px) / 3);
  display: flex;
  position: relative;
  padding-bottom: 0;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.type-posts-listing:not(.in-pripadove-studie) #newsWrapper > .news-item:hover {
  transform: scale(1.03);
}
.type-posts-listing:not(.in-pripadove-studie) #newsWrapper > .news-item:first-child {
  width: calc((((100% - 80px) / 3) * 2) + 40px);
}
.type-posts-listing:not(.in-pripadove-studie) #newsWrapper .news-item .image {
  width: 100%;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
}
.type-posts-listing:not(.in-pripadove-studie) #newsWrapper .news-item .text {
  padding: 20px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.type-posts-listing:not(.in-pripadove-studie) #newsWrapper .news-item .text .description {
  width: 100%;
}
.type-posts-listing:not(.in-pripadove-studie) #newsWrapper .news-item .text .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  width: 100%;
}
.news-item .article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0;
  font-size: 14px;
  opacity: 0.55;
  width: 100%;
}
.news-item .reading-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  color: var(--color-cya);
}
.news-item .reading-time svg {
  flex-shrink: 0;
}
.news-item .article-meta time {
  margin: 0;
  white-space: nowrap;
}
.news-item time,
.news-item-detail time {
  margin: 10px auto 10px 0;
  display: block;
  text-align: left;
}
/* Blog listing responsive → moved to MEDIA QUERIES section */

.image-container-pripadovka {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.image-container-pripadovka img {
  width: 200px;
  height: auto;
  margin: 3px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
}

.description-galerie {
  text-align: center;
  margin-top: 8px;
}

.in-3-denni-vyzva .pageArticleDetail > header[itemprop="headline"] {
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MEDIA QUERIES (consolidated)
   Order: max-width largest→smallest, then min-width smallest→largest
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Below Large Desktop (max-width: 1199px) ─────────────── */
@media (max-width: 1199px) {
  .swiper-containerblog {
    padding: 0 20px;
  }
  .swiper-containerblog .swiper-button-prev {
    left: 0px;
  }
  .swiper-containerblog .swiper-button-next {
    right: 0px;
  }
}

/* ── Mobile + Tablet (max-width: 991.98px) ──────────────────── */
@media (max-width: 991.98px) {
  /* Product detail */
  .p-detail-inner-header {
    text-align: center;
    align-items: center;
  }
  .p-detail-inner-header h1 {
    max-width: 100%;
  }

  /* Blog listing */
  .type-posts-listing:not(.in-pripadove-studie) #newsWrapper > .news-item,
  .type-posts-listing:not(.in-pripadove-studie) #newsWrapper > .news-item:first-child {
    width: 100%;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    padding: 0 20px;
  }
  .footer-bottom .copyright {
    margin: 0 auto;
    text-align: center;
  }
  #footer_contacts {
    text-align: center;
  }

  /* Visibility */
  .hide-on-mobile {
    display: none;
  }

  /* Force mobile hamburger mode — hide inline nav, show only via hamburger */
  #navigation {
    display: none !important;
  }
  .navigation-window-visible #navigation {
    display: block !important;
  }

  /* Navigation */
  .navigation-window-visible #navigation {
    pointer-events: auto;
  }
  .navigation-in {
    background-image: none !important;
    background-color: rgba(8, 8, 18, 0.92) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    padding: 50px;
    display: grid;
    place-content: center;
  }
  .navigation-in > ul > li > a {
    font-size: 20px;
    color: #fff;
    padding: 10px;
    position: relative;
  }
  .navigation-in > ul > li {
    text-align: center;
  }
  .navigation-in > ul > li > a {
    display: inline-block;
    justify-content: center;
  }
  .navigation-in > ul > li:not(.menu-item-673):not(.menu-item-770) > a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-cya);
    transition: width 0.3s ease-in-out;
  }
  .navigation-in > ul > li:not(.menu-item-673):not(.menu-item-770) > a:hover::after,
  .navigation-in > ul > li:not(.menu-item-673):not(.menu-item-770) > a.active::after {
    width: 55%;
  }
  .navigation-in > ul > li > a:hover {
    color: var(--color-cya) !important;
  }
  .navigation-in > ul > li > a.active {
    text-decoration: none !important;
  }
  .navigation-in > ul > li > a.active:hover {
    color: #fff !important;
  }
  .navigation-in > ul > li > a > b,
  .navigation-in > ul > li > a > span {
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    font-weight: 700;
    display: block;
  }
  .navigation-in > ul:last-child {
    border: none;
  }
  .navigation-in ul {
    opacity: 0;
    transition: all 1s ease;
  }
  .navigation-window-visible .navigation-in ul {
    opacity: 1;
    transition: all 1s ease;
  }

  /* Mobile menu styled buttons */
  .navigation-in > ul > li.menu-item-673 > a {
    position: relative;
    isolation: isolate;
    border: 1px solid var(--color-cya);
    border-radius: 16px;
    padding: 17px 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: color 0.25s ease-in-out, background-color 0.28s ease-in-out;
  }
  .navigation-in > ul > li.menu-item-673 > a:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(13, 234, 227, 0.7) 0%, rgba(13, 234, 227, 0) 100%);
    opacity: 1;
    transition: opacity 0.28s ease-in-out;
  }
  .navigation-in > ul > li.menu-item-770 > a {
    border: 1px solid var(--color-cya);
    border-radius: 16px;
    padding: 17px 30px;
    text-align: center;
    background: transparent;
  }
  .navigation-in > ul > li.menu-item-770 > a .vyzva-highlight {
    color: var(--color-cya);
  }
  .navigation-in > ul > li.menu-item-673,
  .navigation-in > ul > li.menu-item-770 {
    margin-bottom: 10px;
    text-align: center;
  }
  .navigation-in > ul > li.menu-item-673 > a.active,
  .navigation-in > ul > li.menu-item-770 > a.active {
    overflow: visible;
    background-image: linear-gradient(var(--color-cya), var(--color-cya)) !important;
    background-size: 55% 1px;
    background-position: center bottom 5px;
    background-repeat: no-repeat;
  }

  /* Newsletter */
  .newsletter-header h4 {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .footer-newsletter {
    flex-wrap: wrap;
  }

  /* Hero */
  .in-pripadove-studie .hero_block .swiper_flat_desc h4 {
    font-size: 24px;
    max-width: 100%;
    line-height: 1.3;
  }
}

/* ── Mobile (max-width: 767px) ───────────────────────────── */
@media (max-width: 767px) {
  /* Case study listing — mobil override pro title */
  .in-pripadove-studie.type-posts-listing #newsWrapper .news-item .text .title {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
  }

  /* Stats block — mobil: kompaktnější a pevná velikost ikon */
  .stats_block .children3 > div img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  .stats_block .children3 > div {
    gap: 10px;
    max-width: 100%;
  }
  .stats_block .stat_number {
    font-size: 22px;
  }
  .stats_block .stat_label {
    font-size: 13px;
  }

  /* Typography */
  .blog-slider-section h2 {
    font-size: 22px !important;
    margin-bottom: 40px;
  }
  .kn_wrapper h2 {
    font-size: 22px !important;
    margin-bottom: 40px;
  }

  /* Buttons */
  .special_btn,
  .special_btn2,
  .next-prev .btn,
  .p-tools .btn {
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* Banners */
  .next-to-carousel-banners .banner-wrapper {
    max-width: 80%;
  }

  /* Footer */
  .custom-footer__banner9 img {
    margin: 20px auto !important;
  }

  /* Swiper flat */
  .swiper-containerflat {
    width: 100%;
    left: unset;
    position: relative;
    margin-left: unset;
  }
  .swiper-containerflat .swiper-slide:not(.swiper-slide-fully-visible).swiper-slide-active {
    opacity: 1 !important;
  }
  .swiper-containerflat .swiper-button-prev,
  .swiper-containerblog .swiper-button-prev {
    left: 10px;
    margin-left: unset;
  }
  .swiper-containerflat .swiper-button-next,
  .swiper-containerblog .swiper-button-next {
    right: 10px;
    margin-right: unset;
  }
  .swiper-button-prev,
  .swiper-containerflat .swiper-button-prev {
    left: -10px;
    border: solid 2px #f3f3f6;
  }
  .swiper-button-next,
  .swiper-containerflat .swiper-button-next {
    right: -10px;
    border: solid 2px #f3f3f6;
  }

  /* Hero */
  .swiper_flat_desc h4 {
    line-height: 1.4;
    font-size: 17px;
    max-width: 100%;
  }
  .in-pripadove-studie .hero_block .swiper_flat_desc h4 {
    font-size: 17px;
    max-width: 100%;
    line-height: 1.3;
  }
  .in-pripadove-studie .hero_block .swiper_flat_desc p {
    font-size: 16px;
  }

  /* Blog swiper */
  .swiper-containerblog .swiper-button-next,
  .swiper-containerblog .swiper-button-prev {
    top: 30%;
  }

  /* FAQs */
  #faqs_wrapper {
    margin: 0 -20px;
  }
  #faqs_wrapper h2 {
    margin: 30px 20px;
    font-size: 24px;
  }
  #faqs_wrapper p {
    padding: 30px 20px;
  }

  /* Children grid */
  .children1 > div {
    width: 100%;
    padding: 20px;
  }
  .children2 > div {
    width: 100%;
    padding: 20px;
  }
  .children3 > div {
    width: 100%;
    padding: 20px;
  }
  .children4 > div {
    width: calc(50% - 10px);
    padding: 20px;
  }
  .children13 > div:nth-child(1) {
    width: 100%;
    padding: 20px;
  }
  .children13 > div:nth-child(2) {
    width: 100%;
    padding: 20px;
  }

  /* Case studies & blog swiper */
  .swiper-container-casestudies .swiper-slide-prev,
  .swiper-container-blog .swiper-slide-prev {
    opacity: 0.4 !important;
    transform: scale(0.92) !important;
  }
  .swiper-container-casestudies .news-item .image img,
  .swiper-container-blog .news-item .image img {
    height: auto;
  }
  .swiper-container-casestudies,
  .swiper-container-blog {
    width: 88%;
  }
  .cs-swiper-button-prev { left: -4%; }
  .cs-swiper-button-next { right: -4%; }
  .blog-swiper-button-prev { left: -4%; }
  .blog-swiper-button-next { right: -4%; }

  /* Header */
  #header .container {
    min-height: 60px;
  }
  .navigation-buttons {
    top: 0px;
  }
  .navigation-in a.header_btn {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    height: auto;
    padding: 12px 30px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    margin: 0 -20px 10px;
    display: block;
  }

  /* Feedback grid */
  .feedback {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .in-pripadove-studie.type-posts-listing #newsWrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Founders / O nás */
  .founder-row,
  .founder-row.reverse {
    flex-direction: column !important;
    gap: 15px !important;
    margin-bottom: 40px;
  }
  .founder-row .founder-photo {
    flex: 0 0 auto !important;
    max-width: 80% !important;
    width: 80%;
    margin: 0 auto;
  }
  .founder-row .founder-info {
    flex: 0 0 auto !important;
    max-width: 100% !important;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .founder-row .founder-info p {
    text-align: center;
  }
  .founder-socials {
    justify-content: center;
  }

  /* Blog posts */
  .type-post h2 {
    font-size: 24px;
  }
  .type-post h1 {
    font-size: 30px;
  }

  /* Contact page */
  .contact-hero {
    padding: 30px 0 28px;
  }
  .contact-hero-heading {
    font-size: 22px;
    margin-bottom: 28px;
  }
  .contact-hero-grid {
    flex-direction: column;
    gap: 28px;
  }
  .contact-hero-photo {
    width: 100%;
    max-width: 340px;
  }
  .contact-email {
    font-size: 20px;
  }
  .contact-form-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .in-kontakty .form-group {
    flex-direction: column;
    gap: 6px;
  }
  .in-kontakty .form-group label {
    min-width: unset;
    padding-top: 0;
  }
  .in-kontakty .submit-wrapper input[type=submit].btn,
  .in-kontakty .submit-wrapper .btn {
    padding: 14px 28px;
    width: 100%;
  }
}

/* ── Extra small mobile (max-width: 479.9px) ─────────────── */
@media (max-width: 479.9px) {
  .in-pripadove-studie.type-posts-listing #newsWrapper .news-item .text .title {
    font-size: 13px;
  }
}

/* ── Small Mobile (max-width: 575px) ─────────────────────── */
@media (max-width: 575px) {
  /* Entrance protection */
  .entrance-protection-wrapper .entrance-protection-inner {
    padding: 40px 24px 32px;
    border-radius: 16px;
  }
  .entrance-protection-wrapper h1 {
    font-size: 20px;
  }
  .entrance-protection-wrapper .submit-wrapper .btn {
    padding: 14px 28px;
  }

  /* Header */
  .navigation-buttons a {
    height: 60px;
    width: 60px;
    display: grid;
    place-content: center;
  }
  .overall-wrapper {
    padding-top: 60px;
  }
  .container.navigation-wrapper .site-name {
    flex: 0 1 150px;
    background-color: transparent !important;
  }

  /* Hero fine-tuning */
  .in-pripadove-studie .hero_block .swiper_flat_desc h4 {
    font-size: 15px;
    max-width: 100%;
    line-height: 1.3;
  }
  .in-pripadove-studie .hero_block .swiper_flat_desc p {
    font-size: 16px;
  }
  .in-pripadove-studie .hero_block .swiper_flat_desc p span {
    font-size: 18px;
  }

  /* Products grid */
  .columns-3 .products-block > div,
  .columns-4 .products-block > div {
    max-width: 100%;
    width: 100%;
  }
}

/* ── Tablet + Desktop (min-width: 768px) ─────────────────── */
@media (min-width: 768px) {
  /* Carousel banners */
  .next-to-carousel-banners {
    margin-top: -30px;
    position: relative;
    isolation: isolate;
  }
  .next-to-carousel-banners:after {
    content: "";
    background: transparent;
    width: 100vw;
    position: absolute;
    height: calc(100% - 40px);
    z-index: -1;
  }

  /* Product name clamp */
  .products-block > div .p .name {
    height: 105px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Cookies bar */
  .siteCookies__form {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
    padding: 10px;
  }
  .siteCookies--bottom {
    left: 0;
    margin-left: 0;
    width: 100%;
  }
  .siteCookies__links {
    width: auto;
    margin: 0px 20px;
  }
  .siteCookies__buttonWrap {
    align-items: center;
  }
  .siteCookies__text {
    margin-right: 0px;
    margin-bottom: 0;
  }
  .siteCookies__content {
    display: flex;
    align-items: center;
  }

  /* Product detail */
  .p-detail-inner .p-image-wrapper {
    padding-right: 60px;
  }

  /* Navigation */
  .navigation-buttons {
    min-width: 0px;
  }

  /* Případové studie */
  .in-pripadove-studie.type-posts-listing .news-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
  }
  .in-pripadove-studie.type-posts-listing #newsWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Feedback grid */
  .feedback {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ── From 767px up — hero_block desc padding inherits from base */
@media (max-width: 767px) {
  .hero_block .swiper_flat_desc {
    padding: 15px;
  }
}

/* ── From 991px up — stats_block compact padding */
@media (min-width: 991px) {
  .stats_block {
    padding: 10px;
  }
}

/* ── Hero h4 on 991–1199px ── */
@media (min-width: 991px) and (max-width: 1199.98px) {
  .hero_block .swiper_flat_desc h4 {
    font-size: 34px;
  }
}

/* ── Tablet only (min-width: 768px) and (max-width: 991.98px) ─ */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Case study listing title — tablet */
  .in-pripadove-studie.type-posts-listing #newsWrapper .news-item .text .title {
    font-size: 14px;
    line-height: 18px;
  }

  /* Swiper */
  .swiper-containerflat
    .swiper-slide-next
    + .swiper-slide:not(.swiper-slide-fully-visible) {
    opacity: 0.3 !important;
  }

  /* Children grid */
  .children1 > div {
    width: 100%;
    padding: 30px;
  }
  .children2 > div {
    width: calc((100% - 20px) / 2);
    padding: 20px;
  }
  .children3 > div {
    width: calc((100% - 40px) / 3);
    padding: 20px;
  }
  .kn_flexbox.children3 > div {
    width: auto;
    padding: 20px;
  }
  .children4 > div {
    width: calc((100% - 20px) / 2);
    padding: 20px;
  }
  .children13 > div:nth-child(1) {
    width: calc(100% - 20px);
    padding: 20px;
  }
  .children13 > div:nth-child(2) {
    width: calc(100% - 20px);
    padding: 20px;
  }

  /* About box */
  .about_box_3 > div > div {
    flex-direction: column;
    text-align: center;
  }
  .about_box_3 > div p {
    text-align: center;
  }
}

/* ── Desktop (min-width: 992px) ──────────────────────────── */
@media (min-width: 992px) {
  /* Navigation */
  .navigation-in > ul > li > a {
    padding: 17px 20px;
    line-height: 1;
    background: transparent;
    background-color: transparent !important;
    font-size: 16px;
    border-radius: 12px;
    margin-right: 12px;
    position: relative;
    transition: color 0.25s ease;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: var(--color-cya);
  }
  .navigation-in ul {
    margin-top: 15px;
  }
  .navigation-in > ul > li.menu-item-706 > a {
    border-color: var(--color-mag);
  }
  .navigation-in > ul > li.menu-item-673 > a {
    position: relative;
    isolation: isolate;
    border: 1px solid var(--color-cya);
    border-radius: 16px;
    padding: 17px 30px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: color 0.25s ease-in-out, background-color 0.28s ease-in-out;
  }
  .navigation-in > ul > li.menu-item-673 > a:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 14px;
    background: linear-gradient(
      90deg,
      rgba(13, 234, 227, 0.7) 0%,
      rgba(13, 234, 227, 0) 100%
    );
    opacity: 1;
    transition: opacity 0.28s ease-in-out;
  }
  .navigation-in > ul > li.menu-item-673 > a:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 14px;
    background: linear-gradient(
      90deg,
      rgba(13, 234, 227, 0) 0%,
      rgba(13, 234, 227, 1) 100%
    );
    opacity: 0;
    transition: opacity 0.28s ease-in-out;
  }
  .navigation-in > ul > li.menu-item-673 > a:hover {
    color: #fff;
    background-color: rgba(13, 234, 227, 0.5);
  }
  .navigation-in > ul > li.menu-item-673 > a:hover:before,
  .navigation-in > ul > li.menu-item-673 > a:hover:after {
    opacity: 0;
  }
  .navigation-in > ul > li.menu-item-770 > a {
    border: 1px solid var(--color-cya);
    border-radius: 16px;
    padding: 17px 30px;
    background: transparent;
  }
  .navigation-in > ul > li.menu-item-770 > a .vyzva-highlight {
    color: var(--color-cya);
  }
  .navigation-in > ul > li.menu-item-673 > a.active,
  .navigation-in > ul > li.menu-item-770 > a.active {
    background-image: linear-gradient(var(--color-cya), var(--color-cya)) !important;
    background-size: 55% 1px;
    background-position: center bottom 6px;
    background-repeat: no-repeat;
  }
  .navigation-in > ul > li:not(.menu-item-673):not(.menu-item-770) > a {
    width: fit-content;
  }
  .navigation-in > ul > li:not(.menu-item-673):not(.menu-item-770) > a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-cya);
    transition: width 0.3s ease-in-out;
  }
  .navigation-in > ul > li:not(.menu-item-673):not(.menu-item-770) > a:hover::after,
  .navigation-in > ul > li:not(.menu-item-673):not(.menu-item-770) > a.active::after {
    width: 55%;
  }
  .navigation-in > ul > li > a:hover {
    border-color: var(--color-cya);
    color: var(--color-cya) !important;
    transition: color 0.25s ease;
  }
  .navigation-in > ul > li > a:hover b,
  .navigation-in > ul > li > a:hover span {
    color: var(--color-cya) !important;
    transition: color 0.25s ease;
  }
  .navigation-in > ul > li > a.active {
    text-decoration: none !important;
  }
  .navigation-in > ul > li > a.active:hover,
  .navigation-in > ul > li > a.active:hover b,
  .navigation-in > ul > li > a.active:hover span {
    color: #fff !important;
  }

  /* Header */
  #header .container {
    width: 100%;
    padding: 0 30px;
  }
  .container.navigation-wrapper .site-name {
    flex-basis: 220px;
    padding-right: 20px;
  }

  /* Overlay behind open nav panel */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
  }
  body.navigation-window-visible::before {
    opacity: 1;
  }

  /* Visibility */
  .hide-on-desktop {
    display: none;
  }
  .menu-helper > span {
    color: #ffffff !important;
  }

  /* Children grid */
  .children1 > div {
    width: 100%;
    padding: 30px;
  }
  .children2 > div {
    width: calc((100% - 20px) / 2);
    padding: 30px;
  }
  .children3 > div {
    width: calc((100% - 40px) / 3);
    padding: 30px;
  }
  .kn_flexbox.children3 > div {
    width: auto;
    padding: 30px;
  }
  .children4 > div {
    width: calc((100% - 60px) / 4);
    padding: 30px;
  }
  .children13 > div:nth-child(1) {
    width: calc(((100% - 20px) / 3) * 1);
    padding: 30px;
  }
  .children13 > div:nth-child(2) {
    width: calc(((100% - 20px) / 3) * 2);
    padding: 30px;
  }

  /* Product image */
  .p-image a,
  .wide .p-image {
    margin: 0 0 0 auto;
  }
}

/* ── Large Desktop (min-width: 1200px) ───────────────────── */
@media (min-width: 1200px) {
  /* Blog listing */
  .type-posts-listing:not(.in-pripadove-studie) .content-wrapper-in {
    max-width: 1600px;
  }
  .type-posts-listing:not(.in-pripadove-studie) .content-wrapper-in .content-inner {
    max-width: 1200px;
    margin: auto;
  }

  /* Swiper blog */
  .swiper-containerblog .swiper-button-prev {
    left: -100px;
  }
  .swiper-containerblog .swiper-button-next {
    right: -100px;
  }

  /* Feedback grid */
  .feedback {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  /* Page hero */
  .page_hero_img {
    margin: auto;
  }
}

/* ── Kdo jsme / O nás page ──────────────────────────────── */
.about_box_3 > div {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-cya);
  padding: 30px 20px;
  border-radius: 32px;
  flex-wrap: wrap;
}
.about_box_3 > div > div {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
  align-items: center;
}
.about_box_3 > div h4 {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}
.about_box_3 > div p {
  color: #c1c1c1;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.founder-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 250px;
  margin-bottom: 60px;
}
.founder-row.reverse {
  flex-direction: row-reverse;
}
.founder-row .founder-photo {
  flex: 0 0 35%;
  max-width: 35%;
  border-radius: 20px;
  padding: 3px;
}
.founder-row .founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
.founder-row .founder-info {
  flex: 0 1 400px;
  max-width: 400px;
}
.founder-row .founder-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 2px;
}
.founder-row .founder-role {
  font-size: 15px;
  color: var(--color-cya);
  font-style: italic;
  display: block;
  margin-bottom: 20px;
}
.founder-row .founder-info p {
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
  border-top: solid 1px rgba(255,255,255,0.15);
  padding-top: 16px;
}

.founder-socials {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.founder-socials a {
  display: block;
  width: 36px;
  height: 36px;
  transition: opacity 0.25s ease;
}

.founder-socials a:hover {
  opacity: 0.7;
}

.founder-socials a img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.onas-text-italic {
  font-style: italic;
  color: #aaa;
  line-height: 1.8;
}

.onas-team-photo {
  width: 100%;
  border-radius: 25px;
  margin-top: 10px;
}

/* About/founders responsive → moved to MEDIA QUERIES section */

/* ── Podpisové kartičky ──────────────────────────────────── */
.podpis-card {
  text-align: center;
  margin: 40px auto;
  max-width: 700px;
}
.podpis-card img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.podpis-card:hover img {
  transform: scale(1.03);
}

/* ── Auto bannery ────────────────────────────────────────── */
.auto-banner-wrap {
  text-align: center;
  margin-bottom: 40px;
  margin-top: -100px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px;
  box-sizing: border-box;
  z-index: -1;
}
.auto-banner-wrap img {
  width: 100%;
  height: auto;
  border-radius: 0 0 25px 25px;
}
.auto-banner-wrap img.hide-on-mobile {
  max-width: 1600px;
}
.auto-banner-wrap img.hide-on-desktop {
  max-width: 100%;
}
.auto-banner[data-banner="pomahame"] .auto-banner-wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.auto-banner[data-banner="pomahame"] .auto-banner-wrap img {
  border-radius: 25px !important;
}

/* min-width: 1440px → moved to MEDIA QUERIES section */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.in-kontakty article header { display: none; }
.in-kurzy-a-mentoring .category-title { display: none; }
.in-kurzy-a-mentoring .products-top-header { display: none; }
.in-kurzy-a-mentoring .category-header { display: none; }
.in-kurzy-a-mentoring .prices { display: none !important; }
.in-kurzy-a-mentoring .p-in-in { margin-bottom: 30px; }
.in-kurzy-a-mentoring .products-block > div .p > a img { margin-bottom: 30px; margin-top: 20px; }
.in-kurzy-a-mentoring .products-block > div.product {
  border: 1px solid transparent;
  border-radius: 25px;
  background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0));
  transition: all 0.35s ease;
  transform-origin: center center;
}
.in-kurzy-a-mentoring .products-block > div.product:hover {
  border-color: var(--color-cya);
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 242, 234, 0.25), 0 0 30px rgba(0, 242, 234, 0.1);
}
.in-kurzy-a-mentoring .itemsTotal { display: none; }
.in-kurzy-a-mentoring #products.products-block {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.in-kurzy-a-mentoring #products.products-block > div.product {
  flex: 0 1 435px !important;
  width: 435px !important;
  max-width: 435px !important;
  margin: 0 !important;
}
.in-kontakty body:not(.type-product) h1 { text-align: left; }

/* ── Contact hero section ─────────────────────────────────── */
.contact-section {
  padding: 0;
}

.contact-hero {
  background: transparent;
  padding: 50px 0 45px;
}

.contact-hero-heading {
  font-family: var(--template-headings-font);
  font-weight: 600;
  font-style: italic;
  font-size: 28px;
  color: #fff;
  margin: 0 0 40px;
}

.contact-hero-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.contact-hero-photo {
  flex: 0 0 auto;
  width: 42%;
}

.contact-hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.contact-hero-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-email-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.contact-email {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 24px;
  display: inline-block;
}

.contact-email:hover {
  color: var(--color-cya);
}

/* Social links */
.contact-socials {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-socials li a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.contact-socials li a:hover {
  color: var(--color-cya);
}

.contact-socials li a img {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
}

/* Company info */
.contact-company {
  margin-top: 16px;
}

.contact-company-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.contact-company p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.contact-company strong {
  color: #fff;
  font-weight: 600;
  display: block;
}

/* ── Contact form section ─────────────────────────────────── */
.contact-form-section {
  padding: 0;
  margin-top: 50px;
}

.in-kontakty form {
  max-width: 1100px;
  margin: 0 auto;
}

.in-kontakty .form-group {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.in-kontakty .form-group label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  min-width: 140px;
  padding-top: 14px;
  flex-shrink: 0;
}

.in-kontakty .form-group .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  padding: 14px 18px;
  font-family: var(--template-font);
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

.in-kontakty .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.in-kontakty .form-group .form-control:focus {
  outline: none;
  border-color: var(--color-cya);
  box-shadow: 0 0 0 3px rgba(0, 242, 234, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.in-kontakty .form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.in-kontakty .consents {
  display: block;
}

.in-kontakty .consents label {
  display: inline;
  min-width: unset;
  padding-top: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.in-kontakty .consents label a {
  color: var(--color-cya);
  text-decoration: underline;
}

.in-kontakty .consents label a:hover {
  color: #fff;
}

/* Submit button - special_btn style */
.in-kontakty .submit-wrapper {
  margin-top: 28px;
  display: block;
  text-align: center;
}

.in-kontakty .submit-wrapper input[type=submit].btn,
.in-kontakty .submit-wrapper .btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 16px 42px;
  border-radius: 16px;
  border: 1px solid var(--color-cya);
  font-family: var(--template-headings-font);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.25s ease-in-out, background-color 0.28s ease-in-out;
  min-width: 180px;
}

.in-kontakty .submit-wrapper input[type=submit].btn:before,
.in-kontakty .submit-wrapper .btn:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0.7) 0%,
    rgba(13, 234, 227, 0) 100%
  );
  opacity: 1;
  transition: opacity 0.28s ease-in-out;
}

.in-kontakty .submit-wrapper input[type=submit].btn:after,
.in-kontakty .submit-wrapper .btn:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(13, 234, 227, 0) 0%,
    rgba(13, 234, 227, 1) 100%
  );
  opacity: 0;
  transition: opacity 0.28s ease-in-out;
}

.in-kontakty .submit-wrapper input[type=submit].btn:hover,
.in-kontakty .submit-wrapper .btn:hover {
  color: #fff;
  background-color: rgba(13, 234, 227, 0.5);
}

.in-kontakty .submit-wrapper input[type=submit].btn:hover:before,
.in-kontakty .submit-wrapper .btn:hover:before {
  opacity: 0;
}

.in-kontakty .submit-wrapper input[type=submit].btn:hover:after,
.in-kontakty .submit-wrapper .btn:hover:after {
  opacity: 0;
}

/* Contact page responsive → moved to MEDIA QUERIES section */

/* ── O nás page – about_box_3 fix ───────────────────────── */
.in-o-nas .about_box_3 {
  justify-content: space-between !important;
}

.in-o-nas .about_box_3 > div {
  width: calc((100% - 40px) / 3) !important;
  flex-shrink: 1 !important;
}

@media (max-width: 991.98px) {
  .in-o-nas .about_box_3 > div {
    width: 100% !important;
  }
}
