/* Základní proměnné */
:root {
  --bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --surface: rgba(35,38,47,0.95);
  --surface2: rgba(35,38,43,0.85);
  --accent: #ff9800;
  --accent-light: #ffd180;
  --accent-faded: #ff98001a;
  --accent-grad: linear-gradient(90deg, #ff9800 40%, #ffbc5e 100%);
  --text: #f9f9fb;
  --text-muted: #b6b7bb;
  --border: #26272a;
  --radius: 26px;
  --shadow: 0 8px 32px #000a, 0 1px 1px 0 #0006;
  --transition: .18s cubic-bezier(.86,0,.07,1);
  --navbar-height: 80px;
  --nav-link-gap: 2.5vw;
  --hover-underline: 2.5px;
  --font-main: 'Urbanist', Arial, sans-serif;
}

/* Reset a základní styly */
html {
  background: #000;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  margin: 0;
padding-top: 100px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  background-attachment: fixed;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* Navigační lišta */
.navbar {
  position: fixed; /* ZMĚNĚNO z sticky na fixed */
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  box-shadow: var(--shadow);
  min-height: var(--navbar-height);
  padding: 0 6vw;
  border-bottom: 1.5px solid var(--border);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.brand {
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 18px;
  user-select: none;
  text-shadow: 0 2px 18px #ff980066;
}

.brand-icon {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 32px #ff980044;
}

/* Hero sekce */
.login-hero {
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  margin: 20px auto;
  max-width: 800px;
  box-shadow: var(--shadow);
}

.login-hero h1 {
  color: var(--accent);
  font-size: 3rem;
  margin: 20px 0;
  text-shadow: 0 2px 18px #ff980066;
}

.login-hero p {
  color: var(--text);
  font-size: 1.2rem;
  margin: 20px 0;
}

.login-hero p a {
  color: var(--accent);
  text-decoration: none;
}

.login-hero p a:hover {
  text-decoration: underline;
}

/* Formulář */
.login-form-section {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: 40px auto;
}

.login-row {
  margin-bottom: 24px;
}

.login-row label {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1.1rem;
}

.login-row input {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-faded);
  outline: none;
}

.forgot-link {
  display: block;
  text-align: right;
  color: var(--text-muted);
  text-decoration: none;
  margin: 16px 0;
  font-size: 0.9rem;
}

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

/* Tlačítka */
.cta-btn {
  background: var(--accent-grad);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 99px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: 10px 0;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
}

.cta-btn.big {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  margin: 20px 0;
}

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

.login-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

/* Footer */
.footer {
  background: var(--surface);
  padding: 30px;
  margin-top: 60px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  text-align: center;
}

.legal-links {
  margin-bottom: 20px;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
}

.legal-links span {
  color: var(--border);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Rezervační karty - nový design */
.rezervace-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.rezervace-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  position: relative;
}

.rezervace-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity var(--transition);
}

.rezervace-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 2px 8px rgba(255,152,0,0.2);
}

.rezervace-card:hover::before {
  opacity: 1;
}

.rezervace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1rem 2rem;
  border-bottom: 1px solid var(--border);
}

.rezervace-date {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.date-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.date-value {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.rezervace-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-pending .status-dot {
  background: #ffc107;
}

.status-confirmed {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-confirmed .status-dot {
  background: #28a745;
}

.status-completed {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

.status-completed .status-dot {
  background: #6c757d;
  animation: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.rezervace-content {
  padding: 1.5rem 2rem;
}

.rezervace-service {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem 0;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rezervace-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.detail-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.rezervace-actions {
  padding: 1rem 2rem 1.5rem 2rem;
  display: flex;
  justify-content: flex-end;
}

.detail-btn {
  background: var(--accent-faded);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  outline: none;
}

.detail-btn:hover,
.detail-btn:focus {
  background: var(--accent);
  color: #000;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
}

.detail-btn svg {
  transition: transform var(--transition);
}

.detail-btn:hover svg {
  transform: translateX(2px);
}

/* Modal pro detail rezervace */
.reservation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalContentIn 0.3s ease-out 0.1s both;
}

@keyframes modalContentIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--accent-faded);
}

.modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all var(--transition);
  outline: none;
}

.modal-close:hover,
.modal-close:focus {
  color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.reservation-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section h3::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--accent-grad);
  border-radius: 2px;
}

.detail-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-item-full,
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  align-items: center;
}

.detail-item-full label,
.detail-item label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.detail-item-full span,
.detail-item span {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  text-align: center;
}

.reservation-id {
  font-family: 'Courier New', monospace;
  background: var(--accent-faded);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: var(--accent) !important;
  font-weight: 700 !important;
  display: inline-block;
  width: fit-content;
}

.price-highlight {
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}

.status-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  width: fit-content;
}

.status-čeká-na-potvrzení {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-potvrzeno {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-dokončeno {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}

/* Loading animace */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Status pro zrušené rezervace */
.status-cancelled {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-cancelled .status-dot {
  background: #dc3545;
  animation: none;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--surface2);
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  position: relative;
  text-align: center;
}

.services-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.notes {
  background: var(--surface2);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Faktura styly v modalu */
.faktura-btn {
  background: var(--accent-grad);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  outline: none;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
  width: 100%;
  max-width: 280px;
  margin: 0.5rem auto;
  text-align: center;
}

.faktura-btn:hover,
.faktura-btn:focus {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 152, 0, 0.4);
}

.faktura-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.faktura-btn svg {
  flex-shrink: 0;
}

.faktura-pending {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 500;
  background: rgba(108, 117, 125, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(108, 117, 125, 0.3);
  display: block;
  text-align: center;
  font-size: 0.95rem;
  margin: 0.5rem auto;
  max-width: 280px;
}

.faktura-section {
  background: rgba(255, 152, 0, 0.15);
  border: 2px solid rgba(255, 152, 0, 0.4);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.2);
}

.faktura-section label {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: center;
}

.faktura-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.faktura-section h3 {
  font-size: 1.2rem;
  color: var(--accent) !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.faktura-section h3::before {
  background: var(--accent) !important;
}

.notes {
  text-align: center;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-muted);
}

.services-list li {
  text-align: center;
}

/* Navigační menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: var(--accent);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--surface);
  z-index: 100;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px 40px;
  overflow-y: auto;
  backdrop-filter: blur(12px);
}

.mobile-menu-overlay.open {
  left: 0;
}

.profile-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.profile-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.profile-icon {
  width: 22px;
  height: 22px;
}

.profile-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.profile-toggle.active .profile-arrow {
  transform: rotate(180deg);
}

.mobile-profile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}

.mobile-profile-dropdown .nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-profile-dropdown .nav-link:hover {
  color: var(--accent);
}

.mobile-profile-dropdown .nav-link.locked {
  color: var(--text-muted);
  opacity: 0.5;
  cursor: not-allowed;
}

.locked-mobile-text {
  flex: 1;
}

.lock-ico {
  margin-left: auto;
  font-size: 0.9rem;
}

/* PC menu */
.nav-center {
  display: flex;
  gap: var(--nav-link-gap);
  align-items: center;
  flex-wrap: nowrap;
}

.nav-center .nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 10px 0;
  white-space: nowrap;
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-center {
    gap: 18px;
  }

  .nav-center .nav-link {
    font-size: 1rem;
  }
}

/* --- Naše práce (work page) --- */
.work-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 54px 20px;
  position: relative;
  overflow-x: hidden;
}

.work-page::before {
  content: '';
  position: absolute;
  inset: -40px -20px auto -20px;
  height: 220px;
  background:
    radial-gradient(700px 220px at 20% 10%, rgba(255, 152, 0, 0.18), transparent 60%),
    radial-gradient(600px 240px at 80% 20%, rgba(255, 152, 0, 0.10), transparent 62%);
  pointer-events: none;
  filter: blur(0px);
}

.work-section {
  margin-top: 26px;
}

.work-title {
  color: var(--accent);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 14px 0;
  text-align: center;
  text-shadow: 0 2px 18px #ff980066;
  letter-spacing: -0.02em;
}

.work-title::after {
  content: '';
  display: block;
  width: 84px;
  height: 3px;
  margin: 12px auto 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.9), transparent);
  opacity: 0.85;
}

.work-note {
  max-width: 820px;
  margin: 10px auto 16px auto;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 650;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 18px 0;
}

@media (max-width: 560px) {
  .work-filters {
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 2px 6px 2px;
    mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 10px), transparent);
  }
}

.work-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.work-filter-btn:hover,
.work-filter-btn:focus-visible {
  border-color: rgba(255, 152, 0, 0.55);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.work-filter-btn.is-active {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.22), rgba(255, 152, 0, 0.08));
  border-color: rgba(255, 152, 0, 0.65);
  box-shadow: 0 14px 28px rgba(255, 152, 0, 0.10), 0 12px 26px rgba(0, 0, 0, 0.22);
}

/* Modal (Naše práce) */
.work-modal-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 520px at 25% 25%, rgba(255, 152, 0, 0.12), transparent 60%),
    rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(6px);
  z-index: 1200; /* nad navbar (200) i mobilním menu */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  animation: workFadeIn 160ms ease-out;
}

/* Důležité: ať se modal neukáže defaultně (hidden musí vyhrát nad display:flex) */
.work-modal-overlay[hidden] {
  display: none !important;
}

.work-modal {
  width: min(1100px, 100%);
  max-height: min(84vh, 860px);
  overflow: auto;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(255, 152, 0, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 32%),
    var(--surface);
  border: 1px solid rgba(255, 152, 0, 0.22);
  border-radius: 18px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  transform-origin: 50% 10%;
  animation: workPopIn 190ms cubic-bezier(0.2, 0.9, 0.2, 1);
  position: relative;
}

.work-modal::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.55), rgba(255, 152, 0, 0.10), rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
}

.work-modal::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(900px 420px at 70% 0%, rgba(255, 152, 0, 0.09), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}

.work-modal:focus {
  outline: none;
}

/* nicer scrollbars (best effort) */
.work-modal {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 152, 0, 0.45) rgba(255, 255, 255, 0.06);
}

.work-modal::-webkit-scrollbar {
  width: 12px;
}

.work-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.work-modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 152, 0, 0.62), rgba(255, 152, 0, 0.28));
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.06);
}

.work-modal-top {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(255, 152, 0, 0.14), rgba(255, 152, 0, 0.04)),
    rgba(35, 38, 47, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.work-modal-top,
.work-modal-body {
  position: relative;
  z-index: 1;
}

.work-modal-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.work-modal-close {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 750;
  transition: all 0.25s ease;
}

.work-modal-close:hover,
.work-modal-close:focus-visible {
  border-color: rgba(255, 152, 0, 0.65);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
  outline: none;
}

.work-modal-body {
  padding: 18px;
}

/* modal hero */
.work-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 14px;
  margin-bottom: 14px;
}

.work-hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.20);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
  position: relative;
  height: 260px; /* pevná výška pro hero fotku v modalu */
}

.work-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.55)),
    radial-gradient(600px 220px at 20% 20%, rgba(255, 152, 0, 0.14), transparent 55%);
  pointer-events: none;
}

.work-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.work-hero-info {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.work-hero-sub {
  color: var(--text-muted);
  font-weight: 700;
  line-height: 1.45;
}

.work-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .work-hero {
    grid-template-columns: 1fr;
  }

  .work-hero-media img {
    height: 100%;
  }

  .work-hero-media {
    height: 220px;
  }
}

@keyframes workFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes workPopIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-modal-overlay,
  .work-modal {
    animation: none !important;
  }

  .work-card {
    transition: none !important;
  }
}

@media (max-width: 700px) {
  .work-modal-overlay {
    padding: 0;
  }

  .work-modal {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
}

.work-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  border-color: rgba(255, 152, 0, 0.55);
  outline: none;
}

.work-card.is-active {
  border-color: rgba(255, 152, 0, 0.85);
  box-shadow: 0 14px 36px rgba(255, 152, 0, 0.16), 0 14px 36px rgba(0, 0, 0, 0.32);
}

.work-card-media {
  height: 160px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.22), rgba(255, 152, 0, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.work-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.work-card:hover .work-card-media img,
.work-card:focus-visible .work-card-media img {
  transform: scale(1.06);
}

.work-card-body {
  padding: 16px 16px 18px 16px;
}

.work-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

.work-card-sub {
  font-size: 0.98rem;
  margin: 0 0 12px 0;
  color: var(--text-muted);
  line-height: 1.35;
}

.work-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 152, 0, 0.30);
  background: rgba(255, 152, 0, 0.10);
  color: var(--text);
  font-weight: 650;
  font-size: 0.88rem;
}

.work-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  padding: 20px;
}

.work-detail-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 18px;
  font-weight: 600;
}

.work-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.work-detail-head h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 900;
}

.work-detail-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.25s ease;
}

.work-detail-close:hover,
.work-detail-close:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

.work-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 18px;
}

.work-detail-desc {
  margin: 0;
  color: var(--text-muted);
  font-weight: 650;
  line-height: 1.55;
}

.work-detail-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.work-detail-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.20);
}

.work-detail-box h4 {
  margin: 0 0 10px 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-detail-box h4::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 152, 0, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.12);
}

.work-detail-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.work-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Před / Po rozdělení v modalu */
.work-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.work-before-after.is-single {
  grid-template-columns: 1fr;
}

.work-ba-col {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
  padding: 12px;
}

.work-ba-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--text);
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.work-ba-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.work-ba-dot.is-before {
  background: rgba(255, 152, 0, 0.85);
  box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.12);
}

.work-ba-dot.is-after {
  background: rgba(76, 175, 80, 0.85);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.14);
}

.work-ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.work-gallery-item {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.work-thumb {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.work-thumb:focus-visible {
  outline: none;
}

.work-thumb:focus-visible .work-gallery-item,
.work-gallery-item:focus-within {
  border-color: rgba(255, 152, 0, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.30);
}

.work-gallery-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 152, 0, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.work-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  cursor: zoom-in;
}

@media (max-width: 900px) {
  .work-gallery-item img {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .work-gallery-item img {
    height: 220px;
  }
}

/* Lightbox */
.work-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background:
    radial-gradient(900px 520px at 25% 25%, rgba(255, 152, 0, 0.14), transparent 60%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  animation: workFadeIn 160ms ease-out;
}

.work-lightbox-overlay[hidden] {
  display: none !important;
}

.work-lightbox {
  width: min(720px, calc(100vw - 36px));
  height: min(96vh, 1100px);
  max-height: min(96vh, 1100px);
  border-radius: 18px;
  border: 1px solid rgba(255, 152, 0, 0.22);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(255, 152, 0, 0.10), transparent 55%),
    rgba(18, 20, 26, 0.92);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.62);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: workPopIn 190ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.work-lightbox:focus {
  outline: none;
}

.work-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px;
  flex: 1;
  min-height: 0;
  z-index: 1;
}

.work-lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  background: rgba(0, 0, 0, 0.18);
}

.work-lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 2;
}

.work-lightbox-caption {
  color: var(--text);
  font-weight: 800;
}

.work-lightbox-count {
  color: var(--text-muted);
  font-weight: 700;
}

.work-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.60);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.work-lightbox-close:hover,
.work-lightbox-close:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(255, 152, 0, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
}

.work-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.60);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.work-lightbox-nav.is-prev {
  left: 12px;
}

.work-lightbox-nav.is-next {
  right: 12px;
}

.work-lightbox-nav:hover,
.work-lightbox-nav:focus-visible {
  outline: none;
  border-color: rgba(255, 152, 0, 0.55);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.44);
}

.work-lightbox-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

@media (max-width: 700px) {
  .work-lightbox-overlay {
    padding: 0;
  }

  .work-lightbox {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .work-lightbox-stage {
    height: calc(100vh - 62px);
  }

  .work-lightbox-nav {
    width: 42px;
    height: 52px;
  }
}

.work-gallery-caption {
  padding: 10px 12px;
  color: var(--text-muted);
  font-weight: 650;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .work-detail-grid {
    grid-template-columns: 1fr;
  }

  .work-before-after {
    grid-template-columns: 1fr;
  }

  .work-gallery-item img {
    height: 190px;
  }
}

.nav-center .nav-link:hover {
  color: var(--accent);
}

.nav-center .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: var(--hover-underline);
  background: var(--accent-grad);
  transition: width 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }
  
  .profile-dropdown {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
  
  .mobile-menu-overlay {
    display: none;
  }
}

.nav-center .nav-link:hover::after {
  width: 100%;
}

.profile-dropdown {
  position: relative;
}

.profile-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 15px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.profile-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.profile-btn svg {
  width: 22px;
  height: 22px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 250px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

.profile-dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background: var(--accent-faded);
  color: var(--accent);
}

.dropdown-content a.locked {
  color: var(--text-muted);
  opacity: 0.5;
  cursor: not-allowed;
}

.dropdown-content a.locked:hover {
  background: none;
  color: var(--text-muted);
}

.locked-badge {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}

.locked-text {
  flex: 1;
}

/* Dodatečné styly pro lepší funkčnost */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero wave efekt */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(45deg, var(--accent), var(--accent-light));
  opacity: 0.1;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Vylepšení modálů */
.modal,
[id*="modal"] {
  backdrop-filter: blur(8px);
}

/* Input focus states */
input:focus,
select:focus,
textarea:focus {
  transform: translateY(-1px);
}

/* Vylepšení tlačítek při načítání */
.cta-btn.loading::before {
  transform: translate(-50%, -50%) rotate(360deg);
}

/* Smooth transitions pro všechny prvky */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Vylepšení scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles pro přístupnost */
*:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cta-btn:focus,
.contact-btn:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* Vylepšení pro malé obrazovky */
@media (max-width: 360px) {
  .navbar {
    padding: 0 15px;
  }
  
  .brand {
    font-size: 1.5rem;
  }
  
  .brand-icon {
    width: 36px;
    height: 36px;
  }
  
  .hero h1,
  .kontakt-hero h1,
  .o-webu-hero h1,
  .garaz-hero h1,
  .platby-hero h1,
  .vernost-hero h1,
  .pravni-hero h1,
  .profil-hero h1 {
    font-size: 1.5rem;
  }
  
  .mobile-menu-overlay {
    padding: 80px 20px 20px 20px;
  }
}

/* Rozšířené responzivní styly */
@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .contact {
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .kontakt-hero h1,
  .o-webu-hero h1,
  .garaz-hero h1,
  .platby-hero h1,
  .vernost-hero h1,
  .pravni-hero h1 {
    font-size: 2.2rem;
  }

  .profil-hero h1 {
    font-size: 2.2rem;
  }

  .register-section,
  .profil-hero,
  .profil-info,
  .vernost-info,
  .vernost-stav,
  .vernost-kupony,
  .vernost-benefits-list,
  .pravni-info,
  .pravni-gdpr,
  .gdpr-section,
  .platby-info,
  .rezervace-form-section {
    margin: 10px;
    padding: 30px 20px;
  }

  .hero {
    padding: 60px 20px;
    margin: 10px;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services,
  .benefits,
  .moje-appka {
    margin: 40px 10px;
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .kontakt-hero h1,
  .o-webu-hero h1,
  .garaz-hero h1,
  .platby-hero h1,
  .vernost-hero h1,
  .pravni-hero h1,
  .profil-hero h1 {
    font-size: 1.8rem;
  }

  .register-section h2 {
    font-size: 2rem;
  }

  .hero p,
  .kontakt-hero p,
  .o-webu-hero p,
  .garaz-hero p,
  .platby-hero p,
  .vernost-hero p,
  .pravni-hero p {
    font-size: 1rem;
  }

  .cta-btn {
    width: 100%;
    margin: 10px 0;
  }

  .pravni-cta {
    padding: 0 10px;
  }

  .pravni-cta .cta-btn {
    display: block;
    margin: 10px 0;
  }
}

/* Vylepšení formuláře */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-row input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.login-row input:focus::placeholder {
  opacity: 0.5;
}

/* Animace pro tlačítka */
.cta-btn {
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s;
}

.cta-btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0s;
}

/* Validace formuláře */
.login-row input:invalid {
  border-color: #ff4646;
  box-shadow: none;
}

.login-row input:invalid:focus {
  box-shadow: 0 0 0 2px rgba(255, 70, 70, 0.2);
}

/* Loading stav pro tlačítka */
.cta-btn.loading {
  position: relative;
  pointer-events: none;
  color: transparent;
}

.cta-btn.loading::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s infinite linear;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero sekce pro různé stránky */
.hero-emoji {
  display: inline-block;
  width: 64px;
  height: 64px;
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.kontakt-hero,
.o-webu-hero,
.garaz-hero,
.platby-hero,
.vernost-hero,
.pravni-hero {
  text-align: center;
  padding: 60px 20px;
  margin: 20px auto;
  max-width: 800px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.kontakt-hero h1,
.o-webu-hero h1,
.garaz-hero h1,
.platby-hero h1,
.vernost-hero h1,
.pravni-hero h1 {
  color: var(--accent);
  font-size: 3rem;
  margin: 20px 0;
  text-shadow: 0 2px 18px #ff980066;
}

.kontakt-hero p,
.o-webu-hero p,
.garaz-hero p,
.platby-hero p,
.vernost-hero p,
.pravni-hero p {
  color: var(--text);
  font-size: 1.2rem;
  margin: 20px 0;
}

/* Contacts grid */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.contact {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact h2 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact .info {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-btn {
  background: var(--accent-grad);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 99px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin: 10px 0;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
}

/* Profil sekce */
.profil-hero,
.profil-info {
  background: var(--surface);
  margin: 20px auto;
  max-width: 800px;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profil-hero h1 {
  color: var(--accent);
  font-size: 3rem;
  text-align: center;
  margin: 20px 0;
  text-shadow: 0 2px 18px #ff980066;
}

/* Formuláře */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-faded);
  outline: none;
}

/* Registrace */
.register-section {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 40px auto;
}

.register-section h2 {
  color: var(--accent);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 2px 18px #ff980066;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Věrnostní program */
.vernost-info,
.vernost-stav,
.vernost-kupony,
.vernost-benefits-list {
  background: var(--surface);
  margin: 20px auto;
  max-width: 800px;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vernost-info h2,
.vernost-stav h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 20px;
}

.vernost-points {
  text-align: center;
  padding: 30px;
  background: var(--accent-faded);
  border-radius: 16px;
  border: 2px solid var(--accent);
}

/* Právní informace */
.pravni-info,
.pravni-gdpr {
  background: var(--surface);
  margin: 20px auto;
  max-width: 1000px;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pravni-info h2,
.pravni-gdpr h2 {
  color: var(--accent);
  font-size: 2rem;
  margin: 30px 0 20px 0;
}

.pravni-info ul,
.pravni-info ol,
.pravni-gdpr ul {
  color: var(--text);
  line-height: 1.6;
  margin: 15px 0;
  padding-left: 20px;
}

.pravni-info li,
.pravni-gdpr li {
  margin-bottom: 10px;
}

.pravni-cta {
  text-align: center;
  margin: 40px auto;
  max-width: 600px;
}

/* Garáž */
.garaz-form {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.garaz-list {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Platby a faktury */
.platby-info {
  background: var(--surface);
  margin: 20px auto;
  max-width: 1200px;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Rezervace */
.rezervace-hero {
  text-align: center;
  padding: 60px 20px;
  margin: 20px auto;
  max-width: 800px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rezervace-hero h1 {
  color: var(--accent);
  font-size: 3rem;
  margin: 20px 0;
  text-shadow: 0 2px 18px #ff980066;
}

.rezervace-form-section {
  background: var(--surface);
  margin: 20px auto;
  max-width: 800px;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Služby na hlavní stránce */
.services {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.benefits {
  background: var(--surface);
  margin: 60px auto;
  max-width: 1200px;
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.moje-appka {
  background: var(--surface);
  margin: 60px auto;
  max-width: 1200px;
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hero na hlavní stránce */
.hero {
  text-align: center;
  padding: 80px 20px;
  margin: 20px auto;
  max-width: 1200px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero h1 {
  color: var(--accent);
  font-size: 4rem;
  margin: 30px 0;
  text-shadow: 0 2px 18px #ff980066;
}

.hero p {
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 30px 0;
}

/* GDPR sekce */
.gdpr-section {
  background: var(--surface);
  margin: 20px auto;
  max-width: 1000px;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
  line-height: 1.6;
}

.gdpr-section h1,
.gdpr-section h2 {
  color: var(--accent);
  margin: 30px 0 20px 0;
}

.gdpr-section h1 {
  font-size: 2.5rem;
}

.gdpr-section h2 {
  font-size: 2rem;
}

.gdpr-section ul,
.gdpr-section ol {
  margin: 15px 0;
  padding-left: 20px;
}

.gdpr-section li {
  margin-bottom: 10px;
}

.gdpr-section a {
  color: var(--accent);
  text-decoration: none;
}

.gdpr-section a:hover {
  text-decoration: underline;
}

/* Opravím mobile menu overlay - změním .active na .open */
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Opravím hamburger animaci - změním .active na .open */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Opravím profile toggle */
.profile-toggle.open .profile-arrow {
  transform: rotate(180deg);
}

/* Přidám styly pro .hide a .show třídy */
.mobile-main-links.hide {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.28s ease;
}

.mobile-profile-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.28s ease;
}

/* Přidám body lock pro nav-open */
body.nav-open {
  overflow: hidden;
}

/* Responzivní breakpointy */
@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }
  
  .profile-dropdown {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none;
  }
  
  .mobile-menu-overlay {
    display: none !important;
  }
}

.profile-dropdown.open .dropdown-content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Backup pro případ, že .open nefunguje */
/*.profile-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}*/

.locked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 8px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2);
  animation: subtle-glow 3s ease-in-out infinite alternate;
}

.locked-badge::before {
  content: '🔒';
  font-size: 0.85rem;
  margin-right: 2px;
}

.locked-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.locked-badge:hover::after {
  left: 100%;
}

@keyframes subtle-glow {
  0% {
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.2);
  }
  100% {
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.35);
  }
}

/* Alternativní kompaktnější verze badge */
.locked-badge.compact {
  font-size: 0.7rem;
  padding: 4px 8px;
  margin: 4px 20px;
  border-radius: 12px;
  animation: none;
}

.locked-badge.compact::before {
  font-size: 0.75rem;
}

/* Badge pro mobilní menu - přizpůsobený styling */
.mobile-profile-dropdown .locked-badge {
  margin: 12px 0 8px 0;
  padding: 8px 16px;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 16px;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.legal-links a:hover {
  color: var(--accent);
  text-shadow: 0 1px 8px rgba(255, 152, 0, 0.3);
  transform: translateY(-1px);
}

/* Přidám i jemný underline efekt při hover */
.legal-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-grad);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.legal-links a:hover::after {
  width: 100%;
}

.forgot-link {
  display: block;
  text-align: right;
  color: var(--text-muted);
  text-decoration: none;
  margin: 16px 0;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
  width: fit-content;
  margin-left: auto;
}

.forgot-link:hover {
  color: var(--accent);
  text-shadow: 0 1px 8px rgba(255, 152, 0, 0.3);
  transform: translateY(-1px);
}

/* Specifický underline pro forgot-link */
.forgot-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-grad);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.forgot-link:hover::after {
  width: 100%;
}

.hero {
  text-align: center;
  padding: 80px 40px;
  margin: 30px auto;
  max-width: 1200px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0.8;
}

.hero h1 {
  color: var(--accent);
  font-size: 3.5rem;
  font-weight: 900;
  margin: 30px 0;
  text-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 30px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero .cta-btn {
  margin-top: 40px;
  padding: 18px 45px;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.4);
}

.hero .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 152, 0, 0.5);
}

.hero-emoji {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Services grid - kompletně nový design */
.services {
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}

.service-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  /* cursor: pointer; - ODSTRANĚNO */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Gradient pozadí pro service karty */
.whyus-bg1 { background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, var(--surface) 100%); }
.whyus-bg2 { background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, var(--surface) 100%); }
.whyus-bg3 { background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, var(--surface) 100%); }
.whyus-bg4 { background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, var(--surface) 100%); }
.whyus-bg5 { background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, var(--surface) 100%); }
.whyus-bg6 { background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, var(--surface) 100%); }
.whyus-bg7 { background: linear-gradient(135deg, rgba(96, 125, 139, 0.05) 0%, var(--surface) 100%); }
.whyus-bg8 { background: linear-gradient(135deg, rgba(139, 195, 74, 0.05) 0%, var(--surface) 100%); }

/* Benefits sekce */
.benefits {
  background: var(--surface);
  margin: 80px auto;
  max-width: 1200px;
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 152, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 152, 0, 0.1);
  transition: all 0.3s ease;
  text-align: left;
}

.benefit:hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  transform: translateX(5px);
}

.benefit svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.3));
}

.benefit-text {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
}

/* Kontakt sekce */
.contacts-grid {
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.contact {
  background: var(--surface);
  padding: 50px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact:hover::before {
  opacity: 1;
}

.contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact h2 {
  color: var(--accent);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.contact .info {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Appka sekce */
.moje-appka {
  background: var(--surface);
  margin: 80px auto;
  max-width: 1200px;
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.moje-appka::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
}

.moje-appka h2 {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 2px 15px rgba(255, 152, 0, 0.3);
}

.moje-appka-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.moje-appka-info p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.moje-appka-links {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.app-btn {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 15px 25px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 160px;
}

.app-btn:hover {
  background: var(--accent-faded);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.moje-appka-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.moje-appka-benefits li {
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 152, 0, 0.1);
}

.moje-appka-visual {
  text-align: center;
}

.app-preview-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.app-preview-img:hover {
  transform: scale(1.05);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    margin: 20px 10px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .services {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 10px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .benefits {
    margin: 60px 10px;
    padding: 40px 20px;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact {
    padding: 40px 20px;
  }
  
  .contacts-grid {
    margin: 60px 10px;
  }
  
  .moje-appka {
    margin: 60px 10px;
    padding: 40px 20px;
  }
  
  .moje-appka-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .moje-appka h2 {
    font-size: 2rem;
  }
  
  .app-btn {
    flex: 1;
    min-width: auto;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .cta-btn {
    width: 100%;
    padding: 16px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .benefit {
    padding: 15px;
    gap: 12px;
  }
  
  .moje-appka-links {
    flex-direction: column;
  }
  
  .contact h2 {
    font-size: 1.8rem;
  }
  
  .contact .info {
    font-size: 1rem;
  }
}

.benefits {
  background: var(--surface);
  margin: 80px auto;
  max-width: 1200px;
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
}

.benefits h2 {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 50px 0;
  text-shadow: 0 2px 15px rgba(255, 152, 0, 0.3);
  letter-spacing: -0.5px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Map status box */
.map-status-box {
  background: rgba(255, 152, 0, 0.05);
  border: 1px solid rgba(255, 152, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.map-location svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.3));
}

.map-service-status {
  font-size: 1.1rem;
  font-weight: 600;
}

.status-success {
  color: #4caf50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-error {
  color: #f44336;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-warning {
  color: #ff9800;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Map section */
.map-section {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 1; /* PŘIDÁNO - nižší než navbar */
  position: relative; /* PŘIDÁNO */
}

.map-container {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  z-index: 1; /* PŘIDÁNO - nižší než navbar */
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
}

#map {
  height: 500px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1 !important; /* PŘIDÁNO - vynucený nižší z-index pro Leaflet mapu */
  position: relative; /* PŘIDÁNO */
}

/* Leaflet specifické z-index opravy */
.leaflet-container {
  z-index: 1 !important; /* PŘIDÁNO */
}

.leaflet-control-container {
  z-index: 10 !important; /* PŘIDÁNO - ovládací prvky mapy */
}

.leaflet-popup {
  z-index: 50 !important; /* PŘIDÁNO - popupy v mapě */
}

/* Oranžový marker styling */
.custom-orange-marker {
  filter: drop-shadow(0 2px 8px rgba(255, 152, 0, 0.5));
}

/* Responzivní úpravy pro mapu */
@media (max-width: 768px) {
  .map-section {
    margin: 40px 10px;
  }
  
  .map-container {
    padding: 15px;
  }
  
  #map {
    height: 400px;
  }
  
  .map-status-box {
    padding: 20px;
    margin: 20px 0;
  }
  
  .map-location {
    font-size: 1rem;
  }
  
  .map-service-status {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #map {
    height: 300px;
  }
  
  .map-status-box {
    padding: 15px;
  }
  
  .map-location {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Ceník sekce */
.cenik-section {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* Toggle tlačítka */
.cenik-toggle {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.cenik-toggle-btn {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  font-family: var(--font-main);
}

.cenik-toggle-btn:hover {
  background: rgba(255, 152, 0, 0.1);
  transform: translateY(-2px);
}

.cenik-toggle-btn.active {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
  transform: translateY(-2px);
}

/* Slider wrapper */
.cenik-packages {
  margin: 60px 0;
}

.cenik-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.cenik-slider {
  flex: 1;
  max-width: 450px;
  display: flex;
  justify-content: center;
}

/* Šipky */
.cenik-arrow {
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cenik-arrow:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.cenik-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--border);
  color: var(--text-muted);
}

.cenik-arrow svg {
  width: 24px;
  height: 24px;
}

/* Karty balíčků */
.cenik-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cenik-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cenik-card:hover::before {
  transform: scaleX(1);
}

.cenik-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

/* Barevné varianty karet */
.cenik-card.orange {
  border-color: var(--accent);
}

.cenik-card.blue {
  border-color: #42A5F5;
}

.cenik-card.purple {
  border-color: #AB47BC;
}

/* Badge */
.cenik-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
  z-index: 2;
}

.cenik-card.blue .cenik-badge {
  background: #42A5F5;
  box-shadow: 0 4px 15px rgba(66, 165, 245, 0.4);
}

.cenik-card.purple .cenik-badge {
  background: #AB47BC;
  box-shadow: 0 4px 15px rgba(171, 71, 188, 0.4);
}

/* Nadpis karty */
.cenik-card h3 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
  margin: 30px 0 15px 0;
  line-height: 1.2;
}

.cenik-card.blue h3 {
  color: #42A5F5;
}

.cenik-card.purple h3 {
  color: #AB47BC;
}

/* Subtitle */
.cenik-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* Seznam funkcí */
.cenik-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  flex-grow: 1;
}

.cenik-features li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  text-align: left;
}

.cenik-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.cenik-card.blue .cenik-features li::before {
  color: #42A5F5;
}

.cenik-card.purple .cenik-features li::before {
  color: #AB47BC;
}

/* Cena */
.cenik-price-section {
  margin: 30px 0 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.cenik-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.cenik-card.blue .cenik-price {
  color: #42A5F5;
}

.cenik-card.purple .cenik-price {
  color: #AB47BC;
}

.price-detail {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cenik-old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.cenik-save {
  color: #4CAF50;
  font-size: 1rem;
  font-weight: 700;
}

/* Tlačítko */
.cenik-btn {
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}

/* Individuální nabídka */
.cenik-individual {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  margin-top: 80px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.cenik-individual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
}

.cenik-individual h3 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cenik-individual p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responzivní úpravy */
@media (max-width: 768px) {
  .cenik-section {
    margin: 40px 10px;
    padding: 0 10px;
  }
  
  .cenik-toggle {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cenik-toggle-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .cenik-slider-wrap {
    flex-direction: column;
    gap: 20px;
  }
  
  .cenik-arrow {
    width: 50px;
    height: 50px;
  }
  
  .cenik-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .cenik-card {
    padding: 30px 20px;
    min-height: auto;
  }
  
  .cenik-card h3 {
    font-size: 1.6rem;
  }
  
  .cenik-price {
    font-size: 2rem;
  }
  
  .cenik-individual {
    padding: 40px 20px;
    margin-top: 60px;
  }
  
  .cenik-individual h3 {
    font-size: 1.6rem;
  }
  
  .cenik-individual p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .cenik-card {
    padding: 25px 15px;
  }
  
  .cenik-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
    top: 15px;
    right: 15px;
  }
  
  .cenik-card h3 {
    font-size: 1.4rem;
    margin: 25px 0 10px 0;
  }
  
  .cenik-subtitle {
    font-size: 1rem;
  }
  
  .cenik-features li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .cenik-price {
    font-size: 1.8rem;
  }
  
  .price-detail {
    font-size: 1rem;
  }
  
  .cenik-individual {
    padding: 30px 15px;
  }
}

/* Kontakt sekce */
.kontakt-section {
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}

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

/* Kontakt karty */
.kontakt-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex; /* PŘIDÁNO */
  flex-direction: column; /* PŘIDÁNO */
  min-height: 600px; /* PŘIDÁNO - stejná minimální výška */
}

.kontakt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kontakt-card:hover::before {
  opacity: 1;
}

.kontakt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Kontakt card header */
.kontakt-card-header {
  text-align: center;
  margin-bottom: 35px;
  flex-shrink: 0; /* PŘIDÁNO */
}

.kontakt-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.email-icon {
  background: linear-gradient(135deg, var(--accent), #ffb74d);
  color: #fff;
}

.messenger-icon {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  color: #fff;
}

.kontakt-card h3 {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.kontakt-card-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Formulář */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-grow: 1; /* PŘIDÁNO */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  background: #2a2b2e; /* ZMĚNĚNO - tmavší pozadí */
  border: 2px solid #3a3b3e; /* ZMĚNĚNO - světlejší border */
  border-radius: 12px;
  padding: 15px 18px;
  color: #ffffff; /* ZMĚNĚNO - bílý text */
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
  outline: none;
  transform: translateY(-2px);
  background: #323338; /* ZMĚNĚNO - světlejší pozadí při focusu */
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888a8e; /* ZMĚNĚNO - světlejší placeholder */
  opacity: 1;
}

.form-group textarea {
  min-height: 120px;
  line-height: 1.6;
}

/* Kontakt tlačítka */
.kontakt-btn {
  background: var(--accent-grad);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
  text-decoration: none;
}

.kontakt-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

.kontakt-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.messenger-btn {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
  width: fit-content; /* PŘIDÁNO */
  margin: 0 auto; /* PŘIDÁNO - vycentruje tlačítko */
}

.messenger-btn:hover {
  box-shadow: 0 12px 35px rgba(24, 119, 242, 0.4);
}

/* Kontakt direct */
.kontakt-direct {
  text-align: center;
  margin-top: auto; /* ZMĚNĚNO - tlačí na konec */
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0; /* PŘIDÁNO */
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  text-decoration: underline;
  text-shadow: 0 1px 8px rgba(255, 152, 0, 0.3);
}

/* Messenger benefits */
.messenger-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 25px 0; /* SNÍŽENO */
  padding: 20px 0; /* SNÍŽENO */
  flex-grow: 1; /* PŘIDÁNO - vyplní dostupný prostor */
}

.messenger-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(24, 119, 242, 0.05);
  border: 1px solid rgba(24, 119, 242, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.messenger-benefit:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2);
  transform: translateX(5px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.messenger-card-footer {
  margin-top: auto; /* PŘIDÁNO - tlačí obsah dolů */
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center; /* PŘIDÁNO - vycentruje obsah */
}

.messenger-benefit span {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Messenger hours */
.messenger-hours {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  flex-shrink: 0; /* PŘIDÁNO */
}

.messenger-hours strong {
  color: var(--accent);
  font-weight: 700;
}

/* Success modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}

.success-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.success-modal .modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  animation: modalSlideIn 0.3s ease-out 0.1s both;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-icon {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 25px;
  animation: successBounce 0.6s ease-out 0.3s both;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-modal h2 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.success-modal p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* Responzivní úpravy */
@media (max-width: 1024px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .kontakt-section {
    margin: 40px 10px;
  }
}

@media (max-width: 768px) {
  .kontakt-card {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .kontakt-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .kontakt-card h3 {
    font-size: 1.6rem;
  }
  
  .messenger-benefits {
    gap: 15px;
  }
  
  .messenger-benefit {
    padding: 12px 15px;
  }
  
  .benefit-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .kontakt-card {
    padding: 25px 15px;
  }
  
  .kontakt-card-header {
    margin-bottom: 25px;
  }
  
  .kontakt-card h3 {
    font-size: 1.4rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
  }
  
  .kontakt-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .success-modal .modal-content {
    padding: 40px 25px;
  }
  
  .success-modal h2 {
    font-size: 1.6rem;
  }
  
  .success-icon {
    font-size: 3rem;
  }
}

/* FAQ sekce */
.faq-section {
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
}

/* FAQ kategorie */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.faq-category-btn {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.faq-category-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
  transform: translateY(-2px);
}

.faq-category-btn.active {
  background: var(--accent-grad);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
  transform: translateY(-2px);
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

/* FAQ položky */
.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 152, 0, 0.3);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.2);
}

.faq-item.open::before {
  opacity: 1;
}

/* FAQ otázky */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  line-height: 1.4;
}

.faq-question:hover {
  background: rgba(255, 152, 0, 0.05);
  color: var(--accent);
}

.faq-item.open .faq-question {
  color: var(--accent);
  background: rgba(255, 152, 0, 0.05);
}

.faq-question span {
  flex: 1;
  margin-right: 20px;
}

/* FAQ šipky */
.faq-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover .faq-arrow,
.faq-item.open .faq-arrow {
  color: var(--accent);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* FAQ odpovědi */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 152, 0, 0.02);
  border-top: 1px solid transparent;
  transition: all 0.4s ease;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 30px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 20px 30px 25px 30px;
  border-top-color: rgba(255, 152, 0, 0.1);
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-answer a:hover {
  text-decoration: underline;
  text-shadow: 0 1px 8px rgba(255, 152, 0, 0.3);
}

/* FAQ CTA sekce */
.faq-cta {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
}

.faq-cta h3 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.faq-cta p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 35px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-btn-outline:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
  .faq-section {
    margin: 40px 10px;
    padding: 0 10px;
  }
  
  .faq-categories {
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .faq-category-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 20px 20px;
    font-size: 1rem;
  }
  
  .faq-question span {
    margin-right: 15px;
  }
  
  .faq-answer {
    padding: 0 20px;
    font-size: 0.95rem;
  }
  
  .faq-item.open .faq-answer {
    padding: 15px 20px 20px 20px;
  }
  
  .faq-cta {
    padding: 40px 25px;
  }
  
  .faq-cta h3 {
    font-size: 1.6rem;
  }
  
  .faq-cta p {
    font-size: 1.1rem;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-cta-buttons .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .faq-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-category-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .faq-question {
    padding: 18px 15px;
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 15px;
    font-size: 0.9rem;
  }
  
  .faq-item.open .faq-answer {
    padding: 12px 15px 18px 15px;
  }
  
  .faq-cta {
    padding: 30px 20px;
  }
  
  .faq-cta h3 {
    font-size: 1.4rem;
  }
}

/* O webu sekce */
.o-webu-section {
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}

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

/* O webu karty */
.o-webu-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.o-webu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.o-webu-card:hover::before {
  opacity: 1;
}

.o-webu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Card headers */
.o-webu-card-header {
  text-align: center;
  margin-bottom: 35px;
  flex-shrink: 0;
}

.o-webu-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.features-icon {
  background: linear-gradient(135deg, var(--accent), #ffb74d);
  color: #fff;
}

.info-icon {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  color: #fff;
}

.o-webu-card h3 {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.info-card h3 {
  color: #1976d2;
}

.o-webu-card-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Features list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 152, 0, 0.05);
  border: 1px solid rgba(255, 152, 0, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ffb74d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Company info */
.company-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-grow: 1;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: rgba(25, 118, 210, 0.05);
  border: 1px solid rgba(25, 118, 210, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(25, 118, 210, 0.1);
  border-color: rgba(25, 118, 210, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
}

.info-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1976d2;
  font-weight: 700;
  font-size: 1.1rem;
}

.info-label i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.info-value {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
  padding-left: 32px;
}

/* Opening hours styling */
.opening-hours .info-value {
  padding-left: 32px;
}

.hours-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(25, 118, 210, 0.2);
}

.hours-row:last-child {
  border-bottom: none;
}

.days {
  font-weight: 600;
  color: var(--text);
}

.time {
  font-weight: 700;
  color: #1976d2;
  font-family: monospace;
  font-size: 1.1rem;
}

.hours-note {
  background: rgba(25, 118, 210, 0.1);
  border: 1px solid rgba(25, 118, 210, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Contact links */
.contact-link {
  color: #1976d2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link:hover {
  text-decoration: underline;
  text-shadow: 0 1px 8px rgba(25, 118, 210, 0.3);
  transform: translateX(3px);
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  margin-top: auto;
}

.contact-cta .cta-btn {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.contact-cta .cta-btn:hover {
  box-shadow: 0 12px 35px rgba(25, 118, 210, 0.4);
  transform: translateY(-3px);
}

/* Responzivní úpravy */
@media (max-width: 1024px) {
  .o-webu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .o-webu-section {
    margin: 40px 10px;
  }
}

@media (max-width: 768px) {
  .o-webu-card {
    padding: 30px 20px;
  }
  
  .o-webu-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .o-webu-card h3 {
    font-size: 1.6rem;
  }
  
  .feature-item {
    padding: 15px;
    gap: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .info-item {
    padding: 15px;
  }
  
  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .hours-note {
    font-size: 0.9rem;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .o-webu-card {
    padding: 25px 15px;
  }
  
  .o-webu-card-header {
    margin-bottom: 25px;
  }
  
  .o-webu-card h3 {
    font-size: 1.4rem;
  }
  
  .feature-item {
    padding: 12px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .info-item {
    padding: 12px;
  }
  
  .info-label {
    font-size: 1rem;
  }
  
  .info-value {
    font-size: 0.95rem;
    padding-left: 28px;
  }
  
  .hours-note {
    font-size: 0.85rem;
    padding: 10px;
  }
  
  .contact-cta .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
}

/* Profil hero sekce */
.profil-hero {
  text-align: center;
  padding: 80px 40px;
  margin: 30px auto;
  max-width: 1200px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.profil-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0.8;
}

.profil-hero h1 {
  color: var(--accent);
  font-size: 3.5rem;
  font-weight: 900;
  margin: 30px 0;
  text-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
  letter-spacing: -1px;
  line-height: 1.1;
}

.profil-hero p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 30px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

/* Profil info sekce */
.profil-info {
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
}

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

/* Profil formulář */
.profil-form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.profil-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profil-form-card:hover::before {
  opacity: 1;
}

.profil-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.profil-form-header {
  text-align: center;
  margin-bottom: 35px;
}

.profil-form-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb74d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.profil-form-header h3 {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.profil-form-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Profil form styling */
.profil-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.profil-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profil-row label {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.profil-row input {
  background: #2a2b2e;
  border: 2px solid #3a3b3e;
  border-radius: 12px;
  padding: 15px 18px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.profil-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
  outline: none;
  transform: translateY(-2px);
  background: #323338;
}

.profil-row input::placeholder {
  color: #888a8e;
  opacity: 1;
}

/* Profil akce karty */
.profil-actions-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.profil-actions-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profil-actions-card:hover::before {
  opacity: 1;
}

.profil-actions-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.profil-actions-header {
  text-align: center;
  margin-bottom: 25px;
}

.profil-actions-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.profil-actions-header h3 {
  color: #1976d2;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(25, 118, 210, 0.2);
}

.profil-actions-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Profil tlačítka */
.profil-btn {
  background: var(--accent-grad);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
  text-decoration: none;
  text-align: center;
}

.profil-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
}

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

.profil-btn.secondary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.profil-btn.blue {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.profil-btn.blue:hover {
  box-shadow: 0 12px 35px rgba(25, 118, 210, 0.4);
}

.profil-btn.danger {
  background: linear-gradient(135deg, #d32f2f, #f44336);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.3);
}

.profil-btn.danger:hover {
  box-shadow: 0 12px 35px rgba(211, 47, 47, 0.4);
}

/* Profil odkazy grid */
.profil-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.profil-link-item {
  background: rgba(25, 118, 210, 0.05);
  border: 1px solid rgba(25, 118, 210, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.profil-link-item:hover {
  background: rgba(25, 118, 210, 0.1);
  border-color: rgba(25, 118, 210, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.2);
}

.profil-link-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.profil-link-text {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1976d2;
}

/* Modal styly zůstávají stejné, ale s lepším vzhledem */
.profil-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

.profil-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.profil-modal .modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  animation: modalSlideIn 0.3s ease-out 0.1s both;
}

/* Responzivní úpravy */
@media (max-width: 1024px) {
  .profil-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .profil-info {
    margin: 40px 10px;
  }
}

@media (max-width: 768px) {
  .profil-hero {
    padding: 60px 20px;
    margin: 20px 10px;
  }
  
  .profil-hero h1 {
    font-size: 2.5rem;
  }
  
  .profil-form-card,
  .profil-actions-card {
    padding: 30px 20px;
  }
  
  .profil-form-icon,
  .profil-actions-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .profil-form-header h3,
  .profil-actions-header h3 {
    font-size: 1.6rem;
  }
  
  .profil-links-grid {
    grid-template-columns: 1fr;
  }
  
  .profil-link-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .profil-hero {
    padding: 50px 15px;
  }
  
  .profil-hero h1 {
    font-size: 2rem;
  }
  
  .profil-hero p {
    font-size: 1.1rem;
  }
  
  .profil-form-card,
  .profil-actions-card {
    padding: 25px 15px;
  }
  
  .profil-form-header h3,
  .profil-actions-header h3 {
    font-size: 1.4rem;
  }
  
  .profil-row input {
    padding: 12px 15px;
  }
  
  .profil-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .profil-modal .modal-content {
    padding: 40px 25px;
  }
}

/* Garáž sekce */
.garaz-section {
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}

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

/* Garáž karty */
.garaz-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.garaz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.garaz-card:hover::before {
  opacity: 1;
}

.garaz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Card headers */
.garaz-card-header {
  text-align: center;
  margin-bottom: 35px;
  flex-shrink: 0;
}

.garaz-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.cars-icon {
  background: linear-gradient(135deg, var(--accent), #ffb74d);
  color: #fff;
}

.add-car-icon {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: #fff;
}

.garaz-card h3 {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.add-car-card h3 {
  color: #4caf50;
}

.garaz-card-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Garáž seznam aut */
.garaz-cars-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.garaz-car-item {
  background: rgba(255, 152, 0, 0.05);
  border: 1px solid rgba(255, 152, 0, 0.1);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.garaz-car-item:hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
}

.garaz-car-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.garaz-car-title i {
  color: var(--accent);
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
}

.garaz-car-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.garaz-car-year {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1.1rem;
}

.garaz-car-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.garaz-car-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.garaz-car-detail-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.garaz-car-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.garaz-car-detail-value.empty {
  color: #ff5252;
  font-style: italic;
}

.garaz-car-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 152, 0, 0.2);
}

.garaz-action-btn {
  background: var(--accent-grad);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 100px;
  justify-content: center;
}

.garaz-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

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

.garaz-action-btn.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.garaz-action-btn.danger {
  background: linear-gradient(135deg, #d32f2f, #f44336);
}

.garaz-action-btn.danger:hover {
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Prázdný stav */
.garaz-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-style: italic;
}

.garaz-empty i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.5;
}

/* Formulář na přidání auta */
.garaz-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-grow: 1;
}

.garaz-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.garaz-form-row label {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

.garaz-form-row input,
.garaz-form-row select {
  background: #2a2b2e;
  border: 2px solid #3a3b3e;
  border-radius: 12px;
  padding: 15px 18px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.garaz-form-row input:focus,
.garaz-form-row select:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  outline: none;
  transform: translateY(-2px);
  background: #323338;
}

.garaz-form-row input::placeholder {
  color: #888a8e;
  opacity: 1;
}

.garaz-form-row select option {
  background: #2a2b2e;
  color: #ffffff;
}

.garaz-form-row input:disabled,
.garaz-form-row select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Garáž tlačítka */
.garaz-btn {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  text-decoration: none;
}

.garaz-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.garaz-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.garaz-btn.update {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

.garaz-btn.update:hover {
  box-shadow: 0 12px 35px rgba(25, 118, 210, 0.4);
}

/* Modální okno */
.garaz-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(30, 32, 50, 0.7);
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease-out;
}

.garaz-modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  animation: modalSlideIn 0.3s ease-out 0.1s both;
}

.garaz-modal-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.garaz-modal-msg {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.5;
}

.garaz-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.garaz-modal-btn {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 100px;
}

.garaz-modal-btn.primary {
  background: var(--accent-grad);
  color: #fff;
}

.garaz-modal-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.garaz-modal-btn.danger {
  background: linear-gradient(135deg, #d32f2f, #f44336);
  color: #fff;
}

.garaz-modal-btn.danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* Loading stav */
.garaz-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.garaz-loading i {
  font-size: 2rem;
  color: var(--accent);
  animation: spin 1s linear infinite;
}

/* Responzivní úpravy */
@media (max-width: 1024px) {
  .garaz-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .garaz-section {
    margin: 40px 10px;
  }
}

@media (max-width: 768px) {
  .garaz-card {
    padding: 30px 20px;
    min-height: auto;
  }
  
  .garaz-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .garaz-card h3 {
    font-size: 1.6rem;
  }
  
  .garaz-car-details {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .garaz-car-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .garaz-action-btn {
    width: 100%;
  }
  
  .garaz-form-row input,
  .garaz-form-row select {
    padding: 12px 15px;
  }
  
  .garaz-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .garaz-card {
    padding: 25px 15px;
  }
  
  .garaz-card-header {
    margin-bottom: 25px;
  }
  
  .garaz-card h3 {
    font-size: 1.4rem;
  }
  
  .garaz-car-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .garaz-car-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .garaz-car-name {
    font-size: 1.1rem;
  }
  
  .garaz-modal-content {
    padding: 40px 25px;
  }
  
  .garaz-modal-buttons {
    flex-direction: column;
  }
}

/* Editační modal styly */
.garaz-modal-content form {
  width: 100%;
  max-width: 500px;
}

.garaz-modal-content .garaz-form-row {
  margin-bottom: 1rem;
  text-align: left;
}

.garaz-modal-content .garaz-form-row label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

.garaz-modal-content .garaz-form-row input,
.garaz-modal-content .garaz-form-row select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #444;
  border-radius: 8px;
  background: #2a2d42;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.garaz-modal-content .garaz-form-row input:focus,
.garaz-modal-content .garaz-form-row select:focus {
  outline: none;
  border-color: #ff9800;
  background: #33364d;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.garaz-modal-content .garaz-form-row input::placeholder {
  color: #888;
}

.garaz-modal-content .garaz-form-row select option {
  background: #2a2d42;
  color: #fff;
}

/* Vylepšené modal tlačítka */
.garaz-modal-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  min-width: 120px;
  justify-content: center;
}

.garaz-modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.garaz-modal-btn.primary {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
}

.garaz-modal-btn.primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #f57c00, #e65100);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.garaz-modal-btn.secondary {
  background: #444;
  color: white;
}

.garaz-modal-btn.secondary:hover:not(:disabled) {
  background: #555;
  transform: translateY(-2px);
}

.garaz-modal-btn.danger {
  background: linear-gradient(135deg, #ff5252, #d32f2f);
  color: white;
}

.garaz-modal-btn.danger:hover:not(:disabled) {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
}

/* Responsivní modal */
@media (max-width: 768px) {
  .garaz-modal-content {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
  
  .garaz-modal-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .garaz-modal-btn {
    width: 100%;
  }
}

    .status-overdue {
      background: rgba(244, 67, 54, 0.2);
      color: #f44336;
      border: 1px solid rgba(244, 67, 54, 0.3);
    }

    .status-cancelled {
      background: rgba(158, 158, 158, 0.2);
      color: #9e9e9e;
      border: 1px solid rgba(158, 158, 158, 0.3);
    }

    /* Speciální styl pro zaplacené platby */
    .payment-item.payment-completed {
      background: rgba(76, 175, 80, 0.08);
      border-color: #4caf50;
      opacity: 0.85;
    }

    .payment-item.payment-completed:hover {
      background: rgba(76, 175, 80, 0.12);
      box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
      opacity: 1;
    }

    .payment-item.payment-completed .payment-id {
      background: rgba(76, 175, 80, 0.2);
      border-color: rgba(76, 175, 80, 0.3);
      color: #4caf50;
    }

    .payment-item.payment-completed .payment-amount {
      color: #4caf50;
    }
        .payment-status {
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .status-completed {
      background: rgba(76, 175, 80, 0.2);
      color: #4caf50;
      border: 1px solid rgba(76, 175, 80, 0.3);
    }

    .status-waiting_approval {
      background: rgba(255, 193, 7, 0.2);
      color: #ffc107;
      border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .status-waiting_service {
      background: rgba(33, 150, 243, 0.2);
      color: #2196f3;
      border: 1px solid rgba(33, 150, 243, 0.3);
    }

    .status-cancelled {
      background: rgba(158, 158, 158, 0.2);
      color: #9e9e9e;
      border: 1px solid rgba(158, 158, 158, 0.3);
    }

/* Mobilní menu overlay - OPRAVENO pro zprava doleva */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%; /* ZMĚNĚNO z left: -100% na right: -100% */
  width: 100%;
  height: 100vh;
  background: var(--surface);
  z-index: 150;
  transition: right 0.3s ease; /* ZMĚNĚNO z left na right */
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px 40px;
  overflow-y: auto;
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--border); /* ZMĚNĚNO z border-right na border-left */
}

.mobile-menu-overlay.open {
  right: 0; /* ZMĚNĚNO z left: 0 na right: 0 */
}

/* Hamburger animace - vylepšeno */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 250; /* PŘIDÁNO - vyšší než overlay */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger:hover span {
  background: var(--accent);
}

/* Hamburger animace při otevření */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--accent);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--accent);
}

/* Mobile main links styling */
.mobile-main-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-main-links .nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-main-links .nav-link:hover,
.mobile-main-links .nav-link.active {
  color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  transform: translateX(-5px);
}

/* Profile toggle v mobile menu */
.profile-toggle {
  background: var(--surface2);
  border: 2px solid var(--border);
  color: var(--text);
  padding: 18px 20px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  width: 100%;
}

.profile-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 152, 0, 0.05);
}

.profile-toggle.open {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
}

.profile-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.profile-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.profile-toggle.open .profile-arrow {
  transform: rotate(180deg);
}

/* Mobile profile dropdown */
.mobile-profile-dropdown {
  display: none;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin-top: 0;
  background: var(--surface2);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
}

.mobile-profile-dropdown.show {
  display: flex;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-profile-dropdown .nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-profile-dropdown .nav-link:hover {
  color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
}

.mobile-profile-dropdown .nav-link.locked {
  color: var(--text-muted);
  opacity: 0.6;
  cursor: not-allowed;
}

.mobile-profile-dropdown .nav-link.locked:hover {
  color: var(--text-muted);
  background: none;
  border-color: transparent;
}

.locked-mobile-text {
  flex: 1;
}

.lock-ico {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Body lock při otevřeném menu */
body.nav-open {
  overflow: hidden;
}

/* Navbar zůstává na vrchu */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  backdrop-filter: blur(12px);
}

/* Responzivní breakpointy */
@media (max-width: 1024px) {
  .nav-center {
    display: none !important;
  }
  
  .profile-dropdown {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none !important;
  }
  
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Overlay backdrop */
.mobile-menu-overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: -1;
}

.mobile-menu-overlay.open::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobilní menu na menších obrazovkách */
@media (max-width: 768px) {
  .mobile-menu-overlay {
    width: 85%; /* Na mobilu zabere jen 85% šířky */
    padding: 100px 30px 30px 30px;
  }
  
  .mobile-main-links .nav-link {
    font-size: 1.3rem;
    padding: 12px 16px;
  }
  
  .profile-toggle {
    font-size: 1.2rem;
    padding: 15px 16px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-overlay {
    width: 90%;
    padding: 76px 16px 16px 16px;
  }
  
  .mobile-main-links .nav-link {
    font-size: 1.2rem;
    padding: 10px 14px;
  }
  
  .profile-toggle {
    font-size: 1.1rem;
    padding: 12px 14px;
  }
}

/* Mobile main links styling - VYLEPŠENO */
.mobile-main-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  order: 1;
  /* vyšší max-height zabrání překrytí dalších prvků (např. Profil tlačítka) na některých iOS webview */
  max-height: 2000px;
}

@media (max-width: 480px) {
  .mobile-main-links {
    gap: 14px;
    margin-bottom: 22px;
  }

  .mobile-main-links .nav-link {
    font-size: 1.15rem;
    padding: 10px 14px;
    border-radius: 12px;
  }

  .profile-toggle {
    font-size: 1.05rem;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .mobile-profile-dropdown.show {
    padding: 14px;
    gap: 10px;
  }

  .mobile-profile-dropdown .nav-link {
    font-size: 1.05rem;
    padding: 10px 12px;
  }
}

@media (max-width: 360px), (max-height: 700px) {
  .mobile-menu-overlay {
    padding-top: 68px;
  }
}

.mobile-main-links.hide {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-main-links .nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.mobile-main-links .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-main-links .nav-link:hover::before {
  left: 100%;
}

.mobile-main-links .nav-link:hover,
.mobile-main-links .nav-link.active {
  color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  transform: translateX(-8px) scale(1.02);
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.2);
}

/* Profile toggle v mobile menu - VYLEPŠENO */
.profile-toggle {
  background: var(--surface2);
  border: 2px solid var(--border);
  color: var(--text);
  padding: 18px 20px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  order: 2;
  position: relative;
  overflow: hidden;
}

.profile-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.15), transparent);
  transition: left 0.6s ease;
}

.profile-toggle:hover::before {
  left: 100%;
}

/* Když je profil otevřený, přesune se nahoru s cool animací */
.profile-toggle.open {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
  order: -1;
  margin-bottom: 30px;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.3);
  animation: profileToggleActivate 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes profileToggleActivate {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: none;
  }
  50% {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 152, 0, 0.4);
  }
  100% {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.3);
  }
}

.profile-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 152, 0, 0.05);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.2);
}

.profile-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-toggle.open .profile-icon {
  transform: rotate(360deg) scale(1.1);
}

.profile-arrow {
  margin-left: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.profile-toggle.open .profile-arrow {
  transform: rotate(180deg) scale(1.1);
}

/* Mobile profile dropdown - SUPER SMOOTH ANIMACE */
.mobile-profile-dropdown {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin-top: 0;
  margin-bottom: 30px;
  background: var(--surface2);
  border-radius: 12px;
  border: 1px solid var(--border);
  order: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 rgba(255, 152, 0, 0);
}

.mobile-profile-dropdown.show {
  display: flex;
  gap: 15px;
  padding: 20px;
  max-height: 600px;
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.15);
  animation: dropdownSlideIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes dropdownSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
    max-height: 0;
    padding: 0 20px;
  }
  30% {
    opacity: 0.3;
    transform: translateY(-15px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 600px;
    padding: 20px;
  }
}

/* Staggered animace pro dropdown odkazy */
.mobile-profile-dropdown .nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-20px);
  position: relative;
  overflow: hidden;
}

.mobile-profile-dropdown.show .nav-link {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delay pro odkazy */
.mobile-profile-dropdown.show .nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-profile-dropdown.show .nav-link:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-profile-dropdown.show .nav-link:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-profile-dropdown.show .nav-link:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-profile-dropdown.show .nav-link:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-profile-dropdown.show .nav-link:nth-child(6) {
  transition-delay: 0.6s;
}

.mobile-profile-dropdown.show .nav-link:nth-child(7) {
  transition-delay: 0.7s;
}

.mobile-profile-dropdown .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-profile-dropdown .nav-link:hover::before {
  left: 100%;
}

.mobile-profile-dropdown .nav-link:hover {
  color: var(--accent);
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.2);
}

.mobile-profile-dropdown .nav-link.locked {
  color: var(--text-muted);
  opacity: 0.6;
  cursor: not-allowed;
}

.mobile-profile-dropdown .nav-link.locked:hover {
  color: var(--text-muted);
  background: none;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.locked-mobile-text {
  flex: 1;
  transition: transform 0.3s ease;
}

.mobile-profile-dropdown .nav-link:hover .locked-mobile-text {
  transform: translateX(2px);
}

.lock-ico {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.mobile-profile-dropdown .nav-link:hover .lock-ico {
  transform: rotate(5deg) scale(1.1);
}

/* Finální zmenšení pro malé mobily – musí být až za base styly, aby to nepřebila pozdější pravidla */
@media (max-width: 480px) {
  .mobile-menu-overlay {
    padding: 76px 16px 16px 16px;
  }

  .mobile-menu-overlay .mobile-main-links {
    gap: 14px;
    margin-bottom: 22px;
  }

  .mobile-menu-overlay .mobile-main-links .nav-link {
    font-size: 1.12rem;
    padding: 10px 14px;
  }

  .mobile-menu-overlay .profile-toggle {
    font-size: 1.05rem;
    padding: 12px 14px;
    margin-bottom: 14px;
  }

  .mobile-menu-overlay .mobile-profile-dropdown.show {
    padding: 14px;
    gap: 10px;
  }

  .mobile-menu-overlay .mobile-profile-dropdown .nav-link {
    font-size: 1.02rem;
    padding: 10px 12px;
  }
}

@media (max-width: 360px), (max-height: 700px) {
  .mobile-menu-overlay {
    padding-top: 68px;
  }
}

/* Hamburger vylepšení */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--accent);
  animation: hamburgerLine1 0.3s ease;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  animation: hamburgerLine2 0.3s ease;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: var(--accent);
  animation: hamburgerLine3 0.3s ease;
}

@keyframes hamburgerLine1 {
  0% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(0deg) translate(0, 0) scale(1.1); }
  100% { transform: rotate(45deg) translate(5px, 5px); }
}

@keyframes hamburgerLine2 {
  0% { opacity: 1; transform: scaleX(1); }
  50% { opacity: 0.5; transform: scaleX(0.5); }
  100% { opacity: 0; transform: scaleX(0); }
}

@keyframes hamburgerLine3 {
  0% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(0deg) translate(0, 0) scale(1.1); }
  100% { transform: rotate(-45deg) translate(7px, -6px); }
}

/* PC Profile dropdown také vylepšeno */
.dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 0;
  min-width: 250px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 10px;
  overflow: hidden;
}

.profile-dropdown.open .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: pcDropdownIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pcDropdownIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-10px);
}

.profile-dropdown.open .dropdown-content a {
  opacity: 1;
  transform: translateX(0);
}

.profile-dropdown.open .dropdown-content a:nth-child(1) { transition-delay: 0.05s; }
.profile-dropdown.open .dropdown-content a:nth-child(2) { transition-delay: 0.1s; }
.profile-dropdown.open .dropdown-content a:nth-child(3) { transition-delay: 0.15s; }
.profile-dropdown.open .dropdown-content a:nth-child(4) { transition-delay: 0.2s; }
.profile-dropdown.open .dropdown-content a:nth-child(5) { transition-delay: 0.25s; }
.profile-dropdown.open .dropdown-content a:nth-child(6) { transition-delay: 0.3s; }
.profile-dropdown.open .dropdown-content a:nth-child(7) { transition-delay: 0.35s; }

.dropdown-content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.dropdown-content a:hover::before {
  left: 100%;
}

.dropdown-content a:hover {
  background: var(--accent-faded);
  color: var(--accent);
  transform: translateX(5px) scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

/* === REZERVACE STYLY === */

/* Rezervace sekce */
.rezervace-info {
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}

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

/* Rezervace formulář karta */
.rezervace-form-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.rezervace-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rezervace-form-card:hover::before {
  opacity: 1;
}

.rezervace-form-header {
  text-align: center;
  margin-bottom: 35px;
}

.rezervace-form-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb74d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.rezervace-form-header h3 {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(255, 152, 0, 0.2);
}

.rezervace-form-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Step header */
.rezervace-step-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 152, 0, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 152, 0, 0.1);
}

.rezervace-step-header h4 {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rezervace-step-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
}

/* Form styling */
.rezervace-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row:last-child {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--accent);
  width: 16px;
  text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #2a2b2e;
  border: 2px solid #3a3b3e;
  border-radius: 12px;
  padding: 15px 18px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
  outline: none;
  transform: translateY(-2px);
  background: #323338;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888a8e;
  opacity: 1;
}

.form-group small {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 5px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Auto select button */
.auto-select-btn {
  background: #2a2b2e;
  border: 2px solid #3a3b3e;
  border-radius: 12px;
  padding: 15px 18px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}

.auto-select-btn:hover,
.auto-select-btn:focus {
  border-color: var(--accent);
  background: #323338;
  transform: translateY(-2px);
}

.auto-select-btn i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.auto-select-btn.active i {
  transform: rotate(180deg);
}

/* Auto dropdown */
.auto-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #23243b;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}

.auto-dropdown-item {
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auto-dropdown-item:hover {
  background: rgba(255, 152, 0, 0.1);
  color: var(--accent);
}

.auto-dropdown-item:last-child {
  border-bottom: none;
}

.auto-dropdown-empty {
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
}

.auto-dropdown-action {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

/* Buttons */
.rezervace-buttons {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-top: 30px;
}

/* Summary styling */
.rezervace-summary {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.summary-section {
  background: rgba(255, 152, 0, 0.05);
  border: 1px solid rgba(255, 152, 0, 0.1);
  border-radius: 15px;
  padding: 20px;
}

.summary-section h5 {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-row label {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.summary-input,
.summary-select {
  background: #2a2b2e;
  border: 2px solid #3a3b3e;
  border-radius: 8px;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.summary-input:focus,
.summary-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.1);
  outline: none;
}

.price-row {
  border-top: 2px solid rgba(255, 152, 0, 0.3);
  padding-top: 15px;
  margin-top: 15px;
}

.summary-price {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 800;
  text-align: right;
}

/* Code sections */
.code-section .summary-section {
  background: rgba(25, 118, 210, 0.05);
  border-color: rgba(25, 118, 210, 0.1);
}

.code-section h5 {
  color: #1976d2;
}

.code-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.code-input {
  flex: 1;
  background: #2a2b2e;
  border: 2px solid #3a3b3e;
  border-radius: 8px;
  padding: 12px 15px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.code-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.1);
  outline: none;
}

.code-input.green:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

.code-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

.code-btn:hover {
  background: #e68900;
  transform: translateY(-2px);
}

.code-btn.green {
  background: #4caf50;
}

.code-btn.green:hover {
  background: #45a049;
}

.code-message {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Success content */
.success-content {
  text-align: center;
  padding: 40px 20px;
}

.success-content .success-icon {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 25px;
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-content h3 {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 20px 0;
}

.success-content p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

/* Info karta */
.rezervace-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rezervace-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rezervace-info-card:hover::before {
  opacity: 1;
}

.rezervace-info-header {
  text-align: center;
}

.rezervace-info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 8px 30px rgba(25, 118, 210, 0.3);
  animation: float 3s ease-in-out infinite;
}

.rezervace-info-header h3 {
  color: #1976d2;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 10px rgba(25, 118, 210, 0.2);
}

.rezervace-info-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Tips */
.rezervace-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(25, 118, 210, 0.05);
  border: 1px solid rgba(25, 118, 210, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tip-item:hover {
  background: rgba(25, 118, 210, 0.1);
  border-color: rgba(25, 118, 210, 0.3);
  transform: translateY(-2px);
}

.tip-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.tip-content h4 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.tip-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

/* Contact help */
.contact-help {
  background: rgba(25, 118, 210, 0.05);
  border: 1px solid rgba(25, 118, 210, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}

.contact-help h4 {
  color: #1976d2;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-help p {
  color: var(--text-muted);
  margin: 0 0 20px 0;
  font-size: 1rem;
}

/* Error states */
.input-error {
  border-color: #ff5252 !important;
  box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.1) !important;
}

/* Responzivní úpravy */
@media (max-width: 1024px) {
  .rezervace-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .rezervace-info {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .rezervace-form-card,
  .rezervace-info-card {
    padding: 30px 20px;
  }
  
  .rezervace-form-icon,
  .rezervace-info-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .rezervace-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .summary-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .code-input-group {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .rezervace-form-card,
  .rezervace-info-card {
    padding: 25px 15px;
  }
  
  .rezervace-step-header {
    padding: 15px;
  }
  
  .rezervace-step-header h4 {
    font-size: 1.2rem;
  }
  
  .tip-item {
    padding: 15px;
  }
  
  .tip-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Auto select button - OPRAVENO */
.auto-select-btn {
  background: #2a2b2e;
  border: 2px solid #3a3b3e;
  border-radius: 12px;
  padding: 15px 18px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  position: relative; /* PŘIDÁNO */
}

.auto-select-btn:hover,
.auto-select-btn:focus {
  border-color: var(--accent);
  background: #323338;
  transform: translateY(-2px);
}

.auto-select-btn i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.auto-select-btn.active i {
  transform: rotate(180deg);
}

/* Auto dropdown - OPRAVENO */
.auto-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #23243b;
  border: 2px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  z-index: 1000; /* ZVÝŠENO */
  max-height: 250px;
  overflow-y: auto;
  margin-top: 5px; /* PŘIDÁNO */
}

.auto-dropdown-item {
  padding: 15px 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1.4;
}

.auto-dropdown-item:hover {
  background: rgba(255, 152, 0, 0.2);
  color: var(--accent);
  border-left: 4px solid var(--accent);
}

.auto-dropdown-item:last-child {
  border-bottom: none;
}

.auto-dropdown-empty {
  padding: 25px 20px;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

.auto-dropdown-action {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auto-dropdown-action:hover {
  background: #e68900;
  transform: translateY(-2px);
}

/* Form group pro auto select - PŘIDÁNO */
#auto-group {
  position: relative;
}

#auto-group .form-group {
  position: relative;
}

/* === KALENDÁŘ STYLY === */

/* Full width form group */
.form-group.full-width {
  grid-column: 1 / -1;
}

/* Calendar container */
.calendar-container {
  background: #25263a;
  border: 2px solid #3a3b3e;
  border-radius: 16px;
  padding: 25px;
  margin-top: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.calendar-container:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

/* Calendar header */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #3a3b3e;
}

.calendar-header h4 {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  flex: 1;
}

.calendar-nav {
  background: var(--accent-faded);
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.calendar-nav:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.calendar-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Calendar grid */
.calendar-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.weekday {
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  padding: 10px 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

/* Calendar day cells */
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  background: #2a2d42;
  color: var(--text);
}

.calendar-day:hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  transform: scale(1.05);
}

/* Day states */
.calendar-day.other-month {
  color: #555;
  background: #1e1f2e;
  cursor: not-allowed;
}

.calendar-day.other-month:hover {
  background: #1e1f2e;
  border-color: transparent;
  transform: none;
}

.calendar-day.past {
  color: #666;
  background: #222334;
  cursor: not-allowed;
  opacity: 0.5;
}

.calendar-day.past:hover {
  background: #222334;
  border-color: transparent;
  transform: none;
}

.calendar-day.today {
  background: rgba(255, 152, 0, 0.2);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 800;
}

.calendar-day.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.calendar-day.selected:hover {
  transform: scale(1.02);
}

/* Availability indicators */
.calendar-day.available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 1px 3px rgba(76, 175, 80, 0.5);
}

.calendar-day.busy::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5252;
  box-shadow: 0 1px 3px rgba(255, 82, 82, 0.5);
}

.calendar-day.limited::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc107;
  box-shadow: 0 1px 3px rgba(255, 193, 7, 0.5);
}

/* Calendar loading */
.calendar-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(37, 38, 58, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--accent);
  font-weight: 600;
  gap: 15px;
  backdrop-filter: blur(4px);
}

.calendar-loading i {
  font-size: 2rem;
}

/* Time slots container */
.time-slots-container {
  margin-top: 30px;
  padding: 25px;
  background: #25263a;
  border: 2px solid #3a3b3e;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.time-slots-container:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.time-slots-container h5 {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-slots-container h5 span {
  color: var(--text);
  font-weight: 600;
}

/* Time slots grid */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.time-slot {
  background: #2a2d42;
  border: 2px solid #3a3b3e;
  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Courier New', monospace;
}

.time-slot:hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.3);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.time-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.time-slot.selected:hover {
  transform: translateY(-1px);
}

.time-slot.unavailable {
  background: #1e1f2e;
  border-color: #2a2b2e;
  color: #666;
  cursor: not-allowed;
  opacity: 0.5;
}

.time-slot.unavailable:hover {
  background: #1e1f2e;
  border-color: #2a2b2e;
  color: #666;
  transform: none;
  box-shadow: none;
}

/* Premium time slots */
.time-slot.premium {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-color: var(--accent);
  color: #fff;
}

.time-slot.premium::after {
  content: '⭐';
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 0.8rem;
}

.time-slot.premium:hover {
  background: linear-gradient(135deg, #f57c00, #e65100);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.time-slot.premium.selected {
  background: linear-gradient(135deg, #e65100, #bf360c);
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.6);
}

/* Calendar legend */
.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 152, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 152, 0, 0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot.available { background: #4caf50; }
.legend-dot.limited { background: #ffc107; }
.legend-dot.busy { background: #ff5252; }

/* Responzivní úpravy */
@media (max-width: 768px) {
  .calendar-container,
  .time-slots-container {
    padding: 20px 15px;
  }
  
  .calendar-header h4 {
    font-size: 1.2rem;
  }
  
  .calendar-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .calendar-day {
    font-size: 0.9rem;
  }
  
  .time-slots {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
  }
  
  .time-slot {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
  
  .calendar-legend {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .calendar-container,
  .time-slots-container {
    padding: 15px 10px;
  }
  
  .calendar-header {
    margin-bottom: 15px;
  }
  
  .calendar-days {
    gap: 6px;
  }
  
  .calendar-day {
    font-size: 0.8rem;
  }
  
  .time-slots {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .time-slot {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
  
  .weekday {
    font-size: 0.8rem;
    padding: 8px 3px;
  }
}

/* Zakázané časové sloty */
.time-slot.unavailable.disabled {
  background-color: #2a2a2a !important;
  color: #666 !important;
  border: 1px solid #444 !important;
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important; /* Zabráni jakémukoliv kliknutí */
}

.time-slot.unavailable.disabled:hover {
  background-color: #2a2a2a !important;
  color: #666 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Zpráva o nedostupnosti */
.no-slots-message {
  grid-column: 1 / -1;
  padding: 20px;
  text-align: center;
  color: #ff5252;
  background-color: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.3);
  border-radius: 8px;
  margin-top: 15px;
}

.no-slots-message i {
  font-size: 1.2em;
  margin-right: 8px;
}

/* Vylepšené dostupné časy */
.time-slot:not(.unavailable):not(.disabled) {
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot:not(.unavailable):not(.disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.time-slot.premium:not(.unavailable):not(.disabled) {
  border-color: #ffb300;
  background-color: rgba(255, 179, 0, 0.1);
}

.time-slot.premium:not(.unavailable):not(.disabled):hover {
  background-color: rgba(255, 179, 0, 0.2);
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
}

/* Vybraný čas */
.time-slot.selected {
  background-color: var(--accent) !important;
  color: white !important;
  border-color: var(--accent) !important;
}

.time-slot.selected:hover {
  background-color: var(--accent) !important;
  transform: none !important;
}

/* Základní time-slot styl */
.time-slot {
  padding: 12px 16px;
  background-color: #3a3a3a;
  border: 1px solid #555;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

/* Dostupné časy */
.time-slot:not(.unavailable):not(.disabled) {
  background-color: #4a4a4a;
  border-color: #666;
}

.time-slot:not(.unavailable):not(.disabled):hover {
  background-color: #5a5a5a;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Prémiové časy */
.time-slot.premium:not(.unavailable):not(.disabled) {
  border-color: #ffb300;
  background-color: rgba(255, 179, 0, 0.1);
}

.time-slot.premium:not(.unavailable):not(.disabled):hover {
  background-color: rgba(255, 179, 0, 0.2);
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
}

/* ZAKÁZANÉ časy - nejvyšší priorita */
.time-slot.unavailable.disabled {
  background-color: #2a2a2a !important;
  color: #666 !important;
  border: 1px solid #444 !important;
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.time-slot.unavailable.disabled:hover {
  background-color: #2a2a2a !important;
  color: #666 !important;
  border-color: #444 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Vybraný čas */
.time-slot.selected {
  background-color: var(--accent) !important;
  color: white !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.3);
}

.time-slot.selected:hover {
  background-color: var(--accent) !important;
  transform: none !important;
}

.loading-slots {
  text-align: center;
  padding: 20px;
  color: #ff9800;
  font-size: 1.1em;
  grid-column: 1 / -1;
}

.loading-slots:before {
  content: '';
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-right: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.time-slot:not(.unavailable):not(.disabled) {
  background-color: #4a4a4a;
  border-color: #666;
  color: #fff;
}

.time-slot:not(.unavailable):not(.disabled):hover {
  background-color: #5a5a5a;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Přidej styl pro buffer blocked časy */
.time-slot.buffer-blocked {
  background-color: #3a2a2a !important;
  color: #888 !important;
  border: 1px solid #555 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  pointer-events: none !important;
}

.time-slot.buffer-blocked:hover {
  background-color: #3a2a2a !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Speciální styl pro víkendy */
.calendar-day.weekend {
  background-color: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.3);
  color: #ff9800;
  font-weight: 600;
}

.calendar-day.weekend:hover {
  background-color: rgba(255, 152, 0, 0.2);
  border-color: #ff9800;
}

.calendar-day.weekend.selected {
  background-color: rgba(255, 152, 0, 0.3);
  border-color: #ff9800;
  color: #fff;
}

/* Dostupnost pro víkendy */
.calendar-day.weekend.available {
  background-color: rgba(76, 227, 123, 0.15);
  border-color: rgba(76, 227, 123, 0.4);
}

.calendar-day.weekend.limited {
  background-color: rgba(255, 179, 0, 0.15);
  border-color: rgba(255, 179, 0, 0.4);
}

.calendar-day.weekend.busy {
  background-color: rgba(255, 82, 82, 0.15);
  border-color: rgba(255, 82, 82, 0.4);
}

/* Tooltips pro víkendy */
.calendar-day.weekend::after {
  content: "Víkend";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
}

.calendar-day.weekend:hover::after {
  opacity: 1;
}


.auto-select-btn.input-error {
  border-color: #ff5252 !important;
  box-shadow: 0 0 0 2px rgba(255, 82, 82, 0.2) !important;
  background-color: rgba(255, 82, 82, 0.1) !important;
}

.auto-select-btn.input-error:hover {
  border-color: #ff5252 !important;
  box-shadow: 0 0 0 2px rgba(255, 82, 82, 0.3) !important;
}

.readonly-input {
  background-color: #2a2a2a !important;
  color: #b6b7bb !important;
  cursor: not-allowed !important;
  border: 1px solid #444 !important;
  opacity: 0.7 !important;
}

.readonly-input:hover {
  background-color: #2a2a2a !important;
  border-color: #444 !important;
}

.readonly-input:focus {
  background-color: #2a2a2a !important;
  border-color: #444 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Speciální styling pro readonly inputy v rezervaci */
.rezervace-summary .readonly-input {
  position: relative;
}

.rezervace-summary .readonly-input::after {
  content: "🔒";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666;
  pointer-events: none;
}

/* GDPR souhlas styling - OPRAVENO */
.gdpr-agreement {
  margin: 20px 0;
}

.gdpr-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer;
  line-height: 1.5;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
}

.gdpr-label input[type="checkbox"] {
  /* ZMĚNĚNO: Místo display: none použijeme skrytí */
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.checkmark {
  width: 20px !important;
  height: 20px !important;
  border: 2px solid #3a3b3e;
  border-radius: 4px;
  background: #2a2b2e;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.gdpr-label:hover .checkmark {
  border-color: var(--accent);
  background: #323338;
}

.gdpr-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.gdpr-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

.gdpr-text {
  color: var(--text);
  flex: 1;
}

.gdpr-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gdpr-text a:hover {
  text-decoration: underline;
  text-shadow: 0 1px 8px rgba(255, 152, 0, 0.3);
}

/* Error stav pro checkbox */
.gdpr-label.error .checkmark {
  border-color: #ff5252 !important;
  background: rgba(255, 82, 82, 0.1);
}

.gdpr-label.error .gdpr-text {
  color: #ff5252;
}

/* Zajistíme, že checkbox je focusable pro validaci */
.gdpr-label input[type="checkbox"]:focus + .checkmark {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .footer {
    padding: 25px 15px;
  }
  
  .legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .legal-links a {
    margin: 0;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }
  
  .legal-links a:hover {
    border-bottom-color: var(--accent);
  }
  
  .legal-links span {
    display: none; /* Skryje oddělovače | na mobilu */
  }
  
  .copyright {
    text-align: center;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }
  
  .legal-links {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .legal-links a {
    font-size: 0.85rem;
    padding: 6px 0;
  }
  
  .copyright {
    font-size: 0.85rem;
    padding: 0 5px;
  }
}