.elementor-13003 .elementor-element.elementor-element-5c6b882 > .elementor-widget-container{background-color:transparent;background-image:linear-gradient(180deg, #667EEA 0%, #764BA2 100%);}/* Start custom CSS for section, class: .elementor-element-d00eab8 *//* ========================================
   ESHOP HERO SEKCE - Samostatné styly
   Poznámka: Tyto styly ovlivní POUZE Hero sekci
======================================== */

/* Hero container */
.eshop-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Hero obsah (levá strana) */
.eshop-hero-content {
  max-width: 600px;
}

/* Badge nahoře */
.eshop-hero .eshop-hero-badge {
  display: inline-block;
  background: #e63946;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Hlavní nadpis */
.eshop-hero .eshop-hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #2d2d2d;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

/* Podnapis */
.eshop-hero .eshop-hero-subtitle {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

/* Statistiky */
.eshop-hero .eshop-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.eshop-hero .stat-item {
  display: flex;
  flex-direction: column;
}

.eshop-hero .stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #e63946;
  line-height: 1;
}

.eshop-hero .stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* TLAČÍTKO - Hlavní styl */
.eshop-hero .btn-eshop-hero {
  display: inline-block;
  background: #e63946; /* ← ZMĚŇ TUTO BARVU */
  color: #ffffff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

/* TLAČÍTKO - Hover efekt */
.eshop-hero .btn-eshop-hero:hover {
  background: #d62839; /* ← ZMĚŇ I HOVER BARVU */
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

/* Obrázek (pravá strana) */
.eshop-hero .eshop-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.eshop-hero .eshop-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   RESPONSIVE - Hero sekce
======================================== */
@media (max-width: 1024px) {
  .eshop-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  
  .eshop-hero .eshop-hero-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .eshop-hero .eshop-hero-title {
    font-size: 32px;
  }
  
  .eshop-hero .eshop-hero-subtitle {
    font-size: 18px;
  }
  
  .eshop-hero .eshop-hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .eshop-hero .stat-number {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2e1caed *//* ========================================
   FEATURED COURSES SECTION - Samostatné styly
   Poznámka: Tyto styly ovlivní POUZE sekci s online kurzy
======================================== */

/* Hlavní kontejner sekce */
.section-featured-courses {
  padding: 80px 20px;
  background: #ffffff;
}

/* Header sekce */
.section-header-eshop {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Label badge */
.section-header-eshop .section-label {
  display: inline-block;
  background: #fff0f1;
  color: #e63946;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Nadpis */
.section-header-eshop h2 {
  font-size: 42px;
  font-weight: 900;
  color: #2d2d2d;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

/* Podnapis */
.section-header-eshop p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA tlačítko "Zobrazit všechny kurzy" */
.section-featured-courses .section-cta-center {
  text-align: center;
  margin-top: 40px;
}

.section-featured-courses .btn-view-all {
  display: inline-block;
  background: transparent;
  color: #2d2d2d;
  border: 2px solid #2d2d2d;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-featured-courses .btn-view-all:hover {
  background: #2d2d2d;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE - Featured Courses
======================================== */
@media (max-width: 768px) {
  .section-featured-courses {
    padding: 60px 20px;
  }
  
  .section-header-eshop {
    margin-bottom: 40px;
  }
  
  .section-header-eshop h2 {
    font-size: 32px;
  }
  
  .section-header-eshop p {
    font-size: 16px;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-1772d69 *//* ========================================
   TRUST SECTION - Samostatné styly
   Poznámka: Tyto styly ovlivní POUZE Trust sekci
======================================== */

/* Hlavní kontejner */
.trust-section {
  background: #f8f9fa;
  padding: 60px 20px;
}

/* Grid se 4 prvky */
.trust-section .trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Jednotlivý prvek */
.trust-section .trust-item {
  text-align: center;
}

/* Ikona */
.trust-section .trust-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: #e63946;
}

/* Nadpis */
.trust-section .trust-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 10px 0;
}

/* Text */
.trust-section .trust-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   RESPONSIVE - Trust Section
======================================== */
@media (max-width: 768px) {
  .trust-section {
    padding: 50px 20px;
  }
  
  .trust-section .trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-8ab57ae *//* ========================================
   WHY ONLINE SECTION - Samostatné styly
======================================== */

.why-online-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.why-online-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.why-icon {
  font-size: 56px;
  margin-bottom: 20px;
  line-height: 1;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 15px 0;
}

.why-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   RESPONSIVE - Why Online
======================================== */
@media (max-width: 768px) {
  .why-online-section {
    padding: 60px 20px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-card {
    padding: 30px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-532ba5e *//* ========================================
   EQUIPMENT SECTION - Samostatné styly
======================================== */

.equipment-section {
  padding: 80px 20px;
  background: #ffffff;
}

.equipment-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.equipment-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  position: relative;
}

.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.equipment-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.05);
}

.equipment-content {
  padding: 25px;
}

.equipment-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 10px 0;
}

.equipment-content p {
  font-size: 15px;
  color: #666;
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.equipment-count {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.btn-view-all-secondary {
  display: inline-block;
  background: #f5f5f5;
  color: #2d2d2d;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-view-all-secondary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE - Equipment Section
======================================== */
@media (max-width: 768px) {
  .equipment-section {
    padding: 60px 20px;
  }
  
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-5c6b882 *//* Newsletter Formulář Styling - S PLACEHOLDERY */
.mc4wp-form {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

/* Zobrazit labels jako placeholdery */
.mc4wp-form p {
  position: relative;
  margin-bottom: 20px;
}

.mc4wp-form label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1em;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

/* Input pole styling */
.mc4wp-form input[type="text"],
.mc4wp-form input[name="FNAME"],
.mc4wp-form input[name="EMAIL"] {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1.1em;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: white;
}

/* Když je input vyplněný nebo ve focus, schovat label */
.mc4wp-form input:focus + label,
.mc4wp-form input:not(:placeholder-shown) + label {
  opacity: 0;
  top: 0;
}

/* Focus state */
.mc4wp-form input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Submit button */
.mc4wp-form input[type="submit"] {
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
  margin-top: 10px;
}

.mc4wp-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Response messages */
.mc4wp-form .mc4wp-response {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
}

.mc4wp-form .mc4wp-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mc4wp-form .mc4wp-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Mobile */
@media (max-width: 768px) {
  .mc4wp-form {
    padding: 30px 20px;
  }
  
  .mc4wp-form label {
    font-size: 1em;
    left: 20px;
  }
  
  .mc4wp-form input {
    padding: 16px 20px;
    font-size: 1em;
  }
}/* End custom CSS */