.explainer-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    background: #EFEAE0;
    border: none;
}

.explainer-video-icon {
    color: #3C3C3C;
    font-family: Avenir, 'AvenirLTPro', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.explainer-video-text {
    color: #3C3C3C;
    font-family: Avenir, 'AvenirLTPro', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* Modal Styles */
.explainer-video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    /* Scrollbar verstecken */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Scrollbar für Webkit-Browser verstecken */
.explainer-video-modal::-webkit-scrollbar {
    display: none;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 20% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    max-height: 70%;
    overflow-y: auto;
    z-index: 1000;
    /* Scrollbar verstecken */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Scrollbar für Webkit-Browser verstecken */
.modal-content::-webkit-scrollbar {
    display: none;
}

.close-modal_wrapper {
    display: flex;
    align-content: flex-end;
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    border: none;
    background: none;
}

.video-container {
    position: relative;
    margin-top: 3rem;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    border: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Verhindert Scrollen im Hintergrund wenn Modal offen ist */
body.modal-open {
    overflow: hidden;
}

.product-info__block-item {
    margin-top: 1rem;
}