@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Montserrat:wght@300;400;500;600&display=swap');

/*
  Beauty Body ? Emerald Gold rebrand
  - prim?rn?: smaragdov?
  - akcent: zlat?
  - podklad: sv?tle kr?mov?
*/

:root {
  /* Barvy */
  --blue-royal: #0D1B2A;
  --blue-ink: #0D1B2A;
  --gold-accent: #C8A96B;
  --cream: #F4F4F4;
  --page-bg: #F4F4F4;
  --gray-100: #F4F4F4;
  --gray-300: rgba(13, 27, 42, 0.22);
  --text-muted: #6B6F72;
  --text: #0D1B2A;
  --text-soft: #6B6F72;
  --white: #ffffff;

  /* Jednotn? smaragdov? aura */
  --reef-deep: #0D1B2A;
  --reef-night: #0D1B2A;
  --reef-teal: #0D1B2A;
  --reef-mist: #0D1B2A;

  /* Typografie */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Rozm?ry */
  --container: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 22px rgba(13, 27, 42, 0.10);

  /* Motion (glob?ln? animace) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 900ms;
  --reveal-distance: 18px;
}

[hidden] {
  display: none !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);`n  font-weight: 300;`n  line-height: 1.65;
  background: var(--page-bg);
  overflow-x: hidden;
}
body.subpage { background: var(--page-bg); color: var(--text); }

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.7px;
}

p,
li,
label,
input,
textarea,
select,
.lead,
.nav-list a,
.btn {
  font-family: var(--font-sans);
}

/* Jemn? scroll reveal (fail-safe): bez JS se obsah zobraz? norm?ln? */
.reveal { opacity: 1; transform: none; filter: none; }
html.js .reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  filter: blur(6px);
  transition:
    opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out),
    filter var(--reveal-duration) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}
html.js .reveal.visible { opacity: 1; transform: translate3d(0, 0, 0); filter: none; }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.22s; }
.reveal.delay-3 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { transition: none; opacity: 1; transform: none; filter: none; }
  .anim-in, .anim-scaleIn { transition: none; opacity: 1; transform: none; }
}

/* CTA duo ? luxusn? zlat? akcenty */
.cta-duo { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; margin-top: 14px; }
.cta-duo .btn { min-width: 170px; text-align: center; }
.btn-luxe {
  background: var(--gold-accent);
  color: var(--blue-royal);
  border: 1px solid var(--gold-accent);
  box-shadow: 0 8px 18px rgba(13, 27, 42, 0.12);
}
.btn-luxe:hover { filter: brightness(0.96); box-shadow: 0 10px 20px rgba(13, 27, 42, 0.14); }
.btn-ghost-luxe {
  background: transparent;
  color: var(--blue-royal);
  border: 1px solid rgba(199, 165, 92, 0.7);
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.08);
}
.btn-ghost-luxe:hover { background: rgba(199, 165, 92, 0.10); color: var(--blue-royal); }

/* Why section ? sjednocen? pozad? */
.section.why { background: transparent; }

/* Pro? Beauty Body ? 1:1 layout inspirace (foto vlevo, info-boxy vpravo) */
.why-split {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}
.why-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(17, 43, 76, 0.16);
}
.why-content { display: grid; gap: 16px; }
.why-kicker {
  font-size: 13px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-accent);
}
.why-content .section-title { margin: 0; }

.why-list { display: grid; gap: 16px; margin-top: 6px; }
.why-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}
.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-accent);
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.why-item-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}
.why-item-text { margin: 6px 0 0; color: var(--text-soft); line-height: 1.75; }

@media (max-width: 900px) {
  .why-split { grid-template-columns: 1fr; }
  .why-media img { max-width: 520px; margin: 0 auto; }
}

/* Pr?miov? modro-zelen? pozad? inspirovan? katherine.cz (nen?padn? pohyb) */
.luxe-reef {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--text);
  background: transparent;
  backdrop-filter: none;
}
.luxe-reef h1,
.luxe-reef h2,
.luxe-reef h3,
.luxe-reef h4,
.luxe-reef h5,
.luxe-reef h6,
.luxe-reef p,
.luxe-reef li,
.luxe-reef a,
.luxe-reef .section-title {
  color: inherit;
  text-shadow: none;
}
.luxe-reef::before {
  content: none;
}
.luxe-reef::after {
  content: none;
}

/* Na cel? str?nce (podweb) nech?me pozad? fixovan? a neblokujeme scroll */
body.luxe-reef { overflow-x: hidden; overflow-y: auto; }
body.luxe-reef::before,
body.luxe-reef::after {
  position: fixed;
}

/* V boxech zv?razn?me kontrast na tmav?m pozad? */
.luxe-reef .card,
.luxe-reef .service-card,
.luxe-reef .price-card,
.luxe-reef .product-card,
.luxe-reef .price-item,
.luxe-reef .acc-item,
.luxe-reef .service-detail,
.luxe-reef .product-thumb {
  position: relative;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(125deg, rgba(212, 175, 55, 0.65), rgba(15, 45, 106, 0.18), rgba(212, 175, 55, 0.65)) border-box;
  border: 1.6px solid transparent;
  border-radius: var(--radius);
  color: inherit;
  box-shadow: var(--shadow);
}

/* Bez zlat?ho or?mov?n?: Kontakt & objedn?n? + spodn? ??dek ve footeru */
.luxe-reef .contact-panel,
.luxe-reef .contact-panel .socials,
.luxe-reef .footer-bottom {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: var(--shadow);
}

.luxe-reef .card h3,
.luxe-reef .service-title,
.luxe-reef .services-title,
.luxe-reef .price-title,
.luxe-reef .product-name,
.luxe-reef .section-title {
  color: inherit;
  text-shadow: none;
}

.luxe-reef .card p,
.luxe-reef .service-desc,
.luxe-reef .service-detail,
.luxe-reef .price-item,
.luxe-reef .product-note,
.luxe-reef .note,
.luxe-reef .pi-name,
.luxe-reef .pi-time,
.luxe-reef .pi-price,
.luxe-reef .contact-panel,
.luxe-reef .footer-links a,
.luxe-reef .footer-note,
.luxe-reef .footer-copy,
.luxe-reef .contact-link,
.luxe-reef .nav-list a {
  color: inherit;
  text-shadow: none;
}

.luxe-reef .btn.primary { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); }
.luxe-reef .btn.outline { color: var(--blue-royal); border-color: rgba(212, 175, 55, 0.55); }

/* Obr?zky a mapy ponech?me bez zm?ny pozad? */
.luxe-reef .owner-photo,
.luxe-reef .map iframe,
.luxe-reef .cenik-img,
.luxe-reef .gallery-col img,
.luxe-reef .thumb {
  background: none;
  color: inherit;
  text-shadow: none;
  box-shadow: var(--shadow);
}
@keyframes reefDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(10px, -12px, 0) scale(1.02); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 900px; }
.container.wide { max-width: 1860px; }
.section { padding: 96px 0; }

/* Odstran?me mezery mezi vybran?mi sekcemi: Slu?by, O mn?, Cen?k */
#sluzby,
#o-mne,
#cenik { margin-top: 0; }
.section.soft-bg { background: transparent; }
.section.flow-fade { position: relative; overflow: hidden; }
.section.flow-fade > * { position: relative; z-index: 1; }

#sluzby { position: relative; overflow: hidden; }
#sluzby::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(250, 247, 240, 0.82) 60%, rgba(250, 247, 240, 1) 100%);
  pointer-events: none;
  z-index: 0;
}

#o-mne { position: relative; overflow: hidden; }
#o-mne::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 200px;
  background: linear-gradient(180deg, rgba(250, 247, 240, 0) 0%, rgba(12, 28, 42, 0.35) 60%, rgba(7, 21, 36, 0.75) 100%);
  pointer-events: none;
  z-index: 0;
}

#cenik { position: relative; overflow: hidden; }
#cenik::before { content: none; }
#cenik .section-title {
  color: var(--blue-royal);
  text-shadow: none;
}

/* Nadpisy podwebu ? modr? */
.luxe-reef #procedury .section-title,
.luxe-reef #pristroje .section-title,
.luxe-reef #galerie-pristroju .section-title,
#procedury .section-title,
#pristroje .section-title,
#galerie-pristroju .section-title {
  color: var(--blue-royal);
  text-shadow: none;
}

/* Podweb ? intro s fotkou na pozad? */
.subpage-intro {
  padding-top: 120px;
  padding-bottom: 72px;
  min-height: 70vh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: none;
}
.subpage-intro > .container {
  position: relative;
  z-index: 1;
}
.subpage-intro::before {
  content: none;
}
.subpage-intro .section-title {
  font-size: clamp(44px, 6.8vw, 78px);
  line-height: 1.02;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  color: #0a214f;
  text-shadow: 0 1px 0 #f3e3b2, 0 2px 0 #e6c672, 0 4px 0 #d4af37, 0 6px 10px rgba(7, 21, 36, 0.24), 0 14px 24px rgba(7, 21, 36, 0.18);
}
.luxe-reef .subpage-intro .section-title,
.luxe-reef .subpage-intro .lead {
  color: #0a214f;
  text-shadow: none;
}
.subpage-intro .lead {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.8;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #0a214f;
}
.subpage-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,37,69,0.18), rgba(20,37,69,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.subpage-intro .hero-bg {
  animation: heroBgZoom 6s ease-out forwards;
}

/* Podweby (body.luxe-reef): zjemn?n? hran mezi sekcemi */
body.luxe-reef .section:not(.subpage-intro) {
  background: transparent;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.9px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--blue-royal);
  text-align: center;
}
.lead { font-size: 18px; color: var(--text-soft); margin-bottom: 18px; }

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(200, 169, 107, 0.28), 0 4px 24px rgba(13, 27, 42, 0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(200, 169, 107, 0.35), 0 6px 28px rgba(13, 27, 42, 0.10);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-royal); text-decoration: none; }
.brand-logo { display:inline-block; height:66px; width:66px; object-fit: cover; border-radius: 50%; box-shadow: 0 2px 10px rgba(13,27,42,0.10); }
.brand-name { font-weight: 600; letter-spacing: 0.4px; }

.site-nav { position: relative; }
.nav-list { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  text-decoration: none;
  color: var(--blue-royal);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0px;
  height: 1.5px;
  background: var(--gold-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  opacity: 0.85;
}
.nav-list a:hover { color: var(--gold-accent); }
.nav-list a:hover::after { transform: scaleX(1); }

/* Luxe header overrides */
.luxe-reef .site-header {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(200, 169, 107, 0.28), 0 4px 24px rgba(20,37,69,0.06);
}
.luxe-reef .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.5) 30%, rgba(200, 169, 107, 0.8) 50%, rgba(200, 169, 107, 0.5) 70%, transparent);
  opacity: 1;
}
.luxe-reef .site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(200, 169, 107, 0.35), 0 6px 28px rgba(20,37,69,0.10);
}
.luxe-reef .brand { color: var(--blue-royal); }
.luxe-reef .brand-name { color: var(--blue-royal); text-shadow: none; }
.luxe-reef .nav-list a { color: var(--blue-royal); text-shadow: none; font-size: 0.88rem; letter-spacing: 0.6px; text-transform: uppercase; }
.luxe-reef .nav-list a:hover { color: var(--gold-accent); }
.luxe-reef .nav-toggle {
  background: rgba(255,255,255,0.96);
  border-color: rgba(200, 169, 107, 0.4);
}
.luxe-reef .nav-toggle .line { background: var(--blue-royal); }

/* CTA style */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:10px; padding: 12px 24px; border-radius: 999px; text-decoration: none; font-weight: 600; letter-spacing: 0.3px; transition: transform 0.15s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease; cursor: pointer; }
.btn.primary { background: var(--blue-royal); color: #fff; border: 1px solid var(--blue-royal); border-radius: 999px; box-shadow: 0 6px 16px rgba(13, 27, 42, 0.16); }
.btn.primary:hover { transform: translateY(-1px); filter: brightness(0.92); box-shadow: 0 8px 18px rgba(13, 27, 42, 0.18), 0 0 0 1px var(--gold-accent) inset; }
.btn.outline { border: 1px solid var(--blue-royal); color: var(--blue-royal); background: transparent; border-radius: 999px; }
.btn.outline:hover { box-shadow: 0 0 0 1px var(--gold-accent) inset; }

/* Podweb: CTA v hlavi?ce "Objednat se" m? b?t b?l? */
body.luxe-reef .site-header .nav-list a.btn.primary {
  color: #fff;
}
body.luxe-reef .site-header .nav-list a.btn.primary::after {
  display: none;
}

.link-more { background: transparent; border: none; padding: 0; color: var(--blue-royal); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

/* Mobile nav toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--gray-300); background: #fff; justify-content:center; align-items:center; gap:5px; flex-direction: column; padding: 10px 0; }
.nav-toggle .line { width: 20px; height: 2px; background: var(--blue-royal); display: block; border-radius: 999px; }

/* Hero */
.hero { position: relative; min-height: 90vh; display: grid; align-items: center; padding-top: 96px; --scrollY: 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; transform-origin: center; background:
  linear-gradient(180deg, rgba(7, 21, 36, 0.52), rgba(7, 21, 36, 0.22) 48%, rgba(7, 21, 36, 0.06)),
  radial-gradient(1200px 600px at 80% 10%, rgba(212,175,55,0.08), transparent 60%),
  radial-gradient(900px 480px at 20% 90%, rgba(15,45,106,0.10), transparent 55%),
  var(--hero-image, url("obrazky/WhatsApp%20Image%202026-01-19%20at%2012.35.50(1).jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroBgZoom 6s ease-out forwards;
  will-change: transform;
}
.hero-bg.hero-bg-alt {
  opacity: 0;
  transition: opacity 800ms ease;
}
.hero-bg.hero-bg-alt.is-visible {
  opacity: 1;
}
/* Podweb: jin? podkladov? vizu?l */
body.subpage .hero-bg {
  background:
    linear-gradient(180deg, rgba(7, 21, 36, 0.52), rgba(7, 21, 36, 0.22) 48%, rgba(7, 21, 36, 0.06)),
    radial-gradient(1200px 600px at 80% 10%, rgba(212,175,55,0.08), transparent 60%),
    radial-gradient(900px 480px at 20% 90%, rgba(15,45,106,0.10), transparent 55%),
    var(--hero-image, url("obrazky/cpYSXf.jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::after { /* tmav?? overlay pro ?itelnost */
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,37,69,0.18), rgba(20,37,69,0.08) 40%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-text-wrap { max-width: 1080px; transform: translateY(calc(var(--scrollY) * -8px)); opacity: calc(1 - (var(--scrollY) * 0.12)); background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); padding: 48px 56px; border-radius: var(--radius); }
.hero-kicker { font-family: 'Montserrat', var(--font-sans); font-size: 18px; font-weight: 500; letter-spacing: 6.6px; text-transform: uppercase; color: var(--gold-accent); margin: 0 0 14px; text-align: center; text-shadow: 0 1px 0 rgba(255, 242, 200, 0.7), 0 2px 0 rgba(212, 175, 55, 0.6), 0 6px 14px rgba(7, 21, 36, 0.22); }
.hero-headline { font-family: var(--font-serif); font-weight: 700; font-size: clamp(62px, 11vw, 166px); line-height: 0.82; letter-spacing: 6.6px; color: #0a214f; margin: 0 0 12px; }
.hero-headline { font-size: clamp(58px, 9vw, 132px); letter-spacing: 4px; max-width: 980px; margin-left: auto; margin-right: auto; }
.hero-headline .hero-word { display: block; white-space: nowrap; text-shadow: none; }
.hero-byline {
  display: block;
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1.4px;
  text-transform: none;
  line-height: 1.2;
  text-align: center;
}
.hero-claim { font-family: var(--font-sans); font-size: clamp(17px, 2.4vw, 20px); line-height: 1.8; color: #000000; max-width: 720px; text-align: center; margin-left: auto; margin-right: auto; }

/* V intru zachov?me p?vodn? barvy i na tmav?m pozad? */
.luxe-reef .hero-headline,
.luxe-reef .hero-claim,
.luxe-reef .hero-kicker { color: #0a214f; text-shadow: none; }
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 14px; }
/* center text blocks within container */
.hero-subtitle { margin-left: auto; margin-right: auto; }
/* jemn? animace CTA pro pozornost, ne agresivn? */
.hero-cta .btn.primary { animation: softPulse 3.2s ease-in-out 1.2s infinite; }
@keyframes softPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(15,45,106,0.24); transform: translateY(0); }
  50% { box-shadow: 0 10px 26px rgba(15,45,106,0.30); transform: translateY(-1px); }
}

.scroll-indicator { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-indicator span { display:block; width: 24px; height: 36px; border: 2px solid var(--blue-ink); border-radius: 14px; position: relative; opacity: .7; }
.scroll-indicator span::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--blue-ink); border-radius: 2px; top: 6px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* Cinematic hero animations */
@keyframes fadeScaleIn {
  0% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes heroBgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.anim-in { opacity: 0; transform: translateY(14px); transition: transform 1100ms ease, opacity 1100ms ease; }
.anim-in.animated { opacity: 1; transform: translateY(0); }
.anim-in.delay-1 { transition-delay: 300ms; }
.anim-in.delay-2 { transition-delay: 600ms; }
.anim-in.delay-3 { transition-delay: 900ms; }
/* scale-in for big word */
.anim-scaleIn { opacity: 0; transform: scale(1.08); transition: transform 1400ms ease, opacity 1400ms ease; will-change: transform, opacity; }
.anim-scaleIn.animated { opacity: 1; transform: scale(1); }

/* Layout helpers */
.two-cols { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.media img { box-shadow: var(--shadow); }
#filozofie .media img { box-shadow: none; }

.filozofie-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px) minmax(0, 1fr);
  column-gap: clamp(16px, 2.8vw, 34px);
  row-gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.filozofie-text,
.filozofie-why {
  display: grid;
  gap: 16px;
}
.filozofie-why .section-title { margin: 0; }
#filozofie .section-title {
  font-size: clamp(30px, 3vw, 40px);
}
#filozofie .framer-headline {
  font-size: clamp(18px, 2.9vw, 28px);
  line-height: 1.32;
}
#filozofie .why-item-title {
  font-size: 18px;
}
#filozofie .why-item-text {
  font-size: 15px;
  line-height: 1.68;
}
.filozofie-logo {
  align-self: stretch;
  justify-self: center;
  width: 100%;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  border-radius: 20px;
  background: var(--blue-royal);
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.22);
}
.filozofie-logo img {
  width: clamp(210px, 24vw, 340px);
  margin: 0 auto;
}

@media (max-width: 1366px) {
  #filozofie.section { padding: 68px 0; }

  .filozofie-layout {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) minmax(0, 1fr);
    column-gap: clamp(10px, 1.8vw, 20px);
    row-gap: clamp(14px, 2.3vw, 28px);
  }

  #filozofie .section-title {
    font-size: clamp(25px, 2.4vw, 34px);
  }

  #filozofie .framer-headline {
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.28;
    margin-bottom: 8px;
  }

  #filozofie .why-list {
    gap: 12px;
    margin-top: 0;
  }

  #filozofie .why-item {
    gap: 10px;
  }

  #filozofie .why-item-title {
    font-size: 17px;
  }

  #filozofie .why-item-text {
    font-size: 14px;
    line-height: 1.52;
  }

  .filozofie-logo {
    max-width: 260px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .filozofie-logo img {
    width: clamp(150px, 17vw, 230px);
  }

  #filozofie .cta-duo {
    margin-top: 8px;
    gap: 10px;
  }

  #filozofie .cta-duo .btn {
    min-width: 150px;
  }
}

/* Podweb ? P??stroje redesign */
.devices { background: transparent; }
.devices-head { display: grid; gap: 10px; max-width: 900px; text-align: center; margin: 0 auto 28px; }
.devices-head .eyebrow { color: var(--gold-accent); }
.devices .lead { margin: 0; color: var(--text-soft); }
.artmediz-logo-link { display: inline-flex; align-items: center; justify-content: center; margin: 4px auto 0; }
.artmediz-logo-link img { width: 188px; max-width: 100%; height: auto; border-radius: 0; }

.devices-split {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  margin-top: 8px;
}

.device-panel {
  display: grid;
  grid-template-columns: minmax(260px, 480px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: clamp(10px, 2.4vw, 22px) 0;
}

.device-panel.reverse .device-panel-media { order: 2; }
.device-panel.reverse .device-panel-content { order: 1; }

.device-panel-media {
  position: relative;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.45), rgba(212, 175, 55, 0.08));
  box-shadow: 0 18px 44px rgba(20, 37, 69, 0.12);
}
.device-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1.6px solid rgba(212, 175, 55, 0.6);
  box-shadow: none;
}

.device-panel-content {
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.device-benefits {
  margin-top: 8px;
  display: grid;
  gap: 14px;
  padding: 15px;
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.device-benefits h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text);
}
.device-benefits h4 {
  margin: 0;
  color: var(--gold-accent);
  font-family: var(--font-serif);
  font-weight: 700;
}
.device-benefits hr {
  margin: 8px 0 12px;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.85), rgba(212, 175, 55, 0.25));
  border-radius: 999px;
}
.device-benefits p {
  margin: 0 0 12px;
}
.device-benefits ul {
  margin: 0 0 10px 0;
  padding-left: 0;
  color: var(--text-soft);
  list-style: none;
}
.device-benefits li strong {
  color: var(--gold-accent);
}
.pece-o-plet {
  background: var(--blue-royal);
  color: #eaf4ff;
  position: relative;
  overflow: hidden;
}
.pece-o-plet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.12), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.pece-split {
  position: relative;
  z-index: 1;
}
.pece-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.pece-content {
  display: grid;
  gap: 12px;
}
.pece-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  color: #eaf4ff;
  margin: 0;
  position: relative;
  padding-bottom: 12px;
}
.pece-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.2));
  border-radius: 999px;
}
.pece-content p {
  margin: 0;
  color: rgba(234, 244, 255, 0.82);
  line-height: 1.8;
}
.pece-media img,
.pece-media video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.pece-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.split-media-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: 210px;
  object-fit: cover;
  margin: 0;
}

.split-media-image-large {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 640px;
  height: 420px;
}

.split-media-image-sothys {
  max-width: 340px;
  height: 220px;
}

.sothys-media-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sothys-media-stack .split-media-image-sothys {
  width: 340px;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  margin: 0;
}

.split-media-image:last-child {
  margin-bottom: 0;
}

.soft-divider {
  margin-top: clamp(28px, 5vw, 48px);
  background: var(--blue-royal);
  border-radius: 22px;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 10px 26px rgba(20, 37, 69, 0.08);
  color: #eaf4ff;
}
.soft-divider-inner {
  display: grid;
  gap: 6px;
  max-width: 900px;
}
.soft-divider h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 26px);
  color: #eaf4ff;
  position: relative;
  padding-bottom: 6px;
}
.soft-divider h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.85), rgba(212, 175, 55, 0.2));
  border-radius: 999px;
}
.soft-divider p {
  margin: 0;
  color: rgba(234, 244, 255, 0.82);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .pece-split {
    grid-template-columns: 1fr;
  }
  .pece-media img {
    max-width: 520px;
    margin: 0 auto;
  }
  .split-media-image {
    max-width: 260px;
    height: 170px;
    margin: 0;
  }
  .split-media-image-large {
    grid-column: 1 / -1;
    max-width: 460px;
    height: 300px;
  }
  .split-media-image-sothys {
    max-width: 280px;
    height: 180px;
  }
  .sothys-media-stack .split-media-image-sothys {
    width: 280px;
    height: 180px;
  }
  .soft-divider {
    min-height: 88px;
  }
}

.device-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--blue-royal);
  position: relative;
  padding-bottom: 12px;
}
.device-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.2));
  border-radius: 999px;
}

.device-panel-content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.device-divider {
  height: 1px;
  width: min(80%, 820px);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.device-card {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(20, 37, 69, 0.12);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.device-card:hover,
.device-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 37, 69, 0.16);
  border-color: rgba(212,175,55,0.55);
}

.device-media { position: relative; overflow: hidden; }
.device-media img { width: 100%; height: 220px; object-fit: cover; display: block; }
.device-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,45,106,0.8);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.device-body { padding: 16px 16px 18px; display: grid; gap: 6px; }
.device-body h3 { margin: 0; font-size: 20px; color: var(--text); }
.device-body p { margin: 0; color: var(--text-soft); line-height: 1.7; }

@media (max-width: 1024px) {
  .devices-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .device-media img { height: 200px; }
}
@media (max-width: 720px) {
  .devices-grid { grid-template-columns: 1fr; }
  .device-media img { height: 200px; }
}

@media (max-width: 900px) {
  .device-panel {
    grid-template-columns: 1fr;
  }
  .device-panel.reverse .device-panel-media,
  .device-panel.reverse .device-panel-content {
    order: unset;
  }
  .device-panel-content {
    max-width: 100%;
  }
}

/* P?ikl?zec? efekt (grow + overlay) ? vybran? sekce */
#procedury .step,
#sluzby .service-card,
#sluzby .acc-item,
#kosmetika .product-card {
  position: relative;
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease;
  will-change: transform;
}

#procedury .step::after,
#sluzby .service-card::after,
#sluzby .acc-item::after,
#kosmetika .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 36, 0.04), rgba(7, 21, 36, 0.38));
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}

#procedury .step > *,
#sluzby .service-card > *,
#sluzby .acc-item > *,
#kosmetika .product-card > * {
  position: relative;
  z-index: 1;
}

#procedury .step:hover,
#procedury .step:focus-within,
#sluzby .service-card:hover,
#sluzby .service-card:focus-within,
#sluzby .acc-item:hover,
#sluzby .acc-item:focus-within,
#kosmetika .product-card:hover,
#kosmetika .product-card:focus-within {
  transform: scale(1.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

#procedury .step:hover::after,
#procedury .step:focus-within::after,
#sluzby .service-card:hover::after,
#sluzby .service-card:focus-within::after,
#sluzby .acc-item:hover::after,
#sluzby .acc-item:focus-within::after,
#kosmetika .product-card:hover::after,
#kosmetika .product-card:focus-within::after {
  opacity: 1;
}

/* Galerie p??stroj? ? p?ikl?zec? efekt na cel? boxy */
#galerie-pristroju .gallery-col,
#galerie-pristroju .thumb,
#galerie-procedury .gallery-col,
#galerie-procedury .thumb {
  position: relative;
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease;
  will-change: transform;
}

#galerie-pristroju .gallery-col,
#galerie-procedury .gallery-col {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
#galerie-pristroju .gallery-col img,
#galerie-procedury .gallery-col img {
  border-radius: 0;
  box-shadow: none;
  transition: transform 350ms ease;
  will-change: transform;
}
#galerie-pristroju img,
#galerie-procedury img {
  cursor: zoom-in;
}

#galerie-pristroju .gallery-col::after,
#galerie-pristroju .thumb::after,
#galerie-procedury .gallery-col::after,
#galerie-procedury .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 36, 0.04), rgba(7, 21, 36, 0.50));
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}

#galerie-pristroju .gallery-col:hover,
#galerie-pristroju .thumb:hover,
#galerie-procedury .gallery-col:hover,
#galerie-procedury .thumb:hover {
  transform: scale(1.01);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.20);
}

#galerie-pristroju .gallery-col:hover::after,
#galerie-pristroju .thumb:hover::after,
#galerie-procedury .gallery-col:hover::after,
#galerie-procedury .thumb:hover::after {
  opacity: 1;
}

#galerie-pristroju .gallery-col:hover img,
#galerie-pristroju .thumb:hover img,
#galerie-procedury .gallery-col:hover img,
#galerie-procedury .thumb:hover img {
  transform: scale(1.06);
}

.grid.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(20,37,69,0.12); border-color: rgba(212,175,55,0.5); }
.card h3 { margin: 6px 0 8px; font-size: 20px; color: var(--blue-royal); }
.card p { margin: 0 0 10px; color: var(--text-soft); }

.media-cards .card.media { padding: 0; overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.media-cards .card .content { padding: 18px 18px 20px; }

.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.brand { text-align: center; padding: 16px; border: 1px dashed var(--gray-300); border-radius: var(--radius); background: #fff; }
.brand p { margin: 10px 0 0; color: var(--text-soft); }

.note { margin-top: 20px; color: var(--text-soft); }

/* Owner section */
.owner .owner-photo {
  width: 100%;
  max-width: 700px;
  max-height: min(74vh, 780px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.owner-media-column {
  width: 100%;
  max-width: 680px;
  min-height: 100%;
  display: grid;
  align-content: stretch;
  justify-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: var(--blue-royal);
  box-shadow: 0 16px 38px rgba(13, 27, 42, 0.22);
}
.owner-photo-wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.owner-photo-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  background: rgba(7, 21, 36, 0.38);
  border-radius: 22px;
  pointer-events: none;
}
.upload-controls { margin-top: 12px; display: grid; gap: 8px; }
.upload-controls .upload-note { margin: 0; color: var(--text-soft); font-size: 13px; }
.owner .section-separator { height: 2px; width: 100%; max-width: 560px; background: linear-gradient(90deg, rgba(10,10,10,0.12), rgba(10,10,10,0.12)); margin: 8px 0 16px; border-radius: 2px; }
.owner .owner-text p { margin: 0 0 14px; }

/* Full-bleed owner gallery */
.full-bleed { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.owner-gallery { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.owner-gallery img { width: 100%; display: block; aspect-ratio: 4 / 5; height: 100%; object-fit: cover; }
.owner-gallery img + img { margin-top: 0; }

/* Slu?by / ritu?ly ? redesign */
.rituals { background: transparent; }
.rituals-head { display: grid; gap: 12px; justify-items: center; text-align: center; margin-bottom: 36px; }
.rituals-head .eyebrow { font-size: 13px; letter-spacing: 2.2px; text-transform: uppercase; font-weight: 700; color: var(--gold-accent); }
.rituals-title-wrap { max-width: 860px; display: grid; gap: 10px; }
.rituals .section-title { margin: 0; }
.rituals .lead { margin: 0; color: var(--text-soft); }

.service-packages-note {
  width: fit-content;
  max-width: 520px;
  margin: 0 auto 18px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(199, 165, 92, 0.45);
  background: rgba(239, 233, 223, 0.85);
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.service-intro-split { margin-bottom: 20px; }
.service-intro-text { min-width: 0; }
.gallery-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gallery-toggle::after {
  content: "?";
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-royal);
  transition: transform 220ms ease;
}
.gallery-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.service-toggle-gallery {
  margin: 12px 0 18px;
}
.service-toggle-gallery .gallery-wrap {
  width: 100%;
  margin-left: 0;
  padding: 0;
  min-height: auto;
  align-items: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1200px;
}
.service-toggle-gallery .gallery-col {
  height: auto;
  padding: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.45), rgba(212, 175, 55, 0.08));
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 37, 69, 0.12);
}
.service-toggle-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1.6px solid rgba(212, 175, 55, 0.6);
  cursor: zoom-in;
}

.service-intro-media {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 16px;
}
.service-intro-media img {
  width: min(100%, 260px);
  height: 170px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.service-intro-media.duo img {
  width: min(100%, 220px);
}

.rituals-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.ritual-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17, 43, 76, 0.10);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  min-height: 250px;
}
.ritual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 110% -10%, rgba(212, 175, 55, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.ritual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(17, 43, 76, 0.16);
  border-color: rgba(212, 175, 55, 0.55);
}
.ritual-card > * { position: relative; z-index: 1; }
.ritual-meta { display: block; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(15, 45, 106, 0.08); color: var(--blue-royal); font-weight: 700; font-size: 13px; letter-spacing: 0.3px; }
.pill-soft { background: rgba(212, 175, 55, 0.16); color: #6b5410; }
.ritual-name { margin: 0; font-family: var(--font-serif); font-size: 22px; color: var(--text); letter-spacing: 0.2px; }
.ritual-copy { margin: 0; color: var(--text-soft); line-height: 1.7; }
.ritual-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  align-self: center;
  justify-content: center;
  min-width: 190px;
  border-radius: 10px;
  background: rgba(13, 27, 42, 0.96);
  border: 1px solid rgba(13, 27, 42, 0.96);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(13, 27, 42, 0.20);
}
.ritual-card:hover .ritual-link { background: rgba(11, 34, 32, 0.98); border-color: rgba(199, 165, 92, 0.55); }
.ritual-link::after { content: "?"; font-size: 18px; transition: transform 200ms ease; }
.ritual-card:hover .ritual-link::after { transform: translateX(3px); }

@media (max-width: 1024px) {
  .rituals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .rituals-grid { grid-template-columns: 1fr; }
  .rituals-head { text-align: left; justify-items: start; }
  .service-packages-note { margin: 0 0 14px; }
  .service-toggle-gallery .gallery-wrap { grid-template-columns: 1fr; }
  .service-toggle-gallery img { height: auto; }
  .service-intro-media img,
  .service-intro-media.duo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

/* Filozofie ? trust grid (1:1 layout inspirace) */
.filozofie .trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 26px; justify-items: center; }
.trust-card { background: transparent; border-radius: var(--radius); padding: 16px; position: relative; overflow: hidden; text-align: center; display: grid; justify-items: center; }
.trust-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gray-300); }
.trust-value { display: grid; place-items: center; font-family: var(--font-sans); font-weight: 500; font-size: clamp(40px, 6.5vw, 64px); line-height: 1.05; color: var(--text); letter-spacing: 0; }
.trust-caption { margin-top: 8px; text-align: center; color: var(--text); font-size: 15px; }

/* Framer-like headline (velk? H3 + zlat? span) */
.framer-headline { margin: 8px 0 12px; font-family: var(--font-sans); font-weight: 500; font-size: clamp(20px, 3.5vw, 32px); line-height: 1.3; color: var(--text); }
.framer-headline .muted { color: #c9a961; opacity: 0.85; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); text-align: center; }
.step .icon { color: var(--gold-accent); margin: 6px auto 10px; }
.step h3 { margin: 8px 0 6px; font-size: 18px; color: var(--blue-royal); }
.step p { margin: 0; color: var(--text-soft); }

/* Zarovn?n? procedur k headeru */
#procedury .section-title { text-align: left; }
#procedury .steps { text-align: left; }
#procedury .step { text-align: left; }
#procedury .step .icon { margin-left: 0; margin-right: 0; }

/* Procedury ? nov? layout */
.procedury { background: linear-gradient(180deg, #ffffff 0%, #faf7f0 60%, #ffffff 100%); }
.procedury-head { display: grid; gap: 10px; max-width: 860px; text-align: center; justify-items: center; margin-left: auto; margin-right: auto; }
.procedury-head .eyebrow { font-size: 13px; letter-spacing: 2.2px; text-transform: uppercase; font-weight: 700; color: var(--gold-accent); }
.procedury-head .lead { margin: 0; color: var(--text-soft); }

.procedury-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 18px auto 0;
  max-width: 1180px;
}
.procedury-grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.55), rgba(212,175,55,0.15));
  z-index: 0;
}

.proc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 32px rgba(20, 37, 69, 0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  z-index: 1;
}
.proc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 80% 12%, rgba(212,175,55,0.14), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  border-radius: 16px;
}
.proc-card > * { position: relative; z-index: 1; }
.proc-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-royal);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(15,45,106,0.28);
}
.proc-body { display: grid; gap: 6px; }
.proc-title { margin: 0; font-family: var(--font-serif); font-size: 20px; color: var(--text); letter-spacing: 0.3px; }
.proc-desc { margin: 0; color: var(--text-soft); line-height: 1.7; }
.proc-points { margin: 6px 0 0; padding-left: 18px; color: var(--text); line-height: 1.6; }
.proc-points li { margin-bottom: 4px; }

@media (max-width: 1024px) {
  .procedury-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .procedury-grid { grid-template-columns: 1fr; }
  .procedury-grid::before { display: none; }
  .proc-card { grid-template-columns: auto 1fr; }
}

/* Kontakt */
.contact .address { font-style: normal; margin: 10px 0 16px; color: var(--blue-royal); }
.contact .contact-link { color: var(--blue-royal); text-decoration: none; font-weight: 600; }
.contact .contact-link:hover { text-decoration: underline; }
.contact .cta-row { display:flex; gap:12px; margin-top:14px; }
.map iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* panel kolem kontaktn?ch ?daj? */
.contact-panel {
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  color: var(--text);
}
.contact-panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, rgba(212,175,55,0.9), rgba(212,175,55,0.35)); border-top-left-radius: var(--radius); border-top-right-radius: var(--radius); }
.contact .cta-row .btn.primary { box-shadow: 0 6px 16px rgba(13, 27, 42, 0.16); }
.contact .cta-row .btn.primary:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(13, 27, 42, 0.18); }
.contact-form { display: grid; gap: 16px; }
.contact-form .form-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-panel .section-title { color: var(--blue-royal); }
.contact-form .form-field { display: grid; gap: 6px; font-weight: 600; color: var(--text); }
.contact-form .form-field.full { grid-column: 1 / -1; }
.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 24px;
  border: 1px solid var(--gray-300);
  font-size: 16px;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder { color: var(--text-soft); }
.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--blue-royal);
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.18);
  background: var(--cream);
}
.contact-form .form-field textarea { resize: vertical; min-height: 140px; }
.contact-form .form-field.checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--text); }
.contact-form .form-field.checkbox input { width: auto; margin-top: 4px; }
.contact-form .contact-mini { display: grid; gap: 6px; margin-top: 4px; color: var(--text); font-size: 14px; }

.myfox-booking {
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.myfox-booking .product-note {
  max-width: 680px;
  margin: 0;
}

.myfox-logo {
  width: min(220px, 100%);
  height: auto;
  border-radius: 10px;
}

.kosmetika-price-note {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(199, 165, 92, 0.45);
  background: rgba(13, 27, 42, 0.07);
  font-weight: 600;
}

.kosmetika-price-note.top-note {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  text-align: center;
}

.kosmetika-main-title {
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.kosmetika-main-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 84px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 165, 92, 0.2), rgba(199, 165, 92, 0.95), rgba(199, 165, 92, 0.2));
}

/* Podweby ? boxy pr?hledn? (barva bere z --page-bg) */
body.subpage .card,
body.subpage .device-card,
body.subpage .proc-card,
body.subpage .service-card,
body.subpage .price-card,
body.subpage .product-card,
body.subpage .price-item,
body.subpage .acc-item,
body.subpage .service-detail {
  background: transparent;
  border-color: rgba(10, 10, 10, 0.12);
}

/* Sluzby.html ? hodn? box? je inline style "background: white" ? p?ep?eme na pr?hledn? */
body.subpage .section .container [style*="background: white" i],
body.subpage .section .container [style*="background:white" i],
body.subpage .section .container [style*="background: #fff" i],
body.subpage .section .container [style*="background:#fff" i] {
  background: transparent !important;
  border: 1px solid rgba(10, 10, 10, 0.12);
  box-shadow: var(--shadow);
}

/* Nadpisy uvnit? t?chto box? do zlata (nap?. HANAKASUMI, DX BODY, KONTRAINDIKACE) */
body.subpage .section .container [style*="background: white" i] h2,
body.subpage .section .container [style*="background: white" i] h3,
body.subpage .section .container [style*="background: white" i] h4,
body.subpage .section .container [style*="background:white" i] h2,
body.subpage .section .container [style*="background:white" i] h3,
body.subpage .section .container [style*="background:white" i] h4,
body.subpage .section .container [style*="background: #fff" i] h2,
body.subpage .section .container [style*="background: #fff" i] h3,
body.subpage .section .container [style*="background: #fff" i] h4,
body.subpage .section .container [style*="background:#fff" i] h2,
body.subpage .section .container [style*="background:#fff" i] h3,
body.subpage .section .container [style*="background:#fff" i] h4 {
  color: var(--gold-accent) !important;
}

/* Zv?razn?n? ?daje (cca. 60?90 minut, od 1390 K?) do zlata */
span[style*="#9f7753" i] {
  color: var(--gold-accent) !important;
}
.contact-form .contact-mini .contact-link { font-weight: 700; color: var(--blue-royal); }
.contact .contact-link { color: var(--blue-royal); }

/* Footer */
.site-footer {
  padding: 50px 0 30px;
  background: var(--blue-royal);
  position: relative;
  color: var(--cream);
  border-top: 1px solid rgba(200, 169, 107, 0.2);
}

/* Kdy? m? footer i .luxe-reef, pou?ijeme modro-zelen? pozad? (ne glass barvu) */
.site-footer.luxe-reef {
  background: var(--blue-royal);
  backdrop-filter: saturate(102%);
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(234,244,255,0), rgba(234,244,255,0.22), rgba(234,244,255,0));
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
  color: inherit;
}

.footer-block { padding: 6px 0; }

.footer-title {
  margin: 0 0 12px;
  font-size: 18px;
  color: #EFE9DF;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.footer-phone {
  display: block;
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.2px;
  color: #EFE9DF;
  text-decoration: none;
  text-shadow: none;
  margin: 0 0 6px;
}
.footer-phone:hover { color: #ffffff; }

.footer-link {
  display: block;
  color: #EFE9DF;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  text-shadow: none;
  margin-bottom: 6px;
}
.footer-link:hover { color: #ffffff; }

.footer-subtitle {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #EFE9DF;
  text-shadow: none;
}

.footer-note {
  position: relative;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #EFE9DF;
  text-shadow: none;
  text-align: center;
  letter-spacing: 0.2px;
}

.footer-note-link-wrap {
  margin-top: 8px;
}

.footer-note-link-wrap::before {
  display: none;
}

.footer-note-link {
  color: #EFE9DF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-note-link:hover {
  color: #ffffff;
}

.footer-note::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, rgba(234,244,255,0), rgba(234,244,255,0.4), rgba(234,244,255,0));
}

.footer-text {
  margin-top: 8px;
  color: #EFE9DF;
  text-shadow: none;
  line-height: 1.8;
  font-size: 16px;
}

.footer-address-text {
  color: #EFE9DF;
  text-shadow: none;
  line-height: 1.8;
  font-size: 16px;
}

/* Emerald Gold ? glob?ln? sjednocen? vzhledu */
body,
.section,
.section.soft-bg,
body.luxe-reef .section:not(.subpage-intro) {
  background: var(--page-bg);
}

#sluzby::after,
#o-mne::after,
.hero::after,
.subpage-intro::after {
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.15), rgba(13, 27, 42, 0.06) 45%, rgba(239, 233, 223, 0) 100%);
}

#o-mne::after {
  content: none;
}

#o-mne::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 74%;
  transform: translateX(-50%);
  width: min(416.2px, calc(100vw - 48px));
  background: var(--blue-royal);
  pointer-events: none;
  z-index: 0;
}

#o-mne > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  #o-mne::before { display: none !important; }
}

.hero-bg,
body.subpage .hero-bg {
  background:
    linear-gradient(180deg, rgba(7, 21, 36, 0.52), rgba(7, 21, 36, 0.22) 48%, rgba(7, 21, 36, 0.06)),
    radial-gradient(1200px 600px at 80% 10%, rgba(200, 169, 107, 0.08), transparent 60%),
    radial-gradient(900px 480px at 20% 90%, rgba(13, 27, 42, 0.10), transparent 55%),
    var(--hero-image, url("obrazky/WhatsApp%20Image%202026-01-19%20at%2012.35.50(1).jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.subpage-intro .section-title,
.subpage-intro .lead,
.hero-headline,
.hero-claim,
.hero-kicker,
.luxe-reef .hero-headline,
.luxe-reef .hero-claim,
.luxe-reef .hero-kicker,
.luxe-reef .subpage-intro .section-title,
.luxe-reef .subpage-intro .lead {
  color: var(--blue-royal);
  text-shadow: none;
}

.hero-headline .hero-word,
.subpage-intro .section-title,
.luxe-reef .subpage-intro .section-title {
  text-shadow:
    0 0 0.5px var(--gold-accent),
    0 1px 0 rgba(199, 165, 92, 0.9),
    0 4px 12px rgba(199, 165, 92, 0.28);
}

.hero-text-wrap {
  background: rgba(239, 233, 223, 0.62);
  border: 1px solid rgba(199, 165, 92, 0.35);
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.10);
}

.card,
.service-card,
.price-card,
.product-card,
.acc-item,
.device-card,
.proc-card,
.ritual-card,
.contact-panel,
.social,
.price-item,
body.subpage .section .container [style*="background: white" i],
body.subpage .section .container [style*="background:white" i],
body.subpage .section .container [style*="background: #fff" i],
body.subpage .section .container [style*="background:#fff" i] {
  background: var(--cream) !important;
  border-color: rgba(199, 165, 92, 0.42) !important;
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.08) !important;
}

.social:hover,
.luxe-reef .social:hover {
  border-color: var(--gold-accent) !important;
  color: var(--blue-royal) !important;
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.10) !important;
}

.device-benefits hr,
.orn-line::before,
.orn-line::after,
.decor-line,
.footer-note::before,
.pece-title::after,
.soft-divider h3::after,
.price-item + .price-item::before {
  background: linear-gradient(90deg, rgba(199, 165, 92, 0), rgba(199, 165, 92, 0.8), rgba(199, 165, 92, 0)) !important;
}

.contact-panel::before {
  background: linear-gradient(90deg, rgba(199, 165, 92, 0.9), rgba(199, 165, 92, 0.35));
}

.contact .address,
.contact .contact-link,
.contact-form .contact-mini .contact-link,
.link-more,
.pi-name,
.devices-head .eyebrow,
.why-kicker,
.device-benefits h4,
span[style*="#9f7753" i] {
  color: var(--gold-accent) !important;
}

.contact-form .form-field,
.pi-time,
.lead,
.ritual-copy,
.proc-desc,
.why-item-text {
  color: var(--text-soft);
}

.nav-toggle,
.nav-list,
.luxe-reef .nav-list {
  background: var(--cream);
  border-color: rgba(13, 27, 42, 0.2);
}

@media (max-width: 720px) {
  .nav-list,
  .luxe-reef .nav-list {
    background: var(--cream) !important;
    border-color: rgba(13, 27, 42, 0.2) !important;
  }
}

/* footer-bottom removed per layout update */

/* Kontakt & objedn?n? ? v?t?? typografie (inspirov?no footerem/p?edlohou) */
.contact-panel .address {
  margin: 12px 0 18px;
  font-size: 16px;
  line-height: 1.85;
}

.contact-panel .contact-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.contact-panel .contact-link + br + .contact-link {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
}

.contact-panel .affiliation {
  margin: 14px 0 18px;
  font-size: 16px;
  color: #e0e9f5;
}

.luxe-reef .contact-panel .address,
.luxe-reef .contact-panel .affiliation {
  color: #e5eef9;
  text-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

.luxe-reef .contact-panel .contact-link {
  color: #eaf4ff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.36);
}

.footer-only-mobile { display: none; }
.footer-only-desktop { display: block; }

/* Socials */
.socials { display: flex; gap: 18px; align-items: center; justify-content: center; }
.social { display: inline-flex; align-items:center; gap: 10px; color: var(--text); text-decoration: none; border: 1px solid var(--gray-300); padding: 10px 14px; border-radius: 999px; transition: all .2s ease; background: transparent; }
.social:hover { border-color: rgba(212,175,55,0.7); color: var(--blue-royal); box-shadow: 0 8px 22px rgba(20,37,69,0.08); }

.luxe-reef .social { color: #eaf4ff; border-color: rgba(234, 244, 255, 0.36); background: rgba(12,28,42,0.6); box-shadow: 0 10px 24px rgba(0,0,0,0.26); }
.luxe-reef .social:hover { color: #f3e7c0; border-color: rgba(212,175,55,0.7); box-shadow: 0 12px 30px rgba(0,0,0,0.34); }

.footer-socials { justify-content: flex-start; padding-top: 8px; gap: 12px; }
.footer-socials .social { padding: 8px 10px; }

.footer-socials .social,
.luxe-reef .footer-socials .social {
  color: #000000;
}

.footer-socials .social:hover,
.luxe-reef .footer-socials .social:hover {
  color: #000000;
}

/* Sothys section accordion */
#sothys .sothys-accordion {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

#sothys .sothys-acc-item {
  border: 1px solid rgba(199, 165, 92, 0.4) !important;
  border-radius: 14px;
  overflow: hidden;
}

#sothys .sothys-acc-item .acc-header {
  width: 100%;
  border: 0;
  background: linear-gradient(120deg, rgba(13, 27, 42, 0.08), rgba(199, 165, 92, 0.2));
  color: var(--blue-royal);
  text-align: left;
  padding: 16px 54px 16px 18px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
}

#sothys .sothys-acc-item .acc-header::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(13, 27, 42, 0.12);
  color: var(--blue-royal);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  transition: transform 220ms ease, background-color 220ms ease;
}

#sothys .sothys-acc-item .acc-header[aria-expanded="true"]::after {
  content: "-";
  background: rgba(199, 165, 92, 0.34);
}

#sothys .sothys-acc-subtitle {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-soft);
  letter-spacing: 0;
}

#sothys .sothys-acc-item .acc-content {
  padding: 18px;
}

#sothys .sothys-acc-item .acc-content p:last-child,
#sothys .sothys-acc-item .acc-content ul:last-child,
#sothys .sothys-acc-item .acc-content ol:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #sothys .sothys-acc-item .acc-header {
    padding: 14px 46px 14px 14px;
    font-size: 23px;
  }

  #sothys .sothys-acc-subtitle {
    font-size: 13px;
  }

  #sothys .sothys-acc-item .acc-content {
    padding: 14px;
  }
}

/* dekorativn? linka pod nadpisem soci?ln?ch s?t? */
.decor-line { width: 84px; height: 2px; margin: 8px auto 18px; background: linear-gradient(90deg, rgba(212,175,55,0.9), rgba(212,175,55,0.2)); border-radius: 2px; }

/* Socials inside contact panel */
.social-embed { margin-top: 18px; }
.contact-panel .socials { justify-content: flex-start; }
.contact-panel .decor-line { margin: 6px 0 12px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }

/* Responsive */
@media (max-width: 1024px) {
  .two-cols { grid-template-columns: 1fr; }
  .filozofie-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .filozofie-logo {
    order: 2;
  }
  .filozofie-why {
    order: 3;
  }
  .grid.cards { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .owner-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-list { position: absolute; right: 0; top: 56px; background: #fff; border: 1px solid var(--gray-300); border-radius: 999px; padding: 12px; display: none; flex-direction: column; width: 240px; box-shadow: var(--shadow); }
  .nav-list.open { display: flex; }

  .luxe-reef .nav-list {
    background: #fff;
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow);
  }

  .hero { min-height: 78vh; padding-top: 88px; align-items: end; }
  .hero-inner { padding-bottom: 44px; }
  .hero-text-wrap { max-width: 100%; padding: 28px 20px; border-radius: 999px; backdrop-filter: blur(5px); }
  .hero-kicker { font-size: 12px; letter-spacing: 2.2px; margin-bottom: 10px; }
  .hero-headline { font-size: clamp(38px, 13vw, 64px); line-height: 0.9; letter-spacing: 1.6px; margin-bottom: 8px; }
  .hero-actions { margin-top: 10px; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .scroll-indicator { bottom: 14px; }
  .hero-headline .hero-word { white-space: normal; }
  .grid.cards { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-only-mobile { display: block; }
  .footer-only-desktop { display: none; }
  .filozofie .trust-grid { grid-template-columns: 1fr; }
  .owner-gallery { grid-template-columns: 1fr; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .filozofie-logo { padding: 14px; border-radius: 16px; }
  .owner-media-column { padding: 12px; border-radius: 20px; gap: 12px; }
  .owner-photo-wrap { padding: 0; border-radius: 0; }
}

/* Pricing ? luxury lists (no tables) */
.price-sections { display: grid; gap: 24px; }
.price-card { background: #fff; border: 1px solid var(--gray-300); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.price-title { margin: 0 0 10px; font-family: var(--font-serif); font-weight: 600; color: var(--text); }
.orn-line { position: relative; width: 160px; height: 12px; margin: 6px 0 14px; }
.orn-line::before, .orn-line::after { content: ""; position: absolute; top: 50%; width: 48%; height: 1.5px; background: linear-gradient(90deg, rgba(212,175,55,0.0), rgba(212,175,55,0.85)); }
.orn-line::before { left: 0; transform: translateY(-50%); }
.orn-line::after { right: 0; transform: translateY(-50%) rotate(180deg); }
.orn-line .dot { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.95) 0%, rgba(212,175,55,0.75) 60%, rgba(212,175,55,0.4) 100%); box-shadow: 0 0 6px rgba(212,175,55,0.45); }
.price-list { display: grid; gap: 8px; }
.price-item { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 12px 0; position: relative; }
.price-item + .price-item::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, rgba(212,175,55,0.15), rgba(212,175,55,0.55), rgba(212,175,55,0.15)); }
.price-item:first-child { border-top: 0; }
.pi-left { display: flex; gap: 10px; align-items: baseline; }
.pi-name { color: var(--gold-accent); font-weight: 600; }
.pi-time { color: var(--text-soft); font-size: 14px; }
.pi-right { text-align: right; }
.pi-price { color: var(--text); font-weight: 600; }

/* Cen?k images gallery */
.cenik-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cenik-img img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 720px) {
  .cenik-gallery { grid-template-columns: 1fr; gap: 18px; }
}

/* Cen?k ? corner ornaments (background-only) */
#cenik { position: relative; }
#cenik > .container { position: relative; z-index: 1; }
#cenik .orn-corner { position: absolute; width: 160px; height: 160px; pointer-events: none; opacity: 0.15; z-index: 0; }
#cenik .orn-corner.tl { top: 16px; left: 16px; }
#cenik .orn-corner.tr { top: 16px; right: 16px; transform: scaleX(-1); }
#cenik .orn-corner.bl { bottom: 16px; left: 16px; transform: scaleY(-1); }
#cenik .orn-corner.br { bottom: 16px; right: 16px; transform: scaleX(-1) scaleY(-1); }

/* Ornament visual: subtle champagne gold filigree via gradients */
#cenik .orn-corner {
  background-image:
    radial-gradient(50% 50% at 12% 12%, rgba(212,175,55,0.15), rgba(212,175,55,0.0) 70%),
    radial-gradient(40% 40% at 88% 12%, rgba(212,175,55,0.12), rgba(212,175,55,0.0) 70%),
    radial-gradient(35% 35% at 12% 88%, rgba(212,175,55,0.12), rgba(212,175,55,0.0) 70%),
    linear-gradient(35deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.0) 55%),
    linear-gradient(115deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.0) 55%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

@media (max-width: 720px) {
  #cenik .orn-corner { width: 84px; height: 84px; opacity: 0.08; }
  #cenik .orn-corner.tl { top: 10px; left: 10px; }
  #cenik .orn-corner.tr { top: 10px; right: 10px; }
  #cenik .orn-corner.bl { bottom: 10px; left: 10px; }
  #cenik .orn-corner.br { bottom: 10px; right: 10px; }
}

/* Products ? minimalist grid */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(240, 244, 249, 0.78)) padding-box,
    linear-gradient(135deg, rgba(212,175,55,0.75), rgba(212,175,55,0.22), rgba(212,175,55,0.78)) border-box;
  border: 1.8px solid transparent;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 240ms ease, box-shadow 240ms ease;
  backdrop-filter: blur(10px);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 30% 20%, rgba(243, 231, 192, 0.16), rgba(243, 231, 192, 0));
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(0,0,0,0.26);
}
.product-card:hover::after,
.product-card:focus-within::after { opacity: 1; }

.product-thumb {
  height: 180px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(243, 231, 192, 0.08), rgba(12, 28, 42, 0.75)),
    linear-gradient(180deg, var(--cream), #fff 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(234,244,255,0.14);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}
.product-content {
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}
.product-content .product-name {
  margin-bottom: 4px;
  color: var(--blue-royal);
  font-weight: 700;
}
.product-content .product-note {
  margin: 0;
  color: #2c3958;
  line-height: 1.6;
}
.product-name { margin: 0 0 6px; font-family: var(--font-serif); font-size: 18px; color: var(--text); }
.product-note { margin: 0; color: var(--text-soft); }

/* EVOLUTION cards - non-box owner-like rows (text + image) */
#kosmetika .evolution-layout {
  grid-template-columns: 1fr !important;
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
}

#kosmetika .evolution-layout .evolution-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 26px;
  padding: 0 0 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  overflow: visible;
  backdrop-filter: none;
}

#kosmetika .evolution-layout .evolution-row > .col.media {
  order: 1;
}

#kosmetika .evolution-layout .evolution-row > .col:not(.media) {
  order: 2;
}

#kosmetika .evolution-layout .evolution-row::after {
  display: none;
}

#kosmetika .evolution-layout .evolution-row:not(:last-child) {
  border-bottom: 1px solid rgba(13, 27, 42, 0.2);
}

#kosmetika .evolution-layout .evolution-row:hover,
#kosmetika .evolution-layout .evolution-row:focus-within {
  transform: none;
  box-shadow: none;
}

#kosmetika .evolution-layout .evolution-row .section-title {
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
  margin: 0;
}

#kosmetika .evolution-layout .evolution-row .owner-text p {
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}

#kosmetika .evolution-layout .evolution-row .evolution-points {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.65;
}

#kosmetika .evolution-layout .evolution-row .evolution-points li {
  margin: 0 0 6px;
}

#kosmetika .evolution-layout .evolution-row .owner-media-column {
  max-width: 520px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

#kosmetika .evolution-layout .evolution-row .owner-photo-wrap {
  width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

#kosmetika .evolution-layout .evolution-row .owner-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  #kosmetika .evolution-layout .evolution-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #kosmetika .evolution-layout .evolution-row .section-title {
    font-size: clamp(20px, 6vw, 26px);
  }

  #kosmetika .evolution-layout .evolution-row .owner-text p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Produkty ? luxusn? ?bohat? zlato? (bez zm?ny layoutu) */
.products-luxe .products-header { margin-bottom: 18px; text-align: center; }
.products-luxe .decor-line { margin-bottom: 0; }

.luxe-reef .products-luxe .section-title {
  color: var(--blue-royal);
  text-shadow: none;
}

.luxe-reef .product-card .product-name,
.luxe-reef .product-card .product-note { color: inherit; }
.luxe-reef .product-card {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(212,175,55,0.55), rgba(15,45,106,0.16), rgba(212,175,55,0.55)) border-box;
  border: 1.6px solid transparent;
  box-shadow: var(--shadow);
}

.luxe-reef .products-luxe .product-card { 
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(212,175,55,0.55), rgba(15,45,106,0.16), rgba(212,175,55,0.55)) border-box;
  border: 1.6px solid transparent;
  box-shadow: var(--shadow);
}

.luxe-reef .products-luxe .product-thumb {
  background:
    radial-gradient(90% 90% at 40% 30%, rgba(212,175,55,0.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(250,247,240,0.65), rgba(255,255,255,0.95));
}

.luxe-reef .products-luxe .product-name { color: var(--blue-royal); text-shadow: none; }

.luxe-reef .products-luxe .product-note,
.luxe-reef .products-luxe .note { color: var(--text-soft); text-shadow: none; }

#kosmetika.rituals .rituals-head {
  margin-bottom: 24px;
}

#kosmetika .products-header {
  margin-bottom: 16px;
}

#kosmetika .products-header[style*="text-align: left"] {
  margin-top: 42px !important;
}

#kosmetika .products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

#kosmetika .products-grid > .product-card:only-child {
  grid-column: auto;
  max-width: none;
  width: 100%;
  justify-self: auto;
}

#kosmetika .product-card {
  backdrop-filter: none;
  min-height: 100%;
}

#kosmetika .product-thumb {
  height: 180px;
}

#kosmetika .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#kosmetika .product-card:hover,
#kosmetika .product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 37, 69, 0.16);
}

#kosmetika .product-content {
  gap: 8px;
}

#kosmetika .product-content .product-name {
  margin-bottom: 2px;
}

#kosmetika .product-content .product-note {
  line-height: 1.65;
}

#kosmetika .products-grid.centered-products { margin: 0 auto; max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

#kosmetika .products-grid.centered-products .product-card {
  flex: 0 1 calc((100% - 66px) / 4);
  max-width: calc((100% - 66px) / 4);
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  #kosmetika .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .products-grid { grid-template-columns: 1fr; }
  #kosmetika .products-grid { grid-template-columns: 1fr !important; }
  #kosmetika .products-grid.centered-products { margin: 0 auto; max-width: 100%;
    display: grid;
    grid-template-columns: 1fr !important;
    justify-content: stretch;
  }
  #kosmetika .products-grid.centered-products .product-card {
    flex: initial;
    max-width: 100%;
  }
  #o-mne::before { display: none; }
  .product-thumb { height: 150px; }
}

/* Galerie p??stroj? ? pln? ???ka, 50/50 split */
.gallery-full { padding-top: 72px; padding-bottom: 72px; }
.gallery-full .section-title { text-align: center; }
.gallery-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 24px;
  align-items: stretch;
  min-height: 859px;
}
.gallery-col { height: 859px; }
.gallery-col img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery-col.left { min-height: 100%; }
.gallery-col.right { display: flex; }
.gallery-quad { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 0; width: 100%; height: 100%; }
.thumb { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); min-height: 0; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(20,37,69,0.08), rgba(20,37,69,0)); opacity: 0; transition: opacity .25s ease; }
.thumb:hover::after { opacity: 1; }

@media (max-width: 1024px) {
  .gallery-wrap { grid-template-columns: 1fr; min-height: auto; }
  .gallery-col { height: auto; }
  .gallery-full { padding-top: 56px; padding-bottom: 56px; }
}
@media (max-width: 720px) {
  .gallery-wrap { gap: 12px; padding: 0 18px; }
  .gallery-quad { gap: 10px; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
  .hero { min-height: 72vh; padding-top: 82px; }
  .hero-inner { padding-bottom: 34px; }
  .hero-text-wrap { padding: 20px 14px; }
  .hero-kicker { font-size: 11px; letter-spacing: 1.6px; }
  .hero-headline { font-size: clamp(34px, 12.5vw, 48px); line-height: 0.95; letter-spacing: 1.1px; }
  .subpage-intro { padding-top: 96px; padding-bottom: 48px; text-align: center; }
  .nav-list { width: calc(100vw - 36px); right: 18px; }
  #pristroje .media-cards .card.media > img.device-shot { height: 150px; padding: 6px; }
  .gallery-wrap { padding: 0 14px; }
  .gallery-quad { gap: 8px; }
}

  /* Lightbox for cen?k images */
  .lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 120;
    pointer-events: none;
    opacity: 0;
    transition: opacity 260ms ease;
  }
  .lightbox[hidden] { display: none; }
  .lightbox.open { pointer-events: auto; opacity: 1; }
  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 21, 36, 0.78);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 260ms ease;
  }
  .lightbox.open .lightbox-backdrop { opacity: 1; }
  .lightbox-content {
    position: relative;
    max-width: min(960px, 94vw);
    max-height: 90vh;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(0,0,0,0.38);
    z-index: 1;
    transform: translate3d(0, 12px, 0) scale(0.9);
    transform-origin: 50% 50%;
    opacity: 0;
    transition: transform 360ms cubic-bezier(0.22, 0.9, 0.24, 1), opacity 260ms ease;
  }
  .lightbox.open .lightbox-content {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  .lightbox-content img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
  }
  .lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .lightbox-close:hover { background: rgba(0,0,0,0.7); }

/* Pricing Box */
.pricing-box {
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-top: 24px;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.04);
}
.pricing-box h4 {
  margin: 0 0 16px 0;
  font-family: var(--font-serif);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  color: var(--blue-royal);
  font-size: 1.25rem;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.pricing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-service {
  display: flex;
  flex-direction: column;
}
.pricing-name {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--blue-royal);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.pricing-time {
  font-family: var(--font-sans);
  font-size: 0.85em;
  color: var(--text-soft);
  margin-top: 4px;
}
.pricing-price {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--blue-royal);
  font-size: 1.05em;
}


/* Centering Kosmetika Headers */
#kosmetika .products-header { text-align: center !important; }
#kosmetika .section-title { text-align: center !important; }
#kosmetika .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; max-width: 700px; }
#kosmetika .eyebrow { text-align: center; }
#kosmetika .product-note.top-note { text-align: center; }

@media (max-width: 1024px) { #kosmetika .products-grid.centered-products .product-card { flex: 0 1 calc((100% - 22px) / 2) !important; max-width: calc((100% - 22px) / 2) !important; } }


/* Centering Evolution Section */
#kosmetika .evolution-layout .evolution-row { display: block; text-align: center; }
#kosmetika .evolution-layout .evolution-row .section-title { text-align: center; }
#kosmetika .evolution-layout .section-separator { margin: 8px auto 16px; }
#kosmetika .evolution-layout .owner-text p { text-align: center; margin-left: auto; margin-right: auto; max-width: 800px; }
#kosmetika .evolution-layout .owner-photo-wrap { display: flex; justify-content: center; margin: 20px auto 0; }
#kosmetika .evolution-layout .evolution-points { text-align: left; display: inline-block; }


/* Lightbox Cursors */
#kosmetika .product-thumb img, #kosmetika .owner-photo, #o-mne .owner-photo { cursor: zoom-in; }


/* Enhanced Footer Details */
.site-footer .footer-title { color: var(--gold-accent); font-family: var(--font-serif); font-size: 22px; margin-bottom: 20px; letter-spacing: 1px; }
.site-footer .footer-link, .site-footer .footer-phone, .site-footer .footer-address-text { color: var(--cream); opacity: 0.85; transition: opacity 0.3s ease, color 0.3s ease; line-height: 1.6; }
.site-footer .footer-link:hover, .site-footer .footer-phone:hover { opacity: 1; color: var(--gold-accent); }
.site-footer .social { color: var(--gold-accent); transition: transform 0.3s ease; }
.site-footer .social:hover { transform: translateY(-2px); }


/* Fixed Centering */
#kosmetika .products-grid.centered-products { display: flex !important; flex-wrap: wrap; justify-content: center !important; gap: 22px; }
#kosmetika .products-grid.centered-products .product-card { flex: 0 0 280px !important; max-width: 280px !important; width: 280px !important; }
#kosmetika .evolution-layout .evolution-row { display: flex; flex-direction: column; align-items: center; text-align: center; }
#kosmetika .evolution-layout .evolution-row .col { width: 100%; max-width: 800px; display: flex; flex-direction: column; align-items: center; }
#kosmetika .evolution-layout .owner-photo-wrap { margin: 0 auto; }
#kosmetika .evolution-points { text-align: left; display: inline-block; }
@media (max-width: 720px) { #kosmetika .products-grid.centered-products .product-card { flex: 0 0 100% !important; max-width: 100% !important; width: 100% !important; } }

/* Evolution Image Fixes */
#kosmetika .evolution-layout .evolution-row .owner-photo { object-fit: contain !important; cursor: zoom-in !important; pointer-events: auto !important; position: relative; z-index: 10; }

/* EVOLUTION LUXURY ROW STYLING - Reference matched */
.evolution-card-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.evolution-card-row:last-child {
  border-bottom: none;
}
.evolution-img-card {
  flex: 0 0 380px;
  width: 380px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.evolution-img-card img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.evolution-img-card img:hover {
  transform: scale(1.03);
}
.evolution-text-card {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.evolution-title {
  font-family: var(--font-serif), 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #1A3636;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-align: center;
}
.evolution-desc {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #555555;
  text-align: center;
  max-width: 620px;
}

@media (max-width: 860px) {
  .evolution-card-row {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .evolution-img-card {
    width: 100%;
    max-width: 380px;
    flex: initial;
  }
}
/* Lightbox Zoom Cursors */
.product-card img, .product-thumb img, .evolution-img-card img, .device-media img, .proc-card img, .card img, .cenik-gallery img, .owner-photo, section img:not(.brand-logo):not(.logo) { cursor: zoom-in; }


/* --- NEW LUXURY REDESIGN APPENDED --- */

:root {
  --blue-royal: #0D1B2A;
  --gold-accent: #C8A96B;
  --gold-light: rgba(200, 169, 107, 0.15);
  --gold-line: rgba(200, 169, 107, 0.45);
  --cream: #F4F4F4;
  --cream-warm: #FAF8F5;
  --page-bg: #F4F4F4;
  --text: #0D1B2A;
  --text-soft: #6B6F72;
  --text-muted: #9a9fa5;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(13,27,42,0.06);
  --shadow: 0 6px 28px rgba(13,27,42,0.10);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --container: 1160px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text) !important;
  background: var(--page-bg) !important;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--blue-royal) !important;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--blue-royal) !important;
  margin: 0 0 12px !important;
}

/* Zlatý ozdobný oddělovač pod nadpisy */
.section-separator {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  margin: 0 auto 32px;
}
.section-separator.left {
  margin: 0 0 32px;
}

.section { padding: 100px 0 !important; }

/* Střídání pozadí pro vzdušnost */
.section.bg-cream { background: var(--cream-warm) !important; }
.section.bg-white { background: #fff !important; }
.section.bg-navy { background: var(--blue-royal) !important; color: #fff !important; }

.card, .service-card, .price-card {
  background: #fff;
  border: 1px solid rgba(200, 169, 107, 0.18) !important;
  border-radius: var(--radius) !important;
  padding: 32px !important;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms ease;
  box-shadow: var(--shadow-sm) !important;
}
.card:hover, .service-card:hover, .price-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow) !important;
  border-color: rgba(200, 169, 107, 0.40) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px !important;
  border-radius: 999px !important;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 250ms var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn.primary {
  background: var(--blue-royal) !important;
  color: #fff !important;
  border-color: var(--blue-royal) !important;
  box-shadow: 0 4px 16px rgba(13,27,42,0.20) !important;
}
.btn.primary:hover {
  background: #152338 !important;
  box-shadow: 0 6px 24px rgba(13,27,42,0.28), 0 0 0 2px rgba(200,169,107,0.35) inset !important;
  transform: translateY(-1px) !important;
}
.btn.outline {
  background: transparent !important;
  color: var(--blue-royal) !important;
  border-color: var(--gold-accent) !important;
}
.btn.outline:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-accent) !important;
}
.btn.gold {
  background: var(--gold-accent) !important;
  color: var(--blue-royal) !important;
  border-color: var(--gold-accent) !important;
  font-weight: 600 !important;
}
.btn.gold:hover {
  filter: brightness(1.06) !important;
  box-shadow: 0 6px 20px rgba(200,169,107,0.35) !important;
  transform: translateY(-1px) !important;
}

input, textarea, select {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  padding: 14px 20px;
  border: 1.5px solid rgba(13,27,42,0.15) !important;
  border-radius: 999px !important;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
}
textarea {
  border-radius: 16px !important;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold-accent) !important;
  box-shadow: 0 0 0 3px rgba(200,169,107,0.12) !important;
}

.site-footer {
  background: var(--blue-royal) !important;
  color: rgba(244,244,244,0.8) !important;
  padding: 72px 0 36px !important;
}
.site-footer .footer-title {
  font-family: var(--font-serif) !important;
  font-size: 20px !important;
  color: var(--gold-accent) !important;
  letter-spacing: 1px !important;
  margin-bottom: 20px !important;
  font-weight: 600 !important;
}
.site-footer .footer-link,
.site-footer .footer-phone,
.site-footer .footer-address-text {
  color: rgba(244,244,244,0.7) !important;
  text-decoration: none;
  line-height: 2.0 !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  display: block;
  transition: color 200ms ease;
}
.site-footer .footer-link:hover,
.site-footer .footer-phone:hover {
  color: var(--gold-accent) !important;
}
.site-footer .social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px !important;
  border: 1px solid rgba(200,169,107,0.35) !important;
  border-radius: 999px !important;
  color: rgba(244,244,244,0.75) !important;
  text-decoration: none;
  font-size: 13px !important;
  transition: all 200ms ease;
  margin-right: 8px !important;
  margin-top: 8px !important;
}
.site-footer .social:hover {
  border-color: var(--gold-accent) !important;
  color: var(--gold-accent) !important;
  background: rgba(200,169,107,0.08) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(200,169,107,0.18) !important;
  margin-top: 48px !important;
  padding-top: 24px !important;
  font-size: 13px !important;
  color: rgba(244,244,244,0.4) !important;
  text-align: center !important;
  font-weight: 300 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ===== FOOTER FIX – čitelnost na tmavém pozadí ===== */
.site-footer {
  background: #0D1B2A;
  color: rgba(244,244,244,0.85);
}
.site-footer .footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  color: #C8A96B;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer .footer-phone,
.site-footer .footer-link,
.site-footer .footer-address-text,
.site-footer .footer-text {
  color: rgba(244,244,244,0.72);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: color 200ms ease;
}
.site-footer .footer-phone:hover,
.site-footer .footer-link:hover {
  color: #C8A96B;
}
.site-footer .footer-note {
  color: rgba(244,244,244,0.4);
  font-size: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,169,107,0.15);
  text-align: center;
}
.site-footer .footer-note-link {
  color: rgba(244,244,244,0.5);
  text-decoration: none;
  transition: color 200ms ease;
}
.site-footer .footer-note-link:hover {
  color: #C8A96B;
}
/* Sociální ikony v footeru – vždy světlé na tmavém pozadí */
.site-footer .social {
  color: rgba(244,244,244,0.72) !important;
  border-color: rgba(200,169,107,0.30) !important;
  background: transparent !important;
  font-size: 13px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  margin-right: 8px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 200ms ease;
}
.site-footer .social:hover {
  color: #C8A96B !important;
  border-color: #C8A96B !important;
  background: rgba(200,169,107,0.08) !important;
}
.site-footer .socials {
  justify-content: flex-start;
  margin-top: 14px;
}
/* Přepis globálního .social hover v kontextu footeru */
.site-footer .social:hover svg,
.site-footer .social:hover span {
  color: #C8A96B;
}

/* ================================================================
   FOOTER FIX FINAL – readable on dark navy background
   ================================================================ */
.site-footer { background: #0D1B2A !important; color: rgba(244,244,244,0.8) !important; padding: 72px 0 40px !important; }
.site-footer .footer-title { font-family: 'Cormorant Garamond', Georgia, serif !important; font-size: 12px !important; font-weight: 600 !important; color: #C8A96B !important; letter-spacing: 2.5px !important; text-transform: uppercase !important; margin-bottom: 20px !important; }
.site-footer .footer-phone,
.site-footer .footer-link,
.site-footer .footer-address-text,
.site-footer .footer-text {
  color: rgba(244,244,244,0.65) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 2.0 !important;
  text-decoration: none !important;
  display: block !important;
  transition: color 200ms ease !important;
}
.site-footer .footer-phone:hover,
.site-footer .footer-link:hover { color: #C8A96B !important; }
.site-footer .footer-note {
  color: rgba(244,244,244,0.35) !important;
  font-size: 12px !important;
  margin-top: 40px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(200,169,107,0.15) !important;
  text-align: center !important;
  font-weight: 300 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-footer .footer-note-link { color: rgba(244,244,244,0.45) !important; text-decoration: none !important; transition: color 200ms ease !important; }
.site-footer .footer-note-link:hover { color: #C8A96B !important; }
.site-footer .social,
.site-footer .socials .social {
  color: rgba(244,244,244,0.65) !important;
  border: 1px solid rgba(200,169,107,0.28) !important;
  background: transparent !important;
  font-size: 13px !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 200ms ease;
  margin-right: 8px;
  margin-top: 10px;
}
.site-footer .social:hover,
.site-footer .socials .social:hover {
  color: #C8A96B !important;
  border-color: rgba(200,169,107,0.7) !important;
  background: rgba(200,169,107,0.07) !important;
  box-shadow: none !important;
}
.site-footer .socials { justify-content: flex-start !important; margin-top: 6px; flex-wrap: wrap; }

/* ================================================================
   SLUZBY – Luxury accordion redesign
   ================================================================ */
.sothys-accordion { display: grid; gap: 12px; margin-top: 24px; }

.sothys-acc-item {
  background: #fff;
  border: 1px solid rgba(200,169,107,0.22) !important;
  border-radius: 14px !important;
  overflow: hidden;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.sothys-acc-item:hover {
  border-color: rgba(200,169,107,0.50) !important;
  box-shadow: 0 6px 28px rgba(13,27,42,0.07) !important;
}

.acc-header {
  width: 100%;
  border: 0;
  background: #fff;
  color: #0D1B2A;
  text-align: left;
  padding: 22px 60px 22px 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  position: relative;
  line-height: 1.2;
  transition: background 200ms ease;
}
.acc-header:hover { background: rgba(200,169,107,0.04); }
.acc-header[aria-expanded="true"] {
  background: linear-gradient(120deg, rgba(13,27,42,0.04), rgba(200,169,107,0.12));
  border-bottom: 1px solid rgba(200,169,107,0.20);
}
.acc-header::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,169,107,0.12);
  color: #C8A96B;
  border-radius: 50%;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1;
  transition: background 200ms ease;
}
.acc-header[aria-expanded="true"]::after {
  content: "–";
  background: rgba(200,169,107,0.25);
  color: #C8A96B;
}

.sothys-acc-subtitle {
  display: block;
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #6B6F72;
  font-style: normal;
}

.acc-content {
  padding: 28px 28px 32px;
  border-top: 1px solid rgba(200,169,107,0.12);
  background: rgba(250,248,245,0.5);
}
.acc-content p { color: #4a4d50; font-weight: 300; line-height: 1.8; font-size: 15px; margin-bottom: 14px; }
.acc-content h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 600; color: #0D1B2A; margin: 18px 0 8px; letter-spacing: 0.3px; }
.acc-content ol, .acc-content ul { color: #5a5d60; font-size: 14px; font-weight: 300; line-height: 1.9; padding-left: 20px; }
.acc-content li { margin-bottom: 4px; }
.acc-content .note { font-size: 13px; color: #C8A96B; font-style: italic; border-left: 2px solid rgba(200,169,107,0.4); padding-left: 12px; margin-top: 14px; }

/* Pricing box */
.pricing-box { background: #fff; border: 1px solid rgba(200,169,107,0.22); border-radius: 12px; padding: 20px 24px; margin-top: 18px; box-shadow: 0 2px 12px rgba(13,27,42,0.05); }
.pricing-box h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; font-weight: 600; color: #0D1B2A; margin: 0 0 14px; letter-spacing: 1px; text-transform: uppercase; }
.pricing-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(13,27,42,0.07); gap: 12px; }
.pricing-row:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-service { display: flex; flex-direction: column; gap: 2px; }
.pricing-name { font-weight: 500; font-size: 14px; color: #0D1B2A; }
.pricing-time { font-size: 12px; color: #9a9fa5; font-weight: 300; }
.pricing-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; color: #C8A96B; white-space: nowrap; }

/* Rituals section head */
.rituals-head { text-align: center; margin-bottom: 52px; }
.rituals-head .section-title { font-size: clamp(36px, 5vw, 56px) !important; margin-bottom: 8px !important; }
.rituals-head .lead { max-width: 600px; margin: 0 auto; color: #6B6F72; font-size: 16px; line-height: 1.8; }
.rituals-head::after { content: ""; display: block; width: 60px; height: 2px; background: linear-gradient(90deg, transparent, #C8A96B, transparent); margin: 20px auto 0; }

/* Subpage hero text: white on dark photo background */
.subpage-intro .section-title { color: #fff !important; text-shadow: 0 2px 20px rgba(13,27,42,0.5) !important; }
.subpage-intro .lead { color: rgba(255,255,255,0.88) !important; text-shadow: 0 1px 10px rgba(13,27,42,0.4) !important; }

/* Section breathing room */
.section.rituals { padding: 80px 0 !important; }

@media (max-width: 768px) {
  .acc-header { padding: 18px 52px 18px 20px; font-size: 20px; }
  .acc-content { padding: 20px 20px 24px; }
  .pricing-box { padding: 16px 18px; }
}

/* ================================================================
   FIX 1: Navy banner blocks in sluzby.html – white readable text
   The inline-styled [style*="background: var(--blue-royal)"] blocks
   ================================================================ */

/* pece-title inside navy blocks must be white */
.pece-title {
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.15;
}
.pece-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #C8A96B, rgba(200,169,107,0.2));
  margin-top: 12px;
}

/* eyebrow label (TĚLO / OBLIČEJ etc) */
.pece-content .eyebrow,
.pece-split .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C8A96B !important;
  margin-bottom: 10px;
  display: block;
}

/* paragraph text inside navy block */
.pece-content p,
.pece-content h3 {
  color: rgba(255,255,255,0.80) !important;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}
.pece-content h3 {
  font-style: italic;
  font-size: 17px;
  margin: 0 0 10px;
}

/* ================================================================
   FIX 2: Lightbox – show full image, not zoomed/cropped
   ================================================================ */
.lightbox {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease;
  padding: 20px;
}
.lightbox.open {
  pointer-events: auto !important;
  opacity: 1 !important;
}
.lightbox-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(7,21,36,0.88) !important;
  backdrop-filter: blur(8px) !important;
}
.lightbox.open .lightbox-backdrop {
  opacity: 1 !important;
}
.lightbox-content {
  position: relative !important;
  max-width: min(1100px, 92vw) !important;
  max-height: 90vh !important;
  width: auto !important;
  height: auto !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5) !important;
  z-index: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
/* THE KEY FIX: image must be auto-sized, not stretched to fill container */
.lightbox-content img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: min(1100px, 92vw) !important;
  max-height: 88vh !important;
  object-fit: contain !important;
  border-radius: 12px !important;
}

/* Close button */
.lightbox-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(13,27,42,0.7) !important;
  color: #fff !important;
  font-size: 18px !important;
  cursor: pointer !important;
  z-index: 2 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}
.lightbox-close:hover {
  background: rgba(200,169,107,0.85) !important;
}
.lightbox-close::after {
  content: "\00D7";
}

/* ================================================================
   FIX 3: Readability – better contrast across all text
   ================================================================ */

/* Body text darker and more readable */
body {
  color: #0D1B2A !important;
}

/* Section body text */
.acc-content p,
.acc-content li,
p {
  color: #3a3d40;
}

/* Section lead text */
.lead {
  color: #6B6F72;
  font-size: 16px;
  line-height: 1.85;
}

/* h4 headings inside content */
.acc-content h4 {
  color: #0D1B2A !important;
  font-size: 19px !important;
}

/* Accordion header – ensure dark readable title */
.acc-header {
  color: #0D1B2A !important;
}

/* pece-title: italic subtitle under main title in navy blocks */
[style*="background: var(--blue-royal)"] h3,
[style*="background: var(--blue-royal)"] p {
  color: rgba(255,255,255,0.80) !important;
}
[style*="background: var(--blue-royal)"] h2 {
  color: #ffffff !important;
}

/* ================================================================
   FIX 4: Category section banners – ensure outer wrapper is navy
   ================================================================ */
#sothys > .container > div[style*="background"],
#maderoterapie > .container > div[style*="background"],
#masaze > .container > div[style*="background"],
#emsvisage > .container > div[style*="background"],
#rollvisage-body > .container > div[style*="background"],
#rollvisage-face > .container > div[style*="background"],
#trigger-point-therapy > .container > div[style*="background"],
#diagnostika > .container > div[style*="background"] {
  background: linear-gradient(135deg, #0D1B2A 0%, #152338 100%) !important;
  border-radius: 16px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

/* ================================================================
   SUBPAGE HERO – hero-headline stejný styl jako na indexu
   ================================================================ */

/* Nadpis na podstránkách - velký bílý serif jako na indexu */
.subpage-intro .hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 24px rgba(13,27,42,0.5) !important;
  text-align: center !important;
  line-height: 1.1 !important;
}

/* Lead text na hero podstránek – bílý, čitelný, s jemným stínem */
.subpage-intro .lead {
  color: rgba(255,255,255,0.92) !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  max-width: 640px;
  margin: 0 auto !important;
  line-height: 1.75 !important;
  text-shadow: 0 1px 12px rgba(13,27,42,0.45) !important;
  text-align: center !important;
}

/* hero-text-wrap na podstránkách – trochu tmavší backdrop pro čitelnost */
.subpage-intro .hero-text-wrap {
  background: rgba(13,27,42,0.28) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  border-radius: 16px !important;
  padding: 48px 56px !important;
  text-align: center !important;
  max-width: 860px;
  margin: 0 auto;
}

/* hero-word spans – bílé */
.subpage-intro .hero-word {
  color: #ffffff !important;
  display: block;
}

/* Subpage intro celkové minimum výšky + centered */
.subpage-intro {
  min-height: 72vh !important;
  display: grid !important;
  align-items: center !important;
}

/* Na mobilech zmenšit padding hero-text-wrap */
@media (max-width: 768px) {
  .subpage-intro .hero-text-wrap {
    padding: 32px 24px !important;
  }
}

/* ================================================================
   FOOTER – proklik na Google Maps
   ================================================================ */
.footer-map-link {
  text-decoration: none !important;
  display: inline-block;
  transition: opacity 200ms ease;
}
.footer-map-link:hover {
  opacity: 0.85;
}
.footer-map-link .footer-address-text {
  color: rgba(244,244,244,0.65) !important;
}
.footer-map-link:hover .footer-address-text {
  color: #C8A96B !important;
}
.footer-map-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #C8A96B;
  border: 1px solid rgba(200,169,107,0.35);
  border-radius: 999px;
  padding: 5px 14px;
  transition: all 200ms ease;
  font-family: 'Montserrat', sans-serif;
}
.footer-map-link:hover .footer-map-cta {
  background: rgba(200,169,107,0.10);
  border-color: rgba(200,169,107,0.65);
  color: #C8A96B;
}

/* ================================================================
   KOSMETIKA FIX – product-card overlay nesmí blokovat kliknutí
   ================================================================ */

/* Vsechny ::after overlaye na product-card – pointer-events: none */
.product-card::after,
#kosmetika .product-card::after {
  pointer-events: none !important;
}

/* product-thumb – cursor zoom-in, klik prochazi */
.product-thumb {
  cursor: zoom-in;
  position: relative;
}
.product-thumb img {
  cursor: zoom-in;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

/* Zmenseni scale efektu aby neproblikovalo */
#kosmetika .product-card:hover,
#kosmetika .product-card:focus-within {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 44px rgba(20,37,69,0.14) !important;
}

/* Vypnout dark gradient overlay efekt na hover – byl prilis vyzivny */
#kosmetika .product-card:hover::after,
#kosmetika .product-card:focus-within::after {
  opacity: 0 !important;
}

/* Obecne vsechny product-card overlay maji pointer-events none */
.product-card::before {
  pointer-events: none !important;
}
