.product-main-info .info {
    position: relative;
}
.share-btn-wrapper {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.share-btn-wrapper .share-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #eaeaea;
    font-size: 18px;
    color: #c59d5f; /* Gold color */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.share-btn-wrapper .share-icon-btn:hover {
    background-color: #c59d5f;
    color: #fff;
    border-color: #c59d5f;
}
.share-btn-wrapper .social-icons-share {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
    transition: all 0.3s ease;
}
.share-btn-wrapper:hover .social-icons-share {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.share-btn-wrapper .social-icons-share a.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #666;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
