.grouped-types {
    margin-top: 25px;

    .grouped-types-label {
        color: #12283f;
    }

    .disabled {
        color: #adadad !important;
    }
    
    .grouped-products {
        margin-bottom: 15px;
        margin-top: 5px;

        .image-trigger {
            position: relative;
            display: inline-block;
        }
    
        .tooltip-image {
            position: absolute;
            bottom: 100%;             
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 8px;
            z-index: 20;
            pointer-events: none;
            opacity: 0;
            transition: opacity .15s ease, transform .15s ease;
        }
    
        .tooltip-image .tooltiptext {
            background-color: #12283f;
            color: #fff;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 11px;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(0,0,0,.15);
            position: relative;
        }
    
        .tooltip-image .tooltiptext::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 5px;
            border-style: solid;
            border-color: #12283f transparent transparent transparent;
        }
    
        .label-trigger:hover .tooltip-image,
        .image-trigger:hover + .tooltip-image {
            opacity: 1;
            transform: translateX(-50%) translateY(-3px);
        }

        img {
            width: 90px;
        }

        .nav-button-link {
            background-color: #e6f5f5;
            border-radius: 20px;
            color: #12283f;
            cursor: pointer;
            display: inline-block;
            font-size: .875rem;
            font-weight: bold; 
            line-height: 1.3;
            padding: 7px 20px;
            margin-top: 10px;

            .label-trigger {
                display: block;
                text-align: center;
                font-weight: bold;
                text-transform: uppercase;
                font-size: 12px;

                .sub-label-trigger {
                    display: block;
                    font-size: 11px;
                    font-weight: normal;
                    text-transform: lowercase;
                }
            }
        }

        .disabled {
            background-color: #e9e9e9;
            border-color: #adadad;
            color: #303030;
            cursor: not-allowed !important;
            opacity: 0.5;
        }

        .nav-button-link.active {
            background-color: #017a7a !important;
            color: #fff !important;
        }

        .nav-img-link {
            margin-top: 10px;
            position: relative;
            display: inline-block;

            .image-container {
                position: relative;
            }

            .image-trigger {
                display: inline-block;
                position: relative;

                img {
                    border: 1.5px solid #e3e3e3;
                    border-radius: 5px;
                    padding: 6px;
                }
            }
        }

        .nav-img-link.active {
            .image-trigger {
                img {
                    border: 2px solid #017a7a;
                    border-radius: 5px;
                    padding: 6px;
                }
            }

            .image-overlay {
                position: absolute;
                inset: 0;
                background: #e6f5f5;    
                opacity: 0.3;
                border-radius: 5px; 
                pointer-events: none; 
            }
        }
    }
}