/* ============================================
   brnopronajem.cz — Mint & Violet Design
   ============================================ */

:root {
  --mint:        #00C896;
  --mint-d:      #00a87e;
  --mint-l:      #E6FBF5;
  --mint-ll:     #F0FDF9;
  --violet:      #7C3AED;
  --violet-d:    #6D28D9;
  --violet-l:    #EDE9FE;
  --navy:        #111827;
  --navy-2:      #1F2937;
  --bg:          #F8FFFE;
  --bg-card:     #ffffff;
  --border:      #D1FAF0;
  --border-soft: #E5F7F2;
  --text:        #111827;
  --text-2:      #374151;
  --text-muted:  #6B7280;
  --shadow-sm:   0 1px 4px rgba(0,200,150,.08);
  --shadow:      0 4px 20px rgba(0,200,150,.12);
  --shadow-lg:   0 8px 40px rgba(0,200,150,.16);
  --radius:      14px;
  --radius-sm:   10px;
  --radius-xs:   6px;

  /* Bootstrap compatibility */
  --bs-primary:          #00C896;
  --bs-primary-rgb:      0,200,150;
  --bs-link-color:       #00C896;
  --bs-link-hover-color: #00a87e;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--mint); text-decoration: none; transition: color .2s; }
a:hover { color: var(--mint-d); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--text); }

/* ============================================
   NAVIGACE
   ============================================ */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 12px rgba(0,200,150,.06);
  padding: 0;
}
.navbar .container { height: 68px; }
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 36px; height: 36px;
  background: var(--mint);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-brno { color: var(--mint); }
.brand-rest { color: var(--navy); }
.brand-dot  { color: var(--violet); }

.navbar-nav .nav-link {
  color: var(--text-2) !important;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--mint-l);
  color: var(--mint-d) !important;
}
.navbar-toggler { border: none; color: var(--text); }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================
   TLAČÍTKA
   ============================================ */
.btn {
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 10px 22px;
  transition: all .2s;
  font-size: 0.95rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-d) 100%);
  border-color: var(--mint);
  color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--mint-d) 0%, #009870 100%);
  border-color: var(--mint-d);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,200,150,.35);
}
.btn-outline-primary {
  border: 2px solid var(--mint);
  color: var(--mint);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--mint);
  color: #fff !important;
  border-color: var(--mint);
}
.btn-outline-secondary {
  border: 2px solid var(--mint);
  color: var(--mint);
  background: transparent;
}
.btn-outline-secondary:hover {
  background: var(--mint);
  color: #fff !important;
  border-color: var(--mint);
}
.btn-violet {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-d) 100%);
  border-color: var(--violet);
  color: #fff !important;
}
.btn-violet:hover {
  background: linear-gradient(135deg, var(--violet-d) 0%, #5B21B6 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(124,58,237,.35);
}
.btn-outline-violet {
  border: 2px solid var(--violet);
  color: var(--violet);
  background: transparent;
}
.btn-outline-violet:hover {
  background: var(--violet);
  color: #fff !important;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 6px 16px; font-size: 0.875rem; }

/* ============================================
   HERO SEKCE
   ============================================ */
/* ===== HERO — PREMIUM MOBILE-FIRST ===== */
.hero {
  background: linear-gradient(145deg, #E6FBF5 0%, #F0FDF9 35%, #F5F3FF 65%, #EDE9FE 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,150,.1) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out 2s infinite alternate-reverse;
}
@keyframes heroGlow {
  0%   { transform: translate(0,0) scale(1); opacity: .7; }
  100% { transform: translate(20px,-15px) scale(1.15); opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero elements entrance */
.hero-badge     { animation: fadeInUp .6s ease both; }
.hero h1        { animation: fadeInUp .6s ease .1s both; }
.hero p.lead    { animation: fadeInUp .6s ease .2s both; }
.hero-ctas      { animation: fadeInUp .6s ease .3s both; }
.hero-trust     { animation: fadeInUp .6s ease .35s both; }
.hero-stats     { animation: fadeInUp .6s ease .4s both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--mint-d);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  border: 1px solid rgba(0,200,150,0.2);
  box-shadow: 0 2px 12px rgba(0,200,150,.08);
}
.hero h1 {
  font-size: clamp(1.75rem, 5.5vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--navy);
}
.hero h1 .highlight {
  color: var(--mint);
  position: relative;
}
.hero p.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Hero CTA buttons */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}
.hero-ctas .btn-lg {
  padding: 13px 28px;
  font-size: 0.95rem;
  border-radius: 12px;
  font-weight: 700;
}
.hero-ctas .btn-primary {
  box-shadow: 0 4px 20px rgba(0,200,150,.3);
}
.hero-ctas .btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0,200,150,.4);
  transform: translateY(-1px);
}

/* Hero trust badges */
.hero-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .2px;
}
.hero-trust-item.green  { background: #00C896; color: #fff; }
.hero-trust-item.amber  { background: #FFF7ED; color: #C2410C; border: 1px solid #FED7AA; }
.hero-trust-item.purple { background: var(--violet-l); color: var(--violet-d); border: 1px solid rgba(124,58,237,.2); }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,200,150,.15);
  justify-content: center;
}
.hero-stat {
  text-align: center;
  flex: 1;
  padding: 0 12px;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(0,200,150,.18);
}
.hero-stat .value {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--mint);
  line-height: 1;
  letter-spacing: -1px;
}
.hero-stat .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* Hero dekorace — floating shapes */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .07;
}
.hero-deco-1 {
  width: 200px; height: 200px;
  background: var(--mint);
  top: 10%; right: 5%;
  animation: float 12s ease-in-out infinite;
}
.hero-deco-2 {
  width: 120px; height: 120px;
  background: var(--violet);
  bottom: 15%; left: 8%;
  animation: float 10s ease-in-out 3s infinite reverse;
}
.hero-deco-3 {
  width: 80px; height: 80px;
  background: var(--mint);
  top: 55%; left: 25%;
  animation: float 14s ease-in-out 5s infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  25%      { transform: translate(10px,-15px) rotate(5deg); }
  50%      { transform: translate(-5px,10px) rotate(-3deg); }
  75%      { transform: translate(12px,5px) rotate(4deg); }
}

/* Hero vizuál (unused but kept) */
.hero-visual {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-map-placeholder {
  background: var(--mint-l);
  border-radius: var(--radius);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-size: 3rem;
  margin-bottom: 16px;
}
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin: 4px;
  box-shadow: var(--shadow-sm);
}
.location-chip i { color: var(--mint); }

/* ============================================
   KARTY
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow); }
.card-img-top { height: 220px; object-fit: cover; }
.card-body { padding: 20px; }
.card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.card-text { color: var(--text-muted); font-size: 0.9rem; }
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint);
}

/* Cena v kartě */
.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: var(--mint-l);
  color: var(--mint-d);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
  border: 1px solid var(--border);
}
.price-badge .amount { font-size: 1.3rem; }
.price-badge .period { font-size: 0.78rem; color: var(--text-muted); margin-left: 2px; }

/* ============================================
   SEKCE
   ============================================ */
.section { padding: 72px 0; }
.section-sm { padding: 40px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 48px;
  line-height: 1.6;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mint);
  margin-bottom: 10px;
}

/* ============================================
   BADGES & TAGY
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.tag-available { background: var(--mint-l); color: var(--mint-d); border: 1px solid var(--border); }
.tag-occupied  { background: #FEE2E2; color: #DC2626; }
.tag-limited   { background: #FEF3C7; color: #D97706; }
.tag-type      { background: var(--violet-l); color: var(--violet); }
.tag-storage   { background: #F3F4F6; color: #6B7280; }
.tag-soon      { background: #DBEAFE; color: #2563EB; }

/* Amenity tagy */
.amenity-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.amenity-tag {
  background: var(--mint-ll);
  color: var(--mint-d);
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border);
}

/* ============================================
   FORMULÁŘE
   ============================================ */
.form-control, .form-select {
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(0,200,150,.15);
  outline: none;
}
.form-label { font-weight: 600; color: var(--text); margin-bottom: 6px; font-size: 0.9rem; }
.form-text { font-size: 0.8rem; color: var(--text-muted); }
.form-check-input:checked { background-color: var(--mint); border-color: var(--mint); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(0,200,150,.15); }

/* Wizard steps */
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  overflow-x: auto;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--text-muted);
  position: relative;
}
.wizard-step .step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border-soft);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.wizard-step.active .step-num { background: var(--mint); color: #fff; }
.wizard-step.active { color: var(--mint-d); }
.wizard-step.done .step-num { background: var(--mint-l); color: var(--mint); }
.wizard-connector { flex: 1; height: 2px; background: var(--border-soft); min-width: 20px; }
.wizard-connector.done { background: var(--mint); }

/* ============================================
   STORAGE / SKLAD
   ============================================ */
.storage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.storage-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--mint);
}
.storage-card .icon {
  width: 64px; height: 64px;
  background: var(--mint-l);
  color: var(--mint);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}
.storage-card h5 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.storage-card p  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; flex-grow: 1; }
.storage-price   { font-size: 1.1rem; font-weight: 800; color: var(--mint-d); margin-top: auto; }
.storage-price small { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ============================================
   KONTAKTNÍ SEKCE / CTA
   ============================================ */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,200,150,.15) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section h2 { color: #fff; }
.contact-section p  { color: rgba(255,255,255,.75); }
.contact-section a.btn-primary { background: var(--mint); border-color: var(--mint); color: #fff !important; }
.contact-section a.btn-outline-light {
  border-color: rgba(255,255,255,.35);
  color: #fff !important;
}
.contact-section a.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  color: #fff !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy);
  padding: 56px 0 32px;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
}
footer h6 { color: rgba(255,255,255,.9); font-weight: 700; }
footer a { color: rgba(255,255,255,.55); transition: color .2s; }
footer a:hover { color: #fff; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand .brand-icon {
  width: 34px; height: 34px;
  background: var(--mint);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.footer-bottom { color: rgba(255,255,255,.4); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ============================================
   ADMIN — Sidebar & Layout
   ============================================ */
.admin-wrapper { display: flex; min-height: 100vh; }
.sidebar {
  width: 264px;
  background: var(--navy);
  border-right: none;
  flex-shrink: 0;
  padding: 0 0 20px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}
.sidebar-brand {
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-brand-icon {
  width: 36px; height: 36px;
  background: var(--mint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  flex-shrink: 0;
}
.sidebar-brand-text {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.sidebar-brand-text small { display: block; font-size: 0.7rem; color: rgba(255,255,255,.4); font-weight: 500; }

.sidebar-section {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.3);
  padding: 14px 20px 4px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,.6);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0;
  transition: all .15s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.sidebar-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.sidebar-link.active {
  background: rgba(0,200,150,.12);
  color: var(--mint);
  border-left-color: var(--mint);
  font-weight: 600;
}
.sidebar-link i { width: 18px; text-align: center; opacity: .8; }
.sidebar-link.active i { opacity: 1; }

.main-content {
  margin-left: 264px;
  padding: 32px;
  flex: 1;
  min-width: 0;
  background: #F9FAFB;
  min-height: 100vh;
}
.page-header { margin-bottom: 28px; }
.page-header h1 { font-size: 1.6rem; margin: 0; font-weight: 800; }
.page-header p  { color: var(--text-muted); margin: 4px 0 0; }

/* Stat cards */
.stat-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow .2s;
}
.stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stat-icon.mint   { background: var(--mint-l); color: var(--mint-d); }
.stat-icon.violet { background: var(--violet-l); color: var(--violet); }
.stat-icon.blue   { background: #DBEAFE; color: #2563EB; }
.stat-icon.green  { background: #D1FAE5; color: #059669; }
.stat-icon.orange { background: #FEF3C7; color: #D97706; }
.stat-icon.red    { background: #FEE2E2; color: #DC2626; }
.stat-value { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* Tabulky */
.table { color: var(--text); }
.table th {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  border-bottom: 2px solid #E5E7EB;
  background: #F9FAFB;
}
.table td { vertical-align: middle; border-bottom: 1px solid #F3F4F6; }
.table-hover tbody tr:hover { background: #FAFAFA; }

/* Cards in admin */
.admin-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  overflow: hidden;
}
.admin-card .card-header {
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================
   PORTÁL NÁJEMNÍKA
   ============================================ */
.tenant-header {
  background: linear-gradient(135deg, var(--mint-ll) 0%, var(--mint-l) 100%);
  color: var(--navy);
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.tenant-header::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,200,150,.15) 0%, transparent 70%);
  pointer-events: none;
}
.tenant-header h2 { color: var(--navy); font-size: 1.4rem; margin: 0 0 4px; }
.tenant-header p  { color: var(--navy); opacity: .6; margin: 0; }

.payment-row {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow .2s;
}
.payment-row:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.payment-row.overdue { border-left: 3px solid #DC2626; }
.payment-row.paid { border-left: 3px solid var(--mint); }

/* QR kód box */
.qr-box {
  background: #fff;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.qr-box img { max-width: 180px; }

/* ============================================
   FEATURES / INFO BOXY
   ============================================ */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  transition: box-shadow .2s, border-color .2s;
}
.feature-item:hover { box-shadow: var(--shadow); border-color: var(--mint); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--mint-l);
  color: var(--mint);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-icon.violet { background: var(--violet-l); color: var(--violet); }
.feature-text h5 { font-size: 0.95rem; font-weight: 700; margin: 0 0 4px; }
.feature-text p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ============================================
   GALERIE
   ============================================ */
.gallery-main { height: 380px; border-radius: var(--radius); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; }
.gallery-thumb {
  width: 80px; height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color .2s;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--mint); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   FLASH ZPRÁVY
   ============================================ */
.alert-success { background: var(--mint-l); border-color: var(--border); color: var(--mint-d); }
.alert-danger   { background: #FEE2E2; border-color: #FECACA; color: #DC2626; }
.alert-warning  { background: #FEF3C7; border-color: #FDE68A; color: #D97706; }
.alert-info     { background: #DBEAFE; border-color: #BFDBFE; color: #2563EB; }

/* ============================================
   RESPONSIVITA
   ============================================ */
@media (max-width: 991.98px) {
  .sidebar { display: none; }
  .main-content { margin-left: 0; padding: 20px; }
  .hero { padding: 56px 0 44px; }
  .section { padding: 48px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-deco-1 { width: 140px; height: 140px; }
  .hero-deco-2 { width: 90px; height: 90px; }
  .hero-deco-3 { display: none; }
}
@media (max-width: 767.98px) {
  .hero { padding: 44px 0 36px; }
  .hero h1 { font-size: 1.7rem; letter-spacing: -.6px; }
  .hero p.lead { font-size: .95rem; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; padding: 14px 20px; font-size: 1rem; }
  .hero-trust { gap: 6px; }
  .hero-trust-item { font-size: .68rem; padding: 4px 10px; }
  .hero-stats { gap: 0; margin-top: 22px; padding-top: 20px; }
  .hero-stat .value { font-size: 1.5rem; }
  .hero-stat .label { font-size: .65rem; }
  .card-img-top { height: 180px; }
  .wizard-steps { gap: 0; }
  .btn-lg { padding: 12px 24px; font-size: 0.95rem; }
}
@media (max-width: 575.98px) {
  .hero { padding: 36px 0 28px; }
  .hero h1 { font-size: 1.5rem; letter-spacing: -.5px; line-height: 1.2; }
  .hero h1 br { display: none; }
  .hero p.lead { font-size: .88rem; line-height: 1.6; margin-bottom: 20px; }
  .hero-badge { font-size: .72rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-stat { padding: 0 8px; }
  .hero-stat .value { font-size: 1.35rem; }
  .hero-stat .label { font-size: .62rem; letter-spacing: .3px; }
  .hero-deco-1, .hero-deco-2, .hero-deco-3 { display: none; }
  .section { padding: 36px 0; }
  .navbar .container { height: 60px; }
}

/* ============================================
   UTILITA
   ============================================ */
.text-mint    { color: var(--mint) !important; }
.text-violet  { color: var(--violet) !important; }
.text-muted   { color: var(--text-muted) !important; }
.bg-mint-l    { background: var(--mint-l) !important; }
.bg-violet-l  { background: var(--violet-l) !important; }
.rounded-xl   { border-radius: var(--radius) !important; }
.rounded-2xl  { border-radius: 20px !important; }
.shadow-card  { box-shadow: var(--shadow) !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.border-mint  { border-color: var(--mint) !important; }

/* Bootstrap overrides */
.text-primary { color: var(--mint) !important; }
.bg-primary   { background: var(--mint) !important; }
.border-primary { border-color: var(--mint) !important; }

/* Breadcrumb */
.breadcrumb { background: none; padding: 12px 0 0; }
.breadcrumb-item a { color: var(--mint); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* Offcanvas (mobilní menu) */
.offcanvas { max-width: 280px; }
.offcanvas-header { border-bottom: 1px solid var(--border-soft); }

/* Loader */
.page-loader { display: none; }

/* Bootstrap badge overrides */
.badge.bg-primary { background: var(--mint) !important; }
.badge.bg-success { background: var(--mint-d) !important; }

/* Focus outline */
:focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; }
