#share-wrapper {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

#main-share-btn, .share-icon, #close-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    color: white;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-decoration: none;
}

#main-share-btn { 
	background-color: var(--primary); 
	font-size: 20px; 
}
#close-share-btn { background-color: #333; }
.fb { background-color: #1877F2; }
.x-twitter { background-color: #000; }
.insta { background-image: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.tiktok { background-color: #000; }

#main-share-btn:hover, .share-icon:hover {
    transform: scale(1.1);
}
.share-icon:hover{
	color: var(--primary) !important;
}

.copy-link { background-color: #4CAF50; }

#copy-msg {
    position: absolute;
    right: 60px;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    bottom: 115px;
}
.viber { background-color: #7360f2; }
.wa { 
    background-color: #25D366; 
}