.strip[data-id="2481b5"] {
  --section-id: "2481b5";
  --storage-url: "https://prodva.proweb.cz/_section/2481b5";
  --public-url: "https://prodva.proweb.cz/_section/2481b5";
}
.strip[data-id="2481b5"] .main-header {
  --header-height: 100px;
  --header-height-scrolled: 70px;
  --accent-color: #b31b1b;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.4);
  --text-main: #1a1a1a;
  --transition-speed: 0.5s;
  --header-width: 100%;
  --header-top: 0;
  position: fixed;
  top: var(--header-top);
  left: 50%;
  transform: translateX(-50%);
  width: var(--header-width);
  height: var(--header-height);
  background: transparent;
  z-index: 2000;
  transition: all var(--transition-speed) cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  align-items: center;
}
.strip[data-id="2481b5"] .main-header.scrolled {
  --header-height: var(--header-height-scrolled);
  --header-width: 95%;
  --header-top: 15px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .strip[data-id="2481b5"] .main-header.scrolled {
    --header-width: 92%;
    --header-top: 10px;
  }
}
.strip[data-id="2481b5"] .main-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .strip[data-id="2481b5"] .main-header .header-container {
    padding: 0 25px;
  }
}
.strip[data-id="2481b5"] .main-header .logo-wrapper {
  height: 55px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .logo-wrapper:hover {
  transform: scale(1.03) rotate(-1deg);
}
.strip[data-id="2481b5"] .main-header .logo-wrapper img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a {
  position: relative;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  transition: color 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a i {
  font-size: 1rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-50%);
  border-radius: 2px;
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a:hover {
  color: var(--accent-color);
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a:hover i {
  transform: scale(1.2);
}
.strip[data-id="2481b5"] .main-header .nav-desktop .nav-list li a:hover::after {
  width: 25px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  cursor: pointer;
  z-index: 2100;
  transition: all 0.3s ease;
}
.strip[data-id="2481b5"] .main-header .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.strip[data-id="2481b5"] .main-header .nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: var(--text-main);
  border-radius: 2px;
  left: 10px;
  transition: 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.strip[data-id="2481b5"] .main-header .nav-toggle span:nth-child(1) {
  top: 16px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle span:nth-child(2) {
  top: 22px;
  width: 16px;
  right: 10px;
  left: auto;
}
.strip[data-id="2481b5"] .main-header .nav-toggle span:nth-child(3) {
  top: 28px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span {
  background: #fff;
  width: 24px;
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span:nth-child(1) {
  top: 22px;
  transform: rotate(135deg);
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.strip[data-id="2481b5"] .main-header .nav-toggle.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-135deg);
}
.strip[data-id="2481b5"] .mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1999;
  transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  overflow: hidden;
}
.strip[data-id="2481b5"] .mobile-overlay::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(179, 27, 27, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.strip[data-id="2481b5"] .mobile-overlay.active {
  transform: translateX(-100%);
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li {
  margin: 30px 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 2.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li a i {
  font-size: 1.8rem;
  color: var(--accent-color);
  width: 40px;
  text-align: center;
}
.strip[data-id="2481b5"] .mobile-overlay .mobile-nav-list li a:hover {
  color: var(--accent-color);
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li {
  opacity: 1;
  transform: translateX(0);
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.3s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.4s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.5s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.6s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(5) {
  transition-delay: 0.7s;
}
.strip[data-id="2481b5"] .mobile-overlay.active .mobile-nav-list li:nth-child(6) {
  transition-delay: 0.8s;
}
@media (max-width: 991px) {
  .strip[data-id="2481b5"] .main-header {
    --header-height: 85px;
  }
  .strip[data-id="2481b5"] .main-header .nav-desktop {
    display: none;
  }
  .strip[data-id="2481b5"] .main-header .nav-toggle {
    display: block;
  }
}@charset "UTF-8";
.strip[data-id=b7298d] {
  --section-id: "b7298d";
  --storage-url: "https://prodva.proweb.cz/_section/b7298d";
  --public-url: "https://prodva.proweb.cz/_section/b7298d";
  /* Definitivní oprava pro tablety a střední obrazovky */
}
.strip[data-id=b7298d] .contact-section {
  padding: 120px 0 80px;
  background: #fff;
}
.strip[data-id=b7298d] .contact-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  box-sizing: border-box;
}
.strip[data-id=b7298d] .contact-section .contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}
.strip[data-id=b7298d] .contact-section .contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}
.strip[data-id=b7298d] .contact-section .contact-info .info-item i {
  font-size: 1.5rem;
  color: #b31b1b;
  margin-top: 5px;
}
.strip[data-id=b7298d] .contact-section .contact-info .info-item h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}
.strip[data-id=b7298d] .contact-section .contact-info .info-item p {
  margin: 0;
  color: #666;
  font-size: 1.1rem;
}
.strip[data-id=b7298d] .contact-section .contact-info .info-item a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}
.strip[data-id=b7298d] .contact-section .contact-info .info-item a:hover {
  color: #b31b1b;
}
.strip[data-id=b7298d] .contact-section .contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  width: 100%;
}
.strip[data-id=b7298d] .contact-section .contact-form .form-group {
  margin-bottom: 20px;
}
.strip[data-id=b7298d] .contact-section .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}
.strip[data-id=b7298d] .contact-section .contact-form .form-group input, .strip[data-id=b7298d] .contact-section .contact-form .form-group textarea {
  width: 100% !important;
  max-width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  box-sizing: border-box !important;
  font-size: 16px;
  display: block;
}
.strip[data-id=b7298d] .contact-section .contact-form .form-group textarea {
  height: 120px;
  resize: vertical;
}
.strip[data-id=b7298d] .contact-section .contact-form .btn-submit {
  width: 100% !important;
  padding: 15px;
  background: #b31b1b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
  display: block;
  box-sizing: border-box;
}
.strip[data-id=b7298d] .contact-section .contact-form .btn-submit:hover {
  background: #8e1515;
}
@media (max-width: 1100px) {
  .strip[data-id=b7298d] .contact-section {
    padding-top: 250px !important; /* Maximální odstup pro jistotu */
  }
  .strip[data-id=b7298d] .contact-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
  .strip[data-id=b7298d] .contact-section .contact-info {
    text-align: center;
    /* Zmenšení nadpisu pro úsporu místa */
  }
  .strip[data-id=b7298d] .contact-section .contact-info h2 {
    font-size: 2rem !important;
    margin-bottom: 20px;
  }
  .strip[data-id=b7298d] .contact-section .contact-info .info-item {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
  }
  .strip[data-id=b7298d] .contact-section .contact-form {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=b7298d] .contact-section {
    padding-top: 180px !important;
  }
  .strip[data-id=b7298d] .contact-section .contact-info h2 {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 480px) {
  .strip[data-id=b7298d] .contact-section {
    padding-top: 140px !important;
  }
  .strip[data-id=b7298d] .contact-section .container {
    padding: 0 15px;
  }
  .strip[data-id=b7298d] .contact-section .contact-form {
    padding: 15px;
  }
}.strip[data-id="139bea"] {
  --section-id: "139bea";
  --storage-url: "https://prodva.proweb.cz/_section/139bea";
  --public-url: "https://prodva.proweb.cz/_section/139bea";
}
.strip[data-id="139bea"] .site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 0 40px;
  font-size: 1rem;
}
.strip[data-id="139bea"] .site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="139bea"] .site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}
.strip[data-id="139bea"] .site-footer .footer-col h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.strip[data-id="139bea"] .site-footer .footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #b31b1b;
}
.strip[data-id="139bea"] .site-footer .footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: #b31b1b;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}
.strip[data-id="139bea"] .site-footer .footer-logo span {
  color: #fff;
}
.strip[data-id="139bea"] .site-footer .footer-about {
  color: #aaa;
  line-height: 1.6;
}
.strip[data-id="139bea"] .site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="139bea"] .site-footer .footer-links li {
  margin-bottom: 12px;
}
.strip[data-id="139bea"] .site-footer .footer-links li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id="139bea"] .site-footer .footer-links li a:hover {
  color: #b31b1b;
}
.strip[data-id="139bea"] .site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="139bea"] .site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #aaa;
}
.strip[data-id="139bea"] .site-footer .footer-contact li i {
  color: #b31b1b;
  font-size: 1.2rem;
  margin-top: 4px;
}
.strip[data-id="139bea"] .site-footer .footer-contact li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.strip[data-id="139bea"] .site-footer .footer-contact li a:hover {
  color: #b31b1b;
}
.strip[data-id="139bea"] .site-footer .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}
.strip[data-id="139bea"] .site-footer .footer-bottom a {
  color: #888;
  text-decoration: none;
}
.strip[data-id="139bea"] .site-footer .footer-bottom a:hover {
  color: #fff;
}
.strip[data-id="139bea"] .site-footer .footer-bottom .toplist-wrapper {
  margin-top: 20px;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.strip[data-id="139bea"] .site-footer .footer-bottom .toplist-wrapper:hover {
  opacity: 1;
}
.strip[data-id="139bea"] .site-footer .footer-bottom .toplist-wrapper img {
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .strip[data-id="139bea"] .site-footer {
    padding: 60px 0 30px;
    text-align: center;
  }
  .strip[data-id="139bea"] .site-footer .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .strip[data-id="139bea"] .site-footer .footer-contact li {
    justify-content: center;
  }
  .strip[data-id="139bea"] .site-footer .footer-links li a {
    justify-content: center;
  }
}