/* Medical Institut — Main Stylesheet */
/* Custom WordPress theme for rekuperacedotace.cz */

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
  /* ===== Woodmart / Live Site Variables ===== */
  --wd-text-line-height: 1.6;
  --wd-form-height: 42px;
  --wd-form-color: inherit;
  --wd-form-placeholder-color: inherit;
  --wd-form-bg: transparent;
  --wd-form-brd-color: rgba(0,0,0,0.1);
  --wd-form-brd-color-focus: rgba(0,0,0,0.15);
  --wd-main-bgcolor: #fff;
  --wd-block-spacing: 20px;
  --color-white: #fff;
  --color-gray-100: #f7f7f7;
  --color-gray-200: #f1f1f1;
  --color-gray-300: #bbb;
  --color-gray-400: #a5a5a5;
  --color-gray-500: #767676;
  --color-gray-600: #666;
  --color-gray-700: #555;
  --color-gray-800: #333;
  --color-gray-900: #242424;
  --bgcolor-white: #fff;
  --bgcolor-gray-100: #f7f7f7;
  --bgcolor-gray-200: #f7f7f7;
  --bgcolor-gray-300: #f1f1f1;
  --brdcolor-gray-200: rgba(0,0,0,0.075);
  --brdcolor-gray-300: rgba(0,0,0,0.105);
  --brdcolor-gray-400: rgba(0,0,0,0.12);
  --brdcolor-gray-500: rgba(0,0,0,0.2);
  --wd-text-font: "Switzer Variable", Arial, Helvetica, sans-serif;
  --wd-text-font-weight: 400;
  --wd-text-color: #767676;
  --wd-text-font-size: 14px;
  --wd-title-font: "Roboto Serif", Arial, Helvetica, sans-serif;
  --wd-title-font-weight: 400;
  --wd-title-color: #242424;
  --wd-entities-title-font: "Switzer Variable", Arial, Helvetica, sans-serif;
  --wd-entities-title-font-weight: 400;
  --wd-entities-title-color: #333333;
  --wd-primary-color: rgb(23,56,108);
  --wd-alternative-color: rgb(2,173,210);
  --wd-link-color: #333333;
  --wd-link-color-hover: #242424;
  --wd-container-w: 1200px;
  --wd-brd-radius: 0px;
  --wd-header-el-font: "Roboto Serif", Arial, Helvetica, sans-serif;
  --wd-header-el-font-weight: 400;
  --wd-header-el-transform: uppercase;
  --wd-header-el-font-size: 13px;

  /* Button variables from live site */
  --btn-default-font-family: "Switzer Variable", Arial, Helvetica, sans-serif;
  --btn-default-font-weight: 400;
  --btn-default-transform: uppercase;
  --btn-default-bgcolor: rgb(23,56,108);
  --btn-default-bgcolor-hover: rgb(0,0,0);
  --btn-default-color: rgb(255,255,255);
  --btn-default-color-hover: rgb(255,255,255);
  --btn-default-brd-radius: 0px;
  --btn-default-box-shadow: none;
  --btn-default-box-shadow-hover: none;
  --btn-accented-font-family: "Switzer Variable", Arial, Helvetica, sans-serif;
  --btn-accented-font-weight: 400;
  --btn-accented-bgcolor: rgb(2,173,210);
  --btn-accented-bgcolor-hover: rgb(0,0,0);
  --btn-accented-color: rgb(23,56,108);
  --btn-accented-color-hover: rgb(255,255,255);
  --btn-accented-brd-radius: 0px;
  --btn-accented-box-shadow: none;
  --btn-accented-box-shadow-hover: none;
  --wd-form-brd-width: 2px;
  --wd-form-brd-radius: 0px;

  /* ===== Theme Aliases (verified from live site / Figma) ===== */
  --primary:          #17386C;
  --primary-dark:     #112E59;
  --accent:           #02ADD2;
  --accent-hover:     #000000;
  --btn-hover:        #000000;
  --bg-base:          #FFFFFF;
  --bg-light:         #EDF0F6;
  --text-dark:        #242424;
  --text-body:        #767676;
  --text-muted:       #A5A5A5;
  --text-white:       #FFFFFF;
  --border:           rgba(0, 0, 0, 0.1);

  --font-primary:     "Switzer Variable", "Switzer", Arial, Helvetica, sans-serif;
  --font-serif:       "Roboto Serif", Arial, Helvetica, sans-serif;
  --text-font-size:   14px;
  --text-line-height: 1.6;

  --space-xs:         0.25rem;
  --space-sm:         0.5rem;
  --space-md:         1rem;
  --space-lg:         1.5rem;
  --space-xl:         2rem;
  --space-2xl:        3rem;
  --space-3xl:        4rem;
  --space-4xl:        6rem;

  --radius-sm:        0px;
  --radius-md:        0px;
  --radius-lg:        0px;
  --radius-xl:        0px;
  --radius-pill:      0px;
  --radius-full:      9999px;

  --shadow-sm:        0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md:        0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg:        0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl:        0 16px 48px rgba(0, 0, 0, 0.15);

  --transition-fast:  150ms ease;
  --transition-base:  250ms ease;
  --transition-slow:  400ms ease;

  --container-max:    1200px;
  --header-height:    80px;

  --btn-default-bg:       rgb(23, 56, 108);
  --btn-default-bg-hover: rgb(0, 0, 0);
  --btn-accent-bg:        rgb(2, 173, 210);
  --btn-accent-bg-hover:  rgb(0, 0, 0);
  --btn-accent-color:     rgb(23, 56, 108);
  --btn-accent-color-hover: rgb(255, 255, 255);

  --form-brd-width:   2px;
  --form-brd-color:   rgba(0, 0, 0, 0.1);
  --form-brd-radius:  0px;
}

/* ==========================================================================
   Font Face
   ========================================================================== */

@font-face {
  font-family: 'Switzer';
  src: url('../fonts/switzer/Switzer-Variable-subset.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* Roboto Serif — latin (a-z, á, é, í…) */
@font-face {
  font-family: 'Roboto Serif';
  src: url('../fonts/roboto-serif/RobotoSerif-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2013-2014, U+2018-201A, U+201C-201E, U+2026, U+20AC;
}

/* Roboto Serif — latin-ext (š, ž, č, ř…) */
@font-face {
  font-family: 'Roboto Serif';
  src: url('../fonts/roboto-serif/RobotoSerif-latin-ext.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-017F;
}

/* Roboto Serif italic — latin */
@font-face {
  font-family: 'Roboto Serif';
  src: url('../fonts/roboto-serif/RobotoSerif-italic-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2013-2014, U+2018-201A, U+201C-201E, U+2026, U+20AC;
}

/* Roboto Serif italic — latin-ext */
@font-face {
  font-family: 'Roboto Serif';
  src: url('../fonts/roboto-serif/RobotoSerif-italic-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-017F;
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--text-font-size);
  color: var(--text-body);
  line-height: var(--text-line-height);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Content area links — accent cyan */
.proc-intro__desc a,
.proc-section__text a,
.proc-compare__list a,
.proc-compare__block2 a,
.proc-testimonials__text a,
.entry-content a,
.page-content a {
  color: #02ADD2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proc-intro__desc a:hover,
.proc-section__text a:hover,
.proc-compare__list a:hover,
.proc-compare__block2 a:hover,
.proc-testimonials__text a:hover,
.entry-content a:hover,
.page-content a:hover {
  color: #17386C;
}

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ==========================================================================
   Base Typography (mobile-first)
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-dark);
}

h1 {
  font-size: 2rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.375rem; }
}

@media (min-width: 1200px) {
  h1 { font-size: 70px; line-height: 80px; }
  h2 { font-size: 60px; line-height: 70px; }
  h3 { font-size: 24px; line-height: 1.3; }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-padding {
  padding: var(--space-2xl) 0;
}

@media (min-width: 1200px) {
  .section-padding {
    padding: var(--space-3xl) 0;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: none;
}

.btn--default {
  background: var(--btn-default-bg);
  color: var(--btn-default-color);
}

.btn--default:hover {
  background: var(--btn-default-bg-hover);
}

.btn--accent {
  background: var(--btn-accent-bg);
  color: var(--btn-accent-color);
}

.btn--accent:hover {
  background: var(--btn-accent-bg-hover);
  color: var(--btn-accent-color-hover);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--text-white);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ==========================================================================
   Global Focus Styles
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   Main Header Wrapper — absolutely positioned, transparent over hero
   ========================================================================== */

.whb-main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 390;
  background: linear-gradient(0deg, rgba(23, 56, 108, 0.00) 3.76%, #17386C 100%);
}

/* Inner pages: static header with solid navy bg */
.whb-main-header--inner {
  position: relative;
  background: #17386C;
}

/* Sticky header on scroll — top bar hides, nav row sticks */
.whb-main-header.is-scrolled {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #17386C !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.whb-main-header.is-scrolled .top-bar {
  display: none;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */

.top-bar {
  color: #ffffff;
  font-size: 0.875rem;
  height: 60px;
  padding-top: 20px;
  position: relative;
  z-index: 10;
}

.top-bar .container {
  height: 100%;
}

.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 40px;
}

.top-bar__right {
  display: flex;
  align-items: center;
}

.top-bar__mobile {
  display: none;
}

.top-bar__phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

.top-bar__phone-link:hover {
  color: var(--accent);
}

.top-bar__phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.top-bar__phone-number {
  text-decoration: underline;
}

.top-bar__hours {
  color: #ffffff;
  font-size: 0.875rem;
}

.top-bar__reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.top-bar__reviews-link:hover {
  color: var(--accent);
}

.top-bar a {
  color: #ffffff;
}

.top-bar strong {
  font-weight: 700;
  text-decoration: underline;
}

.top-bar__spacer {
  width: 35px;
}

.top-bar__social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background var(--transition-base);
}

.top-bar__social a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.top-bar__social img {
  width: 18px;
  height: 18px;
}

/* Mobile top bar */
@media (max-width: 991px) {
  .top-bar {
    height: 40px;
    padding-top: 10px;
    font-size: 0.8125rem;
  }
  .top-bar__right {
    display: none;
  }
  .top-bar__mobile {
    display: flex;
    align-items: center;
    width: 100%;
  }
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.site-header {
  position: relative;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 110px;
}

/* Desktop / Mobile visibility */
.site-header__desktop-only { display: none; }
.site-header__mobile-only  { display: flex; }

/* Logo */
.site-header__logo {
  display: inline-flex;
}

.site-header__logo img {
  display: block;
}

.site-header__logo-wrap {
  flex-shrink: 0;
  margin-right: 10px;
}

/* Nav */
.site-header__nav-wrap {
  flex: 1;
  justify-content: center;
}

.site-header__nav {
  display: flex;
  gap: 0;
  list-style: none;
  justify-content: flex-end;
  align-items: center;
}

.site-header__nav li {
  padding: 0;
}

.site-header__nav a {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding: 10px 15px;
  transition: color var(--transition-base);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  height: 40px;
}

.site-header__nav a:hover {
  color: var(--accent);
}

/* Dropdown arrow for ZÁKROKY */
.site-header__nav .nav-arrow {
  margin-left: 4px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.site-header__nav .has-mega-menu a[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}


/* Active/current page — cyan color only */
.site-header__nav .is-current a {
  color: var(--accent);
}

/* Right: search + lang */
.site-header__right {
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.site-header__search {
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-base);
}

.site-header__search:hover {
  color: var(--accent);
}

.site-header__lang {
  display: flex;
  align-items: center;
}

.site-header__flag {
  display: block;
}

/* Mobile layout: hamburger | logo | flag+search */
.site-header__mobile-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.site-header__mobile-center {
  flex: 0 0 auto;
}

.site-header__mobile-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* Hamburger */
.site-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.site-header__hamburger span {
  display: block;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* Desktop breakpoint */
@media (min-width: 992px) {
  .site-header__desktop-only { display: flex; }
  .site-header__mobile-only  { display: none; }

  .site-header__inner {
    height: 110px;
  }
}

@media (max-width: 991px) {
  .site-header__inner {
    height: 80px;
  }

  .site-header__search {
    color: var(--text-white);
  }

  .site-header__mobile-left {
    flex: 1;
  }

  .site-header__mobile-center img {
    width: auto;
    max-height: 50px;
    height: auto;
  }
}

/* ==========================================================================
   Mega Menu
   ========================================================================== */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #17386C;
  padding: 25px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Each row: 5 columns */
.mega-menu__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 0;
  padding: 0;
}

.mega-menu__row:first-child {
  margin-top: 0;
}

.mega-menu__row + .mega-menu__row {
  margin-top: 4px;
}

/* Each card */
.mega-menu__card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
}

.mega-menu__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 260 / 350;
}

.mega-menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
}

.mega-menu__card:hover .mega-menu__card-img img {
  transform: scale(1.08);
}

/* Dim non-hovered card images when any card is hovered */
.mega-menu__row:hover .mega-menu__card:not(:hover) .mega-menu__card-img img {
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.45s ease, filter 0.3s ease;
}

/* Gradient overlay for text readability */
.mega-menu__card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
  pointer-events: none;
  transition: height 0.3s ease;
}

.mega-menu__card:hover .mega-menu__card-img::after {
  height: 75%;
}

/* Label overlaid at bottom */
.mega-menu__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  color: #fff !important;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  z-index: 2;
}

.mega-menu__card-label p {
  color: #fff !important;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu__arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .mega-menu__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .mega-menu__card-label {
    font-size: 13px;
    padding: 10px;
  }
}

/* ==========================================================================
   Search Overlay
   ========================================================================== */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 56, 108, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 90%;
  max-width: 600px;
  position: relative;
}

.search-overlay__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.search-overlay__form {
  display: flex;
  gap: 0;
}

.search-overlay__input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-primary);
  font-size: 18px;
  border: none;
  border-radius: 0;
  outline: none;
}

.search-overlay__submit {
  padding: 16px 30px;
  background: #02ADD2;
  color: #17386C;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.search-overlay__submit:hover {
  background: #000;
  color: #fff;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: var(--space-2xl);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  color: var(--text-white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu__nav {
  list-style: none;
  margin-top: var(--space-3xl);
}

.mobile-menu__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__nav a {
  display: block;
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 600;
  padding: var(--space-md) 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-base);
}

.mobile-menu__nav a:hover {
  color: var(--accent);
}

.mobile-menu__contact {
  margin-top: auto;
  color: var(--text-white);
}

.mobile-menu__contact a {
  color: #d9f4ff;
}

.mobile-menu__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.mobile-menu__social a {
  display: flex;
  opacity: 0.85;
  transition: opacity var(--transition-base);
}

.mobile-menu__social a:hover {
  opacity: 1;
}

.mobile-menu__social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.site-footer {
  background: #17386C;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.site-footer__inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__left,
.site-footer__right {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__right a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-base);
}

.site-footer__link-underline {
  text-decoration: underline;
}

.site-footer__right a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  overflow: visible;
  min-height: 600px;
  max-height: none;
  padding-top: 130px;
  padding-bottom: 200px;
  margin-bottom: 0;
}

.hero__bg,
.hero__overlay {
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(23, 56, 108, 0) 66.26%, rgba(23, 56, 108, 0.7) 92.08%),
    linear-gradient(-89deg, rgba(23, 56, 108, 0) 45.96%, rgba(23, 56, 108, 0.45) 70.05%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Title text */
.hero__text {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: var(--space-xl);
}

.hero__text em {
  font-style: italic;
}

.hero__text p,
.hero__text h1 {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

/* CTA Button */
.btn--hero {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  color: #17386C;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 15.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 15px 40px;
  min-height: 56px;
  border: none;
  border-radius: 0;
  transition: background var(--transition-base), color var(--transition-base);
  margin-bottom: var(--space-2xl);
}

.btn--hero:hover {
  background: #17386C;
  color: #ffffff;
}

.btn--hero .btn__arrow {
  color: #17386C;
}

.btn--hero:hover .btn__arrow {
  color: #ffffff;
}

.btn__arrow {
  display: flex;
  align-items: center;
}

/* Hero Carousel */
.hero-carousel {
  margin-top: var(--space-lg);
  position: relative;
  z-index: 3;
  margin-bottom: -120px;
}

.hero-carousel__swiper {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

/* Promo banner cards */
.promo-banner {
  position: relative;
  overflow: hidden;
}

.promo-banner__img {
  overflow: hidden;
  height: 350px;
}

.promo-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-banner:hover .promo-banner__img img {
  transform: scale(1.05);
}

.promo-banner__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  z-index: 2;
}

.promo-banner__label p {
  margin: 0;
}

.promo-banner__arrow {
  display: inline;
  vertical-align: middle;
}

.promo-banner__link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Carousel arrows — visible on hover only */
.hero-carousel__arrows .swiper-button-prev,
.hero-carousel__arrows .swiper-button-next {
  color: #ffffff;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  background: rgba(23, 56, 108, 0.85);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.hero-carousel__arrows .swiper-button-prev::after,
.hero-carousel__arrows .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.hero-carousel:hover .swiper-button-prev,
.hero-carousel:hover .swiper-button-next {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel__arrows .swiper-button-prev:hover,
.hero-carousel__arrows .swiper-button-next:hover {
  background: #02ADD2;
}

/* Carousel dots */
.hero-carousel__dots {
  position: relative;
  margin-top: var(--space-md);
  text-align: center;
}

.hero-carousel__dots .swiper-pagination-bullet {
  background: rgba(23, 56, 108, 0.3);
  border: 2px solid #bbb;
  opacity: 1;
  width: 15px;
  height: 15px;
  border-radius: 10px;
}

.hero-carousel__dots .swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: var(--primary);
}

/* Mobile-only hero tweaks */
@media (max-width: 767px) {
  .hero__content {
    text-align: center;
    padding: 0 var(--space-md);
  }
  .hero__text {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero__btn {
    display: flex;
    justify-content: center;
  }
  .hero-carousel {
    margin-bottom: -80px;
  }
  .hero-carousel__arrows {
    display: none;
  }
  .hero-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: var(--space-md);
    position: relative;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 160px;
    padding-bottom: 60px;
    min-height: 800px;
  }
  .hero__text {
    font-size: 40px;
  }
  .promo-banner__img {
    height: 350px;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 260px;
    padding-bottom: 120px;
    min-height: 900px;
  }
  .hero__text {
    font-size: 70px;
    line-height: 80px;
  }
}

/* ==========================================================================
   Promo Banner Section (Zvýhodněné dárkové kredity)
   ========================================================================== */

.promo-banner-section {
  padding: var(--space-xl) 0;
}

.promo-banner-full {
  position: relative;
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  align-items: center;
}

.promo-banner-full__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-xl);
}

.promo-banner-full__title i {
  font-style: italic;
}

.promo-banner-full__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (min-width: 1200px) {
  .promo-banner-full__title {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Procedures Carousel
   ========================================================================== */

.procedures {
  background: #EDF0F6;
}

.procedures__title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-weight: 400;
  color: var(--primary);
}

.procedures__swiper {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}

.procedures__slide {
  /* Each slide: image + name below */
}

.procedures__card {
  display: block;
  overflow: hidden;
}

.procedures__card img {
  width: 100%;
  aspect-ratio: 270 / 350;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.procedures__card:hover img {
  transform: scale(1.05);
}

.procedures__name {
  margin-top: 10px;
  font-size: 19.5px;
  font-weight: 400;
  font-family: var(--font-primary);
  line-height: 30px;
}

.procedures__name a {
  color: var(--primary);
}

.procedures__name a:hover {
  color: var(--accent);
}

/* Procedures arrows — visible on hover only */
.procedures__arrows .swiper-button-prev,
.procedures__arrows .swiper-button-next {
  color: #fff;
  top: 38%;
  width: 48px;
  height: 48px;
  background: rgba(23, 56, 108, 0.85);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.procedures__arrows .swiper-button-prev::after,
.procedures__arrows .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.procedures__swiper:hover .swiper-button-prev,
.procedures__swiper:hover .swiper-button-next {
  opacity: 1;
  pointer-events: auto;
}

.procedures__arrows .swiper-button-prev:hover,
.procedures__arrows .swiper-button-next:hover {
  background: #02ADD2;
}

.procedures__arrows .swiper-button-prev { left: 0; }
.procedures__arrows .swiper-button-next { right: 0; }

.procedures__dots {
  text-align: center;
  margin-top: 16px;
}

.procedures__dots .swiper-pagination-bullet {
  background: rgba(23, 56, 108, 0.3);
  border: 2px solid #bbb;
  opacity: 1;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  margin: 0 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.procedures__dots .swiper-pagination-bullet:hover {
  background: rgba(23, 56, 108, 0.5);
}

.procedures__dots .swiper-pagination-bullet-active {
  background: #17386C;
  border-color: #17386C;
}

/* ==========================================================================
   Section Divider
   ========================================================================== */

.section-divider {
  padding: 30px 0;
}

.section-divider__line {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ==========================================================================
   Experience Section (Mluví za nás + info boxes + image)
   ========================================================================== */

.experience {
  background: var(--bg-base);
  content-visibility: auto;
  contain-intrinsic-size: 1px 1200px;
}

.experience__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.experience__header h2 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.17;
  color: var(--primary);
}

.experience__header-right {
  text-align: left;
  font-size: 15px;
  line-height: 25.6px;
  color: var(--text-body);
}

.experience__header-right p {
  margin: 0;
}

.experience__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.experience__boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.experience__box {
  display: block;
  text-align: center;
  padding: 80px 20px;
  background: #EDF0F6;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.experience__box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(23, 56, 108, 0.10);
}

.experience__box--accent {
  background: var(--primary);
}

.experience__box--accent p {
  color: #fff !important;
}

.experience__box--accent .experience__box-icon {
  color: #fff;
}

.experience__boxes-grid--pillars {
  margin-top: 6px;
}

.experience__box-icon svg {
  color: var(--primary);
}

.experience__box-icon {
  margin-bottom: 20px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience__box-icon img {
  width: 38px;
  height: auto;
}

.experience__box p {
  font-size: 15.6px;
  color: var(--primary);
  line-height: 26px;
  margin: 0;
}

.experience__image {
  display: flex;
  align-items: stretch;
}

.experience__image a {
  display: block;
  width: 100%;
}

.experience__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .experience__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .experience__header h2 {
    font-size: 2.25rem;
    flex: 0 0 50%;
  }
  .experience__header-right {
    text-align: right;
    flex: 0 0 50%;
    padding-top: 78px;
  }
  .experience__body {
    flex-direction: row;
    gap: 10px;
  }
  .experience__boxes {
    flex: 0 0 calc(50% + 14px);
  }
  .experience__image {
    flex: 1;
  }
}

@media (min-width: 1200px) {
  .experience__header h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
  background: var(--bg-base);
}

.testimonials__header {
  margin-bottom: 36px;
}

.testimonials__title {
  margin-bottom: 0;
  font-weight: 400;
  color: var(--primary);
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.testimonials__slider .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials__slider .review-card {
  flex: 1;
  height: 100%;
}

.testimonials__slider-wrap {
  position: relative;
  padding: 0 48px;
}

.testimonials__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.testimonials__arrows .swiper-button-prev,
.testimonials__arrows .swiper-button-next {
  pointer-events: auto;
  color: var(--primary);
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
}

.testimonials__arrows .swiper-button-prev::after,
.testimonials__arrows .swiper-button-next::after {
  font-size: 20px;
}

@media (max-width: 767px) {
  .testimonials__slider-wrap {
    padding: 0 32px;
  }
}

.testimonials__dots.swiper-pagination {
  bottom: 0;
}

.testimonials__dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(23, 56, 108, 0.3);
  border: 2px solid #BBB;
  opacity: 1;
}

.testimonials__dots .swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: var(--primary);
}

.testimonials__cta {
  text-align: center;
  margin-top: 36px;
}

.testimonials__swiper-wrap {
  background: #EDF0F6;
  padding: 50px 120px 50px;
  overflow: hidden;
  position: relative;
}

.testimonials__swiper {
  overflow: hidden !important;
  position: relative;
}

.testimonials__inner {
  text-align: center;
}

.testimonials__stars {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.testimonials__author {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 10px;
}

.testimonials__text {
  font-size: 16px;
  line-height: 30px;
  color: var(--text-dark);
  text-align: center;
}

.testimonials__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 24px;
  z-index: 10;
}

.testimonials__arrows .swiper-button-prev,
.testimonials__arrows .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #17386C;
  color: #17386C;
  transition: background 0.2s ease, color 0.2s ease;
  pointer-events: all;
  margin: 0;
}

.testimonials__arrows .swiper-button-prev::after,
.testimonials__arrows .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.testimonials__arrows .swiper-button-prev:hover,
.testimonials__arrows .swiper-button-next:hover {
  background: #17386C;
  color: #fff;
}

.testimonials__dots {
  text-align: center;
  margin-top: 30px;
  padding-bottom: 10px;
}

.testimonials__dots .swiper-pagination-bullet {
  background: rgba(23, 56, 108, 0.3);
  border: 2px solid #bbb;
  opacity: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.testimonials__dots .swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: var(--primary);
}

@media (min-width: 1200px) {
  .testimonials__author {
    font-size: 45px;
    line-height: 1;
  }
  .testimonials__text {
    font-size: 18.8px;
    line-height: 33px;
  }
}

/* ==========================================================================
   Doctor Banner (20 let zkušeností)
   ========================================================================== */

.doctor-banner {
  padding: var(--space-2xl) 0;
}

.doctor-banner__inner {
  position: relative;
  overflow: hidden;
}

.doctor-banner__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 80% center;
}

.doctor-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl);
}

.doctor-banner__text {
  color: #17386C;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: var(--space-xl);
}

.doctor-banner__text p {
  margin: 0;
}

.doctor-banner__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.doctor-banner__btn {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .doctor-banner__content {
    background: rgba(255, 255, 255, 0.4);
  }
}

@media (min-width: 1200px) {
  .doctor-banner__text {
    font-size: 36px;
  }
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */

.insta-section {
  padding: var(--space-2xl) 0 0;
}

.insta-section__heading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #17386C !important;
  margin-bottom: 48px;
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.insta-section__icon {
  width: 42px;
  height: 42px;
}

.insta-section__feed {
  overflow: hidden;
}

.insta-section__swiper {
  overflow: hidden;
  position: relative;
}

.insta-section__item {
  position: relative;
  overflow: hidden;
}

.insta-section__item a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.insta-section__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-section__item:hover img {
  transform: scale(1.05);
}

.insta-section__arrows .swiper-button-prev,
.insta-section__arrows .swiper-button-next {
  color: #ffffff;
  background: #17386C;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.insta-section__arrows .swiper-button-prev::after,
.insta-section__arrows .swiper-button-next::after {
  font-size: 16px;
}

/* ==========================================================================
   Contact Footer Section
   ========================================================================== */

.contact-footer {
  background: #17386C;
  color: #fff;
}

.contact-footer p,
.contact-footer a,
.contact-footer span,
.contact-footer h4 {
  color: #fff;
}

.contact-footer__row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Left: Info column --- */
.contact-footer__info {
  padding: 0;
}

.contact-footer__info-inner {
  padding: 0;
}

.contact-footer .contact-footer__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: #02ADD2 !important;
  margin-bottom: 30px;
}

.contact-footer__details {
  margin-bottom: 0;
}

.contact-footer__details p {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  color: #ffffff;
  margin-bottom: 9px;
}

.contact-footer__link-underline {
  color: #ffffff;
  text-decoration: underline;
  transition: color var(--transition-base);
}

.contact-footer__link-underline:hover {
  color: var(--accent);
}

/* --- Person info box --- */
.contact-footer__person {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 20px;
  padding: 35px 0;
}

.contact-footer__person-photo {
  flex-shrink: 0;
  width: 96px;
  min-width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
}

.contact-footer__person-photo img {
  width: 96px !important;
  height: 140px !important;
  max-width: 96px !important;
  object-fit: cover;
  object-position: center 5%;
}

.contact-footer__person-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  margin: 0;
}

.contact-footer .contact-footer__person-name {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #ffffff;
  margin: 0;
}

/* --- Messaging links --- */
.contact-footer__messaging {
  display: flex;
  flex-direction: row;
  gap: 9px 40px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-footer__msg-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  color: #fff;
  transition: color var(--transition-base);
}

.contact-footer__msg-item:hover {
  color: var(--accent);
}

.contact-footer__msg-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
}

.contact-footer__msg-icon img {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  display: inline-block !important;
}

.contact-footer__msg-text {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 33px;
  text-decoration: underline;
}

/* --- CTA button --- */
.contact-footer__cta {
  padding-top: 50px;
}

.contact-footer__btn-bordered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  min-height: 56px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all var(--transition-base);
}

.contact-footer__btn-bordered:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

/* --- Right: Form column --- */
.contact-footer__form {
  background: #112E59;
  color: #ffffff;
}

.contact-footer__form-inner {
  padding: 70px 30px;
}

.contact-footer__form-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
}

/* Demo form (until FluentForm is connected) */
.cf-demo-form {
  display: flex;
  flex-direction: column;
}

.cf-demo-form__field {
  padding: 15px 0;
}

.cf-demo-form__field label {
  display: block;
  font-family: var(--font-primary);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 19px;
  margin-bottom: 5px;
}

.cf-demo-form__field label span {
  color: rgba(255, 255, 255, 0.5);
}

.cf-demo-form__field input,
.cf-demo-form__field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 15px;
  padding: 10px 0;
  border-radius: 0;
  outline: none;
}

.cf-demo-form__field textarea {
  min-height: 50px;
  resize: vertical;
}

.cf-demo-form__field input:focus,
.cf-demo-form__field textarea:focus {
  border-bottom-color: var(--accent);
}

.cf-demo-form__submit {
  width: 100%;
  background: #17386C;
  color: #ffffff;
  border: none;
  padding: 20px 30px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  transition: background var(--transition-base), color var(--transition-base);
}

.cf-demo-form__submit:hover {
  background: #000000;
  color: #ffffff;
}

/* FluentForm overrides for dark bg */
.contact-footer__form .ff-el-input--label label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}

.contact-footer__form input[type="text"],
.contact-footer__form input[type="email"],
.contact-footer__form input[type="tel"],
.contact-footer__form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 0;
  border-radius: 0;
  font-size: 15px;
}

.contact-footer__form input::placeholder,
.contact-footer__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-footer__form input:focus,
.contact-footer__form textarea:focus {
  border-bottom-color: var(--accent);
  outline: none;
}

.contact-footer__form .ff-btn-submit,
.contact-footer .ff-btn.ff-btn-submit {
  width: 100%;
  background: #ffffff !important;
  color: #17386C !important;
  border: none !important;
  padding: 20px 30px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: background var(--transition-base), color var(--transition-base);
}

.contact-footer__form .ff-btn-submit:hover,
.contact-footer .ff-btn.ff-btn-submit:hover {
  background: #17386C !important;
  color: #ffffff !important;
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .contact-footer__row {
    flex-direction: row;
  }

  .contact-footer__info {
    flex: 0 0 58.33%;
  }

  .contact-footer__form {
    flex: 0 0 41.67%;
  }

  .contact-footer__form-inner {
    padding: 70px 90px;
  }
}

@media (max-width: 1199px) {
  .contact-footer__title {
    font-size: 30px;
    line-height: 40px;
  }

  .contact-footer__details p,
  .contact-footer__msg-text {
    font-size: 16px;
  }

}

@media (max-width: 767px) {
  .contact-footer {
    padding: 30px 0;
  }

  .contact-footer__title {
    font-size: 30px;
    line-height: 40px;
  }

  .contact-footer__details p,
  .contact-footer__msg-text {
    font-size: 16px;
  }

  .contact-footer__form-inner {
    padding: 20px;
  }

  .contact-footer__person {
    padding: 10px 0;
  }

  .contact-footer__cta {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

/* ==========================================================================
   Page Content
   ========================================================================== */

.page-content {
  padding-top: calc(var(--header-height) + var(--space-2xl));
  min-height: 60vh;
}

.page-content__title {
  margin-bottom: var(--space-xl);
}

.page-content__body {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.page-content__body p {
  margin-bottom: var(--space-lg);
}

.page-content__body a {
  color: var(--accent);
  text-decoration: underline;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   About Page (O naší klinice)
   ========================================================================== */

.about-page {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-4xl);
  background: var(--bg-base);
}

.about-page__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #17386C !important;
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .about-page__title {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .about-page__title {
    font-size: 50px;
    line-height: 60px;
  }
}

/* --- Tabs --- */
.about-tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 39px;
  padding: 5px 0;
}

.about-tabs__tab {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 19.2px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
  background: transparent;
  border: 1.5px solid var(--primary);
  border-radius: 60px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.about-tabs__tab:hover {
  background: rgba(23, 56, 108, 0.1);
}

.about-tabs__tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}


/* --- Tab panels --- */
.about-tabs__panel {
  display: none;
}

.about-tabs__panel.is-active {
  display: block;
}

.about-tabs__placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: var(--space-3xl) 0;
  font-style: italic;
}

/* About page – Services tab grid */
.about-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.about-services__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13, 28, 60, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 28, 60, 0.12);
}

.about-services__card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e9eef7;
}

.about-services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-services__card:hover .about-services__card-img img {
  transform: scale(1.06);
}

.about-services__card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  padding: 14px 10px;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .about-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .about-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-services__card-title {
    font-size: 15px;
    padding: 10px 8px;
  }
}

/* --- Value cards --- */
.about-values__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.about-values__card {
  background: var(--bg-light);
  padding: 60px;
  text-align: center;
}

.about-values__card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 50px;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.about-values__card-text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 25.6px;
  color: var(--primary);
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .about-values__row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .about-values__card-title {
    font-size: 40px;
    line-height: 50px;
  }
}

/* --- Famous Faces (Známé tváře) --- */
.famous-faces__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 15px 0;
}

.famous-faces__card {
  text-align: center;
}

.famous-faces__img {
  overflow: hidden;
  margin-bottom: 15px;
}

.famous-faces__img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.famous-faces__card:hover .famous-faces__img img {
  transform: scale(1.05);
}

.famous-faces__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 5px;
}

.famous-faces__title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0;
}

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

/* --- Press Articles (Napsali o nás) --- */
.press-articles {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 15px 0;
}

.press-articles__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-light);
  padding: 30px;
}

.press-articles__img {
  overflow: hidden;
}

.press-articles__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.press-articles__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 10px;
}

.press-articles__text {
  font-size: 15px;
  line-height: 25.6px;
  color: var(--text-body);
  margin-bottom: 15px;
}

.press-articles__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #17386C;
  color: #fff !important;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.press-articles__link:hover {
  background: #000;
  color: #fff !important;
}

@media (min-width: 768px) {
  .press-articles__card {
    flex-direction: row;
    align-items: flex-start;
  }

  .press-articles__img {
    flex: 0 0 300px;
  }

  .press-articles__content {
    flex: 1;
  }
}

/* --- Accordion --- */
.accordion {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 5px;
}

.accordion--shadow .accordion__item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
  background: #fff;
}

.accordion__header {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 20px 30px;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-base);
  text-align: left;
}

.accordion__header:hover {
  color: var(--accent);
}

/* Plus/minus opener on left */
.accordion__opener {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.accordion__opener::before,
.accordion__opener::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: transform 0.3s ease;
}

.accordion__opener::before {
  top: 50%;
  left: 0;
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
}

.accordion__opener::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 14px;
  transform: translateX(-50%);
}

.accordion__item.is-open .accordion__opener::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__body {
  display: none;
  padding: 0 30px 30px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.accordion__body p {
  margin-bottom: 15px;
}

.accordion__body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.accordion__body li {
  margin-bottom: 5px;
}

.accordion__body strong {
  color: var(--text-dark);
}

.accordion__body a {
  color: var(--accent) !important;
  text-decoration: underline;
}

.accordion__item.is-open .accordion__body {
  display: block;
}

/* Careers bottom note */
.careers__bottom-note {
  padding-top: 20px;
  font-size: 15px;
  color: #000 !important;
}

.careers__bottom-note strong {
  color: #000 !important;
}

.careers__bottom-note a {
  color: #000 !important;
  text-decoration: underline;
}

/* --- Careers (inside accordion) --- */
.careers__employer {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 15px;
}

.careers__desc {
  font-size: 15px;
  line-height: 25.6px;
  color: #17386C;
  margin-bottom: 20px;
}

.careers__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.careers__section h4 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #17386C;
  color: var(--primary);
  margin-bottom: 10px;
}

.careers__section ul {
  list-style: disc;
  padding-left: 20px;
}

.careers__section li {
  font-size: 14px;
  line-height: 1.8;
  color: #17386C;
}

.careers__contact {
  font-size: 14px;
  color: #17386C;
  margin: 0;
}

.careers__contact a {
  color: var(--accent) !important;
  transition: color var(--transition-base);
}

.careers__contact a:hover {
  color: var(--primary) !important;
}

@media (min-width: 768px) {
  .careers__details {
    flex-direction: row;
  }

  .careers__section {
    flex: 1;
  }
}

/* --- Pricing Table (Ceník) --- */
.pricing-table {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #F2F4F8;
  border: none;
  border-radius: 6px;
}

.pricing-table__header {
  padding: 20px 20px 8px;
  margin-top: 12px;
}

.pricing-table__header:first-child {
  margin-top: 0;
}

.pricing-table__header span {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: #17386C;
}

.pricing-table__service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  vertical-align: middle;
}

.pricing-table__service-link:hover {
  color: var(--primary);
}

.pricing-table__service-link svg {
  flex-shrink: 0;
}

.pricing-table__note {
  padding: 8px 20px 4px;
}

.pricing-table__note span {
  font-family: var(--font-primary);
  font-size: 13px;
  font-style: italic;
  color: #767676;
}

.pricing-table__row--label .pricing-table__name {
  font-weight: 600;
}

.pricing-table__name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #17386C;
}

.pricing-table__detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-table__detail-link:hover {
  color: var(--primary);
}

.pricing-table__detail-link svg {
  flex-shrink: 0;
}

.pricing-table__price--with-link {
  margin-left: auto;
}

.pricing-table__dots {
  display: none;
}

.pricing-table__price {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #17386C;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
}

/* --- Gallery --- */
.about-gallery__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 50px;
  color: var(--primary);
  text-align: center;
  padding-top: 50px;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .about-gallery__title {
    font-size: 40px;
    line-height: 50px;
  }
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .about-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-gallery__item {
  display: block;
  overflow: hidden;
}

.about-gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 564 / 355;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-gallery__item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Page Banner (inner pages)
   ========================================================================== */

.page-banner {
  padding: 80px 0;
  text-align: left;
}

.page-banner__title {
  font-family: var(--font-serif);
  font-size: 35px;
  font-weight: 400;
  color: #fff !important;
  margin-bottom: 10px;
}

.page-banner__breadcrumb {
  font-family: var(--font-primary);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.page-banner__breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.page-banner__breadcrumb a:hover {
  color: #fff;
}

@media (min-width: 1200px) {
  .page-banner__title {
    font-size: 60px;
  }
}

/* ==========================================================================
   Team Page
   ========================================================================== */

.team-section {
  background: #fff;
}

.team-section__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #17386C !important;
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .team-section__title {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .team-section__title {
    font-size: 50px;
    line-height: 60px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

/* Linked variant — used for members with bio (clickable to single page) */
a.team-card--linked {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

a.team-card--linked:hover {
  transform: translateY(-4px);
}

a.team-card--linked .team-card__photo img {
  transition: transform 0.4s ease;
}

a.team-card--linked:hover .team-card__photo img {
  transform: scale(1.04);
}

.team-card__photo {
  overflow: hidden;
  border-radius: 6px;
  background: #EDF0F6;
  position: relative;
}

.team-card__photo img {
  width: 100%;
  aspect-ratio: 270 / 350;
  object-fit: cover;
  display: block;
}

.team-card__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 270 / 350;
  background: #17386C;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
}

.team-card__name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: #17386C !important;
  margin-top: 14px;
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #17386C;
  line-height: 1.4;
}

.team-card__more {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

a.team-card--linked:hover .team-card__more {
  opacity: 1;
  transform: translateY(0);
}

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

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .team-card__name {
    font-size: 20px;
  }
  .team-card__role {
    font-size: 15px;
  }
}

/* ==========================================================================
   Blog Page
   ========================================================================== */

.blog-header {
  background: #fff;
  text-align: center;
  padding-bottom: 0;
}

.blog-header__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #17386C !important;
  margin: 0 0 30px;
  line-height: 1.2;
}

.blog-header__text p {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #17386C;
  line-height: 1.8;
  margin: 0 0 14px;
  text-align: center;
}

@media (min-width: 768px) {
  .blog-header__title {
    font-size: 42px;
  }
}

@media (min-width: 1200px) {
  .blog-header__title {
    font-size: 50px;
  }
}

/* Blog grid */
.blog-section {
  background: #fff;
  padding-top: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #EDF0F6;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__img {
  overflow: hidden;
  position: relative;
}

.blog-card__cat {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background: rgba(23, 56, 108, 0.85);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  line-height: 1;
}

.blog-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 24px 30px 28px;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.4;
  margin-bottom: 10px;
  min-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  min-height: 66px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__cta {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Blog pagination */
.blog-pagination {
  text-align: center;
  margin-top: 48px;
}

.blog-pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50%;
  margin: 0 4px;
  transition: all 0.25s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: #17386C;
  color: #fff;
}

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

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-card__title {
    font-size: 20px;
    min-height: 56px;
  }
}

/* ==========================================================================
   CONTACT PAGE (/kontakt/)
   ========================================================================== */

/* Title section */
.kontakt-hero {
  text-align: center;
  background: #fff;
  padding-bottom: 0;
}

.kontakt-hero__lead {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body, #4b5466);
  max-width: 640px;
  margin: 14px auto 32px;
  text-align: center;
}

.kontakt-hero__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #17386C !important;
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .kontakt-hero__title {
    font-size: 44px;
  }
}

@media (min-width: 1200px) {
  .kontakt-hero__title {
    font-size: 50px;
    line-height: 60px;
  }
}

/* Contact Info Bar (3 columns) */
.kontakt-info {
  padding: 0 0 28px;
  background: #fff;
}

.kontakt-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #EDF0F6;
  border-radius: 0;
}

.kontakt-info__card {
  padding: 35px 24px;
  text-align: center;
}

.kontakt-info__label {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
  color: #02ADD2;
  margin: 0 0 10px;
  line-height: 1.3;
}

.kontakt-info__value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: #17386C;
  margin: 0;
  line-height: 1.5;
}

.kontakt-info__value a {
  color: #17386C;
  text-decoration: none;
}

.kontakt-info__value a:hover {
  color: #02ADD2;
}

@media (min-width: 768px) {
  .kontakt-info__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .kontakt-info__card {
    padding: 40px 30px;
    position: relative;
  }
  .kontakt-info__card + .kontakt-info__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(23,56,108,0.15);
  }
  .kontakt-info__label {
    font-size: 25px;
  }
  .kontakt-info__value {
    font-size: 18px;
  }
}

/* Contact Main: Left info + Right form */
.kontakt-main {
  padding: 48px 0 64px;
  background: #fff;
}

.kontakt-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* Left column: hours + extra contacts */
.kontakt-main__heading {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: #17386C;
  margin: 24px 0 4px;
}

.kontakt-main__heading:first-child {
  margin-top: 0;
}

.kontakt-main__text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  color: #1e1e1e;
  margin: 0 0 0;
  line-height: 1.7;
}

.kontakt-main__text a {
  color: #1e1e1e;
  text-decoration: none;
}

.kontakt-main__text a:hover {
  color: #02ADD2;
}

/* Contact form (light bg version) */
.kontakt-main__right {
  background: #EDF0F6;
  padding: 40px 35px;
}

.kontakt-form__field {
  margin-bottom: 24px;
}

.kontakt-form__field label {
  display: block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: #17386C;
  margin-bottom: 5px;
}

.kontakt-form__field label span {
  color: #02ADD2;
}

.kontakt-form__field input,
.kontakt-form__field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #17386C;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 16px;
  color: #17386C;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.25s ease;
}

.kontakt-form__field input:focus,
.kontakt-form__field textarea:focus {
  border-bottom-color: #02ADD2;
}

.kontakt-form__field textarea {
  resize: vertical;
  min-height: 80px;
}

.kontakt-form__submit {
  display: block;
  width: 100%;
  background: #17386C;
  color: #ffffff;
  border: none;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 20px 30px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  margin-top: 8px;
}

.kontakt-form__submit:hover {
  background: #000;
  color: #fff;
}

/* Messaging links */
.kontakt-messaging {
  margin-top: 32px;
}

.kontakt-messaging__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.kontakt-messaging__link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline;
  font-family: var(--font-primary);
  font-size: 14px;
  color: #17386C;
}

.kontakt-messaging__link:hover {
  color: #02ADD2;
}

.kontakt-messaging__link img {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

@media (min-width: 992px) {
  .kontakt-main {
    padding: 64px 0 96px;
  }
  .kontakt-main__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* CTA banner — Objednat konzultaci */
.kontakt-cta {
  padding: 48px 0;
  background: linear-gradient(135deg, #17386C 0%, #234e8c 100%);
  color: #fff;
}

.kontakt-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.kontakt-cta__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.kontakt-cta__desc {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 620px;
}

.kontakt-cta__btn {
  background: #ffffff !important;
  color: #17386C !important;
  border-color: #ffffff !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.kontakt-cta__btn:hover {
  background: #17386C !important;
  color: #ffffff !important;
  border-color: #17386C !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.kontakt-cta__btn .proc-btn__arrow line,
.kontakt-cta__btn .proc-btn__arrow polyline {
  stroke: #17386C;
}

.kontakt-cta__btn:hover .proc-btn__arrow line,
.kontakt-cta__btn:hover .proc-btn__arrow polyline {
  stroke: #ffffff;
}

@media (min-width: 992px) {
  .kontakt-cta {
    padding: 56px 0;
  }
  .kontakt-cta__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 40px;
  }
  .kontakt-cta__title {
    font-size: 34px;
  }
  .kontakt-cta__btn {
    flex-shrink: 0;
  }
}

/* Reviews social proof section */
.kontakt-reviews-section {
  padding: 0;
  background: #fff;
}

.kontakt-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 28px;
  background: #f6f8fc;
  border-radius: 16px;
  border: 1px solid #e4eaf3;
}

.kontakt-reviews__badge {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 17px;
  color: var(--primary);
}

.kontakt-reviews__badge .recenze-stat__stars {
  font-size: 22px;
}

.kontakt-reviews__badge .recenze-stat__count {
  font-weight: 700;
  font-size: 18px;
}

.kontakt-reviews__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.kontakt-reviews__links .proc-btn {
  font-size: 13px;
  padding: 12px 22px;
  border-radius: 999px;
}

/* Fluent Form submit — light background → dark blue button */
.kontakt-main__right .ff-btn-submit,
.kontakt-main__right button.ff-btn.ff-btn-submit {
  background: #17386C !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  transition: background 0.2s ease !important;
}

.kontakt-main__right .ff-btn-submit:hover,
.kontakt-main__right button.ff-btn.ff-btn-submit:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

/* Form title */
.kontakt-main__form-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 24px;
  line-height: 1.3;
}

/* Directions (replaces old Location / Parking) */
.kontakt-directions {
  padding: 48px 0 64px;
  background: #f6f8fc;
}

.kontakt-directions__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 10px;
}

.kontakt-directions__lead {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body, #4b5466);
  margin: 0 0 36px;
}

.kontakt-directions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.kontakt-directions__heading {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 24px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kontakt-directions__heading:first-child {
  margin-top: 0;
}

.kontakt-directions__list {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc;
  font-size: 15px;
  line-height: 1.7;
  color: #2a3447;
}

.kontakt-directions__list li {
  margin-bottom: 6px;
}

.kontakt-directions__list strong {
  color: var(--primary);
}

.kontakt-directions__text {
  font-size: 15px;
  line-height: 1.7;
  color: #2a3447;
  margin: 0;
}

.kontakt-directions__map-embed {
  margin-top: 28px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13, 28, 60, 0.08);
}

.kontakt-directions__map-embed iframe {
  display: block;
  width: 100%;
}

.kontakt-directions__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.kontakt-directions__photos img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(13, 28, 60, 0.08);
}

.kontakt-directions__photos img + img {
  margin-top: 16px;
}

@media (min-width: 992px) {
  .kontakt-directions {
    padding: 64px 0 96px;
  }
  .kontakt-directions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .kontakt-directions__title {
    font-size: 40px;
  }
}

/* ========== Procedure Single Page ========== */

/* Title Section */
.proc-title-section {
  padding: 64px 0 24px;
  background: #fff;
  text-align: center;
}

.proc-title-section__h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.15;
  margin: 0;
}

/* Intro Box */
.proc-intro {
  padding: 0 0 0;
  background: #fff;
}

.proc-intro__box {
  background: #EDF0F6;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 6px;
}

.proc-intro__subtitle {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.3;
  margin: 0 0 12px;
}

.proc-intro__desc p {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #17386C;
  line-height: 1.7;
  margin: 0 0 12px;
}

/* Procedure page typography: h1=50px, h2=40px, h3=30px (desktop) */

/* H1 — page title */
.proc-title-section__h1 {
  font-size: 40px !important;
}

/* H2 — all section headings */
.proc-intro__desc h2,
.proc-section__heading,
.proc-section__text h2,
.proc-body__content h2,
.proc-compare__title,
.proc-pricing__title,
.proc-testimonials__title {
  font-family: var(--font-serif) !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  color: #17386C !important;
  line-height: 1.2 !important;
}

.proc-intro__desc h2 {
  margin-bottom: 20px !important;
}

/* H3 — sub-headings */
.proc-intro__desc h3,
.proc-section__text h3,
.proc-body__content h3 {
  font-family: var(--font-serif) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #17386C !important;
  line-height: 1.3 !important;
}

.proc-intro__desc h3,
.proc-intro__desc h4 {
  font-family: var(--font-serif);
  font-size: 20px !important;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.3;
  margin: 16px 0 10px;
}

.proc-intro__desc {
  margin-bottom: 24px;
  color: #17386C;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
}

.proc-intro__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.proc-intro__ctas .proc-btn {
  text-align: center;
}

.proc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.proc-btn__arrow {
  margin-left: 8px;
  flex-shrink: 0;
}

.proc-btn--primary {
  background: #17386C;
  color: #fff;
}

.proc-btn--primary:hover {
  background: #000;
  color: #fff;
}

.proc-btn--outline {
  background: transparent;
  color: #17386C;
  border: 1.5px solid #17386C;
  padding: 14px 28px;
  font-size: 13px;
}

.proc-btn--outline:hover {
  background: #0d2448;
  color: #fff;
  border-color: #0d2448;
}

.proc-intro__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(23,56,108,0.12);
}

.proc-intro__meta-item {
  font-family: var(--font-primary);
  font-size: 15px;
  color: #17386C;
}

.proc-intro__meta-item strong {
  font-weight: 600;
}

.proc-intro__right {
  width: 100%;
  min-height: 280px;
  align-self: stretch;
}

.proc-intro__image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

/* ========== ACF Flexible Content Sections ========== */
.proc-section {
  padding: 36px 0;
  background: #fff;
}

.proc-section__heading {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.2;
  margin: 0 0 16px;
}

.proc-section__text {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #17386C;
  line-height: 1.75;
}

.proc-section__text p {
  margin: 0 0 14px;
}

.proc-section__text strong {
  color: #17386C;
}

.proc-section__text h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.2;
  margin: 28px 0 12px;
}

.proc-section__text h2:first-child {
  margin-top: 0;
}

.proc-section__text h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.3;
  margin: 22px 0 10px;
}

.proc-section__text h3:first-child {
  margin-top: 0;
}

.proc-section__text ul,
.proc-intro__desc ul {
  margin: 0 0 14px;
  padding-left: 24px;
  list-style: disc;
}

.proc-section__text ol,
.proc-intro__desc ol {
  margin: 0 0 14px;
  padding-left: 24px;
  list-style: decimal;
}

.proc-section__text li,
.proc-intro__desc li {
  margin-bottom: 6px;
  display: list-item;
  color: #17386C;
}

/* Two-column layout (text+image, two-col text, two images) */
.proc-section__two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proc-section__col-text {
  flex: 1;
}

.proc-section__col-img {
  flex: 1;
}

.proc-section__col-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Image left variant */
.proc-section--img-left .proc-section__two-col {
  flex-direction: column;
}

/* Full-width image */
.proc-section__full-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Body Content (WP editor fallback — if still used) */
.proc-body {
  padding: 48px 0 20px;
  background: #fff;
}

.proc-body__content {
  max-width: 100%;
}

.proc-body__content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.3;
  margin: 36px 0 14px;
  clear: both;
}

.proc-body__content h2:first-child {
  margin-top: 0;
}

.proc-body__content h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.3;
  margin: 28px 0 10px;
  clear: both;
}

.proc-body__content p {
  font-family: var(--font-primary);
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 16px;
}

.proc-body__content strong {
  color: #17386C;
}

.proc-body__content ul,
.proc-body__content ol {
  font-family: var(--font-primary);
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 16px;
  padding-left: 24px;
  list-style: disc;
}

.proc-body__content ol {
  list-style: decimal;
}

.proc-body__content li {
  margin-bottom: 6px;
  display: list-item;
}

.proc-body__content li strong {
  color: #17386C;
}

.proc-body__content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0 20px;
  border-radius: 6px;
}

/* WP image alignment classes */
.proc-body__content .alignright,
.proc-body__content img.alignright {
  float: right;
  margin: 4px 0 16px 28px;
  max-width: 45%;
}

.proc-body__content .alignleft,
.proc-body__content img.alignleft {
  float: left;
  margin: 4px 28px 16px 0;
  max-width: 45%;
}

.proc-body__content .aligncenter,
.proc-body__content img.aligncenter {
  display: block;
  margin: 20px auto;
}

/* WP Columns block support — renders two-col text naturally */
.proc-body__content .wp-block-columns {
  display: flex;
  gap: 32px;
  margin: 28px 0;
}

.proc-body__content .wp-block-column {
  flex: 1;
}

.proc-body__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  margin: 24px 0;
}

.proc-body__content table th,
.proc-body__content table td {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 15px;
}

.proc-body__content table thead th {
  background: #17386C;
  color: #fff;
  font-weight: 500;
}

.proc-body__content table tbody tr {
  background: #EDF0F6;
}

.proc-body__content table tbody td {
  color: #17386C;
}

.proc-body__content table tbody td:last-child {
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

/* ========== Procedure Gallery Carousel (inside intro box) ========== */
.proc-gallery__swiper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

.proc-gallery__swiper .swiper-wrapper {
  height: 100%;
}

.proc-gallery__swiper .swiper-slide {
  overflow: hidden;
  border-radius: 6px;
  height: 100%;
}

.proc-gallery__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.proc-gallery__arrows .swiper-button-prev,
.proc-gallery__arrows .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: #17386C;
}

.proc-gallery__arrows .swiper-button-prev::after,
.proc-gallery__arrows .swiper-button-next::after {
  font-size: 12px;
  font-weight: 700;
}

.proc-gallery__dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 10;
}

.proc-gallery__dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  opacity: 1;
}

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

/* ========== Before / After Comparison Slider ========== */
.proc-compare {
  padding: 48px 0;
  background: #fff;
}

/* Two-column layout: text left, slider right */
.proc-compare__layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #EDF0F6;
  border-radius: 8px;
  padding: 32px 24px;
}

.proc-compare__info {
  flex-shrink: 0;
}

.proc-compare__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #17386C !important;
  margin: 0 0 20px;
  line-height: 1.2;
}

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

.proc-compare__list li {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #17386C;
  line-height: 1.7;
  padding: 0 0 12px 20px;
  position: relative;
}

.proc-compare__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #17386C;
  font-weight: 700;
}

.proc-compare__desc {
  font-family: var(--font-primary);
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.proc-compare__block2 {
  margin-top: 28px;
}

.proc-compare__subtitle {
  font-family: var(--font-serif) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #17386C !important;
  line-height: 1.3;
  margin: 0 0 12px;
}

.proc-compare__slider-wrap {
  flex: 1;
  min-width: 0;
}

.proc-compare__single img {
  width: 100%;
  height: auto;
  display: block;
}

.proc-video__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.proc-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.proc-compare__slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 6px;
}

.proc-compare__after {
  display: block;
  width: 100%;
}

.proc-compare__after img {
  width: 100%;
  height: auto;
  display: block;
}

.proc-compare__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
}

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

.proc-compare__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.proc-compare__handle-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.proc-compare__handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #17386C;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proc-compare__label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
}

.proc-compare__label--before {
  left: 16px;
  background: #17386C;
  color: #fff;
}

.proc-compare__label--after {
  right: 16px;
  background: #02ADD2;
  color: #17386C;
}

/* Doctors Section */
.proc-doctors {
  padding: 60px 0;
  background: #fff;
}

.proc-doctors__title {
  font-family: var(--font-serif);
  font-size: 50px !important;
  font-weight: 400;
  color: #17386C !important;
  text-align: center;
  margin: 0 0 40px;
  line-height: 60px !important;
}

.proc-doctors__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.proc-doctors__card {
  width: calc(50% - 15px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proc-doctors__photo {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3/4;
  margin: 0 auto 16px;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.proc-doctors__name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: #17386C !important;
  margin: 0 0 4px;
}

.proc-doctors__role {
  font-family: var(--font-primary);
  font-size: 13px;
  color: #767676;
  margin: 0;
  padding-bottom: 4px;
}

/* Pricing Section */
.proc-pricing {
  padding: 60px 0;
  background: #fff;
}

.proc-pricing__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #17386C !important;
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.2;
}

.proc-pricing__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proc-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EDF0F6;
  padding: 18px 24px;
  border-radius: 4px;
  transition: background 0.2s;
}

.proc-pricing__row:hover {
  background: #e2e7f0;
}

.proc-pricing__name {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
  color: #17386C;
}

.proc-pricing__price {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #17386C;
  white-space: nowrap;
  margin-left: 24px;
}

.proc-pricing__section-heading {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #17386C;
  margin: 20px 0 4px;
  padding: 0;
}

.proc-pricing__section-heading:first-child {
  margin-top: 0;
}

/* Results Gallery Section */
.proc-results__swiper {
  margin-top: 32px;
  overflow: hidden;
}

.proc-results__swiper .swiper-slide {
  width: auto;
}

.proc-results__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
}

.proc-results__arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.proc-results__arrows .swiper-button-prev,
.proc-results__arrows .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  margin: 0;
  background: #EDF0F6;
  border-radius: 50%;
}

.proc-results__arrows .swiper-button-prev::after,
.proc-results__arrows .swiper-button-next::after {
  font-size: 16px;
  color: #17386C;
}

@media (min-width: 768px) {
  .proc-results__img {
    height: 320px;
  }
}

@media (min-width: 1200px) {
  .proc-results__img {
    height: 360px;
  }
}

/* Testimonials Section */
.proc-testimonials {
  padding: 60px 0 80px;
  background: #FAFBFD;
}

.proc-testimonials__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #17386C !important;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.2;
}

.proc-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.proc-testimonials__card {
  text-align: center;
  padding: 32px 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.proc-testimonials__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.proc-testimonials__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 16px;
}

.proc-testimonials__author {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: #17386C;
  margin: 0 0 12px;
}

.proc-testimonials__text {
  font-family: var(--font-primary);
  font-size: 14px;
  color: #767676;
  line-height: 1.65;
  margin: 0;
}

/* Responsive: Tablet */
@media (min-width: 768px) {
  .proc-title-section {
    padding: 64px 0 28px;
  }

  .proc-title-section__h1 {
    font-size: 44px;
  }

  .proc-intro__box {
    flex-direction: row;
    padding: 40px 50px;
    gap: 35px;
    border-radius: 8px;
    align-items: stretch;
  }

  .proc-intro__left {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .proc-intro__right {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .proc-intro__image {
    min-height: 320px;
    border-radius: 6px;
  }

  .proc-intro__subtitle {
    font-size: 26px;
  }

  .proc-intro__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ACF sections: two-col on tablet */
  .proc-section__two-col {
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
  }

  .proc-section--img-left .proc-section__two-col {
    flex-direction: row-reverse;
  }

  .proc-title-section__h1 {
    font-size: 44px !important;
  }

  .proc-intro__desc h2,
  .proc-section__heading,
  .proc-section__text h2,
  .proc-compare__title,
  .proc-pricing__title,
  .proc-testimonials__title {
    font-size: 34px !important;
  }

  .proc-intro__desc h3,
  .proc-section__text h3,
  .proc-body__content h3 {
    font-size: 26px !important;
  }

  .proc-compare__layout {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    padding: 48px 50px;
  }

  .proc-compare__info {
    width: 40%;
    flex-shrink: 0;
  }

  .proc-compare__title {
    font-size: 32px;
  }

  .proc-pricing__row {
    padding: 20px 40px;
  }

  .proc-pricing__name,
  .proc-pricing__price {
    font-size: 16px;
  }

  .proc-doctors__card {
    width: calc(25% - 27px);
  }

  .proc-doctors__grid {
    gap: 36px;
  }

  .proc-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Responsive: Desktop */
@media (min-width: 1200px) {
  .proc-title-section {
    padding: 64px 0 32px;
  }

  .proc-title-section__h1 {
    font-size: 52px;
    line-height: 62px;
  }

  .proc-intro__box {
    padding: 48px 60px;
  }

  .proc-intro__subtitle {
    font-size: 28px;
    line-height: 38px;
  }

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

  .proc-section {
    padding: 44px 0;
  }

  .proc-title-section__h1 {
    font-size: 50px !important;
    line-height: 60px !important;
  }

  .proc-intro__desc h2,
  .proc-section__heading,
  .proc-section__text h2,
  .proc-compare__title,
  .proc-pricing__title,
  .proc-testimonials__title {
    font-size: 40px !important;
    line-height: 50px !important;
  }

  .proc-intro__desc h3,
  .proc-section__text h3,
  .proc-body__content h3 {
    font-size: 30px !important;
    line-height: 40px !important;
  }

  .proc-section__text {
    font-size: 16px;
  }

  .proc-section__two-col {
    gap: 48px;
  }

  .proc-body {
    padding: 56px 0 24px;
  }

  .proc-body__content h2 {
    font-size: 24px;
    line-height: 34px;
  }

  .proc-body__content h3 {
    font-size: 20px;
  }

  .proc-body__content p,
  .proc-body__content ul,
  .proc-body__content ol {
    font-size: 16px;
  }

  .proc-compare__layout {
    gap: 56px;
    padding: 56px 60px;
  }

  .proc-compare__info {
    width: 35%;
  }

  /* already handled by global rule above */

  .proc-compare__desc {
    font-size: 16px;
  }

  .proc-pricing__title,
  .proc-testimonials__title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 48px;
  }

  .proc-doctors__name {
    font-size: 18px;
  }

  .proc-doctors__role {
    font-size: 14px;
  }

  .proc-testimonials__author {
    font-size: 20px;
  }

  .proc-testimonials__card {
    padding: 36px 32px;
  }
}

/* ========== Procedure Category Pages ========== */

/* Category Header (white bg, no hero) */
.zakrok-cat-header {
  padding: 40px 0 32px;
  background: #fff;
  text-align: center;
}

.zakrok-cat-header__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: #17386C !important;
  margin: 0 0 20px;
  line-height: 1.2;
}

.zakrok-cat-header__intro {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #767676;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .zakrok-cat-header {
    padding: 40px 0 40px;
  }
  .zakrok-cat-header__title {
    font-size: 36px;
  }
  .zakrok-cat-header__intro {
    font-size: 15px;
  }
}

@media (min-width: 1200px) {
  .zakrok-cat-header {
    padding: 40px 0 40px;
  }
  .zakrok-cat-header__title {
    font-size: 42px;
  }
}

/* Category Listing */
.zakrok-cat-listing {
  padding: 0 0 64px;
  background: #fff;
}

/* Pill Tabs */
.zakrok-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.zakrok-cat-tabs__btn {
  background: #fff;
  border: 1.5px solid #17386C;
  border-radius: 30px;
  padding: 10px 24px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: #17386C;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.zakrok-cat-tabs__btn:hover {
  background: #17386C;
  color: #fff;
}

.zakrok-cat-tabs__btn.is-active {
  background: #17386C;
  color: #fff;
}

/* Tab Panels */
.zakrok-cat-panel {
  display: none;
}

.zakrok-cat-panel.is-active {
  display: block;
}

/* Procedure List (single column) */
.zakrok-cat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zakrok-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: #EDF0F6;
  text-decoration: none;
  transition: background 0.25s;
}

.zakrok-cat-item:hover {
  background: #17386C;
}

.zakrok-cat-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.zakrok-cat-item__title {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  color: #17386C;
  transition: color 0.25s;
}

.zakrok-cat-item:hover .zakrok-cat-item__title {
  color: #fff;
}

.zakrok-cat-item__desc {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: #17386C;
  line-height: 1.4;
  transition: color 0.25s;
}

.zakrok-cat-item:hover .zakrok-cat-item__desc {
  color: rgba(255,255,255,0.7);
}

.zakrok-cat-item__arrow {
  flex-shrink: 0;
  color: #17386C;
  margin-left: 16px;
  transition: color 0.25s, transform 0.2s;
}

.zakrok-cat-item:hover .zakrok-cat-item__arrow {
  color: #fff;
  transform: translateX(3px);
}

.zakrok-cat-empty {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #767676;
  padding: 24px 0;
}

@media (min-width: 1200px) {
  .zakrok-cat-listing {
    padding: 0 0 96px;
  }
  .zakrok-cat-item {
    padding: 22px 48px;
  }
  .zakrok-cat-item__title {
    font-size: 18px;
  }
  .zakrok-cat-item__desc {
    font-size: 14px;
  }
}

/* ========== Single Blog Post ========== */

/* Post Header */
/* Smooth scroll for in-page anchor navigation (TOC, breadcrumbs etc.) */
html {
  scroll-behavior: smooth;
}

/* ========== Single post — Hero ========== */
.single-post__hero {
  padding: 40px 0 48px;
  background: var(--bg-base);
}

.single-post__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.single-post__hero-grid--no-image {
  max-width: 820px;
}

.single-post__hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.single-post__title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--primary) !important;
  margin: 0;
  line-height: 1.2;
}

.single-post__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-family: var(--font-primary);
  font-size: 13px;
  color: var(--text-body);
}

.single-post__cat {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
}

.single-post__date,
.single-post__reading-time {
  position: relative;
}

.single-post__reading-time::before {
  content: "•";
  margin-right: 16px;
  color: var(--text-muted);
}

.single-post__lead {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

.single-post__author-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a.single-post__author-line:hover {
  opacity: 0.8;
}

.single-post__avatar,
.single-post__author-line img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.single-post__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-primary);
  line-height: 1.2;
}

.single-post__author-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.single-post__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.single-post__author-pozice {
  font-size: 12px;
  font-weight: 400;
  color: #5f6673;
}

.single-post__hero-image {
  display: block;
}

.single-post__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ========== Single post — Body ========== */
.single-post__body-section {
  padding: 8px 0 64px;
  background: var(--bg-base);
}

.single-post__body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.single-post__body-grid--no-toc {
  max-width: 780px;
  margin: 0 auto;
}

.single-post__sidebar {
  display: none;
}

.single-post__body {
  min-width: 0;
  scroll-margin-top: 100px;
}

.single-post__body h2 {
  scroll-margin-top: 100px;
}

.single-post__body h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: #17386C;
  margin: 40px 0 16px;
  line-height: 1.3;
}

.single-post__body h2:first-child {
  margin-top: 0;
}

.single-post__body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: #17386C;
  margin: 28px 0 12px;
  line-height: 1.3;
}

.single-post__body p {
  font-family: var(--font-primary);
  font-size: 19px;
  color: #767676;
  line-height: 1.75;
  margin: 0 0 16px;
}

.single-post__body ul,
.single-post__body ol {
  font-family: var(--font-primary);
  font-size: 19px;
  color: #767676;
  line-height: 1.75;
  margin: 0 0 16px;
  padding-left: 24px;
}

.single-post__body li {
  margin-bottom: 8px;
}

.single-post__body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.single-post__body a {
  color: #02ADD2;
  text-decoration: underline;
}

.single-post__body a:hover {
  color: #17386C;
}

.single-post__body blockquote {
  border-left: 3px solid #02ADD2;
  margin: 24px 0;
  padding: 12px 24px;
  font-style: italic;
  color: #555;
}

/* Post Navigation */
.single-post__nav {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.single-post__nav-inner {
}

.single-post__back {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: #02ADD2;
  text-decoration: none;
  margin-bottom: 20px;
}

.single-post__back:hover {
  color: #17386C;
}

.single-post__nav-links {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.single-post__nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.single-post__nav-link--next {
  text-align: right;
  margin-left: auto;
}

.single-post__nav-label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.single-post__nav-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: #17386C;
  transition: color 0.2s;
}

.single-post__nav-link:hover .single-post__nav-title {
  color: #02ADD2;
}

/* ========== Post TOC ========== */
.post-toc {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 24px 22px;
}

.post-toc__title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.post-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: post-toc;
}

.post-toc__item {
  counter-increment: post-toc;
  margin: 0;
}

.post-toc__item + .post-toc__item {
  margin-top: 4px;
}

.post-toc__link {
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-body);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.post-toc__link::before {
  content: counter(post-toc, decimal-leading-zero);
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.post-toc__link:hover {
  background: rgba(23, 56, 108, 0.08);
  color: var(--primary);
}

.post-toc__link.is-active {
  background: var(--primary);
  color: #fff;
}

.post-toc__link.is-active::before {
  color: var(--accent);
}

/* ========== Author bio card ========== */
.single-post__author-bio {
  padding: 24px 0 64px;
  background: var(--bg-base);
}

.author-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  background: var(--bg-light);
  border-radius: 20px;
  padding: 32px 24px;
}

.author-card__avatar {
  flex-shrink: 0;
}

.author-card__avatar img,
.author-card__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Team variant — slightly bigger avatar, navy accent */
.author-card--team {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9eef7 100%);
  border-left: 4px solid #18376B;
}

.author-card--team .author-card__img {
  width: 140px;
  height: 140px;
  box-shadow: 0 8px 24px rgba(23, 56, 108, 0.18);
}

.author-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.author-card__label {
  font-family: var(--font-primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.author-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--primary) !important;
  margin: 0;
  line-height: 1.2;
}

.author-card__pozice {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: #18376B;
  margin: 0;
  letter-spacing: 0.02em;
}

.author-card__bio {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

.author-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.author-card__link:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .single-post__title {
    font-size: 38px;
  }
  .single-post__body h2 {
    font-size: 30px;
  }
  .author-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 36px 36px;
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .single-post__hero {
    padding: 48px 0 64px;
  }
  .single-post__hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
  .single-post__body-grid {
    grid-template-columns: 280px 1fr;
    gap: 56px;
    /* Intentionally NO align-items: start — we want the sidebar grid cell
       to stretch to the body column's full height so the sticky inner has
       room to scroll within. */
  }
  .single-post__sidebar {
    display: block;
    height: 100%;
  }
  .single-post__sidebar-inner {
    position: sticky;
    top: 96px;
  }
  .single-post__body-grid--no-toc {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .single-post__title {
    font-size: 46px;
  }
  .single-post__body h2 {
    font-size: 34px;
  }
  .single-post__body h3 {
    font-size: 24px;
  }
  .single-post__body p,
  .single-post__body ul,
  .single-post__body ol {
    font-size: 20px;
  }
}

/* ========== Google Reviews Bar ========== */
.google-reviews {
  padding: 48px 0;
  background: #EDF0F6;
}

.google-reviews__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.google-reviews__summary {
  flex-shrink: 0;
  text-align: center;
  min-width: 160px;
}

.google-reviews__label {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: #17386C;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.google-reviews__stars-row {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.google-reviews__based {
  font-family: var(--font-primary);
  font-size: 13px;
  color: #5f6673;
  margin: 0 0 10px;
}

.google-reviews__based strong {
  color: #17386C;
}

.google-reviews__logo {
  display: flex;
  justify-content: center;
}

/* Arrows */
.google-reviews__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: #767676;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.google-reviews__arrow:hover {
  border-color: #17386C;
  color: #17386C;
}

/* Slider wrap */
.google-reviews__slider-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: visible;
}

.google-reviews__slider-wrap .google-reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
}

.google-reviews__slider-wrap .google-reviews__arrow--prev {
  left: -20px;
}

.google-reviews__slider-wrap .google-reviews__arrow--next {
  right: -20px;
}

/* Cards */
.google-reviews__cards {
  display: flex;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.google-reviews__card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.google-reviews__swiper .swiper-slide {
  height: auto;
}

.google-reviews__card-text {
  flex: 1;
}

.google-reviews__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.google-reviews__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #17386C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.google-reviews__card-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-reviews__card-name {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: #17386C;
  margin: 0;
}

.google-reviews__card-date {
  font-family: var(--font-primary);
  font-size: 11px;
  color: #999;
  margin: 2px 0 0;
}

.google-reviews__g-icon {
  flex-shrink: 0;
}

.google-reviews__card-stars {
  display: flex;
  margin-bottom: 8px;
}

.google-reviews__card-text {
  font-family: var(--font-primary);
  font-size: 13px;
  color: #767676;
  line-height: 1.5;
  margin: 0 0 6px;
}

.google-reviews__card-more {
  font-family: var(--font-primary);
  font-size: 12px;
  color: #17386C;
  text-decoration: none;
  font-weight: 500;
}

.google-reviews__card-more:hover {
  color: #02ADD2;
}

@media (max-width: 991px) {
  .google-reviews__inner {
    flex-direction: column;
    align-items: center;
  }
  .google-reviews__slider-wrap .google-reviews__arrow {
    display: flex;
  }
  .google-reviews__cards {
    flex-direction: column;
    width: 100%;
  }
}

/* ========== Přehled Zákroků Page ========== */
.zakroky-title {
  padding: 40px 0 24px;
  background: #fff;
  text-align: center;
}

.zakroky-title__h1 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: #17386C !important;
  line-height: 1.15;
  margin: 0;
}

.zakroky-grid {
  padding: 0 0 64px;
  background: #fff;
}

.zakroky-grid__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.zakroky-grid__card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3/4;
}

.zakroky-grid__card-img {
  width: 100%;
  height: 100%;
}

.zakroky-grid__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.zakroky-grid__card:hover .zakroky-grid__card-img img {
  transform: scale(1.05);
}

.zakroky-grid__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.zakroky-grid__card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zakroky-grid__card-label span {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zakroky-grid__arrow {
  width: 20px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.zakroky-grid__card:hover .zakroky-grid__arrow {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .zakroky-title__h1 {
    font-size: 44px;
  }

  .zakroky-grid__cards {
    grid-template-columns: repeat(5, 1fr);
  }

  .zakroky-grid__card-label {
    padding: 20px;
  }

  .zakroky-grid__card-label span {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .zakroky-title__h1 {
    font-size: 50px;
  }

  .zakroky-grid {
    padding: 0 0 96px;
  }

  .zakroky-grid__card-label span {
    font-size: 15px;
  }

  .zakroky-grid__arrow {
    width: 24px;
  }
}

/* ==========================================================================
   PAGE: RECENZE
   ========================================================================== */

.recenze-hero {
  padding: 64px 0 32px;
  text-align: center;
  background: var(--bg-base);
}

.recenze-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: var(--primary);
  margin: 0 0 12px;
}

.recenze-hero__lead {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto 28px;
}

.recenze-hero__stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--bg-light);
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--primary);
}

.recenze-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.recenze-stat__stars {
  color: #EABE12;
  letter-spacing: 0.05em;
  font-size: 16px;
}

.recenze-stat__count {
  font-weight: 600;
  color: var(--primary);
}

.recenze-stat__label {
  color: var(--text-dark);
}

.recenze-stat__separator {
  color: rgba(23, 56, 108, 0.25);
  font-weight: 700;
}

/* ---------- Highlights ---------- */
.recenze-highlights {
  padding: 48px 0 64px;
  background: var(--bg-base);
}

.recenze-highlights__header {
  text-align: center;
  margin-bottom: 40px;
}

.recenze-highlights__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--primary);
  margin: 0 0 12px;
}

.recenze-highlights__lead {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--text-body);
  margin: 0;
}

.recenze-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.highlight-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(23, 56, 108, 0.08);
}

.highlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
}

.highlight-card__icon svg {
  width: 28px;
  height: 28px;
}

.highlight-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--primary);
  margin: 0 0 12px;
}

.highlight-card__text {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

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

/* ---------- All reviews list ---------- */
.recenze-list {
  padding: 48px 0 96px;
  background: var(--bg-base);
}

.recenze-list__header {
  text-align: center;
  margin-bottom: 40px;
}

.recenze-list__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--primary);
  margin: 0 0 12px;
}

.recenze-list__lead {
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-body);
  margin: 0;
}

.recenze-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Filter pills */
.recenze-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 32px;
  max-width: 1000px;
}

.recenze-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--primary);
  border-radius: 30px;
  padding: 9px 18px;
  background: var(--bg-base);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.recenze-filter-pill:hover {
  background: var(--bg-light);
}

.recenze-filter-pill.is-active {
  background: var(--primary);
  color: #fff;
}

.recenze-filter-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(23, 56, 108, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.recenze-filter-pill.is-active .recenze-filter-pill__count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.review-card.is-hidden {
  display: none;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-family: var(--font-primary);
  font-size: 13px;
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  color: var(--text-body);
}

.breadcrumbs__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs__link:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs__item--home .breadcrumbs__link {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__icon {
  display: block;
  flex-shrink: 0;
  color: var(--primary);
  transition: color 0.2s;
}

.breadcrumbs__item--home .breadcrumbs__link:hover .breadcrumbs__icon {
  color: var(--accent);
}

.breadcrumbs__current {
  color: var(--text-dark);
  font-weight: 500;
}

.breadcrumbs__sep {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

/* Visually hide brand name for screen readers only (icon variant) */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.review-card {
  position: relative;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card__stars {
  color: #EABE12;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.review-card__body {
  flex: 1;
}

.review-card__text {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0;
}

.review-card__toggle {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-card__toggle:hover {
  color: var(--accent);
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  padding-right: 90px;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.review-card__avatar-initial {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-card__author {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.3;
}

.review-card__source {
  position: absolute;
  right: 24px;
  bottom: 28px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--bg-base);
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0.9;
}

.review-card__source-logo {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: block;
  height: auto;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.9;
}

.review-card__source-logo--google {
  max-height: 16px;
  max-width: 64px;
}

.review-card__source-logo--firmy {
  max-height: 18px;
  max-width: 72px;
}

/* ---------- Review card — clinic reply button + popup ---------- */
.review-card__reply-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #17386C;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.review-card__reply-btn:hover,
.review-card__reply-btn:focus-visible {
  background: #000;
  transform: scale(1.1);
}
.review-card__reply-popup {
  display: none;
  position: absolute;
  top: 54px;
  right: 16px;
  left: 16px;
  z-index: 10;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  animation: replyPopupIn 0.2s ease-out;
}
.review-card__reply-popup.is-visible {
  display: block;
}
@keyframes replyPopupIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-card__reply-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-card__reply-popup__label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.review-card__reply-popup__close {
  background: none;
  border: 0;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 0;
  line-height: 1;
}
.review-card__reply-popup__close:hover {
  color: #fff;
}
.review-card__reply-popup__text {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
  white-space: pre-line;
}

/* ---------- Procedure single — reviews slider ---------- */
.proc-reviews {
  padding: 64px 0 80px;
  background: var(--bg-base);
}

.proc-reviews__title {
  font-family: var(--font-serif) !important;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  text-align: center;
  margin: 0 0 48px;
  letter-spacing: -0.01em;
}

@media (max-width: 991px) {
  .proc-reviews__title {
    font-size: 36px;
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .proc-reviews__title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

.proc-reviews__swiper {
  position: relative;
  padding-bottom: 50px;
}

.proc-reviews__swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Smaller card variant inside the procedure slider */
.proc-reviews__swiper .review-card {
  flex: 1;
  height: 100%;
  padding: 20px 22px;
  gap: 10px;
  border-radius: 14px;
}

.proc-reviews__swiper .review-card__stars {
  font-size: 14px;
}

.proc-reviews__swiper .review-card__text {
  font-size: 14px;
  line-height: 1.55;
}

.proc-reviews__swiper .review-card__toggle {
  font-size: 12px;
  margin-top: 6px;
}

.proc-reviews__swiper .review-card__footer {
  padding-top: 12px;
  padding-right: 78px;
  gap: 10px;
}

.proc-reviews__swiper .review-card__avatar {
  width: 38px;
  height: 38px;
}

.proc-reviews__swiper .review-card__avatar-initial {
  font-size: 16px;
}

.proc-reviews__swiper .review-card__author {
  font-size: 14px;
}

.proc-reviews__swiper .review-card__source-logo {
  right: 22px;
  bottom: 22px;
}

.proc-reviews__swiper .review-card__source-logo--google {
  max-height: 14px;
  max-width: 56px;
}

.proc-reviews__swiper .review-card__source-logo--firmy {
  max-height: 16px;
  max-width: 64px;
}

.proc-reviews__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 2;
}

.proc-reviews__arrows .swiper-button-prev,
.proc-reviews__arrows .swiper-button-next {
  pointer-events: auto;
  color: var(--primary);
}

.proc-reviews__arrows .swiper-button-prev::after,
.proc-reviews__arrows .swiper-button-next::after {
  font-size: 22px;
}

.proc-reviews__dots.swiper-pagination {
  bottom: 0;
}

.proc-reviews__dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(23, 56, 108, 0.3);
  border: 2px solid #BBB;
  opacity: 1;
}

.proc-reviews__dots .swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: var(--primary);
}

.proc-reviews__cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

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

@media (min-width: 1024px) {
  .recenze-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Accessibility — Touch target sizes for swiper bullets (WCAG 2.5.5)
   ========================================================================== */

.hero-carousel__dots .swiper-pagination-bullet,
.procedures__dots .swiper-pagination-bullet,
.testimonials__dots .swiper-pagination-bullet,
.proc-gallery__dots .swiper-pagination-bullet,
.proc-reviews__dots .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  position: relative;
  opacity: 1;
}

.hero-carousel__dots .swiper-pagination-bullet::before,
.procedures__dots .swiper-pagination-bullet::before,
.testimonials__dots .swiper-pagination-bullet::before,
.proc-gallery__dots .swiper-pagination-bullet::before,
.proc-reviews__dots .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(23, 56, 108, 0.3);
  border: 2px solid #bbb;
  box-sizing: border-box;
}

.hero-carousel__dots .swiper-pagination-bullet-active::before,
.procedures__dots .swiper-pagination-bullet-active::before,
.testimonials__dots .swiper-pagination-bullet-active::before,
.proc-gallery__dots .swiper-pagination-bullet-active::before,
.proc-reviews__dots .swiper-pagination-bullet-active::before {
  background: var(--primary);
  border-color: var(--primary);
}

/* Hero carousel dots — white on dark hero background (mobile + desktop) */
.hero-carousel__dots .swiper-pagination-bullet::before {
  background: rgba(255, 255, 255, 0.5);
  border: none;
}

.hero-carousel__dots .swiper-pagination-bullet-active::before {
  background: #ffffff;
  border: none;
}

/* ==========================================================================
   Performance — content-visibility on below-fold sections
   Skip rendering of off-screen sections for faster initial paint.
   ========================================================================== */

.procedures,
.testimonials,
.google-reviews-section,
.doctor-banner,
.insta-section,
.contact-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* ==========================================================================
   Reviews — page-recenze form section + about-page CTA
   Light section, white form wrap, dark navy submit button (#18376B)
   ========================================================================== */

.recenze-form {
  background: #ffffff;
  color: var(--primary);
}

.recenze-form__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.recenze-form__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.recenze-form__lead {
  font-family: var(--font-primary);
  color: #5f6673;
  max-width: 640px;
  margin: 0 auto;
}

.recenze-form__wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 4px;
  border: 1px solid #e5eaf2;
}

/* FluentForm overrides for light recenze form */
.recenze-form__wrap .ff-el-input--label label,
.recenze-form__wrap .ff-el-input--label label.ff-el-input--label,
.recenze-form__wrap label {
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 15px;
}

.recenze-form__wrap input[type="text"],
.recenze-form__wrap input[type="email"],
.recenze-form__wrap input[type="tel"],
.recenze-form__wrap input[type="number"],
.recenze-form__wrap input[type="url"],
.recenze-form__wrap textarea,
.recenze-form__wrap select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(23, 56, 108, 0.2);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 15px;
  padding: 10px 0;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

.recenze-form__wrap textarea {
  min-height: 80px;
  resize: vertical;
}

.recenze-form__wrap input::placeholder,
.recenze-form__wrap textarea::placeholder {
  color: rgba(23, 56, 108, 0.4);
}

.recenze-form__wrap input:focus,
.recenze-form__wrap textarea:focus,
.recenze-form__wrap select:focus {
  border-bottom-color: #18376B;
  outline: none;
  box-shadow: none;
}

.recenze-form__wrap .ff-el-group {
  margin-bottom: 15px;
}

.recenze-form__wrap .ff-btn-submit,
.recenze-form__wrap button[type="submit"],
.recenze-form__wrap button.ff-btn.ff-btn-submit {
  width: 100% !important;
  background: #18376B !important;
  background-image: none !important;
  color: #ffffff !important;
  border: none !important;
  padding: 20px 30px !important;
  font-family: var(--font-primary) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  cursor: pointer;
  border-radius: 0 !important;
  margin-top: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: background var(--transition-base), color var(--transition-base);
}

.recenze-form__wrap .ff-btn-submit:hover,
.recenze-form__wrap button[type="submit"]:hover,
.recenze-form__wrap button.ff-btn.ff-btn-submit:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

/* Star-rating field (if FluentForm uses one) */
.recenze-form__wrap .ff-el-rating label,
.recenze-form__wrap .ff_rating_wrap label {
  color: #18376B;
  font-size: 28px;
}

/* ==========================================================================
   Single Team Member page (single-mi_team.php)
   ========================================================================== */

.team-single {
  background: #ffffff;
}

/* --- Hero --- */
.team-single__hero {
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
  padding: 24px 0 0;
}

.team-single__hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
  text-align: center;
}

.team-single__photo-wrap {
  flex-shrink: 0;
  width: 280px;
  max-width: 100%;
}

.team-single__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 540 / 700;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(23, 56, 108, 0.15);
}

.team-single__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #17386C;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
}

.team-single__intro {
  max-width: 540px;
}

.team-single__role-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #18376B;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.team-single__name {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
}

.team-single__pozice {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  color: #5f6673;
  margin: 0 0 var(--space-2xl);
}

.team-single__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.team-single__btn {
  background: #18376B;
  color: #ffffff;
}

.team-single__btn:hover {
  background: #000000;
  color: #ffffff;
}

.team-single__back {
  font-family: var(--font-primary);
  font-size: 14px;
  color: #5f6673;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-single__back:hover {
  color: var(--primary);
}

/* --- Bio --- */
.team-single__bio {
  padding: 16px 0 60px;
  background: #ffffff;
}

.team-single__bio-inner {
  max-width: 760px;
  margin: 0 auto;
}

.team-single__bio-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin: 0 0 var(--space-2xl);
}

.team-single__bio-text {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #2a3548;
}

.team-single__bio-text p {
  margin: 0 0 var(--space-lg);
}

.team-single__bio-text p:last-child {
  margin-bottom: 0;
}

/* --- Related members --- */
.team-single__related {
  background: #f5f7fa;
}

.team-single__related-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.team-single__related-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
}

.team-single__related-link {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-single__related-link:hover {
  color: var(--accent);
}

.team-single__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.team-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.team-related-card:hover {
  transform: translateY(-4px);
}

.team-related-card__photo-wrap {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 16px rgba(23, 56, 108, 0.08);
}

.team-related-card__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 270 / 350;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-related-card:hover .team-related-card__photo {
  transform: scale(1.04);
}

.team-related-card__name {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 4px;
}

.team-related-card__pozice {
  font-family: var(--font-primary);
  font-size: 13px;
  color: #5f6673;
  margin: 0;
  line-height: 1.4;
}

/* --- Tablet+ --- */
@media (min-width: 768px) {
  .team-single__hero {
    padding: 32px 0 16px;
  }
  .team-single__hero-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 60px;
  }
  .team-single__photo-wrap {
    width: 360px;
  }
  .team-single__intro {
    flex: 1;
  }
  .team-single__name {
    font-size: 3rem;
  }
  .team-single__cta {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-xl);
  }
  .team-single__related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .team-single__hero {
    padding: 40px 0 16px;
  }
  .team-single__photo-wrap {
    width: 420px;
  }
  .team-single__name {
    font-size: 3.5rem;
  }
}

/* ==========================================================================
   Block: Citace (custom Gutenberg block — acf/mi-citace)
   ========================================================================== */

.mi-citace {
  margin: 40px 0;
  padding: 0;
}

.mi-citace__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9eef7 100%);
  border-left: 4px solid #18376B;
  border-radius: 6px;
  padding: 32px 28px;
  text-align: center;
}

.mi-citace__photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(23, 56, 108, 0.18);
}

.mi-citace__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.mi-citace__body {
  flex: 1;
  min-width: 0;
}

.mi-citace__mark {
  display: block;
  margin: 0 auto 16px;
  color: #18376B;
  opacity: 0.25;
}

.mi-citace__quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: #1a2740;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 18px;
  padding: 0;
  border: none;
  quotes: none;
}

.mi-citace__quote::before,
.mi-citace__quote::after {
  content: none;
}

.mi-citace__caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.mi-citace__name {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #18376B;
  font-style: normal;
}

.mi-citace__pozice {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: #5f6673;
}

/* Tablet+: side-by-side layout */
@media (min-width: 640px) {
  .mi-citace__inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 36px 40px;
    gap: 32px;
  }

  .mi-citace__mark {
    margin: 0 0 14px;
  }

  .mi-citace__caption {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }

  .mi-citace__pozice::before {
    content: '•';
    margin-right: 10px;
    color: #b5bdcb;
  }

  .mi-citace__quote {
    font-size: 1.375rem;
  }
}

/* Editor preview placeholder */
.mi-citace--placeholder {
  border: 2px dashed #c5cbd6;
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  background: #fafbfd;
}

/* ==========================================================================
   Single post — Related services + related articles
   ========================================================================== */

.single-post__related-services,
.single-post__related-articles {
  padding: 48px 0;
  background: var(--bg-base);
}

.single-post__related-articles {
  background: #f5f7fa;
}

.single-post__related-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin: 0 0 32px;
}

/* --- Related services grid --- */
.related-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(23, 56, 108, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(23, 56, 108, 0.12);
}

.related-service-card__photo-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #edf0f6;
}

.related-service-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.related-service-card:hover .related-service-card__photo {
  transform: scale(1.05);
}

.related-service-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #b5bdcb;
}

.related-service-card__title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin: 14px 16px 4px;
  line-height: 1.3;
}

.related-service-card__cta {
  display: block;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 16px 16px;
}

/* --- Related articles grid --- */
.related-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.related-article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(23, 56, 108, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(23, 56, 108, 0.14);
}

.related-article-card__photo-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf0f6;
}

.related-article-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.related-article-card:hover .related-article-card__photo {
  transform: scale(1.05);
}

.related-article-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9eef7 0%, #d6dfee 100%);
}

.related-article-card__body {
  padding: 20px 24px 24px;
}

.related-article-card__date {
  display: block;
  font-family: var(--font-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5f6673;
  margin-bottom: 8px;
}

.related-article-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.3;
  margin: 0 0 10px;
}

.related-article-card__excerpt {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.55;
  color: #5f6673;
  margin: 0;
}

@media (min-width: 640px) {
  .related-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .single-post__related-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .related-articles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .single-post__related-services,
  .single-post__related-articles {
    padding: 64px 0;
  }
}

@media (min-width: 1024px) {
  .related-services__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.about-reviews-cta {
  margin: var(--space-3xl) 0;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, #17386C 0%, #234e8c 100%);
  border-radius: 6px;
  color: #ffffff;
}

.about-reviews-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.about-reviews-cta__text {
  flex: 1;
  min-width: 280px;
}

.about-reviews-cta__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 var(--space-xs);
}

.about-reviews-cta__lead {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.about-reviews-cta__btn {
  flex-shrink: 0;
  background: #ffffff;
  color: var(--primary);
}

.about-reviews-cta__btn:hover {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 767px) {
  .recenze-form__wrap {
    padding: var(--space-lg);
  }
  .about-reviews-cta {
    padding: var(--space-lg);
  }
  .about-reviews-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
  .about-reviews-cta__title {
    font-size: 1.5rem;
  }
  .top-bar__reviews-link {
    margin-left: 0;
    margin-top: 4px;
  }
}

/* =========================================================================
   Homepage — Naši lékaři section
   ========================================================================= */
.home-team {
  background: #fff;
}

.home-team__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.home-team__title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

.home-team__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.home-team__link:hover {
  color: var(--accent, #02ADD2);
}

.home-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

@media (min-width: 1200px) {
  .home-team__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .home-team__title {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .home-team__title {
    font-size: 28px;
  }
}

/* =========================================================================
   Homepage — Z naší poradny (blog) section
   ========================================================================= */
.home-blog {
  background: #f6f8fc;
}

.home-blog__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.home-blog__title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

.home-blog__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.home-blog__link:hover {
  color: var(--accent, #02ADD2);
}

.home-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (max-width: 600px) {
  .home-blog__title {
    font-size: 28px;
  }
}

/* =========================================================================
   Recenze page — "Přidat recenzi" CTA + modal
   ========================================================================= */
.recenze-hero__cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.recenze-hero__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(13, 28, 60, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.recenze-hero__add-btn:hover,
.recenze-hero__add-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 28, 60, 0.24);
  outline: none;
}

.recenze-hero__add-btn svg {
  flex-shrink: 0;
}

/* Modal — native <dialog> */
.recenze-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(720px, 94vw);
  max-height: 92vh;
  padding: 0;
  border: none;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(13, 28, 60, 0.35);
  overflow: hidden;
}

.recenze-modal::backdrop {
  background: rgba(13, 28, 60, 0.55);
  backdrop-filter: blur(3px);
}

.recenze-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.recenze-modal__close:hover {
  background: #fff;
}

.recenze-modal__inner {
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

.recenze-modal__header {
  padding: 32px 40px 18px;
  border-bottom: 1px solid #e8edf6;
}

.recenze-modal__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.2;
}

.recenze-modal__lead {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5466;
  margin: 0;
}

.recenze-modal__body {
  padding: 28px 40px 36px;
  overflow-y: auto;
}

/* Fluent Forms submit button — branded */
.recenze-modal .ff-btn-submit,
.recenze-modal button.ff-btn.ff-btn-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  background: var(--primary) !important;
  color: #fff !important;
  font-family: var(--font-serif) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border: 1px solid var(--primary) !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 18px rgba(13, 28, 60, 0.18) !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.recenze-modal .ff-btn-submit:hover,
.recenze-modal button.ff-btn.ff-btn-submit:hover,
.recenze-modal .ff-btn-submit:focus-visible {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(13, 28, 60, 0.24) !important;
  outline: none !important;
}

/* =========================================================================
   Gutenberg core/button block — branded styling v article body
   ========================================================================= */
.single-post__body .wp-block-buttons {
  justify-content: center;
}

.single-post__body .wp-block-button {
  margin-left: auto;
  margin-right: auto;
}

.single-post__body .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--primary) !important;
  color: #fff !important;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--primary);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(13, 28, 60, 0.18);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.single-post__body .wp-block-button__link:hover,
.single-post__body .wp-block-button__link:focus-visible {
  background-color: #000 !important;
  border-color: #000;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 28, 60, 0.24);
  outline: none;
}

/* Outline variant — pokud uživatel zvolí v editoru "Outline" */
.single-post__body .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  color: var(--primary) !important;
  border-color: var(--primary);
  box-shadow: none;
}

.single-post__body .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--primary) !important;
  color: #fff !important;
}

@media (max-width: 600px) {
  .recenze-modal__header {
    padding: 26px 22px 16px;
  }
  .recenze-modal__title {
    font-size: 22px;
  }
  .recenze-modal__body {
    padding: 22px 22px 28px;
  }
  .recenze-hero__add-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* =========================================================================
   Procedure single — Doctors "Zobrazit medailonek" button
   ========================================================================= */
.proc-doctors__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 14px;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.proc-doctors__more:hover,
.proc-doctors__more:focus-visible {
  background: var(--primary);
  color: #fff;
  outline: none;
}

/* =========================================================================
   Medailonek modal (native <dialog>)
   ========================================================================= */
.proc-medailonek-modals {
  display: contents;
}

.medailonek-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(880px, 92vw);
  max-height: 90vh;
  padding: 0;
  border: none;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(13, 28, 60, 0.35);
  overflow: hidden;
}

.medailonek-modal::backdrop {
  background: rgba(13, 28, 60, 0.55);
  backdrop-filter: blur(3px);
}

.medailonek-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.medailonek-modal__close:hover {
  background: #fff;
}

.medailonek-modal__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-height: 90vh;
}

.medailonek-modal__photo {
  background: #f4f6fb;
}

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

.medailonek-modal__body {
  padding: 36px 40px;
  overflow-y: auto;
}

.medailonek-modal__name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 6px;
  line-height: 1.15;
}

.medailonek-modal__pozice {
  font-size: 14px;
  color: #6b7689;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.medailonek-modal__bio {
  font-size: 15px;
  line-height: 1.65;
  color: #2a3447;
}

.medailonek-modal__bio p {
  margin: 0 0 12px;
}

.medailonek-modal__profile-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.medailonek-modal__profile-link:hover {
  color: var(--primary-dark, #0d1c3c);
}

@media (max-width: 700px) {
  .medailonek-modal__inner {
    grid-template-columns: 1fr;
  }
  .medailonek-modal__photo {
    max-height: 240px;
  }
  .medailonek-modal__body {
    padding: 24px 22px;
  }
  .medailonek-modal__name {
    font-size: 24px;
  }
}

/* =========================================================================
   Procedure single — Expert opinion (Názor odborníka)
   ========================================================================= */
.proc-expert {
  padding: 60px 0 70px;
  background: #fff;
}

.proc-expert__title {
  font-family: var(--font-serif) !important;
  font-size: 38px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin: 0 0 36px;
  line-height: 1.2;
}

.proc-expert__box {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 40px;
  background: #f6f8fc;
  border-left: 4px solid var(--primary);
  border-radius: 14px;
}

.proc-expert__photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 6px 18px rgba(13, 28, 60, 0.12);
}

.proc-expert__quote {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: #2a3447;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.proc-expert__quote::before {
  content: '\201C';
  position: absolute;
  left: -8px;
  top: -10px;
  font-size: 56px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.45;
  font-family: var(--font-serif);
}

.proc-expert__quote p {
  margin: 0 0 8px;
}

.proc-expert__quote p:last-child {
  margin-bottom: 0;
}

.proc-expert__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proc-expert__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.proc-expert__pozice {
  font-size: 13px;
  color: #6b7689;
}

@media (max-width: 700px) {
  .proc-expert__box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
    gap: 22px;
  }
  .proc-expert__photo {
    margin: 0 auto;
  }
  .proc-expert__quote {
    padding-left: 0;
    text-align: left;
  }
  .proc-expert__quote::before {
    display: none;
  }
  .proc-expert__title {
    font-size: 28px;
  }
}

/* =========================================================================
   Procedure single — Related (procedures + articles)
   ========================================================================= */
.proc-related {
  padding: 60px 0 70px;
}

.proc-related--procs {
  background: #f6f8fc;
}

.proc-related--articles {
  background: #fff;
}

.proc-related__title {
  font-family: var(--font-serif) !important;
  font-size: 38px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.2;
}

.proc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.proc-related__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13, 28, 60, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proc-related--articles .proc-related__card {
  background: #f6f8fc;
}

.proc-related__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 28, 60, 0.12);
}

.proc-related__card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9eef7;
}

.proc-related__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.proc-related__card:hover .proc-related__card-img img {
  transform: scale(1.06);
}

.proc-related__card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  margin: 18px 22px 8px;
  line-height: 1.3;
}

.proc-related__card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5466;
  margin: 0 22px 14px;
}

.proc-related__card-cta {
  display: inline-block;
  margin: 0 22px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .proc-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .proc-related__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .proc-related__grid {
    grid-template-columns: 1fr;
  }
  .proc-related {
    padding: 44px 0 50px;
  }
  .proc-related__title {
    font-size: 26px;
  }
}

/* =========================================================================
   Procedure single — Order Form
   ========================================================================= */
.proc-order-form {
  padding: 60px 0 80px;
  background: #F6F8FC;
}

.proc-order-form__title {
  font-family: var(--font-serif) !important;
  font-size: 38px;
  font-weight: 400;
  color: var(--primary) !important;
  margin-bottom: 40px;
  text-align: center;
}

.proc-order-form .fluentform {
  max-width: 600px;
  margin: 0 auto;
}

.proc-order-form .ff-btn-submit {
  background: #02ADD2 !important;
  color: #17386C !important;
  border: none !important;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  padding: 15px 40px !important;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.proc-order-form .ff-btn-submit:hover {
  background: #000 !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .proc-order-form__title {
    font-size: 26px;
    margin-bottom: 28px;
  }
}

/* =========================================================================
   Procedure single — FAQ
   ========================================================================= */
.proc-faq {
  padding: 60px 0 80px;
  background: #f6f8fc;
}

.proc-faq__title {
  font-family: var(--font-serif) !important;
  font-size: 38px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.2;
}

.proc-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proc-faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4eaf3;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.proc-faq__item[open] {
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(13, 28, 60, 0.08);
}

.proc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}

.proc-faq__question::-webkit-details-marker {
  display: none;
}

.proc-faq__chevron {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.proc-faq__item[open] .proc-faq__chevron {
  transform: rotate(180deg);
}

.proc-faq__answer {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #2a3447;
}

.proc-faq__answer p {
  margin: 0 0 10px;
}

.proc-faq__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .proc-faq {
    padding: 44px 0 60px;
  }
  .proc-faq__title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .proc-faq__question {
    padding: 16px 20px;
    font-size: 16px;
  }
  .proc-faq__answer {
    padding: 0 20px 18px;
    font-size: 14px;
  }
}

/* ==========================================================================
   Search Results
   ========================================================================== */

section.search-results {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-4xl);
}

/* Header: title + search form */
.search-results__header {
  margin-bottom: var(--space-2xl);
}

.search-results__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: var(--space-lg);
}

.search-results__query {
  font-style: italic;
}

.search-results__form {
  display: flex;
  max-width: 540px;
  border: 2px solid var(--primary);
}

.search-results__input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--bg-base);
  outline: none;
}

.search-results__input::placeholder {
  color: var(--text-muted);
}

.search-results__submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  background: var(--primary);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-results__submit:hover {
  background: var(--btn-default-bg-hover);
}

/* Results count */
.search-results__count {
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

/* Tabs */
.search-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--space-xl);
}

.search-tabs__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  background: none;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.search-tabs__btn::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: transparent;
  transition: background var(--transition-fast);
}

.search-tabs__btn:hover {
  color: var(--primary);
}

.search-tabs__btn.is-active {
  color: var(--primary);
}

.search-tabs__btn.is-active::after {
  background: var(--primary);
}

.search-tabs__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 12px;
  background: var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-body);
  line-height: 1;
}

.search-tabs__btn.is-active .search-tabs__count {
  background: var(--primary);
  color: var(--text-white);
}

/* Tab panels */
.search-tab-panel[hidden] {
  display: none;
}

.search-tab-panel__empty {
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-muted);
  padding: var(--space-2xl) 0;
  text-align: center;
}

/* Result list */
.search-results__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.search-result {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.search-result__img {
  flex-shrink: 0;
  width: 180px;
  height: 130px;
  overflow: hidden;
}

.search-result__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result__content {
  flex: 1;
  min-width: 0;
}

.search-result__title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.search-result__title a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.search-result__title a:hover {
  color: var(--accent);
}

.search-result__excerpt {
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.search-result__link {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.search-result__link:hover {
  color: var(--primary);
}

/* Empty state */
.search-results__empty {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.search-results__empty svg {
  margin-bottom: var(--space-lg);
}

.search-results__empty-text {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.search-results__empty-hint {
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--text-body);
}

/* Help section */
.search-results__help {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border);
}

.search-results__help-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: var(--space-xl);
}

.search-results__help-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.search-results__help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-results__help-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.search-results__help-card span {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Pagination */
.search-results__pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.search-results__pagination a,
.search-results__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.search-results__pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.search-results__pagination .current {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .search-result {
    flex-direction: column;
    gap: var(--space-md);
  }

  .search-result__img {
    width: 100%;
    height: 180px;
  }

  .search-results__help-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-results__submit span {
    display: none;
  }

  .search-results__submit {
    padding: 14px 16px;
  }

  .search-tabs__btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* =========================================================================
   Před a po (Before & After) Single Page
   ========================================================================= */

/* Hero: text left + featured image right */
.pap-hero {
  padding: 48px 0 56px;
}

.pap-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.pap-hero__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 24px;
  line-height: 1.2;
}

.pap-hero__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.pap-hero__body h2,
.pap-hero__body h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 28px 0 12px;
}

.pap-hero__body p:last-child {
  margin-bottom: 0;
}

.pap-hero__image {
  border-radius: 14px;
  overflow: hidden;
}

.pap-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .pap-hero__title {
    font-size: 2.5rem;
  }
  .pap-hero__body h2,
  .pap-hero__body h3 {
    font-size: 1.5rem;
  }
  .pap-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .pap-hero__image img {
    border-radius: 14px;
  }
}

@media (min-width: 1200px) {
  .pap-hero {
    padding: 64px 0 72px;
  }
  .pap-hero__title {
    font-size: 3rem;
  }
  .pap-hero__body h2,
  .pap-hero__body h3 {
    font-size: 1.75rem;
  }
  .pap-hero__grid {
    grid-template-columns: 55% 1fr;
    gap: 48px;
  }
}

.pap-hero__grid--no-image {
  grid-template-columns: 1fr;
  max-width: 800px;
}

/* Services – horizontal full-width cards */
.pap-services {
  background: #f6f8fc;
}

.pap-services__title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.2;
}

.pap-services__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pap-services__card {
  display: flex;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13, 28, 60, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pap-services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 28, 60, 0.12);
}

.pap-services__card-img {
  flex-shrink: 0;
  width: 280px;
  overflow: hidden;
  background: #e9eef7;
}

.pap-services__card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.pap-services__card:hover .pap-services__card-img img {
  transform: scale(1.06);
}

.pap-services__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 36px;
  flex: 1;
  min-width: 0;
}

.pap-services__card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 12px;
  line-height: 1.3;
}

.pap-services__card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5466;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pap-services__card-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .pap-services__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .pap-services__card-img {
    width: 200px;
  }
  .pap-services__card-body {
    padding: 20px 24px;
  }
  .pap-services__card-title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .pap-services__title {
    font-size: 26px;
  }
  .pap-services__card {
    flex-direction: column;
    max-height: none;
  }
  .pap-services__card-img {
    width: 100%;
  }
  .pap-services__card-body {
    padding: 20px;
  }
}

/* Banner CTA */
.pap-banner {
  padding: 28px 0;
}

.pap-banner .container {
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--primary) 0%, #234e8c 100%);
  border-radius: 14px;
  color: #fff;
}

.pap-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pap-banner__text {
  flex: 1;
  min-width: 280px;
}

.pap-banner__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}

.pap-banner__lead {
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.pap-banner__btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.pap-banner__btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 767px) {
  .pap-banner {
    padding: 20px 0;
  }
  .pap-banner .container {
    padding: 24px 20px;
  }
  .pap-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .pap-banner__title {
    font-size: 1.5rem;
  }
}

/* ===================================================================
   Language Switcher
   =================================================================== */
.mi-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mi-lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.mi-lang-switcher__flag {
  display: block;
  border-radius: 1px;
  flex-shrink: 0;
}

.mi-lang-switcher__code {
  text-transform: uppercase;
}

.mi-lang-switcher__arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mi-lang-switcher__trigger[aria-expanded="true"] .mi-lang-switcher__arrow {
  transform: rotate(180deg);
}

.mi-lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 4px 0;
  margin-top: 4px;
}

.mi-lang-switcher__trigger[aria-expanded="true"] + .mi-lang-switcher__dropdown {
  display: block;
}

.mi-lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  color: #17386C;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.mi-lang-switcher__option:hover {
  background: #EDF0F6;
  color: #17386C;
}