.custom-variations {
    margin-bottom: 20px;
}
.custom-variations h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}
.garmin-ems-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.garmin-ems-options li {
    flex: 0 1 calc(15% - 8px);
    box-sizing: border-box;
}
.garmin-ems-options li a {
    display: block;
    padding: 10px 0;
    text-align: center;
    border: 1px solid #000;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    background: #fff;
    transition: all 0.2s ease-in-out;
    font-size: 12px;
}
.garmin-ems-options li a img {
    display: block;
    margin: 0 auto;
    border: 2px solid transparent;
    border-radius: 4px;
    max-width: 60px;
    height: auto;
    transition: all 0.2s ease-in-out;
}
.garmin-ems-options li a:has(img) {
    padding: 4px;
    font-size: 0;
}
.garmin-ems-options li.active a {
    border-color: #0073aa;
    background-color: #f0f8ff;
}
.garmin-ems-options li.active img {
    border-color: #0073aa;
    opacity: 1;
}
.garmin-ems-options li.disabled a {
    opacity: 0.4;
    cursor: pointer;
    pointer-events: auto;
}
.app__life-style, .app__video-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.app__img-banner__img {
    width: 100%;
    height: 100%;
    display: none;
    object-fit: cover;
}
.app__img-banner__img--desktop {
    display: block;
}
.app__life-style__text__con, .app__video-banner__text__con {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
}
.app__life-style__text__con--center, .app__video-banner__text__con--center {
    justify-content: center;
}
.app__life-style__text__con--middle {
    align-items: center;
}
.app__life-style__text__con--top {
    align-items: flex-start;
}
.app__headline {
    font-size: calc(1rem * var(--headlineTextSizeScaler, 2));
    text-align: var(--text-align, left);
}
.app__headline--center {
    text-align: center;
}
.app__headline--dark {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.app__headline--light {
    color: #000;
}
.g__heading, .g__copy {
    margin: 0;
}
.g__copy p {
    margin: 0.5rem 0;
}
.app__video-banner__img-con {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}
.app__video-banner__img-con img, .app__video-banner__img-con iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.app__video-banner__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}
.app__video-banner__play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}
.app__video-banner__close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 11;
}
.app__video-banner__close-button:hover {
    background: rgba(0, 0, 0, 0.9);
}
.play-icon, .close-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}
@media (max-width: 768px) {
    .app__img-banner__img--desktop {
        display: none;
    }

    .app__img-banner__img--mobile {
        display: block;
    }

    .app__headline {
        font-size: calc(1rem * var(--headlineMobileTextSizeScaler, 2));
    }

    .app__life-style__text__con__mobile--center {
        justify-content: center;
    }

    .app__life-style__text__con__mobile--middle {
        align-items: center;
    }

    .app__life-style__text__con__mobile--top {
        align-items: flex-start;
    }

    .app__headline--mobile--center {
        text-align: center;
    }
}
.garmin-ems-options a.link-disabled{
    pointer-events:none;
    cursor:not-allowed;
    opacity:.6
}