.epya-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.epya-image-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.epya-image-wrapper:hover .epya-image-actions {
    opacity: 1;
}

.epya-btn {
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
}

.epya-btn:hover {
    background: rgba(0,0,0,0.8);
}
