/* =============================================================
   Vrakoviště Můla – admin CSS
   Bootstrap 5 proměnné v :root, žádné inline CSS
   ============================================================= */

:root {
  --bs-primary:               #2c53d2;
  --bs-primary-hover:         #2346b8;
  --bs-body-bg:               #1a1a1a;
  --bs-body-color:            #ddd;
  --bs-font-sans-serif:       system-ui, -apple-system, 'Segoe UI', sans-serif;
  --bs-border-color:          #2e2e2e;
  --bs-border-radius:         4px;
  --bs-link-color:            #8aa3f0;
  --bs-link-hover-color:      #a3b9f5;

  --sidebar-width:            230px;
  --sidebar-bg:               #0e1f35;
  --sidebar-color:            #8aa3bc;
  --sidebar-active-color:     #ffffff;
  --sidebar-hover-bg:         rgba(255,255,255,.05);

  --card-bg:                  #212121;
  --card-border:              #353535;
  --input-bg:                 #252525;
  --input-border:             #3a3a3a;
  --input-focus-border:       #2c53d2;
}

/* =============================================================
   Base
   ============================================================= */

html, body { overflow-x: hidden; }

body {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-font-sans-serif);
  font-size: 0.9375rem;
  line-height: 1.75;
  min-height: 100vh;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}

a:hover {
  color: var(--bs-link-hover-color);
}

/* =============================================================
   Layout
   ============================================================= */

.layout-wrapper {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* =============================================================
   Mobile navbar
   ============================================================= */

#mobile-nav {
  background-color: var(--sidebar-bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

#mobile-nav .navbar-brand {
  color: #ffffff;
  font-weight: 600;
  font-size: .9375rem;
}

/* =============================================================
   Main content
   ============================================================= */

#main-content {
  width: 100%;
  padding: 2.5rem 2.5rem 3rem;
  max-width: 1100px;
}

/* =============================================================
   Admin tabs
   ============================================================= */

.admin-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.admin-tab {
  padding: .625rem 1.25rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #aaa;
  font-size: .8125rem;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.admin-tab:hover { color: #ddd; }

.admin-tab.active {
  color: var(--bs-link-color);
  border-bottom-color: var(--bs-primary);
}

/* =============================================================
   Search box
   ============================================================= */

.search-box {
  position: relative;
  margin-bottom: 1rem;
}

.search-box .bi {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: .875rem;
  pointer-events: none;
}

.search-box .form-control {
  padding-left: 2.25rem;
}

/* =============================================================
   Uploader
   ============================================================= */

.upload-area {
  background-color: var(--input-bg);
  border: 1px dashed var(--input-border);
  border-radius: var(--bs-border-radius);
  padding: 1rem;
  text-align: center;
}

.upload-preview {
  font-size: .8125rem;
  color: #aaa;
  margin-bottom: .5rem;
  word-break: break-all;
}

/* =============================================================
   Edit screen
   ============================================================= */

#edit-screen {
  position: fixed;
  inset: 0;
  background: var(--bs-body-bg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.edit-bar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  flex-shrink: 0;
}

.edit-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .625rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.edit-bar-inner h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #ebebeb;
  margin: 0;
  flex: 1;
}

.btn-back {
  background: none;
  border: none;
  color: #aaa;
  font-size: .875rem;
  cursor: pointer;
  padding: .25rem .5rem;
  border-radius: var(--bs-border-radius);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: inherit;
}

.btn-back:hover { color: #ebebeb; background: rgba(255,255,255,.05); }

.edit-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* =============================================================
   Page header
   ============================================================= */

.page-header {
  border-bottom: 1px solid var(--bs-border-color);
  padding-bottom: 1.375rem;
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #ebebeb;
  letter-spacing: -.01em;
  margin-bottom: 0;
}

/* =============================================================
   Forms
   ============================================================= */

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  color: #c2c2c2;
  margin-bottom: .375rem;
}

.form-label .required {
  color: #e74c3c;
  margin-left: .125rem;
}

.form-control {
  width: 100%;
  padding: .5rem .75rem;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--bs-border-radius);
  color: #d8d8d8;
  font-size: .8125rem;
  font-family: inherit;
  transition: border-color .15s;
}

.form-control:focus {
  outline: none;
  border-color: var(--input-focus-border);
  box-shadow: 0 0 0 2px rgba(44,83,210,.15);
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

select.form-control {
  cursor: pointer;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  border-radius: var(--bs-border-radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .15s, border-color .15s, color .15s;
  font-family: inherit;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
  color: #ffffff;
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
}

.btn-danger {
  background-color: transparent;
  border-color: #5c2a2a;
  color: #e07474;
}

.btn-danger:hover {
  background-color: #4a2020;
  border-color: #6b3838;
  color: #f09090;
}

.btn-sm {
  padding: .25rem .625rem;
  font-size: .75rem;
}

.btn-xs {
  padding: .125rem .5rem;
  font-size: .6875rem;
  border-radius: 3px;
}

.btn-edit {
  background-color: transparent;
  border-color: #3a4a6b;
  color: #8aa3f0;
}

.btn-edit:hover {
  background-color: #2a3344;
  border-color: #4a5a7b;
  color: #a3b9f5;
}

.btn-cancel {
  background-color: transparent;
  border-color: var(--input-border);
  color: #c2c2c2;
}

.btn-cancel:hover {
  background-color: rgba(255,255,255,.04);
  border-color: #999;
  color: #ddd;
}

/* =============================================================
   Tables → BS5 grid
   ============================================================= */

.table-grid {
  font-size: .8125rem;
}

.table-head {
  font-size: .75rem;
  font-weight: 600;
  color: #c2c2c2;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bs-border-color);
  padding: .625rem 0;
}

.table-row {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .625rem 0;
  color: #d5d5d5;
  line-height: 1.5;
  align-items: center;
}

.table-row:hover {
  background-color: rgba(255,255,255,.04);
}

.table-row .cell-label {
  display: none;
}

@media (max-width: 767.98px) {
  .table-row {
    padding: .75rem;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--bs-border-radius);
    margin-bottom: .625rem;
  }

  .table-row:hover {
    background-color: var(--card-bg);
  }

  .table-row .cell-label {
    display: inline;
    font-size: .6875rem;
    font-weight: 600;
    color: #c2c2c2;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-right: .5rem;
  }

  .table-row > [class*="col-"] {
    padding: .25rem 0;
  }

  .table-row .col-action {
    margin-top: .375rem;
    padding-top: .5rem !important;
    border-top: 1px solid var(--card-border);
  }
}

/* =============================================================
   Checkbox list (modely)
   ============================================================= */

.checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .25rem .625rem;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  font-size: .8125rem;
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
}

.checkbox-item:hover {
  border-color: var(--input-focus-border);
}

.checkbox-item.selected {
  background-color: rgba(44,83,210,.15);
  border-color: var(--bs-primary);
  color: var(--bs-link-color);
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--bs-primary);
  width: .875rem;
  height: .875rem;
  cursor: pointer;
}

/* =============================================================
   Rich text editor
   ============================================================= */

.rte-wrapper {
  border: 1px solid var(--input-border);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}

.rte-toolbar {
  display: flex;
  gap: .125rem;
  padding: .375rem .5rem;
  background-color: #1e1e1e;
  border-bottom: 1px solid var(--input-border);
}

.rte-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.75rem;
  background: none;
  border: none;
  border-radius: 3px;
  color: #c2c2c2;
  cursor: pointer;
  font-size: .8125rem;
  font-weight: 600;
  transition: background-color .15s, color .15s;
}

.rte-btn:hover {
  background-color: rgba(255,255,255,.08);
  color: #ebebeb;
}

.rte-btn.active {
  background-color: rgba(44,83,210,.2);
  color: var(--bs-link-color);
}

.rte-sep {
  width: 1px;
  background-color: var(--input-border);
  margin: .125rem .25rem;
}

.rte-content {
  min-height: 100px;
  padding: .5rem .75rem;
  color: #d8d8d8;
  font-size: .8125rem;
  line-height: 1.65;
  outline: none;
}

.rte-content:focus {
  box-shadow: inset 0 0 0 1px var(--input-focus-border);
}

.rte-content ul,
.rte-content ol {
  padding-left: 1.25rem;
  margin: .25rem 0;
}

.rte-content li {
  margin-bottom: .125rem;
}

/* =============================================================
   Card section
   ============================================================= */

.card-section {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--bs-border-radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.card-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-section-header h3 {
  font-size: .9375rem;
  font-weight: 600;
  color: #ebebeb;
  margin: 0;
}

/* =============================================================
   Login page
   ============================================================= */

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  padding-top: 15vh;
}

.login-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--bs-border-radius);
  padding: 2rem 2rem 1.75rem;
  width: 100%;
  max-width: 380px;
}

.login-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ebebeb;
  margin-bottom: .375rem;
  text-align: center;
}

.login-card .subtitle {
  font-size: .8125rem;
  color: #999;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* =============================================================
   Responsive
   ============================================================= */

@media (max-width: 991.98px) {
  #main-content {
    padding: 1.5rem 1.25rem 2rem;
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  #main-content {
    padding: 1.25rem 1rem 1.75rem;
  }

  .page-header h1 {
    font-size: 1.125rem;
  }
}

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

.d-none { display: none !important; }
.d-lg-none { display: none; }

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-flex {
    display: flex !important;
  }
  .d-none.d-lg-flex {
    display: flex !important;
  }
}

.text-muted { color: #888 !important; }
.text-success { color: #4a9; }
.text-danger { color: #e07474; }
.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.gap-2 { gap: .5rem; }
.flex-wrap { flex-wrap: wrap; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.w-100 { width: 100%; }

/* Public frontend – jednoduche, dle puvodniho webu */
/* Public frontend – v2 (vychazi z predchozi verze co byla lepsi) */
.public-body {
  --primary: #003d80;
  --primary-dark: #0056b3;
  --primary-light: #e6f0fa;
  --accent: #c0392b;
  --body: #374151;
  --heading: #111827;
  --border: #e5e7eb;
  --muted: #6b7280;
  --bg-alt: #f9fafb;

  background: #fff;
  color: var(--body);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.public-body .form-control { background: #fff; border: 1px solid #b0b8c4; color: var(--body); border-radius: 8px; padding: 0.5rem 0.75rem; }
.public-body .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,86,179,0.15); outline: none; }
.public-body .form-label { color: var(--body); font-weight: 600; }
.public-body .form-select { border: 1px solid #b0b8c4; border-radius: 8px; }

.public-body a { color: var(--primary); }
.public-body a:hover { color: var(--primary-dark); }

#top-bar {
  background: #0d1928;
  font-size: 0.8125rem;
  color: #9ca3af;
  padding: 0.375rem 0;
}
#top-bar a { color: #d1d5db; }
#top-bar a:hover { color: #fff; }
.top-bar-sep { margin: 0 0.5rem; color: #4b5563; }
.top-bar-link { text-decoration: none; white-space: nowrap; }
.top-bar-link i { margin-right: 0.375rem; }
.top-bar-email .top-bar-text { }
@media (max-width: 575.98px) {
  .top-bar-sep { margin: 0 0.375rem; }
  .top-bar-email .top-bar-text { display: none; }
}

#main-nav { background: #fff; border-bottom: 1px solid var(--border); }
#main-nav .nav-link {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1rem !important;
  position: relative;
}
#main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
#main-nav .nav-link:hover::after,
#main-nav .nav-link.active::after { width: calc(100% - 2rem); }
#main-nav .nav-link:hover,
#main-nav .nav-link.active { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-brand { background: var(--primary); color: #fff; }
.btn-brand:hover { background: var(--primary-dark); color: #fff; }
.btn-outline-brand { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline-brand:hover { background: var(--primary); color: #fff !important; border-color: var(--primary); }
.btn-lg { padding: 0.5rem 1.125rem; font-size: 0.875rem; }

.hero {
  position: relative;
  padding: 5rem 0 0;
  background: linear-gradient(170deg, #091125 0%, #1e273f 40%, #0a1327 100%);
  overflow: visible;
  text-align: center;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 25% 40%, rgba(0,86,179,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 700px 400px at 70% 60%, rgba(192,57,43,0.06) 0%, transparent 55%);
}
.hero-top { position: relative; z-index: 1; }
.hero-title { margin: 0 0 2rem; }
.hero-t1 {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: heroFadeIn 0.7s 0.15s ease both;
}
.hero-t2 {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  animation: heroFadeIn 0.7s 0.35s ease both;
}
.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  animation: heroFadeIn 0.7s 0.55s ease both;
}

/* Page hero - compact version for subpages */
.page-hero {
  background: linear-gradient(170deg, #091125 0%, #1e273f 40%, #0a1327 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero .container { width: 100%; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 350px at 25% 50%, rgba(0,86,179,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 500px 300px at 70% 40%, rgba(192,57,43,0.04) 0%, transparent 55%);
}
.page-hero-body {
  position: relative;
  z-index: 1;
}
.page-hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  animation: heroFadeIn 0.7s 0.15s ease both;
}
.page-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
  animation: heroFadeIn 0.7s 0.3s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Deck card entry animations */
.hero-deck .deck-card:first-child { animation: deckSlideLeft 0.6s 0.3s ease both; }
.hero-deck .deck-card:last-child  { animation: deckSlideRight 0.6s 0.3s ease both; }
@keyframes deckSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes deckSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Hero deck (brand cards) */
.hero-deck {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  padding: 3rem 0 5rem;
}
.deck-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2.5rem 3rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  text-decoration: none !important;
  min-width: 240px;
  border-top: 3px solid;
  position: relative;
  overflow: hidden;
  --border-bottom: 0;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.05));
  transition: filter 0.3s;
}
.deck-hyundai { border-top-color: var(--primary); }
.deck-kia { border-top-color: var(--accent); }
.deck-card:hover { filter: drop-shadow(0 8px 32px rgba(0,0,0,0.12)); background: #fff; transition: background 0.3s; }

.deck-hyundai::after,
.deck-kia::after  {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 5px;
  transform: translateX(-50%);
  width: calc(var(--border-bottom) * 100%);
  pointer-events: none;
}
.deck-hyundai::after { background: var(--primary); }
.deck-kia::after { background: var(--accent); }
.deck-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
}
.deck-card p {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}
.deck-card p i { font-size: 0.875rem; }

.page-section { padding: 3.5rem 0; }
.page-title { font-size: 1.75rem; font-weight: 800; color: var(--heading); margin-bottom: 0.5rem; }
.page-lead { font-size: 1rem; color: var(--muted); max-width: 640px; line-height: 1.6; }
.section-title { font-size: 1.5rem; font-weight: 800; color: var(--heading); margin-bottom: 2rem; }

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.2s;
  text-decoration: none !important;
  min-height: 160px;
}
.brand-card:hover { border-color: #cbd5e0; }
.brand-card-hyundai { border-top: 3px solid var(--primary); }
.brand-card-kia { border-top: 3px solid var(--accent); }
.brand-card-title { font-size: 1.125rem; font-weight: 700; color: var(--heading); }
.brand-card-link { font-size: 0.875rem; color: var(--primary); font-weight: 500; }

.services-section { padding: 3.5rem 0 5rem; }
.services-section + .services-section { padding-top: 0; background: #f9fafb; }
.services-section + .services-section .section-title { padding-top: 0; }

.service-card {
  display: block;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
  background: #fff;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}
.service-card:hover::after { width: 100%; }
.service-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 0.75rem; display: block; }
.service-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--heading); margin-bottom: 0.25rem; }
.service-card p { font-size: 0.8125rem; color: var(--muted); margin: 0; line-height: 1.5; }

.about-section { padding: 3.5rem 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.about-text p { font-size: 0.9375rem; color: var(--body); line-height: 1.7; margin-bottom: 1rem; }
.about-note { font-size: 0.8125rem !important; color: var(--muted) !important; font-style: italic; }
.cta-card { background: linear-gradient(170deg, #091125 0%, #1e273f 40%, #0a1327 100%); color: #fff; border-radius: 14px; padding: 2rem; text-align: center; }
.cta-card i { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; opacity: 0.8; }
.cta-card h3 { font-size: 1.125rem; font-weight: 800; margin: 0 0 0.75rem; }
.cta-card p { font-size: 0.875rem; opacity: 0.85; line-height: 1.6; margin: 0 0 1.25rem; }
.cta-card .btn { background: #fff; color: var(--primary); }
.cta-card .btn:hover { background: var(--primary); color: #fff; }
@media (max-width: 991.98px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } .cta-card { max-width: 400px; margin: 0 auto; } }

.parts-section { padding: 3.5rem 0; }

.part-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  text-decoration: none !important;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.part-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: #cbd5e0; }
.part-card-img-wrap { position: relative; padding-top: 66%; overflow: hidden; background: #f3f4f6; }
.part-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.part-card-noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #9ca3af; font-size: 2.5rem; }
.part-card-body { padding: 0.75rem; }
.part-card-cislo { display: block; font-size: 0.6875rem; font-weight: 700; color: var(--primary); letter-spacing: 0.03em; margin-bottom: 0.125rem; }
.part-card-nazev { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 0.875rem; font-weight: 600; color: var(--heading); line-height: 1.3; max-height: 2.6em; }
.part-card-modely { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.125rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

.catalog-brand-pills { display: flex; gap: 0.375rem; flex-wrap: wrap; margin-bottom: 0.5rem; }

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--body);
  text-decoration: none !important;
  background: #fff;
  transition: all 0.15s;
}
.brand-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.brand-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.brand-pill.active:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.brand-pill.active img { filter: brightness(0) invert(1); }
.brand-pill-clear { background: transparent; border-color: transparent; color: var(--muted); font-size: 0.75rem; padding-left: 0.5rem; padding-right: 0.5rem; }

.catalog-toolbar { padding: 0.75rem 0; border-bottom: 1px solid var(--border); background: #f8fafc; position: sticky; top: 0; z-index: 100; }
.toolbar-row { display: flex; gap: 0.5rem; align-items: center; }
.toolbar-search { position: relative; flex: 1; }
.toolbar-search .bi-search, .toolbar-search .bi-car-front { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--primary); z-index: 5; font-size: 0.875rem; }
.toolbar-search .form-control { padding: 0.5rem 0.875rem 0.5rem 2.25rem; font-size: 0.8125rem; height: 40px; border: 1.5px solid #cbd5e0; border-radius: 8px; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.toolbar-search .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,86,179,0.12); }
.toolbar-model .form-select { font-size: 0.8125rem; padding: 0 2.25rem 0 0.875rem; height: 40px; border: 1.5px solid #cbd5e0; border-radius: 8px; min-width: 200px; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.04); cursor: pointer; color: var(--body); }
.toolbar-model .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,86,179,0.12); }

.catalog-body { padding: 1.5rem 0 3rem; }
.catalog-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 1.25rem; flex-wrap: wrap; }
.catalog-count { font-size: 0.875rem; color: var(--muted); }
.catalog-count-label { font-size: 0.75rem; color: var(--muted); background: var(--bg-alt); padding: 0.25rem 0.5rem; border-radius: 6px; }
.parts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.catalog-empty { text-align: center; padding: 3rem 1rem; }
.catalog-empty-icon { font-size: 2.5rem; color: #d1d5db; margin-bottom: 0.75rem; }
.catalog-empty h3 { font-size: 1.125rem; font-weight: 600; color: var(--heading); margin-bottom: 0.375rem; }
.catalog-empty p { color: var(--muted); margin-bottom: 1.25rem; }

.step-card { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--border); border-radius: 12px; background: #fff; height: 100%; }
.step-number { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; margin: 0 auto 0.75rem; }
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 0.375rem; }
.step-card p { font-size: 0.8125rem; color: var(--muted); margin: 0; line-height: 1.5; }
.step-card.text-start .step-number { margin: 0 0 0.75rem; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { font-size: 0.8125rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.625rem; padding-left: 1.5rem; position: relative; }
.service-list li:last-child { margin-bottom: 0; }
.service-list li i { color: var(--primary); position: absolute; left: 0; top: 0.15rem; font-size: 0.875rem; }

.review-section { padding: 3.5rem 0; background: var(--bg-alt); }
.review-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: 12px; background: #fff; height: 100%; transition: box-shadow 0.2s; }
.review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.review-stars { color: #ecc94b; font-size: 0.875rem; margin-bottom: 0.5rem; }
.review-text { font-size: 0.9375rem; font-style: italic; color: var(--body); line-height: 1.6; margin-bottom: 0.625rem; }
.review-author { font-size: 0.8125rem; font-weight: 600; color: var(--muted); }

.service-detail-card { padding: 1.5rem; border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: 12px; background: #fff; height: 100%; transition: box-shadow 0.2s; }
.service-detail-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.service-detail-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; display: block; }
.service-detail-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--heading); margin-bottom: 0.25rem; }
.service-detail-card p { font-size: 0.8125rem; color: var(--muted); margin: 0; line-height: 1.5; }

.service-row { border-left: 3px solid var(--primary); border-bottom: 1px solid var(--border); padding: 0.75rem 0 1rem 1.25rem; margin-bottom: 1rem; transition: background 0.2s; }
.service-row:hover { background: #f9fafb; }
.service-row:last-child { border-bottom: none; }
.service-row h2 { font-size: 1rem; font-weight: 700; color: var(--heading); margin: 0 0 0.375rem; }
.service-row h2 i { color: var(--primary); margin-right: 0.5rem; font-size: 0.875rem; }
.service-row p { font-size: 0.875rem; color: var(--body); line-height: 1.65; margin: 0; }

.autoservis-intro { max-width: 780px; margin: 0 auto 2rem; text-align: center; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
.autoservis-intro h2 { font-size: 1.5rem; font-weight: 800; color: var(--heading); margin: 0 0 1rem; }
.autoservis-intro p { font-size: 0.9375rem; color: var(--body); line-height: 1.7; }

.pricing-note { font-size: 0.8125rem; color: var(--muted); margin-top: 1rem; }

.pricing-section { background: linear-gradient(170deg, #091125 0%, #1e273f 40%, #0a1327 100%); padding: 3rem 0; }
.pricing-section h2 { font-size: 1.25rem; font-weight: 800; color: #fff; margin: 0 0 1.25rem; }
.pricing-section .pricing-note { color: rgba(255,255,255,0.5); }

.parts-cta { padding: 3rem 0; }
.parts-cta-card { background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--primary); border-right: 3px solid var(--primary); border-radius: 14px; padding: 2.5rem; text-align: center; max-width: 640px; margin: 0 auto; }
.parts-cta-card h2 { font-size: 1.375rem; font-weight: 800; color: var(--heading); margin: 0 0 0.5rem; }
.parts-cta-card p { font-size: 0.9375rem; color: var(--muted); max-width: 480px; margin: 0 auto 1.25rem; line-height: 1.6; }
.parts-cta-card .btn { background: var(--primary); color: #fff; border-color: var(--primary); }
.parts-cta-card .btn:hover { background: var(--primary-dark); color: #fff; }
.parts-cta h2 { font-size: 1.375rem; font-weight: 800; color: var(--heading); margin: 0 0 0.5rem; }
.parts-cta p { font-size: 0.9375rem; color: var(--muted); max-width: 560px; margin: 0 auto 1.25rem; line-height: 1.6; }

.autoservis-pricing { background: var(--bg-alt); border-radius: 14px; padding: 2rem; }
.autoservis-pricing h2 { font-size: 1.25rem; font-weight: 800; color: var(--heading); margin: 0 0 1.25rem; }
.autoservis-footer { display: grid; grid-template-columns: 1fr 1fr 1.5fr; gap: 1.5rem; }
.autoservis-footer-item { padding: 1.5rem; border: 1px solid var(--border); border-radius: 12px; background: #fff; }
.autoservis-footer-item h3 { font-size: 0.9375rem; font-weight: 800; color: var(--heading); margin: 0 0 0.5rem; }
.autoservis-footer-item h3 i { color: var(--primary); margin-right: 0.375rem; }
.autoservis-footer-item p { font-size: 0.875rem; color: var(--body); line-height: 1.6; margin: 0; }
.footer-opening { list-style: none; padding: 0; margin: 0; }
.footer-opening li { font-size: 0.8125rem; color: var(--body); padding: 0.25rem 0; }
.footer-opening li strong { color: var(--heading); }
.footer-closed { color: var(--muted) !important; font-size: 0.75rem !important; }
.footer-contacts { list-style: none; padding: 0; margin: 0.25rem 0 0; }
.footer-contacts li { font-size: 0.8125rem; padding: 0.125rem 0; }
.footer-contacts i { color: var(--primary); margin-right: 0.375rem; font-size: 0.75rem; }
.autoservis-cta { background: linear-gradient(170deg, #091125 0%, #1e273f 40%, #0a1327 100%); color: #fff; border: none; }
.autoservis-cta h3 { color: #fff; }
.autoservis-cta p { color: rgba(255,255,255,0.8); font-size: 0.8125rem; margin-bottom: 1rem; }
.autoservis-cta i { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; opacity: 0.8; }
.autoservis-cta .btn { background: #fff; color: var(--primary); padding: 0.25rem 1rem; font-size: 0.75rem; line-height: 1.3; }
.autoservis-cta .btn:hover { background: var(--primary); color: #fff; }
@media (max-width: 991.98px) { .autoservis-footer { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .autoservis-footer { grid-template-columns: 1fr; } }

.info-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: 12px; background: #fff; height: 100%; }
.info-card i { font-size: 1.5rem; color: var(--primary); margin-top: 0.125rem; flex-shrink: 0; }
.info-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--heading); margin: 0 0 0.25rem; }
.info-card p { font-size: 0.8125rem; color: var(--body); margin: 0 0 0.5rem; line-height: 1.5; }
.info-card p:last-child { margin-bottom: 0; }

.detail-image { border: 1px solid var(--border); overflow: hidden; background: var(--bg-alt); margin-bottom: 1.5rem; }
.detail-img { width: 100%; display: block; cursor: zoom-in; }
.detail-image-placeholder { display: flex; align-items: center; justify-content: center; min-height: 280px; flex-direction: column; }
.detail-title { font-size: 1.5rem; font-weight: 800; color: var(--heading); margin-bottom: 0.375rem; }
.detail-cislo { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.75rem; }
.detail-popisek { font-size: 1rem; line-height: 1.6; color: var(--body); margin-bottom: 1.25rem; }
.detail-popis { border-top: 1px solid var(--border); padding-top: 1.25rem; margin-bottom: 1.25rem; }
.detail-kompatibilita h3, .detail-kompatibilita h2 { font-size: 0.875rem; font-weight: 700; color: var(--heading); margin-bottom: 0.375rem; }
.detail-kompatibilita ul { list-style: disc; padding-left: 1.25rem; font-size: 0.8125rem; line-height: 1.6; }
.detail-tags { margin-bottom: 1rem; }
.tag { display: inline-block; padding: 0.2rem 0.625rem; font-size: 0.75rem; font-weight: 500; background: var(--primary-light); color: var(--primary); border-radius: 6px; margin: 0 0.25rem 0.25rem 0; }
.detail-cta-note { display: block; font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem; }
.detail-cta .btn-outline-brand { margin-left: 0.5rem; }

.detail-form { background: #f9fafb; border: 1px solid var(--border); border-radius: 14px; padding: 2rem; }
.detail-form h3 { font-size: 1.125rem; font-weight: 800; color: var(--heading); margin: 0 0 1.25rem; }

.detail-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 10000; align-items: center; justify-content: center; }
.detail-lightbox-img { max-width: 90%; max-height: 90%; object-fit: contain; }
.detail-lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2.5rem; color: #fff; cursor: pointer; font-weight: 300; line-height: 1; }

.contact-info-item { margin-bottom: 0.75rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i { font-size: 1.125rem; color: var(--primary); margin-right: 0.5rem; }
.contact-info-item div { font-size: 0.875rem; line-height: 1.5; display: inline; }

.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 2.5rem; align-items: start; }
.contact-map-wrap { position: relative; display: inline-block; width: 100%; }
.contact-map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 1; margin-top: -12px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-card { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem 1.25rem; border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: 10px; background: #fff; }
.contact-card i { font-size: 1.125rem; color: var(--primary); margin-top: 0.125rem; flex-shrink: 0; }
.contact-card strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--heading); }
.contact-card span { display: block; font-size: 0.8125rem; color: var(--muted); }
.contact-card a { font-size: 0.9375rem; font-weight: 700; margin-top: 0.125rem; display: inline-block; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; }
.contact-form-card h3 { font-size: 1.125rem; font-weight: 800; color: var(--heading); margin: 0 0 1.25rem; }
@media (max-width: 991.98px) { .contact-grid { grid-template-columns: 1fr; } }

.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.breadcrumb { padding: 0; margin-bottom: 1.5rem; font-size: 0.8125rem; }
.breadcrumb-item + .breadcrumb-item::before { color: #cbd5e0; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--muted); }

#footer { background: #0d1928; color: #9ca3af; padding: 2.5rem 0 0; margin-top: 0; font-size: 0.875rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-col p { font-size: 0.8125rem; line-height: 1.6; color: #9ca3af; }
.footer-col address { font-size: 0.8125rem; color: #9ca3af; font-style: normal; line-height: 1.6; margin: 0; }
.footer-col address small { color: #6b7280; }
#footer h5 { font-size: 0.75rem; font-weight: 700; margin-bottom: 0.75rem; color: #e5e7eb; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.375rem; font-size: 0.8125rem; }
.footer-links a { color: #9ca3af; }
.footer-links a:hover { color: #fff; }
#footer .bi { margin-right: 0.375rem; }
.footer-bottom { border-top: 1px solid #374151; padding: 1rem 0; margin-top: 1.5rem; font-size: 0.75rem; color: #6b7280; }
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 991.98px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

.admin-navbar { background: #fff; border-bottom: 1px solid var(--border); padding: 0.5rem 0; }
.admin-navbar-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; gap: 2rem; }
.admin-brand { font-weight: 700; font-size: 0.875rem; color: var(--heading); }
.admin-nav-links { display: flex; gap: 0.25rem; align-items: center; margin-left: auto; }
.admin-nav-links a { padding: 0.375rem 0.75rem; font-size: 0.8125rem; font-weight: 500; color: #555; border-radius: 4px; text-decoration: none; }
.admin-nav-links a:hover,
.admin-nav-links a.active { background: var(--primary-light); color: var(--primary); }
.admin-nav-logout { color: var(--accent) !important; }

@media (max-width: 991.98px) {
  .hero-t1 { font-size: 1.5rem; }
  .hero-t2 { font-size: 3rem; }
  .hero-deck { padding: 2.5rem 0 2rem; }
  .deck-card { padding: 2rem 2.5rem; min-width: 200px; }
  .page-hero-title { font-size: 2.25rem; }
  .page-hero { padding: 3.5rem 0; }
  .page-title { font-size: 1.5rem; }
  .parts-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
  .hero-t1 { font-size: 1.25rem; letter-spacing: 0.15em; }
  .hero-t2 { font-size: 2.25rem; }
  .hero-lead { font-size: 1rem; }
  .hero-deck { flex-direction: row; align-items: center; gap: 0.75rem; padding: 2rem 0 1.5rem; }
  .deck-card { min-width: 0; flex: 1; max-width: none; padding: 1.5rem 1rem; }
  .deck-card img { height: 36px !important; }
  .page-hero-title { font-size: 1.875rem; }
  .page-hero { padding: 3rem 0; }
  .toolbar-row { flex-direction: column; }
  .toolbar-search { width: 100%; }
  .toolbar-model { width: 100%; }
  .toolbar-model .form-select { width: 100%; }
  .catalog-toolbar { padding: 0.5rem 0; }
  .catalog-brand-pills { gap: 0.25rem; margin-bottom: 0.375rem; }
  .brand-pill { padding: 0.25rem 0.75rem; font-size: 0.75rem; }
  .brand-pill-clear { padding: 0.25rem 0.5rem; }
  .parts-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
@media (max-width: 575.98px) {
  .hero-t1 { font-size: 1.125rem; letter-spacing: 0.1em; }
  .hero-t2 { font-size: 2rem; }
  .hero-lead { font-size: 0.875rem; max-width: 320px; }
  .hero-deck { padding: 1rem 0 3.5rem; gap: 0.5rem; }
  .deck-card { padding: 1.25rem 0.75rem; }
  .deck-card img { height: 30px !important; }
  .page-hero-title { font-size: 1.5rem; }
  .page-hero { padding: 2.5rem 0; }
  .page-section { padding: 1.5rem 0; }
  .parts-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .catalog-brand-pills { width: 100%; }
  .brand-pill { flex: 1; justify-content: center; }
}

.catalog-pagination { display: flex; justify-content: center; gap: 0.25rem; margin-top: 2rem; align-items: center; }
.pagination-page { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 6px; border: 1px solid var(--border); font-size: 0.8125rem; font-weight: 600; color: var(--body); text-decoration: none !important; transition: all 0.15s; }
.pagination-page:hover { border-color: var(--primary); color: var(--primary); }
.pagination-page.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination-dots { font-size: 0.8125rem; color: var(--muted); padding: 0 0.25rem; }

.catalog-cta { padding: 3rem 0; margin-top: 2rem; }
.catalog-cta .cta-box h2 { font-size: 1.375rem; }
.catalog-cta .btn-brand { padding: 0.375rem 1.125rem; font-size: 0.8125rem; font-weight: 500; }
.catalog-cta .btn-brand:hover { background: var(--primary-dark); color: #fff; }

/* Process grid (vykup) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.process-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 14px;
  background: #fff;
  transition: box-shadow 0.2s;
  position: relative;
}
.process-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.process-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
  margin-bottom: 1.25rem;
}
.process-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--heading); margin: 0 0 0.75rem; }
.process-card ul { list-style: none; padding: 0; margin: 0; }
.process-card li {
  font-size: 0.8125rem; color: var(--body);
  padding: 0.375rem 0 0.375rem 1.5rem; position: relative; line-height: 1.5;
}
.process-card li::before {
  content: ''; position: absolute; left: 0; top: 0.75rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
}
.cta-box {
  background: #fff;
  color: var(--body);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
}
.cta-box h2 { color: var(--heading); }
.cta-box h3 { font-size: 1.25rem; font-weight: 800; color: var(--heading); margin: 0 0 0.5rem; }
.cta-box p { font-size: 0.9375rem; color: var(--muted); margin: 0 0 1rem; }
.cta-box-contacts { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-contact { text-align: center; }
.cta-contact strong { display: block; font-size: 0.8125rem; margin-bottom: 0.375rem; color: var(--heading); }
.cta-box-contacts .btn { font-weight: 500; }
.cta-box .btn-brand { background: var(--primary); color: #fff; }
.cta-box .btn-brand:hover { background: var(--primary-dark); color: #fff; }

.vykup-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.vykup-form-wrap h3 { font-size: 1.25rem; font-weight: 800; color: var(--heading); margin: 0 0 0.25rem; }
.vykup-form-wrap > p { font-size: 0.875rem; color: var(--muted); margin: 0 0 1.5rem; }

.vykup-fluid { background: #f9fafb; padding: 2.5rem 0; }

.pricing-list { border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; overflow: hidden; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 1.25rem; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pricing-row:last-child { border-bottom: none; }
.pricing-name { font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.pricing-price { font-size: 0.9375rem; font-weight: 800; color: #fff; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 575.98px) { .pricing-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; } }

@media (max-width: 767.98px) {
  .process-grid { grid-template-columns: 1fr; }
}
