.body-content-header h1 {
    display: none;
}

#body-content {
    padding-bottom: 0 !important;
}

/* === Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* === Proměnné === */
:root {
    --primary: #7c3aed;
    --primary-600: #6d28d9;
    --primary-50: #f5f3ff;
    --gray-600: #4b5563;
    --radius: 20px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.wb-fullwidth {
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}






body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #fff;
}

/* === Hero sekce === */
.wb-hero {
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}

.wb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(53deg, var(--primary-50) 0%, var(--primary-50) 0%, rgba(252, 252, 252, 1) 49%, var(--primary-50) 96%);
    z-index: 0;
    pointer-events: none;
}

.wb-hero .wb-copy,
.wb-hero .wb-nahled {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.wb-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 0.9fr;
    gap: 16px;
    align-items: center;
    z-index: 1;
}
.wb-copy {
    max-width: 460px;
    width: 100%;
}
.wb-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0;
}

.wb-hero h1 {
    font-size: clamp(32px, 5vw, 38px);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 800;
    color: #48216b;
    text-transform: initial !important;
}

.wb-hero .wb-text {
    font-size: clamp(16px, 2.2vw, 17px);
    color: var(--gray-600);
    margin: 0 0 28px;
    max-width: 65ch;
    line-height:1.4;
}


.wb-guide {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s, background 0.3s;
}

.wb-guide:hover {
    color: var(--primary)!important;
}


.wb-guide-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(154, 97, 252, 0.25);
    z-index: -1;
}


/* === Tlačítka === */
.wb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.wb-btn {
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

/* Toto přidat do tvého CSS */
.wb-btn.wb-primary {
background-color: var(--primary) !important;
color: #ffffff !important;
border: 2px solid var(--primary) !important;
}

.wb-btn.wb-primary:hover {
background-color: var(--primary-600) !important;
color: #ffffff !important;
}




/* === Obrázek === */


.wb-nahled img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: none;

}

/* === CAROUSEL STYLES START === */

.wb-nahled {
    position: relative;
    overflow: hidden;
    padding-top: 15px;

}

.wb-carousel-container {
    overflow: hidden;
    border-radius: 8px;
}

.wb-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}

.wb-carousel-slide {
    width: 33.333%;
    flex-shrink: 0;
}

.wb-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Navigační šipky - SKRYTÉ */
.wb-carousel-prev,
.wb-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 50;
    display: none !important; /* SKRYTÍ */
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: background 0.3s, color 0.3s;
    touch-action: manipulation;
}



.wb-carousel-controls-bottom {
          display: flex !important;
          justify-content: center !important;
          gap: 10px !important;
          margin-top: 12px !important;
          padding-right: 0 !important;
      }

      /* Skrytí šipek pro Hero Carousel */
      .wb-carousel-control {
          display: none !important;
      }
          .wb-carousel-nav-dots {
              display: flex;
              gap: 10px;
          }

          .wb-dot {
              width: 12px!important;
              height: 12px!important;
              background-color: rgb(219, 217, 217)!important;
              border-radius: 50% !important;
              cursor: pointer!important;
              transition: background-color 0.3s, transform 0.3s;
              border: 2px solid #ddd!important;
              padding: 0;
              margin: 0;
              border-width: 2px;
          }

          .wb-dot.active {
              background-color: #7c3aed!important;
              border-color: #7c3aed!important;
          }

          .wb-dot:hover {
              background-color: #aaa!important;
          }

/* Mobile adjustment for carousel */
@media (max-width: 980px) {
    .wb-nahled {
        padding-bottom: 24px;
    }
}

.wb-nahled img {
    width: 100%;
}

/* === CAROUSEL STYLES END === */

/* fialový pruh benefity */
.wb-benefity-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
}

.wb-benefity {
    background: var(--primary);
    color: #fff;
    padding: 18px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
}

.wb-benefity-container span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}


#dodaniBox {
    background-color: var(--primary-50);
    padding: 14px 18px;
    color: #4b006e;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 0.85em;
    box-shadow: 0 2px 8px rgba(100, 0, 150, 0.1);
    border: 1px solid #e3d7ff;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 60px;
}

.dodaniRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
}

#dodaniText {
    font-weight: 800;
    font-size: 16px;
    color: #374151;
    white-space: nowrap;
}

#dodaniBox i {
    font-size: 14px;
    color: #8e4bbf;
    font-style: italic;
    margin-top: 4px;
}

/* Separátor mezi fialovým pruhom a boxem */
.wb-benefity + #dodaniBox {
    margin-top: 5px;
    border-top: 2px solid var(--primary);
}

.wb-promotion {
    text-align: center;
    margin: 1rem 0 2rem;
}

.wb-odkazy{
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0 2rem;
}


.wb-odkazy a.wb-odkaz {
    display: inline-block;
    padding: 12px;
    background-color: var(--primary-50);
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

/* efekt najetí myši */
.wb-odkazy a.wb-odkaz:hover {
    background-color: var(--primary);
    color: #fff;
}


.wb-text-promo {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 0.3rem;
    margin-left: 0;
    margin-right: 0;
    color: var(--primary-600);

}

.wb-red-text {
    color: #ef4444;

}

.wb-purple-highlight {
    color: var(--primary-600);
}


.wb-text-promo-podminky {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-top: 0.3rem;
    margin-bottom: 28px;
}

.wb-highlight {
    color: #ef4444;
}




/* === Responzivita === */
@media (max-width: 980px) {
    .wb-hero {
        display: block;
        text-align: center;
        padding-top: 40px;
    }

    .wb-hero .wb-nahled {
        margin-top: 0px;
        top: 0;

    }

    .wb-hero .wb-actions {
        justify-content: center;
    }

    .wb-container {
        grid-template-columns: 1fr;
    }

    .wb-benefity {
        margin-bottom: 30px;
    }

}

@media (max-width: 768px) {

    .wb-container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .wb-hero {
        padding-top: 20px;
    }

    .wb-hero .wb-copy,
    .wb-hero .wb-nahled {
        margin-bottom: 20px;
    }

    .wb-actions {
        margin-bottom: 16px;
    }


    .wb-hero h1 {
        font-size: 40px;
    }
    /* END CUSTOM IMPROVEMENTS */

    .wb-benefity-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .wb-benefity-container span {
        display: flex;
        justify-content: flex-start;
        width: 100%;
    }

    .wb-benefity {
        margin-bottom: 30px;
    }

    .wb-nahled {
        margin-bottom: 30px;

    }

    .wb-nahled img {
        width: 100%;
        height: auto;
        max-width: none;
    }


    .wb-actions {

        gap: 16px 14px;
    }

    .wb-btn.wb-primary,
    .wb-guide {
        width: 90%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-content: center;
    }


    .wb-btn.wb-primary {
        background-color: var(--primary);
        color: #fff !important;
        border: 2px solid var(--primary);
    }

    /* Úprava hover/tap efektu pro solidní tlačítko */
    .wb-btn.wb-secondary:hover {
        background-color: var(--primary-600);
        color: #fff !important;
    }




    .wb-odkazy {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .wb-odkazy a {
        display: block;
        width: 80%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }


    #dodaniText {
        font-size: 15px;
    }

}

@media (max-width: 480px) {
    .wb-benefity-container {
        gap: 8px;
    }

    .wb-benefity {
        margin-bottom: 20px;
    }
}