.Icon-block {
    background: linear-gradient(135deg, var(--colorLeft, #7f85e4) 0%, var(--colorRight, #a89fef) 100%);
    width: 6rem;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(127, 133, 228, 0.2);
    overflow: hidden;
    position: absolute;
    top: -1.5rem;
    left: 10%;
    transform: translateX(-50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.Icon-block:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(127, 133, 228, 0.3);
}
.info-icon, .info-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5em;
    width: 0.8em;
    height: 0.8em;
    flex: 0 0 0.8em;
    fill: #7f85e4;
    padding: 0;
    line-height: 1;
    vertical-align: text-top;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    top: -0.1em;
}

.info-icon svg, .info-link svg {
    display: block;
    width: 100%;
    height: 100%;
}

.produkt-block>label>.info-icon, .produkt-block>label>.info-link {
    margin-top: 0;
}

.info-icon:hover, .info-link:hover {
    fill: #ffffff;
    transform: scale(1.15);
    filter: drop-shadow(0 2px 6px rgba(127, 133, 228, 0.4));
}
.info-link { text-decoration: none; }
.produkt-block.selected>label>.info-icon, .produkt-block.selected>label>.info-link { fill: #7f85e4; }
.produkt-block.selected>label>.info-icon:hover, .produkt-block.selected>label>.info-link:hover { fill: #ffffff; }
.features-controls label input.feature-checkbox:checked ~ .info-icon,
.features-controls label input.feature-checkbox:checked ~ .info-link { fill: #7f85e4; }
.features-controls label input.feature-checkbox:checked ~ .info-icon:hover,
.features-controls label input.feature-checkbox:checked ~ .info-link:hover { fill: #ffffff; }

.pc-tooltip {
    position: fixed;
    z-index: 10000;
    background: linear-gradient(135deg, rgba(44, 44, 70, 0.98) 0%, rgba(32, 32, 56, 0.97) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #e0e4f0;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(127, 133, 228, 0.22);
    border-left: 3px solid rgba(127, 133, 228, 0.55);
    font-size: 13px;
    line-height: 1.5;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(127, 133, 228, 0.18);
    max-width: 260px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-tooltip[data-show="true"] {
    opacity: 1;
    transform: translateY(0);
}
