.amk-share-wrap {
    position: relative;
    display: inline-flex;
}

/* BUTTON */
.amk-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MENU */
.amk-share-menu {
    position: absolute;
    top: 50%;
    right: calc(100% + 8px);
    transform: translateY(-50%) translateX(10px) scale(0.9);
    display: flex;
    gap: 6px;
    padding: 6px;
    border-radius: 10px;
    background: rgba(20,20,40,0.95);
    backdrop-filter: blur(8px);

    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

/* OPEN */
.amk-share-wrap.open .amk-share-menu {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
    pointer-events: auto;
}

/* ICONS */
.amk-share-menu a {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.amk-share-menu svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* COLORS */
.amk-share-menu a:nth-child(1){color:#1877f2;}
.amk-share-menu a:nth-child(2){color:#fff;}
.amk-share-menu a:nth-child(3){color:#25d366;}
.amk-share-menu a:nth-child(4){color:#0a66c2;}
.amk-share-menu a:nth-child(5){color:#bbb;}

.amk-share-menu a:hover {
    background: rgba(255,255,255,0.15);
}
.amk-share-btn:hover {
    box-shadow: 0 0 12px rgba(120,200,255,0.7);
    transform: scale(1.1);
}

/* Menu hover glow */
.amk-share-menu a:hover {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 0 8px rgba(120,200,255,0.6);
}

/* TOOLTIP */
.amk-share-btn::after {
    content: attr(aria-label);
    position: absolute;
    bottom: -24px;
    font-size: 10px;
    background: #000;
    padding: 2px 6px;
    border-radius: 4px;
    opacity: 0;
    transition: 0.2s;
}

.amk-share-btn:hover::after {
    opacity: 1;
}

.amk-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(20,20,40,0.95);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s;
    z-index: 9999;
}

.amk-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
