/* =========================================================
   BARVY JABLONEC — Main Stylesheet
   2026 Retail Design System
   ========================================================= */

/* Skip-link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--color-navy, #1A3A6B);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

/* -------------------------
   1. CSS CUSTOM PROPERTIES
   ------------------------- */
:root {
  /* Brand Colors */
  --color-red: #D93025;
  --color-blue: #1A56B0;
  --color-navy: #1A3A6B;
  --color-green: #3A8C3F;
  --color-yellow: #F2B705;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-bg-alt: #F5F5F3;
  --color-text: #222222;
  --color-text-body: #2D2D2D;
  --color-text-muted: #666666;
  --color-footer: #2A2A2A;
  --color-footer-border: #3A3A3A;

  /* Accent tints */
  --tint-red: rgba(217, 48, 37, 0.06);
  --tint-blue: rgba(26, 86, 176, 0.06);
  --tint-green: rgba(58, 140, 63, 0.06);
  --tint-yellow: rgba(242, 183, 5, 0.10);

  /* Typography */
  --font-primary: 'Nunito Sans', sans-serif;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 17px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 40px;
  --text-4xl: 52px;
  --text-5xl: 64px;

  /* Spacing */
  --section-padding: 72px;
  --section-padding-sm: 48px;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 24px;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.14);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.18);

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-card: 180ms ease-out;
  --transition-normal: 300ms ease;
}

/* -------------------------
   2. RESET & BASE
   ------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--color-text-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* -------------------------
   3. LAYOUT UTILITIES
   ------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.section-label--glass-red {
  color: #c0392b;
  background: rgba(217, 48, 37, 0.08);
  border: 1px solid rgba(217, 48, 37, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 3px rgba(217,48,37,0.08);
}

.section-label--glass-green {
  color: #2d7a32;
  background: rgba(58, 140, 63, 0.09);
  border: 1px solid rgba(58, 140, 63, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 1px 3px rgba(58,140,63,0.08);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 560px;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* -------------------------
   4. TYPOGRAPHY
   ------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-primary);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(32px, 5vw, var(--text-4xl)); }
h2 { font-size: clamp(28px, 4vw, var(--text-3xl)); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* -------------------------
   5. BUTTONS
   ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-card);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn-primary:hover {
  background: #bf2820;
  border-color: #bf2820;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 48, 37, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn-outline-red {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}

.btn-outline-red:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-red);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-green {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn-green:hover {
  background: #2f7234;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: var(--text-base);
}

/* -------------------------
   6. NAVIGATION
   ------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-navy);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: 32px;
  text-decoration: none;
}

.nav-logo img {
  display: block;
  height: 44px;
  width: auto;
  /* Logo has navy bg matching nav — seamless fit */
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.nav-logo-text span:last-child {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--color-white);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav-phone:hover {
  opacity: 0.8;
}

.nav-phone-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #ffffff;
}

.nav-phone-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.nav-phone-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.nav-phone-number {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 100;
  border-top: 3px solid var(--color-yellow);
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.mega-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  color: var(--color-text);
}

.mega-dropdown-item:hover {
  background: var(--color-bg-alt);
}

.mega-dropdown-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mega-dropdown-dot--blue { background: var(--color-blue); }
.mega-dropdown-dot--green { background: var(--color-green); }
.mega-dropdown-dot--red { background: var(--color-red); }
.mega-dropdown-dot--yellow { background: var(--color-yellow); }

.mega-dropdown-item span {
  font-size: 14px;
  font-weight: 600;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition-fast);
}

.nav-hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--color-white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--color-navy);
  flex-shrink: 0;
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  z-index: 10;
  transition: background var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: rgba(255,255,255,0.15);
}

.mobile-drawer-nav {
  padding: 16px 0;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition-fast);
}

.mobile-nav-link:hover {
  background: var(--color-bg-alt);
  color: var(--color-navy);
}

.mobile-drawer-phone {
  padding: 20px 24px;
  background: var(--color-bg-alt);
  border-top: 1px solid #e8e8e8;
}

.mobile-drawer-phone a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: 6px;
}

.mobile-submenu {
  background: #f8f8f8;
  display: none;
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-body);
  border-bottom: 1px solid #eee;
  transition: background var(--transition-fast);
}

.mobile-submenu-link:hover {
  background: #f0f0f0;
}

/* -------------------------
   7. HERO SECTION
   ------------------------- */
.hero {
  position: relative;
  height: calc(100vh - 68px - 62px); /* přesně nastaveno JS */
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-navy);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Farebný gradient (viditeľný vždy / fallback bez fotky) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(242,183,5,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,86,176,0.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(217,48,37,0.08) 0%, transparent 40%);
  z-index: 1;
}

/* Tmavý overlay pre čitateľnosť textu */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,35,70,0.88) 0%,
    rgba(20,35,70,0.65) 55%,
    rgba(20,35,70,0.35) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--container-padding) 40px;
  width: 100%;
}

/* Badge tag */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--color-text);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: none;
}

.hero-title span {
  color: var(--color-yellow);
}

.hero-title .hero-title-sub {
  font-size: 0.55em;
  color: var(--color-white);
  font-weight: 700;
  opacity: 0.85;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-hours-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.hero-hours-inline svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.6);
  width: 18px;
  height: 18px;
}

.hero-hours-inline strong {
  color: #fff;
  font-weight: 700;
}

.hero-hours-sep {
  color: rgba(255,255,255,0.4);
}

/* starý absolutně pozicovaný blok — zachován pro zpětnou kompatibilitu */
.hero-hours {
  position: absolute;
  bottom: 32px;
  left: var(--container-padding);
  right: var(--container-padding);
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 2;
}

.hero-hours-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 10px 20px;
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 600;
}

.hero-hours-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(58, 140, 63, 0.3);
  animation: pulse 2s infinite;
}

/* -------------------------
   8. INFO STRIP
   ------------------------- */
.info-strip {
  background: var(--color-navy);
  padding: 0;
  overflow: hidden;
}

.info-strip-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition-fast);
  flex: 1;
  justify-content: center;
}

.info-item:last-child {
  border-right: none;
}

.info-item--hours-only {
  display: none;
}

.info-item:hover {
  background: rgba(255,255,255,0.05);
}

.info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-yellow);
}

.info-item strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-white);
}

.info-item span {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

/* -------------------------
   9. CATEGORY GRID
   ------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid #ebebeb;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.category-tile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  transition: height var(--transition-card);
}

.category-tile--blue::before { background: var(--color-blue); }
.category-tile--green::before { background: var(--color-green); }
.category-tile--red::before { background: var(--color-red); }
.category-tile--yellow::before { background: var(--color-yellow); }

.category-tile:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.category-tile--blue:hover { background: var(--tint-blue); }
.category-tile--green:hover { background: var(--tint-green); }
.category-tile--red:hover { background: var(--tint-red); }
.category-tile--yellow:hover { background: var(--tint-yellow); }

.category-tile:hover::before {
  height: 6px;
}

.category-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.category-tile--blue .category-tile-icon { background: var(--tint-blue); color: var(--color-blue); }
.category-tile--green .category-tile-icon { background: var(--tint-green); color: var(--color-green); }
.category-tile--red .category-tile-icon { background: var(--tint-red); color: var(--color-red); }
.category-tile--yellow .category-tile-icon { background: var(--tint-yellow); color: #c28f00; }

.category-tile-icon svg {
  width: 28px;
  height: 28px;
}

.category-tile-icon i {
  font-size: 28px;
  line-height: 1;
}

.category-tile-name {
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  flex: 1;
}

.category-tile-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 16px;
  transition: gap var(--transition-fast);
}

.category-tile--blue .category-tile-arrow { color: var(--color-blue); }
.category-tile--green .category-tile-arrow { color: var(--color-green); }
.category-tile--red .category-tile-arrow { color: var(--color-red); }
.category-tile--yellow .category-tile-arrow { color: #c28f00; }

.category-tile:hover .category-tile-arrow { gap: 10px; }

.category-tile-arrow svg {
  width: 16px;
  height: 16px;
}

/* Featured tile (Míchací centrum) */
.category-tile--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 55%, #1b5e20 100%);
  border-color: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative circle in background */
.category-tile--featured::after {
  content: '';
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

/* Override the bottom colour bar */
.category-tile--featured::before {
  background: rgba(255,255,255,0.25);
  height: 3px;
}

.category-tile--featured:hover {
  background: linear-gradient(135deg, #2e7d32 0%, #388e3c 55%, #2e7d32 100%);
  transform: translateY(-3px) scale(1.02);
}

.category-tile--featured .category-tile-icon {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  color: #fff;
  flex-shrink: 0;
}

.category-tile--featured .category-tile-icon svg {
  width: 46px;
  height: 46px;
}

.category-tile--featured .category-tile-icon i {
  font-size: 46px;
  line-height: 1;
}

.category-tile--featured .category-tile-content {
  flex: 1;
}

.category-tile--featured .category-tile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.category-tile--featured .category-tile-name {
  font-size: var(--text-2xl);
  margin-bottom: 8px;
  color: #fff;
}

.category-tile--featured .category-tile-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
}

.category-tile--featured .category-tile-arrow {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* Category tile — background image (pravá strana, ztracena vlevo) */
.category-tile-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  background-size: cover;
  background-position: center right;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 38%, black 72%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 38%, black 72%);
  transition: opacity var(--transition-card);
}

.category-tile:hover .category-tile-bg-img {
  opacity: 0.60;
}

.category-tile-icon,
.category-tile-content,
.category-tile-arrow {
  position: relative;
  z-index: 1;
  max-width: 58%;
}

/* -------------------------
   10. MÍCHACÍ CENTRUM SECTION
   ------------------------- */
.michani-section {
  background: #f2f2f2;
}

.michani-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Label */
.michani-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

/* Nadpis */
.michani-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

/* Tělo textu */
.michani-body {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Hodiny */
.michani-hours-cards {
  display: flex;
  gap: 14px;
  margin: 28px 0 36px;
}

.michani-hours-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.michani-hours-card-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green);
  margin-bottom: 4px;
}

.michani-hours-card-time {
  font-size: 14px;
  color: #555;
}

.michani-hours-card-time strong {
  font-weight: 800;
  color: var(--color-text);
}

/* Tlačítko */
.michani-btn {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
}

.michani-btn:hover {
  background: #2f7234;
  border-color: #2f7234;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(58,140,63,0.3);
}

.michani-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.michani-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.michani-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

.michani-visual-icon {
  color: rgba(255,255,255,0.9);
  text-align: center;
  position: relative;
  z-index: 1;
}

.michani-visual-icon svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.michani-visual-icon p {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

/* -------------------------
   11. ABOUT SECTION
   ------------------------- */
.about-section {
  background: var(--color-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-amenities {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.amenity-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-navy);
}

.amenity-icon svg {
  width: 20px;
  height: 20px;
}

.about-image {
  background: linear-gradient(135deg, #1a3a6b 0%, #2a5298 50%, #1a56b0 100%);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242, 183, 5, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(58, 140, 63, 0.12) 0%, transparent 50%);
}

.about-image-placeholder {
  color: rgba(255,255,255,0.8);
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-image-placeholder svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.about-image-placeholder p {
  font-size: var(--text-base);
  font-weight: 600;
  margin: 0;
}

/* -------------------------
   HERO BUILDING IMAGE
   ------------------------- */
.hero-building {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(400px, 58%, 840px);
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  user-select: none;
  /* Fade left edge so it blends with the gradient bg + fade last 15px on the right */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 18%, black 42%, black calc(100% - 50px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 18%, black 42%, black calc(100% - 50px), transparent 100%);
  z-index: 1;
}

/* On smaller screens shrink or hide the building */
@media (max-width: 900px) {
  .hero-building {
    width: clamp(320px, 58%, 600px);
    right: 0;
    opacity: 0.65;
  }
}

@media (max-width: 600px) {
  .hero-building {
    display: none;
  }
}

/* Od 1740px nahoru — fotku zamknout na místě, ať neuteče dál doprava */
@media (min-width: 1740px) {
  .hero-building {
    right: calc((100vw - 1740px) / 2);
  }
}

/* Years badge */
.years-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--color-yellow);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  z-index: 2;
}

.years-badge-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  display: block;
}

.years-badge-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* -------------------------
   12. AKCE SECTION
   ------------------------- */
.akce-section {
  background: var(--color-red);
  padding: var(--section-padding) 0 0;
  overflow: hidden;
}

.akce-header {
  text-align: center;
  margin-bottom: 40px;
}

.akce-header .section-label {
  color: rgba(255,255,255,0.7);
}

.akce-header .section-title {
  color: var(--color-white);
}

.akce-header .section-subtitle {
  color: rgba(255,255,255,0.8);
  margin: 0 auto;
}

/* Marquee */
.akce-marquee-wrapper {
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  margin-bottom: 40px;
  padding: 12px 0;
}

.akce-marquee {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.akce-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.akce-marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
}

.akce-marquee-star {
  color: var(--color-yellow);
  font-size: 16px;
}

/* Promo cards */
.akce-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.akce-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all var(--transition-card);
}

.akce-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

.akce-card-image {
  height: 200px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.akce-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.akce-card-image-placeholder {
  text-align: center;
  color: #aaa;
}

.akce-card-image-placeholder svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
}

.akce-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 100px;
}

.akce-badge--red {
  background: var(--color-red);
  color: var(--color-white);
}

.akce-card-body {
  padding: 24px;
}

.akce-card-name {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-text);
}

.akce-card-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.akce-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.akce-card-price {
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.akce-section-cta {
  text-align: center;
  padding: 32px 0 var(--section-padding);
}

/* -------------------------
   13. YOUTUBE SECTION
   ------------------------- */
.youtube-section {
  background: var(--color-bg-alt);
}

.youtube-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.youtube-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.youtube-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #0f0f0f;
}

.youtube-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.youtube-thumb {
  display: flex;
  flex: 1;
  gap: 14px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-card);
  cursor: pointer;
}

.youtube-thumb:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.youtube-thumb-image {
  width: 140px;
  flex-shrink: 0;
  align-self: stretch;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.youtube-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-play-icon {
  width: 36px;
  height: 36px;
  background: rgba(217, 48, 37, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.youtube-play-icon svg {
  width: 16px;
  height: 16px;
  color: white;
  margin-left: 2px;
}

.youtube-thumb-info {
  padding: 14px 14px 14px 0;
  flex: 1;
}

.youtube-thumb-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.youtube-thumb-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

.youtube-cta {
  margin-top: 32px;
  text-align: center;
}

/* -------------------------
   14. NEWSLETTER STRIP
   ------------------------- */
.newsletter-strip {
  background: var(--color-navy);
  padding: 56px 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.newsletter-text .section-title {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: 8px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-base);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  font-size: var(--text-base);
  border: 2px solid rgba(255,255,255,0.2);
  border-right: none;
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  transition: border-color var(--transition-fast);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}

.newsletter-submit {
  padding: 16px 28px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
  border: 2px solid var(--color-red);
}

.newsletter-submit:hover {
  background: #bf2820;
  border-color: #bf2820;
}

/* -------------------------
   15. GALLERY PREVIEW
   ------------------------- */
.gallery-preview {
  background: var(--color-white);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-preview-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-card);
  cursor: pointer;
  position: relative;
}

.gallery-preview-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-preview-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 107, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-card);
}

.gallery-overlay svg {
  width: 32px;
  height: 32px;
  color: white;
}

.gallery-preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #bbb;
}

.gallery-preview-placeholder svg {
  width: 32px;
  height: 32px;
}

.gallery-preview-placeholder span {
  font-size: 12px;
  font-weight: 600;
}

/* Different colors for gallery placeholders */
.gallery-preview-item:nth-child(1) { background: #e8f0fe; }
.gallery-preview-item:nth-child(2) { background: #e6f4ea; }
.gallery-preview-item:nth-child(3) { background: #fce8e6; }
.gallery-preview-item:nth-child(4) { background: #fef9e7; }
.gallery-preview-item:nth-child(5) { background: #e6f4ea; }
.gallery-preview-item:nth-child(6) { background: #e8f0fe; }
.gallery-preview-item:nth-child(7) { background: #fce8e6; }
.gallery-preview-item:nth-child(8) { background: #e6f4ea; }

.gallery-preview-cta {
  text-align: center;
  margin-top: 36px;
}

/* -------------------------
   16. CONTACT PREVIEW STRIP
   ------------------------- */
.contact-preview {
  background: var(--color-bg-alt);
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-card);
  border-top: 4px solid transparent;
}

.contact-preview-card:nth-child(1) { border-top-color: var(--color-blue); }
.contact-preview-card:nth-child(2) { border-top-color: var(--color-green); }
.contact-preview-card:nth-child(3) { border-top-color: var(--color-red); }

.contact-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-preview-card:nth-child(1) .contact-card-icon { background: var(--tint-blue); color: var(--color-blue); }
.contact-preview-card:nth-child(2) .contact-card-icon { background: var(--tint-green); color: var(--color-green); }
.contact-preview-card:nth-child(3) .contact-card-icon { background: var(--tint-red); color: var(--color-red); }

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-title {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-card-content {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.contact-card-content strong {
  color: var(--color-text);
  font-weight: 700;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--transition-fast);
}

.contact-preview-card:nth-child(1) .contact-card-link { color: var(--color-blue); }
.contact-preview-card:nth-child(2) .contact-card-link { color: var(--color-green); }
.contact-preview-card:nth-child(3) .contact-card-link { color: var(--color-red); }

.contact-card-link:hover { gap: 10px; }

.contact-card-link svg {
  width: 16px;
  height: 16px;
}

/* -------------------------
   17. FOOTER
   ------------------------- */
.site-footer {
  background: var(--color-footer);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-style: italic;
}

.footer-address {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--color-yellow);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-yellow);
  color: var(--color-text);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
  padding: 4px 0;
}

.footer-link::before {
  content: '›';
  color: rgba(255,255,255,0.25);
  font-size: 16px;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-yellow);
}

.footer-link:hover::before {
  color: var(--color-yellow);
}

.footer-bottom {
  border-top: 1px solid var(--color-footer-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: rgba(255,255,255,0.7);
}

/* -------------------------
   18. PAGE HERO (inner pages)
   ------------------------- */
.page-hero {
  background: var(--color-navy);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 86, 176, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(58, 140, 63, 0.15) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--color-yellow); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

/* Dark variant — used inside white content area */
.breadcrumb--dark {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.breadcrumb--dark a {
  color: var(--color-blue);
}
.breadcrumb--dark a:hover {
  color: var(--color-navy);
}
.breadcrumb--dark .breadcrumb-sep {
  color: #bbb;
}

/* -------------------------
   19. AKCE PAGE
   ------------------------- */
.akce-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* -------------------------
   20. AKTUALITY PAGE
   ------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-card);
  border: 1px solid #ebebeb;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.news-card-image {
  height: 200px;
  background: linear-gradient(135deg, #e8f0fe, #d0e4ff);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  padding: 24px;
}

.news-card-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.news-card-title {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-card-excerpt {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  transition: gap var(--transition-fast);
}

.news-card-link:hover { gap: 10px; }
.news-card-link svg { width: 16px; height: 16px; }

/* -------------------------
   21. VÝROBCI PAGE
   ------------------------- */

/* Category tab navigation */
.vyrobci-tabs-nav {
  background: var(--color-white);
  border-bottom: 1px solid #e8eaed;
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.vyrobci-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.vyrobci-tabs::-webkit-scrollbar { display: none; }

.vyrobci-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .18s, border-color .18s;
  text-decoration: none;
}
.vyrobci-tab svg { opacity: .6; flex-shrink: 0; transition: opacity .18s; }
.vyrobci-tab:hover,
.vyrobci-tab.is-active {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}
.vyrobci-tab:hover svg,
.vyrobci-tab.is-active svg { opacity: 1; }

/* Section header */
.vyrobci-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f2f5;
}

.vyrobci-cat-icon {
  width: 44px;
  height: 44px;
  background: var(--color-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.vyrobci-cat-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
  flex: 1;
}

.vyrobci-cat-count {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  background: #f0f2f5;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Alternate section backgrounds */
.vyrobci-section:nth-child(even) { background: var(--color-bg-alt); }

/* Logo grid */
.vyrobci-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* Logo card — with link */
.vyrobci-logo-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid #e8eaed;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease-out, box-shadow .18s ease-out, border-color .18s;
  text-decoration: none;
  color: inherit;
}
.vyrobci-logo-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-blue);
}
.vyrobci-logo-card--nolink {
  cursor: default;
  opacity: .8;
}
.vyrobci-logo-card--nolink:hover {
  transform: none;
  box-shadow: var(--shadow-card);
  border-color: #e8eaed;
}

.vyrobci-logo-img-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vyrobci-logo-img-wrap img {
  max-width: 110px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .18s;
}
.vyrobci-logo-card:hover .vyrobci-logo-img-wrap img { filter: grayscale(0%); }

.vyrobci-logo-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* -------------------------
   22. BLOG / AKTUALITY
   ------------------------- */

/* Category badges */
.blog-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}
.cat-novinky   { background: #e8f0fe; color: var(--color-blue); }
.cat-akce      { background: #fce8e6; color: var(--color-red); }
.cat-produkty  { background: #e6f4ea; color: var(--color-green); }
.cat-aktuality { background: #fef7e0; color: #b06000; }

/* Filter tabs */
.blog-filter {
  background: var(--color-white);
  border-bottom: 1px solid #e8eaed;
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.blog-filter-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
}
.blog-filter-tabs::-webkit-scrollbar { display: none; }
.blog-filter-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.blog-filter-tab:hover { background: #f0f2f5; color: var(--color-text); }
.blog-filter-tab.is-active { background: var(--color-navy); color: #fff; }
.blog-filter-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,0,0,.1);
  border-radius: 10px;
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
}
.blog-filter-tab.is-active .blog-filter-count { background: rgba(255,255,255,.25); }

/* Blog card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid #e8eaed;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease-out, box-shadow .18s ease-out, border-color .18s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.blog-card-img-link { display: block; overflow: hidden; }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f0fe, #c5d8fb);
}
.blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.blog-card-title {
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--color-navy);
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}
.blog-card-title a:hover { color: var(--color-blue); }
.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-blue);
  text-decoration: none;
  transition: gap .15s;
}
.blog-card-link svg { width: 16px; height: 16px; }
.blog-card-link:hover { gap: 10px; }

/* ---- Single article layout ---- */
/* Slim hero — breadcrumb only, no title */
.page-hero--slim {
  padding: 24px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Article header (title/meta moved into white area) */
.article-header {
  margin-bottom: 32px;
}

.article-header .breadcrumb--dark {
  margin-top: -40px;
  margin-bottom: 80px;
}

.article-header .blog-hero-meta {
  margin-bottom: 14px;
}

.article-header .blog-hero-meta time {
  color: var(--color-text-muted);
}

.article-header-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.article-header-excerpt {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--color-blue);
  padding-left: 16px;
  margin: 0;
}

.article-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.article-hero-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.article-content {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text);
}
.article-content h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-navy);
  margin: 28px 0 12px;
}
.article-content p  { margin-bottom: 16px; }
.article-content ul,
.article-content ol { padding-left: 20px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }
.article-content strong { color: var(--color-navy); }

/* Video embed */
.article-video { margin: 32px 0; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Article gallery */
.article-gallery { margin-top: 40px; }
.article-gallery-title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
}
.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.article-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  aspect-ratio: 1;
}
.article-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, opacity .2s;
}
.article-gallery-item:hover img { transform: scale(1.06); opacity: .9; }

/* Prev/next nav */
.article-nav { margin-top: 48px; padding-top: 32px; border-top: 2px solid #f0f2f5; }
.article-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid #e8eaed;
  transition: border-color .15s, box-shadow .15s;
}
.article-nav-link:hover { border-color: var(--color-blue); box-shadow: 0 2px 12px rgba(26,86,176,.12); }
.article-nav-next { text-align: right; }
.article-nav-dir {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
}
.article-nav-next .article-nav-dir { justify-content: flex-end; }
.article-nav-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
}

/* Page hero meta */
.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-hero-meta time {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: calc(100vh - 120px);
}
.article-sidebar .sidebar-widget:first-child {
  overflow-y: auto;
  min-height: 0;
}
.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid #e8eaed;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.sidebar-widget-title {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f2f5;
}
.sidebar-posts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.sidebar-post-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.sidebar-post-link:hover .sidebar-post-title { color: var(--color-blue); }
.sidebar-post-img {
  width: 60px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.sidebar-post-info { display: flex; flex-direction: column; gap: 3px; }
.sidebar-post-title { font-size: 13px; font-weight: 700; color: var(--color-navy); line-height: 1.4; transition: color .15s; }
.sidebar-post-date { font-size: 11px; color: var(--color-text-muted); }
.sidebar-cta { background: var(--color-navy); border-color: transparent; }
.sidebar-cta-title { color: #fff; border-bottom-color: rgba(255,255,255,.15); }
.sidebar-cta p { color: rgba(255,255,255,.75); font-size: var(--text-sm); margin-bottom: 16px; }

/* -------------------------
   23. KONTAKT PAGE
   ------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #ebebeb;
}

.hours-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: left;
}

.hours-table td {
  padding: 12px 20px;
  font-size: var(--text-base);
  border-bottom: 1px solid #f0f0f0;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

.hours-table td:last-child {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

.contact-info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid #ebebeb;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-bg-alt);
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.contact-detail-row:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-navy);
}

.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail-text {
  flex: 1;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.contact-detail-value a {
  color: var(--color-blue);
  transition: color var(--transition-fast);
}

.contact-detail-value a:hover { color: var(--color-navy); }

/* Advantages */
.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}

.advantage-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-navy);
  box-shadow: var(--shadow-card);
}

.advantage-icon svg { width: 18px; height: 18px; }

.advantage-text {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

/* Camera notice */
.camera-notice {
  background: var(--tint-blue);
  border: 1px solid rgba(26, 86, 176, 0.2);
  border-left: 4px solid var(--color-blue);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.camera-notice svg {
  width: 22px;
  height: 22px;
  color: var(--color-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.camera-notice p {
  font-size: var(--text-base);
  color: var(--color-text-body);
  margin: 0;
}

.camera-notice a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: underline;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid #ebebeb;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--color-red);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  background: var(--color-white);
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(26, 86, 176, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--color-red);
  background: rgba(217, 48, 37, 0.03);
}

.form-error {
  font-size: 13px;
  color: var(--color-red);
  margin-top: 6px;
  display: none;
}

.form-error.visible { display: block; }

.form-textarea {
  height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(58, 140, 63, 0.1);
  border: 1px solid rgba(58, 140, 63, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-green);
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

.form-success.visible { display: block; }

/* -------------------------
   23. GALLERY PAGE
   ------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-card);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 1;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #aaa;
}

.gallery-item-placeholder svg { width: 36px; height: 36px; }
.gallery-item-placeholder span { font-size: 12px; font-weight: 600; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 107, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-card);
}

.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  color: white;
}

/* Gallery placeholder colors */
.gallery-item:nth-child(4n+1) .gallery-item-placeholder { background: linear-gradient(135deg, #e8f0fe, #c8deff); }
.gallery-item:nth-child(4n+2) .gallery-item-placeholder { background: linear-gradient(135deg, #e6f4ea, #c8eacd); }
.gallery-item:nth-child(4n+3) .gallery-item-placeholder { background: linear-gradient(135deg, #fce8e6, #ffd0cc); }
.gallery-item:nth-child(4n+4) .gallery-item-placeholder { background: linear-gradient(135deg, #fef9e7, #feebbf); }

/* -------------------------
   24. CAMERA SYSTEM PAGE
   ------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--color-text-body);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 6px;
}

/* -------------------------
   25. SCROLL REVEAL ANIMATIONS
   ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-stagger.is-visible > *:nth-child(1)  { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2)  { opacity: 1; transform: translateY(0); transition-delay: 30ms; }
.reveal-stagger.is-visible > *:nth-child(3)  { opacity: 1; transform: translateY(0); transition-delay: 60ms; }
.reveal-stagger.is-visible > *:nth-child(4)  { opacity: 1; transform: translateY(0); transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(5)  { opacity: 1; transform: translateY(0); transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(6)  { opacity: 1; transform: translateY(0); transition-delay: 150ms; }
.reveal-stagger.is-visible > *:nth-child(7)  { opacity: 1; transform: translateY(0); transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(8)  { opacity: 1; transform: translateY(0); transition-delay: 210ms; }
.reveal-stagger.is-visible > *:nth-child(9)  { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(11) { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(12) { opacity: 1; transform: translateY(0); transition-delay: 330ms; }
.reveal-stagger.is-visible > *:nth-child(13) { opacity: 1; transform: translateY(0); transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(14) { opacity: 1; transform: translateY(0); transition-delay: 390ms; }
.reveal-stagger.is-visible > *:nth-child(15) { opacity: 1; transform: translateY(0); transition-delay: 420ms; }
.reveal-stagger.is-visible > *:nth-child(16) { opacity: 1; transform: translateY(0); transition-delay: 450ms; }
.reveal-stagger.is-visible > *:nth-child(17) { opacity: 1; transform: translateY(0); transition-delay: 480ms; }
.reveal-stagger.is-visible > *:nth-child(18) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(19) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(20) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(21) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(22) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(23) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(24) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(25) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(26) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(27) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(28) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(29) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(30) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(31) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(32) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.reveal-stagger.is-visible > *:nth-child(33) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
/* Fallback: any child beyond the 33rd also becomes visible (lower specificity than nth-child, but applies when no nth-child rule matches) */
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* -------------------------
   26. AKCE DETAIL PAGE
   ------------------------- */
.akce-detail-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}

.akce-detail-image {
  position: relative;
}

.akce-detail-image a {
  display: block;
  text-decoration: none;
}

.akce-detail-zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-blue);
  font-weight: 600;
  letter-spacing: .02em;
}

.akce-detail-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f0f0f0;
}

.akce-detail-content h2:first-child {
  margin-top: 0;
}

.akce-detail-content ul {
  padding-left: 20px;
  margin: 10px 0 16px;
  line-height: 1.9;
}

.akce-detail-content p {
  line-height: 1.8;
  margin-bottom: 14px;
  color: #444;
}

.akce-card-image-link {
  display: block;
  text-decoration: none;
}

/* -------------------------
   27. UTILITY CLASSES
   ------------------------- */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-yellow { color: var(--color-yellow); }
.text-red { color: var(--color-red); }
.text-green { color: var(--color-green); }
.text-blue { color: var(--color-blue); }
.text-muted { color: var(--color-text-muted); }

.mt-auto { margin-top: auto; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  transition: gap var(--transition-fast);
}

.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 16px; height: 16px; }

/* -------------------------
   27. DROGERIE CATEGORY PAGE
   ------------------------- */
.category-intro {
  background: var(--color-white);
}

.category-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.service-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(58, 140, 63, 0.08);
  border: 1px solid rgba(58, 140, 63, 0.2);
  border-left: 4px solid var(--color-green);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 24px;
}

.service-callout svg {
  width: 24px;
  height: 24px;
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-callout p {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.category-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}

.category-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-image-placeholder {
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e6f4ea, #b8e0bd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-green);
}

.category-image-placeholder svg { width: 64px; height: 64px; }
.category-image-placeholder span { font-size: var(--text-base); font-weight: 700; }

.product-lists {
  background: var(--color-bg-alt);
}

.product-lists-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.product-list-card {
  flex: 1 1 280px;
  max-width: 420px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.product-list-card h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-bg-alt);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-list-card h3 svg {
  width: 22px;
  height: 22px;
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-list li {
  font-size: var(--text-base);
  color: var(--color-text-body);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
}

.product-list li:last-child { border-bottom: none; }

.product-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
}
