﻿
.shortcut-installer-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a32130, #e8384f);
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35);
}

    .shortcut-installer-wrap:hover {
        transform: scale(1.08);
    }

/* Wave rings */
.shortcut-wave {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(200, 16, 46, 0.45);
    animation: shortcut-pulse 2s ease-out infinite;
    pointer-events: none;
}

.shortcut-wave--2 {
    animation-delay: 1s;
    border-color: rgba(200, 16, 46, 0.25);
}

@keyframes shortcut-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Icon */
.shortcut-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
}

/* Tooltip */
.shortcut-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #1a1f2e;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

    .shortcut-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 5px solid transparent;
        border-top-color: #1a1f2e;
    }

.shortcut-installer-wrap:hover .shortcut-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
